@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overscroll-behavior: smooth;
    overflow-x: hidden;
    /* Prevents horizontal scroll */
}

body {

    user-select: none;
    /* Prevents text selection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

    font-family: "Montserrat", serif;
    margin: 0;
    font-family: "Poppins", sans-serif;

    line-height: 1.6rem;

    min-height: 100vh;
}

/* Navbar styles */
nav {



    padding: 0px 10%;
    background-color: rgba(0, 0, 0, 0.322);

    backdrop-filter: blur(15px);
    position: fixed;

    z-index: 1000;
    flex-wrap: wrap;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding-top: 15px;
    padding-bottom: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

nav ul li {
    padding: 2vw;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #dca854;
    font-size: 1.2rem;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #006600;
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: rgba(0, 0, 0, 0.418);

}

nav ul li:hover .dropdown-menu {
    display: block;
    transition-duration: 0.3s;
}

.dropdown-menu ul {
    display: block;
    margin: 10px;
}

.dropdown-menu ul li {
    padding: 10px 30px;

}

.logo {

    padding: 0%;
    display: block;

    transition-duration: 0.3s;
    overflow: hidden;

}

.logo:hover {
    transform: scale(1.2);
}

/* Button styles */
button {
    font-size: 18px;
    font-weight: bold;
    color: #006600;
    border-radius: 5px;
    border: none;
    background-color: #ffffff;
    padding: 8px 12px;
    transition: 0.5s;
    width: auto;
    font-family: Poppins;
    height: auto;

}

.hero-text button {
    margin-top: 2%;
}

button:hover {
    color: #ffffff;
    background-color: #006600;
    transform: scale(1.2);
}

/*----------------------------------------- circles section------------------------------ */



.circle-nav-section {
    background: #ece9f1;
    /* Light pastel lavender */
    padding: 0px 0px 150px 0px;
    text-align: center;
}

.section-title {

    font-size: 3rem;
    margin-bottom: 50px;
    color: #3b2c5a;
    font-family: Merriweather;
}

.circle-container {
    width: 600px;
    height: 600px;
    margin-left: 32%;
    position: relative;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: absolute;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.circle-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-family: Poppins;
    text-align: center;
    transition: background 0.4s ease;
}

.circle:hover .circle-overlay {
    background: rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
}

/* Hover effect on circle */
.circle:hover {
    transform: scale(1.15);
    /* Zoom effect */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    /* Stronger shadow */
    filter: brightness(1.1);
    /* Slight brightness increase */
}

/* Custom layout for flowy circle arrangement */
.circle:nth-child(1) {
    top: 5%;
    left: 45%;
}

.circle:nth-child(2) {
    top: 28%;
    left: 85%;
}

.circle:nth-child(3) {
    top: 65%;
    left: 70%;
}

.circle:nth-child(4) {
    top: 80%;
    left: 30%;
}

.circle:nth-child(5) {
    top: 30%;
    left: 5%;
}



/* ---------------------------end circle section-------------------------   */
/* start of arrow section */
.arrow-container {
    position: relative;
    height: 80vh;
    z-index: 999;

}

.arrow {
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

    position: fixed;
    right: 50px;
    bottom: 50px;
    padding: 10px;
    background: #006600;
    border-radius: 50%;
    overflow: hidden;
    top: 80vh;
    align-self: flex-end;



    animation: upDownPause 3s infinite;
    cursor: pointer;

}

@keyframes upDownPause {
    0% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(-10px);
    }

    /* thodi move up */
    20% {
        transform: translateY(0);
    }

    /* wapas niche */
    100% {
        transform: translateY(0);
    }

    /* baki time static */
}



/*  end start of arrow section */



.punjabi-culture {
    background-image: linear-gradient(rgba(0, 0, 0, 0.345), rgba(0, 0, 0, 0.2)), url(/punjab/assets/vecteezy_tractor-working-in-field-agriculture_19927356-min.jpg);
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;

}

.punjabi-culture button {
    margin-top: 50px;
}

.punjabi-culture section {
    text-align: center;
    padding-top: 15%;
    font-size: 40px;
    justify-content: center;
    text-shadow: 2px 2px #0000008e;
    color: white;
    text-indent: 50px;
    line-height: 1.3;

}

.punjabi-culture section .p1 {
    font-family: Poppins;
    font-size: 50px;
    font-weight: 600;

}

.punjabi-culture section .subline {
    font-size: 35px;
    margin-top: 10px;
    font-weight: 500;
}

.p1 span {
    color: green;
}

h1 {
    font-size: 12vh;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Merriweather;
}

p {
    font-family: Poppins;
}

.p1 {
    font-size: 70px;
}




/* --------------------------------------------------------------end of hero section--------------------------------------------------------- */
/* --------------------------------------------------------------start of sub-hero section--------------------------------------------------------- */
#sub-hero .sind-cul-mn-hd {
    color: darkred;
    font-weight: 900;
}

