/*
 Theme Name: Astra Child
 Template: astra
 Author: Your Name
 Description: Child theme for Astra
 Version: 1.0.0
*/
@font-face {
    font-family: 'ClashDisplay';
    src: url('/wp-content/themes/astra-child/css/fonts/ClashDisplay-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ClashDisplay';
    src: url('/wp-content/themes/astra-child/css/fonts/ClashDisplay-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ClashDisplay';
    src: url('/wp-content/themes/astra-child/css/fonts/ClashDisplay-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ClashDisplay';
    src: url('/wp-content/themes/astra-child/css/fonts/ClashDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'ClashDisplay';
    src: url('/wp-content/themes/astra-child/css/fonts/ClashDisplay-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Ranade';
    src: url('/wp-content/themes/astra-child/css/fonts/Ranade-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ranade';
    src: url('/wp-content/themes/astra-child/css/fonts/Ranade-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ranade';
    src: url('/wp-content/themes/astra-child/css/fonts/Ranade-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Ranade';
    src: url('/wp-content/themes/astra-child/css/fonts/Ranade-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


:root {
    --gold-color: #c5a059;
    --dark-green: #1C462F;
    --text-grey: #636363;
    --highlight-blue: #0088ff;
    --green-theme: #1C462F;
    --gold-accent: #c5a059;
    --grey-text: #6c757d;
    --gold-line: #e0c9a6;
    --dark-green-footer: #1a3b2e;
}

body {
    font-family: 'Ranade', sans-serif !important;
}

html {
    scroll-behavior: smooth;
}
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.fw-medium {
    font-weight: 500 !important;
}

section {
    min-height: 100vh;
    width: 100%;
    position: relative;
}
.snap-sec {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mission-vision-wrapper.snap-sec{
    min-height: 120vh;
}
.heading-font {
    font-family: 'ClashDisplay', sans-serif;
}

/* Menu Icon Style Start */
.menu-toggle {
    position: fixed;
    top: 30px;
    right: 40px !important;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    width: 30px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.line {
    height: 2px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.line-1 {
    width: 18px;
}

.line-2 {
    width: 28px;
    transform: translateX(-2px);
}

.line-3 {
    width: 18px;
}


.menu-toggle.active .line-1 {
    width: 28px;
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active .line-2 {
    opacity: 0;
    transform: translateX(10px);

}

.menu-toggle.active .line-3 {
    width: 28px;
    transform: rotate(-45deg) translate(5px, -6px);
}
.menu-overlay {
    position: fixed;
    top: 20px;
    right: 30px;
    width: 450px;

    max-height: 775px !important;   /* 👈 initial size control */
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 0.1px solid #f9f9f93b;
    border-radius: 30px;
    z-index: 1050;
    padding: 40px 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    visibility: hidden;
    opacity: 0;
    transform: translateX(100px) scale(0.9);

    transition: max-height 0.4s ease;
}

.menu-nav ul li:hover .menu-overlay {
    max-height: 750px !important;
}

.menu-overlay .menu-container {
    padding-top: 70px;
}

.overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    z-index: 1000;
    visibility: hidden;
    transition: 0.5s ease;
}

.overlay-bg.show {
    visibility: visible;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}


.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
    margin-bottom: 70px;
}

.menu-link {
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    font-weight: 300;
    opacity: 0;
    transform: translateX(30px);
}

.menu-footer {
    margin-top: 50px;
    text-align: right;
    color: #fff;
    opacity: 0;
}
.menu-footer p {
    font-size: 20px;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 20px !important;
}

.social-icons i {
    color: white;
    font-size: 24px;
}

.bi-youtube:hover::before {
    color: #E4B75E;
}

.bi-instagram:hover::before {
    color: #E4B75E;
}

.bi-pinterest:hover::before {
    color: #E4B75E;
}

.bi-facebook:hover::before {
    color: #E4B75E;
}

.bi-linkedin:hover::before {
    color: #E4B75E;
}

.bi-twitter-x:hover::before {
    color: #E4B75E;
}

.nav li:hover + .social-icons {
    margin-bottom: 50px !important;
}

.menu-toggle.scrolled {
    background: #1a3a2a !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    /*     background: url('/wp-content/uploads/2026/04/main-banner.webp') center/cover no-repeat; */
    animation: premiumZoom 15s infinite alternate ease-in-out;
    will-change: transform;
}

.hero-section {
    position: relative;
    height: 115vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    overflow: hidden;
    width: 100vw;
}


.hero-section video {
    position: absolute;
    top: 58%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover; /* ensures video covers the section */
    z-index: -1; /* behind content */
}
.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 170px;
    background: #fff;

    clip-path: polygon(0 45%, 50% 100%, 100% 45%, 100% 100%, 0 100%);
}
@keyframes premiumZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.3); }
}

/*menu icon style start*/
.nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Parent li relative */
.nav li {
    position: relative;
}

/* Top-level menu items */
.nav > li > a {
    color: #fff; /* white text */
    text-decoration: none;
    display: block;
    padding: 0.5rem 1rem;
}

/* Child dropdowns hidden by default */
/* dropdown base */
.nav li ul {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 999;
}

/* on hover expand */
.nav li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav li:hover > ul {
    position: absolute;   /* flow se bahar lao */
    top: 0;            /* parent ke neeche */
    left: -50px;              /* left align */
    text-align: left;
    max-height: 500px;
    display: block;
    list-style: none;
    z-index: 999;
}
.ast-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.nav li.menu-item-has-children > a {
    position: relative; /* important */
    padding-right: 20px; /* arrow ke liye space */
}

.nav li.menu-item-has-children > a::after {
    content: "\25C0" !important; /* ◀ arrow (left pointing) */
    position: absolute;
    left: 43%;        /* arrow distance from left edge */
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: 0;       /* hidden by default */
    transition: all 0.3s ease;
    color: #fff;
}

/* Hover par arrow show + slight move left */
.nav li.menu-item-has-children:hover > a::after {
    opacity: 1;
    transform: translateY(-50%) translateX(-3px); /* move slightly left */
}
.nav li {
    position: relative;
}
    /* Nested dropdowns (grandchild) */
.nav li ul li ul {
    top: 0;
    left: 100%;
}
.nav li:hover {
    margin: 0; /* ya jo bhi original margin tha wahi rahe */
    padding: 0; /* agar hover me change ho raha tha */
}
/* Child menu links */
.nav li ul li a {
    display: block;
    padding: 0.5rem 1rem;
    color: white; /* black text for child */
    text-decoration: none;
    font-size: 15px;
}

.nav li ul li {
    margin-right: 0; /* initial margin */
    transition: margin-right 0.3s ease; /* smooth transition */
}

.nav li ul li:hover {
    margin-right: 5px;
}
/* Disable hover background and color change */
.nav li a:hover {
    color: #E4B75E !important; /* keep same color */
    background: none; /* no yellow or any bg */
}

.nav-link:focus {
	color: #E4B75E !important;
}

/* Dropdown arrow for parent */
.nav li.menu-item-has-children > a::after {
    content: "\25BC"; /* down arrow */
    float: right;
    margin-left: 0.5rem;
    color: #fff; /* same as parent text */
}

/* Nested dropdown arrow (right) */
.nav li ul li.menu-item-has-children > a::after {
    content: "\25B6"; /* right arrow */
    float: right;
    margin-left: 0;
    color: #000; /* same as child text */
}
.nav li.menu-item-has-children > a::after {
	content:"" ;
}

.header-nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 30px 50px;
    z-index: 10;
}

.hero-content h1 {
    font-weight: 600;
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0;
    color:#fff;
}

.word-mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding: 5px 0; }
.word {
    display: inline-block;
    width: 99%;
    opacity: 0;
    transform: translateY(110%);
    transition: transform 1.2s cubic-bezier(0.2,1,0.3,1), opacity 1.2s ease-out;
}
.word.show { opacity: 1; transform: translateY(0); }

.hero-desc, .contact-btn, .discover-link { opacity: 0; }

.hero-desc {
    display: inline-block;
    white-space: pre-wrap;
    padding: 0px 145px;

}
.hero-desc span {
    opacity: 0;
    display: inline-block;
    transform: translateY(20px);
    transition: all 0.2s ease-out;
    font-size: 20px;
}
.hero-desc.show span {
    opacity: 1;
    transform: translateY(0);
    font-size: 23px !important;
}

.contact-btn {
    display: inline-block;
    transition: all 0.6s ease-out;
}
.contact-btn.show, .discover-link.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.scroll-down-btn {
    animation: bounce 1s infinite alternate;
}
@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(15px); }
}
.discover-link {
    position: absolute;
    bottom: 3% !important;
    text-align: center;
    color: white;
    text-decoration: none;
    z-index: 5;
}

.discover-link p {
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
}

.scroll-down-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.bottom-shape {
    position: absolute;
    bottom: -7%;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 2;
}
/* Hero Section Styles End */

/* About Us Section Styles Start */
.content-section {
    background-color: white;
    padding: 60px 0;
    color: var(--dark-green);
    overflow-x: hidden;
}

.sub-title {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.main-title {
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: #1C462F !important;
}

.about-left, .about-right {
    opacity: 0;
}

.about-right {
    transform: translateX(50px);
}

.description-text {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-custom {
    background: var(--dark-green);
    color: white;
    padding: 20px 20px 20px 5px;
    display: inline-block;
    transition: all 0.6s ease;
}

.stats-container {
    margin-top: 100px !important;
}

.stat-item {
    padding: 20px 40px;
    border-right: 1px solid #e0e0e0;
    text-align: center;
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-weight: 500;
    font-size: 2.6rem;
    margin-bottom: 15px;
    display: block;
}

.stat-desc {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.4;
    max-width: 200px;
    margin: 0 auto;
}
/* About Us Section Styles End */

/*  Mission & Vision Section Styles start */
.image-bg-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    /*background: url('/wp-content/uploads/2026/04/mission-vission-bg.webp') center center / cover no-repeat;*/
    /* background-attachment: fixed;*/
    background-color: #1a3a2a !important;
}
.logo-overlay {
    position: absolute;
    top: 20%;
    left: 55% !important;
    transform: translateX(-50%);
    z-index: 10;
}
.logo-overlay-2 {
    position: absolute;
    top: 20%;
    right: 47%;
    transform: translateX(-50%);
    z-index: 10;
}

.circular-logo-green {
    background-color: #1a3a2a;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-out;
    perspective: 1000px;
    box-shadow: 0px 7px 15px 5px #0c1b1338;
}
.circular-logo-green-2 {
    background-color: #1a3a2a;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-out;
    perspective: 1000px;
    box-shadow: 0px 7px 15px 5px #0c1b1338;
}
.circular-logo-green-2 img {
    margin-bottom: 14px;
}
.circular-logo-green img {
    width: 150px;
    height: 150px;
    pointer-events: none;
    user-select: none;
    transform-style: preserve-3d;
}


.cards-overlap-section {
    background: white;
    padding-bottom: 100px;
}

.cards-overlap-section .container {
    margin-top: -180px;
}

.mission-vision-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(80px);
}



.mission-vision-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.card-title-text {
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a3a2a;
}
.card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #636363 !important;
    height: 160px;
}
/*  Mission & Vision Section Styles End */
body .text-mute-color {
    color: #636363 !important;
}

button:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}



.projects-section {
    background-color: var(--dark-green);
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

.ls-2 {
    /* letter-spacing: 3px; */
    font-size: 1.5rem;
    font-family: 'Ranade';
}

.swiper-slide {
    transform: translateY(80px);
     transition: all 0.5s ease;
    opacity: 0.5;

}

.swiper-slide-active {
    transform: translateY(0);
    opacity: 1;
}

.projectSwiper {
    overflow: visible !important;
    padding-top: 30px !important;
    padding-bottom: 120px !important;
}


.projectSwiper .swiper-slide {
    transform: translateY(100px) scale(0.95);
    opacity: 0.5;
    transition: all 0.6s ease;
}

.projectSwiper .swiper-slide-active + .swiper-slide {
    transform: translateY(0) scale(1);
    opacity: 1;
    z-index: 5;
}

.projectSwiper .swiper-slide-active {
    transform: translateY(120px) scale(0.95);
    opacity: 0.6;
}
.projectSwiper .swiper-slide-active + .swiper-slide + .swiper-slide {
    transform: translateY(120px) scale(0.95);
    opacity: 0.6;
}

.projectSwiper .swiper-slide-prev,
.projectSwiper .swiper-slide-next {
    transform: translateY(100px) scale(0.95);
    opacity: 0.7;
}

.project-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 520px;
    border: 4px solid transparent;
    transition: border 0.4s ease;
}


.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}
.projectSwiper .swiper-slide-active + .swiper-slide .project-details {
    opacity: 1;
    transform: translateY(0);
}


.logo-box {
    background: var(--dark-green);
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    gap: 10px;
}

.project-title {
    font-weight: 500;
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.view-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
}

.view-link:hover {
    border-bottom: 1px solid #fff;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1C462F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
    transition: 0.3s;
}

.swiper-button-prev-custom {
    left: 15%;
}

.swiper-button-next-custom {
    right: 15%;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--gold-color);
}

