/* =========================
        NAVBAR
========================= */
.inam-navbar-wrapper *,
.inam-navbar-wrapper *::before,
.inam-navbar-wrapper *::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
    /* font-family:'Poppins', sans-serif; */
}
.inam-navbar-wrapper,
.inam-navbar-wrapper a,
.inam-navbar-wrapper span,
.inam-navbar-wrapper p,
.inam-navbar-wrapper li,
.inam-navbar-wrapper ul,
.inam-navbar-wrapper div,
.inam-navbar-wrapper button,
.inam-navbar-wrapper input{
    font-family:'Poppins', sans-serif;
}

.inam-navbar-wrapper{
    background:#fff;
}

.inam-header{
    width:100%;
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    border-bottom:1px solid #eee;
}
/* .fa-solid,
.fa-regular,
.fa-brands,
.fa,
.fas,
.far,
.fab{
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
} */
.navbar{
    max-width:1400px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 50px;
}

/* =========================
        LOGO
========================= */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:200px;
    display:block;
}

/* =========================
        NAV LINKS
========================= */
.nav-links{
    display:flex;
    align-items:center;
    gap:36px;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links a{

    text-decoration:none;
    color:#111;
    font-size:15px;
    font-weight:5500;
    transition:.3s;
}

.nav-links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0%;
    height: 2px;              /* Thickness of the bar */
    background: #007A29;      /* Green color */

    transition: width 0.35s ease;
}

.nav-links a:hover{
    color: #007A29;
}

.nav-links a:hover::after{
    width: 100%;
}

/* Active Link */

.nav-links a.active{
    color:#007A29;
}

.nav-links a.active::after{
    width:100%;
}

/* =========================
        DROPDOWN
========================= */

.dropdown > a{
    display:flex;
    align-items:center;
    gap:7px;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:220px;

    background:#fff;

    border-radius:10px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);

    list-style:none;

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:.35s ease;

    z-index:999;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:block;

    padding:14px 20px;

    color:#333;

    font-size:15px;
    font-weight:500;

    transition:.3s;
}

.dropdown-menu li a:hover{
    background:#f5f5f5;
    color:#007A29;
    padding-left:28px;
}

/* =========================
        RIGHT SECTION
========================= */

.nav-right{
    display:flex;
    align-items:center;
    gap:22px;
}

/* Language Button */

.language{
    width:40px;
    height:40px;

    border:2px solid #111;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#111;
    font-size:18px;

    transition:.3s;
}

.language:hover{
    border-color:#007A29;
    color:#007A29;
}

/* Quote Button */

.quote-btn{
    background:#007A29;
    color:#fff;

    text-decoration:none;

    padding:12px 24px;

    border-radius:8px;

    display:flex;
    align-items:center;
    gap:10px;

    font-size:15px;
    font-weight:600;

    transition:.3s;
}

.quote-btn:hover{
    background:#006320;
    transform:translateY(-2px);
}

/* =========================
        MOBILE MENU BUTTON
========================= */

.menu-btn{
    display:none;

    font-size:28px;

    color:#111;

    cursor:pointer;

    transition:.3s;
}

.menu-btn:hover{
    color:#007A29;
}

/* =========================
        RESPONSIVE
========================= */

@media (max-width: 1130px){

    .navbar{
        padding:15px 20px;
        position:relative;
    }

    .logo img{
        width:150px;
    }

    .menu-btn{
        display:block;
        z-index:1001;
    }

    .quote-btn,
    .language{
        display:none;
    }

    .nav-links{

        position:absolute;

        top:100%;
        left:-100%;

        width:100%;

        background:#fff;

        flex-direction:column;
        align-items:flex-start;

        gap:0;

        box-shadow:0 15px 30px rgba(0,0,0,.12);

        transition:left .35s ease;

        z-index:1000;
    }

    .nav-links.active{
        left:0;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links li a{

        display:flex;
        align-items:center;
        justify-content:space-between;

        width:100%;

        padding:18px 25px;

        border-bottom:1px solid #eee;
    }

    /* Remove underline animation on mobile */

    .nav-links a::after{
        display:none;
    }

    /* Mobile Dropdown */

    .dropdown-menu{

        position:static;

        width:100%;

        min-width:100%;

        box-shadow:none;

        border-radius:0;

        transform:none;

        opacity:1;

        visibility:visible;

        display:none;

        background:#fafafa;
    }

    .dropdown.open .dropdown-menu{
        display:block;
    }

    .dropdown-menu li a{

        padding:15px 45px;

        border-bottom:1px solid #eee;

        font-size:14px;
    }

}

/* =========================
        SMALL PHONES
========================= */

@media (max-width:576px){

    .navbar{
        padding:12px 15px;
    }

    .logo img{
        width:125px;
    }

    .menu-btn{
        font-size:24px;
    }

    .nav-links li a{
        padding:16px 18px;
        font-size:14px;
    }

}

/* =========================
      LANGUAGE DROPDOWN
========================= */

.language-dropdown{
    position:relative;
}

.lang-menu{
    position:absolute;
    top:55px;
    right:0;

    width:260px;              /* reduced */

    background:#fff;
    border-radius:12px;

    box-shadow:0 8px 25px rgba(0,0,0,.15);

    overflow:hidden;

    display:none;
    z-index:9999;
}

.lang-menu.show{
    display:block;
}

.lang-header{
    padding:14px 16px;
    font-size:16px;
    font-weight:600;
    border-bottom:1px solid #eee;
}

.lang-search{
    padding:10px 14px;
    border-bottom:1px solid #eee;
}

.lang-search input{
    width:100%;
    padding:10px 12px;
    font-size:14px;

    border:1px solid #ddd;
    border-radius:8px;
    outline:none;
}

#langList{
    list-style:none;
    margin:0;
    padding:0;

    max-height:280px;     /* smaller */

    overflow-y:auto;
}

