/* ===================================
   Custom Fonts
   =================================== */
@font-face {
    font-family: 'Blushing-Rose';
    src: url('../fonts/blushing-rose.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden !important;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden !important;
    font-family: 'Raleway';
    font-size: 15px;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Raleway';
}

.container {
    width: 1280px;
    max-width: 97%;
    margin: 0 auto;
}

.heading h1 {
    font-family: 'Blushing-Rose';
    text-align: center;
    font-size: 38px;
    font-weight: 300;
}

.greenH {
    color: #58763c;
}

.marginTopBottom {
    padding-top: 70px;
    padding-bottom: 70px;
}


.mHide {
    display: block !important;
}

.dHide {
    display: none !important;
}

/* ===================================
   Header Styles
   =================================== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, #00000000, #000000);
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
    padding: 15px 0;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

    .header.active {
        position: fixed;
    }

.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: color 0.3s ease;
}

    .phone-icon:hover {
        color: #a3b51d;
    }

.hamburger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

    .hamburger-menu span {
        width: 25px;
        height: 2px;
        background: #fff;
        transition: all 0.3s ease;
    }

    .hamburger-menu:hover span {
        background: #f6ca0e;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

body.menu-open {
    overflow: hidden;
}

/* ===================================
   Navigation Menu Overlay
   =================================== */

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 85%;
    height: 100vh;
    background: #000;
    z-index: 999;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    padding-top: 150px;
}

    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: -1;
    }

    .nav-menu.active {
        right: 0;
    }

        .nav-menu.active::before {
            opacity: 1;
            visibility: visible;
        }

.nav-container {
    text-align: center;
    width: 100%;
    padding: 20px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .nav-list li {
        margin: 20px 0;
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

.nav-menu.active .nav-list li {
    opacity: 1;
    transform: translateX(0);
}

    .nav-menu.active .nav-list li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-list li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active .nav-list li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-list li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.active .nav-list li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-menu.active .nav-list li:nth-child(6) {
        transition-delay: 0.35s;
    }

.nav-link {
    font-family: 'Raleway';
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 100;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 2px;
        background: #c6c1c1;
        transition: width 0.3s ease, left 0.3s ease;
    }

    .nav-link:hover {
        color: #c6c1c1;
    }

        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }


/* ===================================
   Hero Section Styles
   =================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background-image: url('../img/banner10.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-bottom: 60px;
}

.journey-text {
    font-family: 'Raleway';
    font-size: 1.3rem;
    color: #a3b51d;
    letter-spacing: 1.5px;
    /* font-weight: 600;*/
}

.scroll-icon {
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: bounce 2s infinite;
}

    .scroll-icon:hover {
        transform: translateY(5px);
    }