.text-green-theme {
    color: var(--green-theme);
}


.project-badge {
    background-color: var(--green-theme);
    color: white;
    display: inline-block;
    padding: 5px 18px;
    border-radius: 8px;
}

.project-list {
    position: relative;
    /* padding-top: 50px; */
}

.project-row {
    position: sticky;
    top: 100px;
    background: white;
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 50px;
    /* box-shadow: 0 -10px 30px rgba(0,0,0,0.05);  */
    min-height: 500px;
    display: flex;
    align-items: center;
}

.project-row:nth-child(1) { z-index: 1; }
.project-row:nth-child(2) { z-index: 2; }
.project-row:nth-child(3) { z-index: 3; }
.project-row:nth-child(4) { z-index: 4; }
.project-row:nth-child(5) { z-index: 5; }
.project-row:nth-child(6) { z-index: 6; }
.project-row:nth-child(7) { z-index: 7; }
.project-row:nth-child(8) { z-index: 8; }
.project-row:nth-child(9) { z-index: 9; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-text-fill-color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    caret-color: white;
    transition: background-color 5000s ease-in-out 0s;
}
/* Autofill fix (Chrome, Edge, etc.) */
.elementor-field-group input:-webkit-autofill,
.elementor-field-group input:-webkit-autofill:hover,
.elementor-field-group input:-webkit-autofill:focus,
.elementor-field-group textarea:-webkit-autofill,
.elementor-field-group select:-webkit-autofill {
    -webkit-text-fill-color: #636363 !important;
    background-color: #fff !important;
    border: none !important;
    border-bottom: 1px solid #D6D6D6 !important;
    outline: none !important;
}