.sub-hero-2 {
    display: flex;
    column-gap: 70px;
    margin-top: 5%;
    margin-bottom: 3%;
    margin-left: 5%;
    margin-right: 5%;



}

h2 {
    font-size: 5vh;
    font-family: Merriweather;
    text-align: center;

    padding-top: 10%;
    padding-bottom: 0px;

}

.sind-sub-lin {
    color: blue;
    font-family: Poppins;
    font-size: 25px;
    font-style: italic;
    font-weight: 600;

}

.sara-content h3 {
    margin-top: 5%;
    font-size: 50px;
    font-family: Merriweather;
    color: #aa5500;
}

.pottery img {
    border-radius: 10px;
    width: 770px;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
    transition: .3s;
}

.pottery img:hover {
    transform: scale(1.05);
}

.paragraph2 {
    font-family: Poppins;
    font-weight: 400;
    text-align: justify;
    line-height: 1.6;
    word-spacing: 1.5;
    padding: 20px 0px 0px 0px;
}

.paragraph2::first-letter {
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
    color: darkred;
}

/* ------------------------------------------------------------sara content2 section------------------------------------------------------------------------------- */
.sara-content2 {
    margin-top: 15%;
    text-align: center;

}

.sara-content2 h4 {

    font-size: 5vh;
    font-family: Merriweather;
}

.sara-content2 p {
    font-style: italic;
    font-weight: 600;
    color: blue;
    padding-bottom: 10vh;
    padding-top: 2vh;
    font-size: 25px;
    font-weight: 500;
    font-family: Poppins;
}

.lunghi {
    display: flex;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 1%;
    column-gap: 7%;

}

/* ------------------------------------------------------------END sara content2 section------------------------------------------------------------------------------- */
/* ------------------------------------------------------------START OF lunghi section------------------------------------------------------------------------------- */
.photo img {
    border-radius: 10px;
    width: 600px;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
    transition: .3s;
    margin-left: 5%;

}

.photo img:hover {
    transform: scale(1.05);

}

.lunghi h4 {
    margin-top: 3%;
    font-family: Merriweather;
    font-size: 45px;
    color: rgba(0, 0, 255, 0.877);
}

.lunghi .one span {
    color: darkred;
}

.lunghi p {
    font-family: Poppins;
    font-weight: 400;
    text-align: justify;
    line-height: 1.6;
    word-spacing: 1.5;
    padding: 3px 30px 0px 0px;
}

.lunghi .text-content {
    padding-top: 3%;
}

.lunghi h4 span {
    color: darkred;
}

.lunghi h4::first-letter {
    color: darkred;
}

/* ------------------------------------------------------------END of lunghi section section------------------------------------------------------------------------------- */
/* ------------------------------------------------------------START OF balochi-kurta section------------------------------------------------------------------------------- */
.sara-content3 {
    margin-top: 10%;
    margin-bottom: 10%;
    display: flex;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 1%;
    column-gap: 5%;

}

.balochi-kurta {
    padding-top: 4%;
    padding-left: 2%;
}

.balochi-kurta h5 {
    margin-top: 3%;
    font-family: Merriweather;
    font-size: 45px;
    color: rgba(0, 0, 255, 0.877);

}

.balochi-kurta h5 span {
    color: darkorange;
}