@keyframes bounce {

    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.enquire-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    background: #fff;
    color: #000;
    padding: 15px 40px;
    font-family: 'Raleway';
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

    .enquire-btn:hover {
        background: #f6ca0e;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

/* ===================================
   Second Fold - Breathe Section
   =================================== */
.breathe-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-image: url('../img/Breathe_Bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transition: all 0.3s ease-out;
}

.breathe-content {
    width: 800px;
    max-width: 90%;
    /* position: relative; */
    z-index: 2;
    padding: 0 20px;
    margin: 0 auto;
}

.animated-word {
    max-width: fit-content;
    width: 100%;
    height: auto;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    margin: auto;
}

    .animated-word.fade-out {
        opacity: 0;
        transform: scale(0.95);
    }

.artisticimp {
    position: absolute;
    z-index: 1;
    bottom: 10px;
    left: 0px;
    margin: 0px;
    padding: 8px;
    color: #fff;
    font-size: 8px;
    text-align: center;
    writing-mode: sideways-lr;
}

.black {
    color: #000;
}


/* ===================================
  active living
   =================================== */


.activeLiving {
    padding-top: 50px;
    position: relative;
}

.leftleave {
    position: absolute;
    width: 200px;
    bottom: 100px;
    left: -130px;
}

.activeLiving {
    position: relative;
    width: 100%;
    min-height: auto;
}

.activelivingSlider {
    /* margin-top: 30px; */
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}


.activelivingSlide span {
    color: #5a3c21;
    font-size: 34px;
}

.activelivingSlide p {
    font-family: 'Blushing-Rose';
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.activelivingSlideImageflex {
    position: relative;
}

    .activelivingSlideImageflex img {
        width: 100%;
    }


/* Slick Slider Custom Styling */

.activelivingSlider .slick-prev,
.activelivingSlider .slick-next {
    width: 30px;
    height: 30px;
    z-index: 10;
}

.activelivingSlider .slick-prev {
    left: -60px;
}

.activelivingSlider .slick-next {
    right: -60px;
}

    .activelivingSlider .slick-prev:before,
    .activelivingSlider .slick-next:before {
        content: '';
        display: none;
    }

.activelivingSlider .slick-prev {
    background-image: url('../img/left_arrow.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    opacity: 1;
}

.activelivingSlider .slick-next {
    background-image: url('../img/right_arrow.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    opacity: 1;
}


/* ===================================
   perfectlyConnected
   =================================== */

.perfectlyConnected {
    width: 100%;
    background-image: url('../img/gic_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 60px;
    position: relative;
}

.rightleave {
    position: absolute;
    width: 200px;
    top: 150px;
    right: -130px;
}

.perfectlyConnected p {
    /* width: 70%; */
    margin: 0 auto;
    text-align: center;
}

.perfectlyConnectedInside {
    margin: 0 auto;
    margin-top: -30px;
}

.gicLogo img {
    width: 20%;
    margin: 0 auto;
}



.gic_video {
    margin-top: 40px;
}

    .gic_video iframe {
        width: 100%;
        height: 600px;
    }

.gicFlex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.gicFlexInside {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}

    .gicFlexInside:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 15px;
        height: 100%;
        background-image: url('../img/vertical_leaf.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .gicFlexInside .icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

        .gicFlexInside .icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .gicFlexInside h3 {
        font-family: 'Blushing-Rose';
        font-size: 20px;
        color: #fff;
        margin: 10px 0;
        line-height: 1.3;
        text-transform: uppercase;
        letter-spacing: 4px;
        font-weight: 100;
    }

    .gicFlexInside p {
        font-family: 'Raleway';
        font-size: 14px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        width: 100%;
    }

/* Connectivity Section */
.connectivitySection {
    margin-top: 0px;
    padding: 40px 0;
}

.connectivityText {
    font-family: 'Raleway';
    font-size: 16px;
    color: #fff;
    text-align: center;
    /* max-width: 800px; */
    margin: 0 auto 40px;
    line-height: 1.8;
}

.connectivityBoxes {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.connectivityBoxesBottom {
    margin-bottom: 0;
}

.connectivityBox {
    border: 1px solid #648643;
    padding: 10px 40px 10px 20px;
    min-width: 240px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

    .connectivityBox:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
    }

    .connectivityBox h4 {
        font-family: 'Raleway';
        font-size: 16px;
        font-weight: 500;
        color: #fff;
        text-align: CENTER;
    }

    .connectivityBox p {
        font-family: 'Raleway';
        font-size: 18px;
        font-weight: 300;
        color: #fff;
        margin: 0;
        text-align: left;
    }

/* Connectivity Tab Section */
.connectivityTabSection {
    margin-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

.leftleave2 {
    position: absolute;
    width: 200px;
    top: -100px;
    left: -330px;
}

.tabNavigation {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.tabButton {
    font-family: 'Raleway';
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background: transparent;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .tabButton:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 20px;
        background: rgba(255, 255, 255, 0.3);
    }

    .tabButton.active {
        color: #f6ca0e;
    }

    .tabButton:hover {
        color: #f6ca0e;
    }

.tabIcon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Show green icon only when tab is active */
.tabButton .tabIcon.active {
    display: none;
}

.tabButton.active .tabIcon.active {
    display: inline-block;
}

/* Show white icon only when tab is inactive */
.tabButton .tabIcon.inactive {
    display: inline-block;
}

.tabButton.active .tabIcon.inactive {
    display: none;
}

.tabContent {
    position: relative;
    width: 100%;
}

.tabPane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .tabPane.active {
        display: block;
        opacity: 1;
    }

.videoContainer,
.mapContainer {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    /* border-radius: 8px; */
}

    .videoContainer img,
    .mapContainer img {
        width: 100%;
        height: auto;
        display: block;
    }


    .videoContainer iframe,
    .mapContainer iframe {
        width: 100%;
        height: 600px;
    }

.playButton {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .playButton:hover {
        transform: translate(-50%, -50%) scale(1.1);
    }

    .playButton svg {
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    }



/* ===================================
   grand Welcome Section
   =================================== */
.grandWelcome {
    position: relative;
    padding-bottom: 40px;
    padding-top: 40px;
}

.grandWelcomeImage {
    margin-top: 20px;
    position: relative;
}



/* ===================================
  active living
   =================================== */


.activeLife {
    padding-top: 40px;
    padding-bottom: 0px;
}

.activeLife {
    position: relative;
    width: 100%;
    min-height: auto;
}

.activeLifeSlider {
    margin-top: 30px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


.activeLifeSlide span {
    color: #a3b51d;
}

.activeLifeSlide {
    position: relative;
}

    .activeLifeSlide p {
        font-family: 'Blushing-Rose';
        font-size: 20px;
        text-align: right;
        margin-bottom: 30px;
        color: #333;
    }

/* .activelivingSlideImageflex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
} */

.activeLifeSlideImageflex img {
    width: 100%;
}


/* Slick Slider Custom Styling */

.activeLifeSlider .slick-prev,
.activeLifeSlider .slick-next {
    width: 37px;
    height: 37px;
    z-index: 10;
}

.activeLifeSlider .slick-prev {
    left: -60px;
}

.activeLifeSlider .slick-next {
    right: -60px;
}

    .activeLifeSlider .slick-prev:before,
    .activeLifeSlider .slick-next:before {
        content: '';
        display: none;
    }

.activeLifeSlider .slick-prev {
    background-image: url('../img/left_arrow.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    opacity: 1;
}

.activeLifeSlider .slick-next {
    background-image: url('../img/right_arrow.png') !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    opacity: 1;
}





/* ===================================
   Enquiry Form Popup
   =================================== */
.enquiry-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .enquiry-popup.active {
        opacity: 1;
        visibility: visible;
    }

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.popup-container {
    position: relative;
    z-index: 2;
    background: #fff;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.enquiry-popup.active .popup-container {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    z-index: 3;
}

    .popup-close:hover {
        background: #a3b51d;
        color: #fff;
        transform: rotate(90deg);
    }

.popup-content {
    padding: 40px 30px;
}

.popup-title {
    font-family: 'Raleway';
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.popup-subtitle {
    font-family: 'Raleway';
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group label {
        font-family: 'Raleway';
        font-size: 0.9rem;
        font-weight: 600;
        color: #333;
    }

    .form-group input {
        padding: 12px 15px;
        font-family: 'Raleway';
        font-size: 0.95rem;
        border: 2px solid #e0e0e0;
        border-radius: 4px;
        transition: border-color 0.3s ease;
        outline: none;
    }

        .form-group input:focus {
            border-color: #a3b51d;
        }

        .form-group input::placeholder {
            color: #999;
        }

.submit-btn {
    padding: 15px 30px;
    font-family: 'Raleway';
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #a3b51d;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

    .submit-btn:hover {
        background: #8a9a18;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(163, 181, 29, 0.3);
    }

    .submit-btn:active {
        transform: translateY(0);
    }

.connectivityBoxesmob {
    display: none;
}



/* Dhananjay */
/* Adapt Section */


.adaptContainer {
    max-width: 100%;
    margin: 0 auto;
}

.homeadapt {
    padding-bottom: 0px;
    padding-top: 40px;
}

    .homeadapt p {
        width: 70%;
        margin: 0 auto;
        text-align: center;
    }


.homeadaptImageWrap {
    margin-top: 40px;
}

.homeadaptImageRow {
    display: flex;
    align-items: center;
    gap: 30px;
}


.homeadaptSideImage {
    overflow: hidden;
    position: relative;
}

    .homeadaptSideImage img {
        width: 100%;
        height: auto;
        display: block;
    }


.homeadaptMainImage {
    overflow: hidden;
}

    .homeadaptMainImage img {
        width: 100%;
        display: block;
    }



.homeadaptImageRow .slick-slide {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.8);
}


.homeadaptImageRow .slick-center {
    transform: scale(1.1);
    opacity: 1;
}


    .homeadaptImageRow .slick-center img {
        width: 100%;
    }



.homeadaptImageWrap {
    position: relative;
}


.sliderPrev,
.sliderNext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
}


.sliderPrev {
    left: 15%;
}


.sliderNext {
    right: 15%;
}


    .sliderPrev img,
    .sliderNext img {
        width: 37px;
        height: auto;
    }


/*mapsection*----------------------------------------------------*/

.mapliving {
    padding-top: 40px;
    padding-bottom: 40px;
}

.activeliving img {
    width: 100%;
    height: auto;
}

.howyoulive {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 60px;
    padding-top: 40px;
}

    .howyoulive img {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

/* Register Section --------------------------------------------------------------*/

.register-section {
    background: url("../img/footer.jpg") center/cover no-repeat;
    position: relative;
    padding: 80px 0 0;
}

.register-overlay {
    padding-bottom: 60px;
}

.container {
    width: 1280px;
    max-width: 95%;
    margin: 0 auto;
    text-align: center;
}

.register-title {
    color: #a1850d;
    font-weight: 400;
    font-family: 'Blushing-Rose';
    text-align: center;
    font-size: 38px;
    font-weight: 300;
}

.register-form {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 40px auto 40px;
    width: 80%;
}

    .register-form input {
        flex: 1;
        background: transparent;
        border: 1px solid rgba(205, 195, 1, 0.6);
        padding: 16px 20px;
        color: #fff;
        font-size: 14px;
        outline: none;
    }

        .register-form input::placeholder {
            color: rgba(255, 255, 255, 0.85);
        }

.btn-wrap {
    text-align: center;
}

.enquire-btn1 {
    background: #fff;
    color: #000;
    padding: 14px 40px;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .enquire-btn1:hover {
        background: #f6ca0e;
        color: #000;
    }

.footer {
    background: #000;
    text-align: center;
    padding: 12px 10px;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #fff;
}



/* Dhananjay Ends */


.rerano {
    text-align: center;
    background-color: #f6ca0e;
    color: #000;
    padding: 5px;
    font-size: 10px;
    font-family: sans-serif;
}


/* Disclaimer modal styles */
.disclaimer-modal {
    display: none;
}

    .disclaimer-modal.active {
        display: block;
    }

.disclaimer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
}

.disclaimer-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 600px;
    max-width: calc(100% - 40px);
    max-height: 85vh;
    border-radius: 8px;
    padding: 24px;
    z-index: 10001;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
}

    .disclaimer-dialog h2 {
        margin: 0 0 20px 0;
        font-size: 24px;
        font-family: 'Raleway';
        text-transform: uppercase;
    }

.disclaimer-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

    .disclaimer-close:hover {
        color: #000;
    }

.disclaimer-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

    .disclaimer-content p {
        margin-bottom: 15px;
    }

.footer a {
    display: inline-flex;
}


/* ===================================
   Responsive Design - Mobile First
   =================================== */

@media (max-width: 1440px) {
}

@media (max-width: 1366px) {

    .sliderNext {
        right: 20%;
    }

    .sliderPrev {
        left: 20%;
    }

    .hero-cta {
        gap: 20px;
        padding-bottom: 30px;
    }
}

@media (max-width: 1280px) {
}




/* Tablets and below (768px) */
@media (max-width: 768px) {

    .footer {
        background: #000;
        text-align: center;
        padding: 12px 10px 80px 10px;
        font-size: 13px;
        letter-spacing: 0.5px;
        color: #fff;
    }

    .marginTopBottom {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .header {
        padding: 12px 0;
    }

    .header-container {
        padding: 0 15px;
    }

    .heading h1 {
        font-size: 19px;
    }

    .logo img {
        height: 40px;
    }

    .header-actions {
        gap: 15px;
    }

    .phone-icon svg {
        width: 20px;
        height: 20px;
    }

    .mHide {
        display: none !important;
    }

    .dHide {
        display: block !important;
    }

    .hamburger-menu span {
        width: 22px;
    }

    .nav-link {
        font-size: 1.75rem;
    }

    .hero {
        min-height: 890px;
        background-image: url(../img/mobile-banner3.png);
        height: 100%;
    }

    .journey-text {
        font-size: 0.9rem;
    }

    .scroll-icon svg {
        width: 35px;
        height: 35px;
    }

    .enquire-btn {
        bottom: 25px;
        right: 25px;
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .breathe-section {
        min-height: 500px;
        background-attachment: scroll;
    }

    .animated-word {
        max-width: 600px;
    }

    .third-fold-content h2 {
        font-size: 2.2rem;
    }

    .third-fold-content p {
        font-size: 1rem;
    }

    .popup-content {
        padding: 30px 20px;
    }

    .popup-title {
        font-size: 1.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* .enquire-btn
    {
        display: none;
    } */

    .activeLiving {
        padding-bottom: 90px;
    }

    .activelivingSlide p {
        text-align: center;
    }

    .perfectlyConnected {
        background-image: url(../img/gic-bg-mob.jpg);
        padding: 40px 20px;
        position: relative;
    }

    .gic_video iframe {
        width: 100%;
        height: 300px;
    }

    .gicFlex .slick-prev,
    .gicFlex .slick-next {
        width: 30px;
        height: 30px;
        z-index: 10;
        top: 20%;
    }

    .gicFlex .slick-prev {
        left: -10px;
    }

    .gicFlex .slick-next {
        right: -10px;
    }

        .gicFlex .slick-prev:before,
        .gicFlex .slick-next:before {
            content: '';
            display: none;
        }

    .gicFlex .slick-prev {
        background-image: url('../img/w-l-arrow.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        opacity: 1;
    }

    .gicFlex .slick-next {
        background-image: url('../img/w-r-arrow.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        opacity: 1;
    }

    .gicFlex {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 20px;
        margin-top: 50px;
        flex-wrap: wrap;
        width: 90%;
        margin: 0px auto;
        margin-top: 20px;
    }

    .gicFlexInside p {
        font-size: 18px;
    }

    .gicFlexInside:not(:last-child)::after {
        display: none;
    }

    .leafelem {
        width: 120px;
    }

    .connectivityBoxesdesk {
        display: none;
    }

    .connectivityBoxesmob {
        display: flex;
        width: 70%;
        margin: 0px auto;
        margin-top: 50px;
    }

    .connectivityBox {
        margin-left: 10px;
        margin-right: 10px;
        padding: 10px;
        min-width: unset;
    }

        .connectivityBox h4, .connectivityBox p {
            text-align: center;
            width: 100%;
        }

    .connectivityBoxesmob .slick-dots {
        bottom: -50px;
    }

        .connectivityBoxesmob .slick-dots li button {
            font-size: 0; /* Hides any default numbers or text inside the button */
            line-height: 0;
            display: block;
            width: 20px; /* Adjust width to create a line shape */
            height: 2px; /* Adjust height to create a line shape */
            padding: 0;
            cursor: pointer;
            background: #3a4039; /* Default color for inactive dots */
            border: 0;
        }

        /* Styling for the active (current slide) dot */
        .connectivityBoxesmob .slick-dots li.slick-active button {
            background: #648643; /* Color for the active dot */
        }

    /* .slick-dots li.slick-active button:before {
            opacity: .75;
            color: black;
            display: none;
        } */
    .slick-dots li button:before {
        display: none;
    }

    .tabNavigation {
        flex-direction: column;
        align-items: center;
    }

    .tabButton:not(:last-child)::after {
        display: none;
    }

    .videoContainer iframe, .mapContainer iframe {
        height: 300px;
    }

    .connectivityTabSection {
        margin-top: 0px;
        padding-bottom: 0px;
        position: relative;
    }

    .activelivingSlider {
        width: 90%;
    }

    .activeLifeSlider {
        width: 90%;
    }

    .hero-cta {
        padding-bottom: 40px;
    }

    .homeadaptImageRow {
        flex-direction: column;
        gap: 20px;
        width: 90%;
        margin: 0px auto;
    }

    .homeadapt {
        padding-bottom: 60px;
    }

    .homeadaptSideImage,
    .homeadaptMainImage {
        width: 100%;
    }

    .homeadaptImageRow .slick-slide {
        transition: transform 0.4s ease, opacity 0.4s ease;
        transform: scale(1);
    }


    .homeadaptImageRow .slick-center {
        transform: scale(1);
        opacity: 1;
    }


        .homeadaptImageRow .slick-center img {
            width: 100%;
        }

    .sliderPrev,
    .sliderNext {
        position: absolute;
        top: 100%;
        transform: translateY(-50%);
        z-index: 5;
        cursor: pointer;
    }


    .sliderPrev {
        left: 35%;
    }


    .sliderNext {
        right: 35%;
    }


        .sliderPrev img,
        .sliderNext img {
            width: 37px;
            height: auto;
            margin-top: 85px;
        }

    .register-form {
        flex-direction: column;
        gap: 40px;
    }

    .register-title {
        font-size: 22px;
    }


    .register-form input {
        text-align: center;
    }


    .register-form {
        width: 80%;
        margin: 0 auto 40px;
    }



    .activelivingSlider .slick-prev, .activelivingSlider .slick-next {
        width: 30px;
        height: 30px;
        z-index: 10;
        top: 110%;
    }




    .activelivingSlider .slick-prev {
        left: 35%;
    }


    .activelivingSlider .slick-next {
        right: 35%;
    }

    .perfectlyConnected p {
        width: 100%;
    }

    .grandWelcomeImage {
        /* margin-top: 20px; */
        width: 95%;
        margin: 0px auto;
        margin-top: 20px;
    }

    .howyoulive {
        padding-bottom: 0px;
        margin-bottom: 40px;
    }


    .activeLifeSlider .slick-prev, .activeLifeSlider .slick-next {
        width: 37px;
        height: 37px;
        z-index: 10;
        top: 110%;
    }




    .activeLifeSlider .slick-prev {
        left: 35%;
    }


    .activeLifeSlider .slick-next {
        right: 35%;
    }

    .activeLife {
        padding-bottom: 40px;
    }
}

/* Mobile devices (480px) */
@media (max-width: 480px) {
    .header {
        padding: 10px 0;
    }

    .logo img {
        height: 60px;
    }

    .header-actions {
        gap: 12px;
    }

    .phone-icon svg {
        width: 18px;
        height: 18px;
    }

    .hamburger-menu span {
        width: 20px;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .nav-list li {
        margin: 15px 0;
    }

    .hero {
        min-height: 500px !important;
    }

    .journey-text {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .scroll-icon svg {
        width: 32px;
        height: 32px;
    }

    .enquire-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .breathe-section {
        min-height: 450px;
    }

    .animated-word {
        max-width: 400px;
    }

    .third-fold-content h2 {
        font-size: 1.8rem;
    }

    .third-fold-content p {
        font-size: 0.9rem;
    }
}

/* Small mobile devices (375px) */
@media (max-width: 375px) {
    .enquire-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .animated-word {
        max-width: 300px;
    }

    .third-fold-content h2 {
        font-size: 1.5rem;
    }
}

/* Large screens (1920px and above) */
@media (min-width: 1920px) {
    .header-container {
        max-width: 1600px;
    }

    .logo img {
        height: 60px;
    }

    .journey-text {
        font-size: 1.1rem;
    }

    .scroll-icon svg {
        width: 45px;
        height: 45px;
    }

    .enquire-btn {
        padding: 18px 50px;
        font-size: 1.1rem;
    }

    .animated-word {
        max-width: 1000px;
    }

    .third-fold-content h2 {
        font-size: 4rem;
    }

    .third-fold-content p {
        font-size: 1.5rem;
    }
}

.banking-partners-section {
    background: linear-gradient(180deg, #06233b, #041b2d);
    padding: 60px 0;
}

.banking-partners-box {
    border: 2px solid #caa24d;
    padding: 25px;
}

.banking-title h2 {
    font-family: "Times New Roman", serif;
    color: #d6b15e;
    font-size: 42px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.banking-logos {
    background: #ffffff;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

    .banking-logos img {
        max-height: 45px;
        object-fit: contain;
        filter: grayscale(0);
    }

/* Responsive */
@media (max-width: 991px) {
    .banking-title {
        text-align: center;
        margin-bottom: 20px;
    }

        .banking-title h2 {
            font-size: 34px;
        }
}

.section-heading {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 15px;
    
    font-family: "Austin-News-Headline-Light, sans-serif";
    opacity: 0;
    transform: translateY(20px);
}

.description {
    font-size: 1rem;
    font-weight: 500;
    font-family: "Euclid-Circular-A-Regular, sans-serif";
    color: #121212;
    opacity: 0;
    transform: translateY(20px);
    text-align: justify;
}

@media (max-width: 767px) {
    .section-heading {
        font-size: 1.8rem;
        line-height: 35px;
        margin-bottom: 30px !important;
    }
}

.fade-in-up-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.5s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-right-element {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 2s ease-in-out, transform 2s ease-in-out;
}

.fade-in-right {
    opacity: 1;
    transform: translateX(0);
}

.category-section .project-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.category-section .project {
    padding: 40px 20px 20px 20px;
    border: 1px solid #ddd;
    transition: 1s ease;
    position: relative;
    text-decoration: none;
    color: #121212;
}

    .category-section .project .heading {
        font-size: 1.1rem;
        font-weight: 500;
        color: #121212;
    }

    .category-section .project a {
        color: #000;
    }

    .category-section .project .location {
        font-size: 0.8rem;
        font-weight: 500;
        font-family: "Euclid-Circular-A-Regular, sans-serif";
        color: #121212;
        text-align: justify;
    }

    .category-section .project .text {
        font-size: 0.8rem;
        font-weight: 500;
        height: 38px;
        font-family: "Euclid-Circular-A-Regular, sans-serif";
        color: #121212;
        text-align: justify;
    }

    .category-section .project .image-section {
        height: 270px;
        overflow: hidden;
        position: relative;
    }

        .category-section .project .image-section img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease-in-out;
        }

    .category-section .project:hover .image-section img {
        transform: scale(1.15);
    }

.category-section #loadMoreBtn1, .category-section #loadMoreBtn2 {
    display: inline-block;
    font-family: "Euclid-Circular-A-Regular, sans-serif";
    padding: 10px 30px;
    font-size: 16px;
    background-color: #0b5a7e;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 30px;
    transition: background-color 0.3s;
}

#pre-button-loader i {
    color: #0b5a7e; /* Optional: Customize spinner color */
    font-size: 24px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .category-section .project-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .category-section .project-container {
        grid-template-columns: 1fr;
    }
}

.align-items-start {
    align-items: flex-start !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.d-flex {
    display: flex !important;
}

.voice-of-trust {
    padding: 0px 20px;
    background: #ffffff;
    font-family: 'Playfair Display', serif;
}

    .voice-of-trust .container {
        padding: 0 20px;
        max-width: 1400px;
        margin: auto;
    }

    .voice-of-trust .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
    }

    .voice-of-trust h2 {
        font-size: 36px;
        letter-spacing: 1px;
        margin: 0;
        font-weight: 500;
    }

    .voice-of-trust .tag {
        border: 1px solid #c8a46a;
        padding: 8px 20px;
        font-size: 14px;
        color: #c8a46a;
    }

    .voice-of-trust .video-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .voice-of-trust .video-card {
        text-align: center;
    }

    .voice-of-trust .video-wrapper {
        position: relative;
        background: #000;
        padding: 10px;
        border-radius: 4px;
    }

        .voice-of-trust .video-wrapper video {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
            cursor: pointer;
        }

    .voice-of-trust .video-card p {
        margin-top: 15px;
        font-size: 16px;
        color: #000;
    }

@media (max-width: 991px) {
    .voice-of-trust .video-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .voice-of-trust .video-grid {
        grid-template-columns: 1fr;
    }

    .voice-of-trust .section-header {
        flex-direction: column;
        gap: 15px;
    }
}

/* SECTION BG */
.banking-wrap {
    background: linear-gradient(180deg, #031A33 0%, #04284A 40%, #063B63 70%, #0A527C 100% );
    padding: 60px 0;
}

/* OUTER BORDER */
.banking-inner {
    border: 2px solid #c8a44b;
}

/* LEFT PANEL */
.banking-left {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
}

    .banking-left h2 {
        color: #d6b15e;
        font-family: "Times New Roman", serif;
        font-size: 42px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin: 0;
    }

/* RIGHT PANEL */
.banking-right {
    background: #ffffff;
    padding: 30px;
}

.banking-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

    .banking-logos img {
        max-height: 45px;
        margin: auto;
        object-fit: contain;
    }

/* ================= MOBILE FIX ================= */

@media (max-width: 991px) {
    .banking-left {
        padding: 25px 15px;
        border-bottom: 1px solid #c8a44b;
    }

        .banking-left h2 {
            font-size: 30px;
            text-align: center;
        }

    .banking-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
/* Common (ALL devices) */
.gicLogo {
    text-align: center; /* center wrapper */
}

    .gicLogo img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
    }

/* Desktop */
@media (min-width: 992px) {
    .gicLogo img {
        width: 20%;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .gicLogo img {
        width: 35%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .gicLogo img {
        width: 60%;
    }
}

.contact-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #f6ca0e;
    text-decoration: none;
    transition: all 0.3s ease;
}
    /* Hover effects */

    .icon-btn.call:hover {
        background: #000;
        color: #fff;
    }

    .icon-btn.whatsapp:hover {
        background: #25D366;
        border-color: #25D366;
        color: #fff;
    }

/* ============================= */
/* Desktop – show original image */
/* ============================= */

.perfectlyConnected img[src*="ss.png"] {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================= */
/* Mobile – replace image */
/* ============================= */


.trust-voices {
    padding: 20px 20px;
    background: #fff;
}

/* Container */
.trust-container {
    max-width: 1400px;
    margin: auto;
}

/* Header */
.trust-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    gap: 15px;
}

    .trust-header h2 {
        font-size: 40px;
        font-weight: 500;
        margin: 0;
    }

.trust-tag {
    border: 1px solid #000000;
    color: #000000;
    padding: 10px 22px;
    font-size: 14px;
    white-space: nowrap;
}

/* Grid */
.trust-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

/* Card */
.trust-video-card {
    background: #fff;
    /* border-radius: 14px; */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Video frame – DESKTOP */
.trust-video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

    .trust-video-frame video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Text */
.trust-video-card p {
    padding: 18px;
    margin: 0;
    text-align: center;
}

.trust-video-card strong {
    display: block;
    font-size: 17px;
}

.trust-video-card span {
    display: block;
    font-size: 14px;
    color: #777;
    margin-top: 4px;
}

/* TABLET */
@media (max-width: 991px) {
    .trust-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-header h2 {
        font-size: 32px;
    }
}

/* MOBILE – 🔥 FIXED */
@media (max-width: 576px) {

    .trust-video-grid {
        grid-template-columns: 1fr;
    }

    .trust-header {
        flex-direction: column;
        text-align: center;
    }

        .trust-header h2 {
            font-size: 28px;
        }

    /* MOBILE VIDEO FIX */
    .trust-video-frame {
        aspect-ratio: auto;
        height: auto;
    }

        .trust-video-frame video {
            height: auto;
            object-fit: contain;
            background: #000;
        }
}

.banner-section {
    width: 100%;
    padding: 40px 0;
}

.banner-wrap {
    display: flex;
    gap: 20px;
}

.banner-left,
.banner-right {
    width: 50%;
}

    .banner-left img,
    .banner-right img {
        width: 100%;
        height: auto;
        display: block;
    }

/* Mobile View */
@media (max-width: 767px) {
    .banner-wrap {
        flex-direction: column;
    }

    .banner-left,
    .banner-right {
        width: 100%;
    }
}