#langList li{
    padding:10px 16px;
    font-size:14px;
    cursor:pointer;
    transition:.25s;
}

#langList li:hover{
    background:#f4f4f4;
}

#langList li.active{
    background:#007A29;
    color:#fff;
}

/* Hide Google widget */
/*footer*/
/*============================
        FOOTER
=============================*/

    .footer{
background:
linear-gradient(
rgba(184, 199, 188, 0),
rgba(163, 167, 164, 0.31)
),
url(../images/bg/footer-bg.webp);

background-size:cover;
background-position:center;



color:#fff;
font-family:'Poppins',sans-serif;

}

/*============================
    TOP SECTION
=============================*/

.footer-top{
    background:#77B78D6E;
    padding:28px 8%;
}

.footer-top-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.footer-heading h2{
    font-size:30px;
    font-weight:600;
    line-height:1.2;
    max-width:650px;
    font-family:'DM Serif Display', serif;
}
.footer-whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#25D366;
    color:#fff;
    padding:16px 32px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    font-size:1rem;
    transition:.35s ease;
    white-space:nowrap;
    box-shadow:0 12px 28px rgba(0,0,0,.18);
}

.footer-whatsapp-btn i{
    font-size:1.35rem;
}

.footer-whatsapp-btn:hover{
    background:#1ebe5d;
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,0,0,.25);
}

/*============================
      NEWSLETTER
=============================*/

.footer-newsletter-form{
    display:flex;
    align-items:center;
    width:500px;
    max-width:100%;
    border:1px solid rgba(255,255,255,.25);
    border-radius:60px;
    overflow:hidden;
    background:rgba(255,255,255,.08);
}

.footer-newsletter-form input{
    flex:1;
    border:none;
    background:transparent;
    padding:18px 24px;
    color:#fff;
    font-size:15px;
    outline:none;
}

.footer-newsletter-form input::placeholder{
    color:#d8d8d8;
}

.footer-newsletter-form button{
    border:none;
    background:#2E7D32;
    color:#fff;
    padding:18px 35px;
    cursor:pointer;
    font-weight:600;
    transition:.35s;
}

.footer-newsletter-form button:hover{
    background:#1B5E20;
}

/*============================
     MAIN FOOTER
=============================*/

.footer-main{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    padding:35px 8% 25px;
    gap:30px;
}

.footer-logo{
    width:270px;
    margin-bottom:18px;
}

.footer-about p{
    color:#d7d7d7;
    line-height:1.7;
    font-size:14px;
    margin-bottom:20px;
}

/*============================
    SOCIAL ICONS
=============================*/

.footer-social-links{
    display:flex;
    gap:15px;
}

.footer-social-links a{
    border-radius:50%;
    background:#214E34;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
    font-size:16px;
    width:38px;
    height:38px;
    text-decoration:none;
    color:#fff;
}

.footer-social-links a:hover{
    background:#2E7D32;
    transform:translateY(-4px);
}

/*============================
    COLUMNS
=============================*/

.footer-column h3{
    margin-bottom:18px;
    font-size:20px;
    font-weight:600;
    font-family:'DM Serif Display', serif;
    letter-spacing:2px;
}

.footer-column ul li{
    margin-bottom:10px;
    list-style:none;
}

.footer-column ul li a{
    color:#d8d8d8;
    transition:.3s;
    text-decoration:none;
}

.footer-column ul li a:hover{
    color:#81C784;
    padding-left:5px;
}

/*============================
      CONTACT
=============================*/

.footer-contact-info li{
    display:flex;
    gap:15px;
    align-items:flex-start;
    margin-bottom:14px;
    color:#d8d8d8;
    line-height:1.5;
}

.footer-contact-info i{
    color:#81C784;
    font-size:18px;
    margin-top:4px;
}

.footer-quote-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:15px;
    background:#2E7D32;
    color:#fff;
    padding:12px 22px;
    font-size:14px;
    border-radius:10px;
    font-weight:600;
    transition:.35s;
    text-decoration:none;
}

.footer-quote-btn:hover{
    background:#1B5E20;
}