.project-form form input:-webkit-autofill,
.project-form form input:-webkit-autofill:hover,
.project-form form input:-webkit-autofill:focus,
.project-form form textarea:-webkit-autofill,
.project-form form select:-webkit-autofill {
    -webkit-text-fill-color: white !important;
    -webkit-box-shadow: none !important;
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #FFFFFF78 !important;
    outline: none !important;
}



input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
}

.project-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-img-wrapper {
    overflow: hidden;
    border-radius: 1.5rem;
}


.project-row:hover .project-img-wrapper img {
    transform: scale(1.05);
}

.view-project-link {
    text-decoration: none;
    color: var(--green-theme);
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.view-project-link:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.hover-animate {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

.hover-animate .project-img {
    transition: transform 0.5s ease;
}

.hover-animate .project-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.hover-animate:hover {
    /* transform: scale(1.05) rotateZ(1deg); */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hover-animate:hover .project-img {
    transform: scale(1.1);
}

.hover-animate:hover .project-details {
    opacity: 1;
    transform: translateY(0);
}

.hover-animate .logo-box,
.hover-animate .project-title,
.hover-animate .view-link {
    transition: all 0.5s ease;
}

.hover-animate:hover .logo-box {
    transform: translateY(-5px);
}

.hover-animate:hover .project-title {
    transform: translateY(-5px);
}

.hover-animate:hover .view-link {
    transform: translateY(-5px);
    color: var(--gold-accent);
}

.circular-emblem {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;

    box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 30px;
}

.inner-static-logo {
    position: absolute;
    z-index: 2;
    width: 65px;
    height: 65px;
}

.inner-static-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rotating-text-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.emblem-text {
    fill: #1a3a2a;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
}

/* Why Choose Us Section Style Start  */
.feature-row {
    min-height: 500px;
    position: relative;
}

.feature-col {
    padding: 0 45px !important;
    border-left: 1px solid var(--gold-line);
    position: relative;
}

.feature-col:last-child {
    border-right: 1px solid var(--gold-line);
}

.feature-icon i {
    color: var(--green-theme);
}

.feature-content h4 {
    line-height: 1.3;
    font-size: 1.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    line-height: 1.6;
}
.text-green-theme {
    color: var(--green-theme);
}

/* --- Why Choose Us Section Animation --- */
.feature-col {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.feature-col.show {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    display: inline-block;
    transition: transform 0.6s ease;
}

.feature-col.show .feature-icon {
    transform: scale(1.1);
}

/* Why Choose Us Section Style End  */


/* World-Class Section Style Start */
.amenities-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mainAmenitySwiper {
    width: 100%;
    height: 100%;
}

.mainAmenitySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 15s ease;
}

.thumbs-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
    width: auto;
    max-width: 90%;
}

.thumbAmenitySwiper {
    width: 450px;
    padding: 5px;
}

.thumbAmenitySwiper .swiper-slide {
    width: 80px;
    height: 50px;
    opacity: 0.6;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: 0.3s;
}

.thumbAmenitySwiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: white;
    transform: scale(1.1);
}

.thumbAmenitySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-btn-prev,
.swiper-btn-next {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
    background: rgba(255, 255, 255, 0.5);
}
.mainAmenitySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 15s ease;
}