.balochi-kurta p {
    font-family: Poppins;
    font-weight: 400;
    text-align: justify;
    line-height: 1.6;
    word-spacing: 1.5;
    padding: 20px 10px 0px 0px;

}

.image-container {
    width: 900px;
}

.sara-content3 img {
    border-radius: 10px;
    width: 600px;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
    transition: .3s;
    margin-right: 2%;

}

.sara-content3 img:hover {
    transform: scale(1.05);

}

/* ------------------------------------------------------------END of balochi-kurta section------------------------------------------------------------------------------- */
/* ------------------------------------------------------------START OF KHUSSA section------------------------------------------------------------------------------- */
.punjabi-khussa img {
    width: 700px;
    transition: .3s;
    height: auto;
    margin-left: 4%;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

.punjabi-khussa img:hover {
    transform: scale(1.05);

}

.punjabi-khussa {
    display: flex;
    padding-left: 55px;
    padding-right: 55px;
    margin-top: 8%;
    column-gap: 1%;
}

.punjabi-khussa h6 {
    margin-top: 9%;
    font-family: Merriweather;
    font-size: 45px;
    padding-left: 8%;

    color: rgb(105, 53, 18);

}

.punjabi-khussa span {
    color: rgb(158, 124, 10);
    font-size: 2vw;
}

.punjabi-khussa p {
    font-family: Poppins;
    font-weight: 400;
    text-align: justify;
    line-height: 1.6;
    word-spacing: 1.5;
    padding: 20px 80px;

}

/* ------------------------------------------------------------END of khussa section------------------------------------------------------------------------------- */
/* ------------------------------------------------------------START OF choli section------------------------------------------------------------------------------- */

.shalwar-kameez {
    display: flex;
    padding-left: 55px;
    padding-right: 55px;
    margin-top: 15%;
    margin-bottom: 15%;
    column-gap: 2%;
}

.shalwar-kameez .choli {
    margin-top: 5%;
    font-family: Merriweather;
    font-size: 45px;
    padding-left: 5%;
    font-weight: bold;
    color: chocolate;
}

.shalwar-kameez .choli span {
    color: crimson;

}

.shalwar-kameez p {
    font-family: Poppins;
    font-weight: 400;
    text-align: justify;
    line-height: 1.6;
    word-spacing: 1.5;
    padding: 5px 60px;

}

.shalwar-kameez img {
    width: 600px;
    transition: .3s;
    height: auto;
    margin-right: 4%;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;

}

.shalwar-kameez img:hover {
    transform: scale(1.05);

}

/* ----------------------------------------------cards section---------------------------------------------------------------------------- */
.culture-places {
    background-color: #FFFBE7;


}

article {
    --img-scale: 1.001;
    --title-color: #C29F13;
    --link-icon-translate: -20px;
    --link-icon-opacity: 0;
    position: relative;
    border-radius: 16px;
    box-shadow: none;
    background: #fff;
    transform-origin: center;
    transition: all 0.4s ease-in-out;
    overflow: hidden;

}

article a::after {
    position: absolute;
    inset-block: 0;
    inset-inline: 0;
    cursor: pointer;
    content: "";
}

/* basic article elements styling */
article h6 {
    text-align: center;
    margin: 0 0 20px 0;
    font-family: "Bebas Neue", cursive;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--title-color);
    transition: color 0.3s ease-out;
}

figure {
    margin: 0;
    padding: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    object-fit: cover;
}

article img {

    max-width: 100%;
    transform-origin: center;
    transform: scale(var(--img-scale));
    transition: transform 0.4s ease-in-out;
}

.article-body {
    padding: 30px;
}

.article-body p {
    color: #5C4A1E;
}

article {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #28666e;
}

article a:focus {
    outline: 1px dotted #28666e;
}

.main-heading-cul-pl h6 {
    text-transform: uppercase;
    color: #b4930e;
    text-align: center;
    font-size: 40px;
    margin-bottom: 5%;
    padding-top: 5%;
    font-weight: 600;
    font-family: Playfair Display;

}

.button-container {
    justify-content: center;

    width: fit-content;
    margin: auto;
    margin-top: 20px;
}