/*============================
      BOTTOM
=============================*/

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
        padding:12px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom p{
    color:#d7d7d7;
    font-size:14px;
}

.footer-bottom-links{
    display:flex;
    gap:30px;
}

.footer-bottom-links a{
    color:#d7d7d7;
    transition:.3s;
    text-decoration:none;
}

.footer-bottom-links a:hover{
    color:#81C784;
}

/*============================
      RESPONSIVE
=============================*/

@media(max-width:1200px){

.footer-main{
grid-template-columns:repeat(2,1fr);
gap:50px;
}

.footer-top-content{
flex-direction:column;
align-items:flex-start;
}

.footer-newsletter-form{
width:100%;
}

}

@media(max-width:768px){

.footer-top{
padding:50px 25px;
}

.footer-heading h2{
font-size:34px;
text-align:center;
}

.footer-top-content{
align-items:center;
text-align:center;
}

.footer-newsletter-form{
flex-direction:column;
border:none;
background:none;
gap:15px;
}

.footer-newsletter-form input{
/* width:100%; */
/* width:220px; */
width:350px;
border:1px solid rgba(255,255,255,.2);
border-radius:50px;
padding:16px 20px;
}
 .footer-whatsapp-btn{
        width:65%;
        justify-content:center;
    }

.footer-newsletter-form button{
/* width:100%; */
/* width:200px; */
width:300px;
border-radius:50px;
}

.footer-main{
grid-template-columns:1fr;
padding:60px 25px;
text-align:center;
}

.footer-logo{
margin:auto auto 25px;
}

.footer-social-links{
justify-content:center;
}

/* .footer-contact-info li{
justify-content:center;
text-align:left;
} */
.footer-contact-info {
    padding-left: 0;
    width: fit-content;
    margin: 0 auto;
}

.footer-contact-info li {
    display: flex;
    justify-content: flex-start;
    text-align: left;
}
.footer-quote-btn{
margin:auto;
}

.footer-bottom{
flex-direction:column;
text-align:center;
}

.footer-bottom-links{
justify-content:center;
flex-wrap:wrap;
}

}

@media(max-width:480px){

.footer-heading h2{
font-size:28px;
}

.footer-column h3{
font-size:22px;
}

.footer-logo{
width:180px;
}

.footer-social-links a{
width:42px;
height:42px;
}
.footer-newsletter-form input{
width:200px;
padding:16px;
}
.footer-newsletter-form button{
padding:16px;
width:200px;
}

}

.inam-navbar-wrapper{
    position:sticky;
    top:0;
    z-index:99999;
    background:#fff;
}

.inam-header{
    width:100%;
}

.navbar{
    max-width:1400px;
    margin:auto;
}
.mobile-actions{
    display:flex;
    align-items:center;
    gap:15px;
}

.language{
    display:flex;
    width:40px;
    height:40px;
    border:2px solid #111;
    border-radius:50%;
    align-items:center;
    justify-content:center;
}
.nav-right{
    display:flex;
    align-items:center;
    gap:22px;
}

/*==========================================
        LANGUAGE DROPDOWN - MOBILE
==========================================*/
@media (max-width:992px){

    .language-dropdown{
        position:relative;
    }

    .lang-menu{

        position:fixed;

        top:70px;
        right:15px;
        left:15px;

        width:auto;
        max-width:calc(100vw - 30px);

        max-height:70vh;
        overflow-y:auto;

        border-radius:14px;

        z-index:99999;

        box-shadow:0 12px 35px rgba(0,0,0,.18);
    }

    .lang-header{
        padding:14px 16px;
        font-size:15px;
    }

    .lang-search{
        padding:12px 16px;
    }

    .lang-search input{
        width:100%;
        font-size:15px;
        padding:12px 14px;
    }

    #langList{
        max-height:45vh;
        overflow-y:auto;
    }

    #langList li{
        padding:14px 16px;
        font-size:15px;
    }

}


/* Hide Google Translate Top Bar */
.goog-te-banner-frame.skiptranslate{
    display:none !important;
}

body{
    top:0 !important;
}

/* Hide the extra iframe */
iframe.goog-te-banner-frame{
    display:none !important;
}

/* Hide Google Translate tooltip */
.goog-tooltip,
.goog-tooltip:hover{
    display:none !important;
}

.goog-text-highlight{
    background:none !important;
    box-shadow:none !important;
}
body{
    top:0 !important;
}

html{
    top:0 !important;
}

.goog-te-banner-frame.skiptranslate{
    display:none !important;
}

body > .skiptranslate{
    display:none !important;
}

iframe.goog-te-banner-frame{
    display:none !important;
}

.goog-logo-link,
.goog-te-gadget span{
    display:none !important;
}
.inam-navbar-wrapper{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:99999;

    background:#fff;

}
body{

    padding-top:75px;
    position: relative;
    min-height: 100%;
    top: -20px !important;

}
.footer-column ul {
    padding-left: 2px;
}