.mainAmenitySwiper .swiper-slide-active img {
    transform: scale(1.1);
}
.mainAmenitySwiper .swiper-slide {
    transition: opacity 1s ease;
    opacity: 0.6;
}
.mainAmenitySwiper .swiper-slide-active {
    opacity: 1;
}

/* World-Class Section Style End */

/* What Can We Offer Section Styles Start  */
.offer-section h4 {
    color: var(--dark-green);
    font-size: 1.5rem;
}
.offer-icon i {
    font-size: 3rem;
    color: var(--dark-green);
    display: inline-block;
}

.border-bottom-gold {
    border-bottom: 1px solid var(--gold-line);
}

.border-end-gold {
    border-right: 1px solid var(--gold-line);
}

.grid-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    cursor: pointer;
}

.grid-item .offer-icon,
.grid-item h4,
.grid-item p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.grid-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.grid-item:hover .offer-icon {
    transform: scale(1.2);
}

.grid-item:hover h4 {
    transform: translateY(-5px);
    color: var(--gold-accent);
}

.grid-item:hover p {
    transform: translateY(-5px);
}

.grid-item.in-view .offer-icon,
.grid-item.in-view h4,
.grid-item.in-view p {
    opacity: 1;
    transform: translateY(0);
}
/* What Can We Offer Section Styles End  */
.project-dropdown {
    background-color: white; /* Dropdown ka background white */
    color: black; /* Text black */
    appearance: none; /* Default arrow remove karne ke liye */
}