.cards-but {
    position: relative;
    top: 0px;
    background: #B7410E;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-family: Poppins;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    z-index: 900;
    outline: 1px solid transparent;
}

article:hover .cards-but {
    top: -3px;
    outline: 1px solid #b4930e;
    color: #b4930e;
    background: transparent;
    transform: translateY(-2px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}



/* using the has() relational pseudo selector to update our custom properties */
article:hover,
:focus {
    --img-scale: 1.1;

    --link-icon-translate: 0;
    --link-icon-opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}


/************************ 
  Generic layout (demo looks)
  **************************/

*,
*::before,
*::after {
    box-sizing: border-box;
}



.articles {
    padding-bottom: 5%;
    display: grid;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 24px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 36px;
}

@media screen and (max-width: 960px) {
    article {
        container: card/inline-size;
    }

    .article-body p {
        display: none;
    }
}

@container card (min-width: 380px) {
    .article-wrapper {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 16px;
    }

    .article-body {
        padding-left: 0;
    }

    figure {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    figure img {
        height: 100%;
        aspect-ratio: 1;
        object-fit: cover;
    }
}

.sr-only:not(:focus):not(:active) {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}


/* ---------------------------------------------end of visiting cards section---------------------------------------------------------------------------- */
/* ----------------------------------------------start of food cards section---------------------------------------------------------------------------- */


.food-section {
    background: #fff5f5;
    padding: 60px;
    text-align: center;
}

.food-heading {
    padding-bottom: 5%;
    font-family: "Playfair Display", serif;
    font-size: 38px;
    color: #b4930e;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.food-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.food-card {
    background: #fff0f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.food-card:hover {
    transform: translateY(-8px) rotate(-2deg);
    /* Slight tilt effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);

}

.food-card h3 {
    font-size: 22px;
    color: #8b0000;
    margin-bottom: 10px;
    font-family: Poppins;
}

.food-card p {
    font-size: 20px;
    color: #5a1a1a;
    line-height: 1.5;
    font-family: Merriweather;
}

.food-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: transform 0.4s ease-in-out;
}

.food-card:hover .food-image {
    transform: scale(1.08);
}

/* ------------------------------------------------end of food cards----------------------------------------------- */
/* ------------------------------------------------start of sports cards----------------------------------------------- */
.main-sport-contaniner {
    padding: 5%;
    background-color: #FFF9E5;
}

.main-sport-contaniner h5 {
    text-align: center;
    text-shadow: -1px 3px 6px rgba(0, 0, 0, 0.5);
    color: #b4930e;
    padding: 16px;
    font-weight: bold;
    margin: 3%;
    font-family: Merriweather;
    font-size: 40px;
    border-bottom: 3px solid transparent;
    transition-duration: 0.3s;
    padding-bottom: 2px;
}

.sport-content h2 {
    font-family: Poppins;
    font-size: 40px;
    padding-bottom: 5%;
}

.sport-content strong {
    font-family: Poppins;
}

.sport-section {

    background-color: #FFF3CD;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
    width: 70%;
}

.sport-section:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

}

.sport-image {
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.sport-section:hover .sport-image {
    transform: rotate(3deg);
}

.sport-content {
    flex: 1;
}

.sport-title {
    color: #F9A825;
    border-bottom: 2px solid #F9A825;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

.sport-content p {
    color: #4A4A4A;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    font-family: Poppins;
}

.sport-section:hover p {
    opacity: 1;
}

/* Subtle fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sport-section {
    animation: fadeIn 0.5s ease-out;
    animation-fill-mode: backwards;
}

.sport-section:nth-child(1) {
    animation-delay: 0.1s;
}

.sport-section:nth-child(2) {
    animation-delay: 0.2s;
}

.sport-section:nth-child(3) {
    animation-delay: 0.3s;
}

.sport-section:nth-child(4) {
    animation-delay: 0.4s;
}

.sport-section:nth-child(5) {
    animation-delay: 0.5s;
}







/* ------------------------------------------------end of sports cards----------------------------------------------- */
/* --------------------------------------------------festival section---------------------------------------------- */

.festival-section {
    text-align: center;
    padding: 40px;
    background-color: #FFF9E1;
}

.festival-title {
    font-family: Merriweather;
    font-size: 40px;
    margin-bottom: 40px;
    color: #1B4332;
    text-shadow: -1px 3px 6px rgba(0, 0, 0, 0.5);
}

.festival-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.festival-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #FFF0D9;
    padding: 20px;
    border-radius: 12px;

}

.festival-image,
.festival-item {
    transition-duration: 0.3s;
}

.festival-item:hover {
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    scale: 1.05;
}

.festival-heading {

    color: #FFA500;
    padding: 12px;
    font-weight: bold;
    border-radius: 8px;
    font-family: Poppins;
    justify-content: center;
    font-size: 30px;
    /* color: #2E8B57; */
    margin-bottom: 10px;
    border-bottom: 3px solid transparent;
    transition-duration: 0.3s;
    padding-bottom: 2px;
}


.festival-item:hover .festival-image {
    rotate: 1deg;
    transform: scale(1.03);
}

.festival-item.reverse:hover .festival-image {
    rotate: -1deg;

}

.festival-item.reverse {
    flex-direction: row-reverse;
}

.festival-image {
    width: 50%;
    border-radius: 10px;
    object-fit: cover;
}

.festival-info {
    width: 50%;
    text-align: left;
}

.festival-info p {
    text-align: left;
    font-size: 20px;
    color: #3A3A3A;
    font-family: Merriweather;
}



/* --------------------------------------------------end festival section---------------------------------------------- */




























/* ------------------------------------------------------------------------------footer-----------------------------------------------------------------------------*/
/* Footer Base */

footer {
    background-color: #333b41;
    ;
    padding: 40px 5%;
    color: #D3D3D3;
    font-family: Poppins, sans-serif;
}

/* Footer Main Container */
.main-fot-container {
    display: flex;
    justify-content: space-between;
    /* Equal spacing */
    align-items: flex-start;
    /* Align to the top */
    gap: 5vw;
    /* Adjusts spacing between sections */
    padding: 20px 5%;
    /* Adds some padding */
    flex-wrap: nowrap;
    margin-top: 5%;
    /* Prevents wrapping */
}


/* Logo Section */
.first-fot-container {
    width: 30%;
    margin-top: 10px;
}

.first-fot-container .logo {
    width: 25vh;
    height: auto;
}

.footer-text-one {
    text-align: justify;
    font-size: 20px;
    margin-top: 20px;


}

/* Contact Section */
.second-fot-container {
    width: 30%;
    text-align: left;
}

.second-fot-container h5 {
    font-family: Poppins;
    color: #006600;
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.second-fot-container h5:hover {
    border-bottom: 3px solid #006600;
    color: white;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.first-fot-container,
.second-fot-container,
.third-fot-container {
    width: 30%;
    /* Ensures equal width */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

}

.second-fot-container {
    text-align: center;
    display: inline;
    justify-content: center;
    margin-top: 4%;

}

.third-fot-container {
    margin-top: 10%;
}

/* Contact Icon Background */
.fot-icon {
    width: 50px;
    height: 50px;
    background-color: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

/* Icon Images */
.fot-icon img {
    width: 35px;
    height: 35px;
    transition: 0.3s ease;
    padding: 0;
}


.fot-icon:hover img {
    transform: scale(1.3);
}

/* Footer Navigation */
.third-fot-container {
    width: 20%;
    text-align: left;
    pointer-events: fill;
}

.third-fot-container ul {
    padding: 0;
}

.third-fot-container ul li {
    list-style: none;
    margin-bottom: 15px;
}

.third-fot-container ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #dca854;
    transition: 0.3s;
    font-size: 20px;
}

.third-fot-container ul li a:hover {
    color: #006600;
}

.third-fot-container a {
    position: relative;
    z-index: 10;
}

.LinkdIn {
    width: 100%;
    text-align: left;
    padding-top: 10px;
}

/* Footer Decorative Image */
.footer-decor {
    width: 600px;
    height: auto;

    margin-top: 50px;
    margin-right: -180px;
    margin-left: -600px;
    margin-bottom: -59px;
    position: relative;
    overflow: hidden;
}