/* Agar arrow bhi chahiye */
.project-dropdown::-ms-expand {
    display: none;
}

/* Ensure dropdown opens below */
.project-dropdown option {
    background-color: white;
    color: black;
}


     /* 🔥 Arrows always visible */
 .lb-nav a.lb-prev,
 .lb-nav a.lb-next {
     opacity: 1 !important;
 }

/* Optional: thora prominent arrows */
.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    filter: brightness(0) invert(1);
}

.lb-nav a.lb-prev {
    margin-left: -60px !important;
}

.lb-nav a.lb-next {
    margin-right: -60px !important;
}


/* Bottom data hide (optional clean look) */
.lb-dataContainer {
    display: none;
}

.select2-container--default .select2-selection--single {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    height: 45px !important;
    border-radius: 6px !important;
    padding: 8px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 9px !important;
}

.select2-selection__rendered {
    color: white !important;
    font-size: 16px !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute !important;
    right: 0 !important;
    top: -10px !important;
    font-size: 24px !important;

}

.select2-selection__placeholder {
    color: #ffffff9e !important;
}

.footer-section {
    background-image: url('/wp-content/uploads/2026/04/footer-bg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    padding-top: 130px;
}

.custom-input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 16px !important;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.58) !important;
    font-size: 16px !important;
}

.custom-input option {
    color: #2c3136 !important;
}

.gold-line {
    border-color: var(--gold-accent) !important;
    opacity: 0.5;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: var(--gold-accent);
}

.footer-nav .divider {
    color: rgba(255, 255, 255, 0.3);
}

.scroll-top-btn {
    position: absolute;
    right: 50px;
    bottom: 120px;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

.from-list ul li {
    margin-top: 20px !important;
}



.talk-form{
    backdrop-filter: blur(2px) !important;
}

.magnifine-image {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.magnifine-image img {
    width: 100%;
    display: block;
}

.magnifier-glass {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    pointer-events: none;
    background-repeat: no-repeat;
    display: none;
}
.elementor-field {
    padding-left: 0px !important;
}
.from-list .elementor-inline-items .elementor-icon-list-item.elementor-inline-item {
    transition: transform 0.3s ease;
}

.from-list .elementor-inline-items .elementor-icon-list-item.elementor-inline-item:hover {
    transform: scale(1.1);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.menu-toggle.scrolled:hover {
    background: #1a3a2a !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.menu-toggle:focus.footer-section {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.elementor-687 .elementor-element.elementor-element-ac0ab14 .elementor-button {
    margin-top: 30px !important;
}
.elementor-658 .elementor-element.elementor-element-ec5feeb .elementor-button {
    margin-top: 30px !important;
}
.elementor-634 .elementor-element.elementor-element-fdb5901 .elementor-button {
    margin-top: 30px !important;
}
.elementor-591 .elementor-element.elementor-element-38b6113 .elementor-button {
    margin-top: 30px !important;
}
.elementor-145 .elementor-element.elementor-element-6115628 .elementor-button {
    margin-top: 30px !important;
}
.elementor-29 .elementor-element.elementor-element-fb45e5e .elementor-button{
    margin-top: 30px !important;
}
.place-details-compact-container {
    margin-top: 30px !important;
}
.ios-water-btn:hover {
    border: none;
}
.ios-water-btn:focus-visible {
    outline: none;
}
.display-two {
    display: none;
}
.ios-water-btn:hover .display-one {
    display: none !important;
}
.ios-water-btn:hover .display-two {
    display: block !important;
}
.display-one,
.display-two {
    transition: all 0.3s ease;
}
.custom-tabs {
    gap: 15px;
}
.custom-tabs {
    border: none;
    gap: 15px;
}

.custom-tabs .nav-link {
    border: 1.5px solid #1C462F;
    background-color: #f5f5f5;
    color: #1C462F;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover */
.custom-tabs .nav-link:hover {
    background-color: #1C462F;
    color: #fff;
}

/* Active */
.custom-tabs .nav-link.active {
    background-color: #1C462F !important;
    color: #fff !important;
    border-color: #1C462F !important;
}
.entry-content ul {
    padding-left: 0px !important;
}
.whatsapp {
    position: fixed;
    right: 40px;
    bottom: 50px;
    z-index: 999;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .5s ease-in-out;
}

.ios-water-btn:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: none !important;
}

.ios-water-btn:active {
    border: none !important;
}

.ios-water-btn:hover {
    border: none !important;
}
.ios-water-btn {
    border: none !important;
}
@media (max-width: 768px) {
    .border-end-gold {
        border-right: none;
    }
    .elementor-145 .elementor-element.elementor-element-a7e0936 .elementor-icon-list-items.elementor-inline-items .elementor-icon-list-item:not(:last-child):after {
        display: none !important;
    }
    .nav li.menu-item-has-children > a::after {
        margin-left: -0.5rem !important;
    }
    .nav li ul li a {
        font-size: 11px !important;
    }
    .nav li:hover > ul {
        top: 7px !important;
    }
    .grid-item:not(:last-child) {
        border-bottom: 1px solid var(--gold-line);
    }
    .logo-overlay-2 {
        right: 38% !important;
    }
    .logo-overlay {
        left: 65% !important;
    }

    .offer-section h2 {
        font-size: 2rem;
    }
    .amenities-wrapper {
        height: 400px;
    }

    .menu-toggle {
        right: 20px !important;
        top: 20px !important;
    }
    .menu-overlay {
        top: 10px !important;
        right: 10px !important;
        width: 390px !important;
    }

    .thumbAmenitySwiper {
        width: 250px;
    }
    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        display: none;
    }

    .display-4 {
        font-size: 2.2rem;
    }

    .feature-row {
        min-height: auto;
    }

    .feature-col {
        border-left: none;
        border-bottom: 1px solid var(--gold-line);
        padding: 40px 20px;
        justify-content: start !important;
    }
    .hero-desc {
        padding: 0px 10px !important;
    }

    .feature-col:last-child {
        border-right: none;
        border-bottom: none;
    }
    .image-bg-section {
        height: 300px;
    }

    .cards-overlap-section .container {
        margin-top: -100px;
    }

    .card-title-text {
        font-size: 2rem;
    }

    .border-img-div-1 img {
        margin-top: 20px !important;
    }

    .border-img-div img {
        margin-top: 40px !important;
    }
    .hero-content h1 {
        margin-top: 100px !important;
    }

}

@media (max-width: 992px) {
    .stat-item {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 40px 0;
    }

    .hero-desc {
        padding: 0px 60px !important;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .content-section {
        padding: 80px 20px;
    }
    .footer-section {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
        padding-top: 50px;
    }

    .scroll-top-btn {
        right: 20px;
        bottom: 80px;
    }
}
@media (min-width: 1024px) and (max-width: 1366px) {
    .hero-section {
        height: 730px !important;
    }
    .hero-bg {
        height: 630px !important;
    }
    .bottom-shape {
        bottom: -14% !important;
    }
}