﻿body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    box-sizing:border-box;
}
 
    #msk-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


.msk-center-logo {
    position: relative;
    z-index: 20;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

    .msk-center-logo img {
        width: 260px;
    }


.msk-half {
    position: absolute;
    width: 100%;
    height: 50%;
    z-index: 10;
    transform: translateY(0);
}

/*@keyframes topBounceEdge {
    0% {
        transform: translateY(0);
    }

    45% {
        transform: translateY(-148%);
    }
   
    62% {
        transform: translateY(-130%);
    }

    78% {
        transform: translateY(-145%);
    }
   
    90% {
        transform: translateY(-140%);
    }
   
    100% {
        transform: translateY(-150%);
    }
}

@keyframes bottomBounceEdge {
    0% {
        transform: translateY(0);
    }

    45% {
        transform: translateY(150%);
    }

    62% {
        transform: translateY(130%);
    }

    78% {
        transform: translateY(150%);
    }

    90% {
        transform: translateY(140%);
    }

    100% {
        transform: translateY(150%);
    }
}

#msk-loader.msk-split .msk-top {
    animation: topBounceEdge 1.55s cubic-bezier(0.18, 0.89, 0.32, 1.15) forwards;
    background: #1F64AC;
}

#msk-loader.msk-split .msk-bottom {
    animation: bottomBounceEdge 1.55s cubic-bezier(0.18, 0.89, 0.32, 1.15) forwards;
    background: #1F64AC;
}


*/

#msk-loader.msk-split .msk-center-logo {
    opacity: 0;
    transform: scale(0.7);
}


#msk-loader.msk-hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease-out;
}


/*+++++++++++++++++++++++++++++++++++ header++++++++++++++++++++++++++++++++*/

.herade-header {
    width: 100%;
    height: 70px;
    padding: 20px 40px;
    background: #6292C5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.herade-header.hide-header {
    opacity: 0;
    pointer-events: none;
}

/* ===== LOGO ===== */
.logo img {
    height: 130px;
}

/* ===== TOGGLE BUTTON ===== */



.toggle-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 9999;
    transition: transform 0.2s ease-out;
    will-change: transform;
}

/*.toggle-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 9999;
    transition: 0.3s ease-in-out;
}*/

    /* Hover effect: scale the circle */
    .toggle-btn:hover {
        transform: scale(1.2);
    }

    /* Span bars inside the toggle button */
    .toggle-btn span {
        position: absolute;
        width: 22px;
        height: 2px;
        background: #fff;
        transition: 0.3s ease-in-out;
    }

        .toggle-btn span:nth-child(1) {
            top: 14px;
            width: 11px;
            left: 13px;
        }

        .toggle-btn span:nth-child(2) {
            top: 21px;
        }

        .toggle-btn span:nth-child(3) {
            top: 28px;
            width: 12px;
            right: 13px;
        }

    /* Active state: transform into X */
    .toggle-btn.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 22px;
    }

    .toggle-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .toggle-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 22px;
    }

   
    .toggle-btn.active:hover {
        transform: scale(1.3);
    }
/* ===== YELLOW LAYER ===== */
.yellow-layer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #F9BB01;
    transition: 0.5s ease;
    z-index: 300;
}

/* ===== BLUE MENU ===== */
.blue-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%; /* FULL SCREEN */
    background: #125da3;
    transition: 0.5s ease;
    z-index: 400;
    display: flex;
}

/* ===== OVERLAY ===== */
.blue-overlay {
    position: absolute;
    right: 0;
    width: 70%;
    height: 100%;
    cursor: pointer;
}

/* ===== NAV ===== */
/*nav {
    width: 100%;
    padding: 80px 40px;
    position: relative;
    z-index: 999;
    font-family: Arial, sans-serif;
}
*/
nav {
    width: 100%;
    padding: 80px 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    font-family: Arial, sans-serif;
}

/* ===== MENU ITEMS ===== */
#menuList li {
    width: auto;
    list-style: none;
    font-size: 20px;
    font-weight:600;
    color: #fff;
    margin: 8px 0;
    opacity: 0;
    transform: translateX(-60px);
    transition: 0.45s ease;

}

/* SHOW MENU ITEMS */
#menuList li.show { opacity: 1; transform: translateX(0); }

/* NUMBERS */
.num {
    font-weight: 900;
    font-size: 21px;
    margin-right: 12px;
}

/* FULL WIDTH CLICKABLE & HOVER EFFECT */
.full-width {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

    .full-width:hover {
        transform: translateY(-3px);
        color: #F9BB01;
    }
/**/.menu-item {
    transition: all 0.3s ease;
}
    .menu-item:hover {
        transform: translateY(-3px);
        color: #F9BB01;
        /*background: rgba(255,255,255,0.1);*/
    }
/* ===== SUBMENU ===== */
.tog-menu {
    font-size: 15px;
    font-weight: bold;
}

.submenu-items {
    width: auto;
    display:block;
    max-height: 0;
    overflow: hidden;
    padding-left: 57px;
    transition: max-height 0.3s ease;
}

.submenu-items li {
    opacity: 0;
    transform: translateX(-30px);
    transition: 0.3s ease;
}

.submenu-items li.show {
    opacity: 0;
    transform: translateX(0);
}

    .submenu-items a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        display: block;
        padding: 8px 15px;
        display: inline-block; /* IMPORTANT */
        position: relative;
    }
    /*.submenu-items a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background-color: #fff;
        transition: width 0.3s ease;
    }*/

    /* hover pe sirf text ke niche line */
    /*.submenu-items a:hover::after {
        width: 100%;
    }*/
/* ARROW */
.arrow {
    font-size: 18px;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.submenu-click.active .arrow {
    transform: rotate(180deg);
    font-size: 13px;
    color: #F9BB01;
}

/* ===== CLOSE BUTTON ===== */
/* ===== CLOSE BUTTON (Animated Cross) ===== */
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: 0.28s ease;
}

    /* Cross lines */
    .close-btn span {
        position: absolute;
        width: 26px;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: 0.28s ease;
    }

        /* Cross arms */
        .close-btn span:nth-child(1) {
            transform: rotate(45deg);
        }

        .close-btn span:nth-child(2) {
            transform: rotate(-45deg);
        }

    /* Hover effect: NO color change — only lift + glow */
    .close-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 14px rgba(255,255,255,0.35);
    }

        .close-btn:hover span {
            background: #fff; /* same color */
        }

/* Only show arrow in submenu */
.menu-item .arrow {
    display: none !important;
}
#menuList li,
.submenu-click {
    width: 100%;
}
.submenu-click {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 0px; 
    align-items: center;
    padding: 10px 15px;
    color:#ffffff;
}

    .submenu-click .arrow {
        margin-left: 8px;
        min-width: unset;
        text-align: left;
        color:#ffffff;
    }

        #menuList li > a {
            color: #fff !important;
            text-decoration: none !important;
            font-size: inherit;
            font-weight: inherit;
            width: auto;
            display: block;
            position:relative;
            align-items: center;
            padding: 0;
            transition: all 0.3s ease;
        }


    #menuList li > a:hover {
        transform: translateY(-3px);
        color: #F9BB01 !important;
    }


    #menuList li > a .num {
        margin-right: 12px;
    }


/* blue menu default: dead */
#blueMenu {
    pointer-events: none;
}


    #blueMenu.active {
        pointer-events: auto;
    }

/*++++++++++++++++++++++++++++++++ footer ++++++++++++++++++++++++++++++++*/
.footer {
    background: #1f4f81; 
    color: white;
    padding: 40px 20px 20px;
}

    .footer .main {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* <-- Changed */
        gap: 40px;
        max-width: 1200px;
        margin: auto;
        align-items: start;
    }


    .footer .brand {
        margin-top:13px;
    }
.brand-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: -7px;
    max-width: 320px;
}

    .brand-text strong {
        color: #ffd700;
    }

        .footer .brand img {
            width: 146px;
            display: block;
            margin-bottom: 0px;
            transition: transform 0.35s ease;
        }

            .footer .brand img:hover {
                transform: scale(1.1);
            }


        .footer .brand h3 {
            margin: 5px 0;
            font-size: 17px;
            font-weight: 600;
        }

       /* .footer .brand p {
            margin: 5px 0 15px;
            font-size: 0.9em;
            line-height: 23px;
            font-weight: 500;
        }*/

    .footer .column h4 {
        position: relative;
        padding-bottom: 8px;
        margin-bottom: 14px;
        font-size:18px;
    }
        .footer .column h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px; 
            height: 3px; 
            background-color: white;
        }
    .footer .column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer .column ul li {
            margin: 8px 0;
        }

            .footer .column ul li a {
                display: inline-block;
                color: white;
                text-decoration: none;
                transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
                font-size: 15px;
            }

                .footer .column ul li a:hover {
                    transform: translateX(5px);
                    color: #ffd700;
                    cursor: pointer;
                }

    .footer .quick .address {
        display: none;
        margin-top: 8px;
        font-size: 0.9em;
        line-height: 1.4;
    }

    .footer .social {
        text-align: center;
        margin: 25px 0;
    }

        .footer .social a {
            display: inline-block;
            width: 42px;
            height: 42px;
            line-height: 42px;
            margin: 0 5px;
            border: 1px solid #fff;
            border-radius: 50%;
            color: #fff;
            font-size: 1.1em;
            transition: transform 0.2s, background-color 0.3s;
        }
            /* Example brand-colors (or adjust as you like) */
           /* .footer .social a.facebook {
                background: #1877F2;
            }

            .footer .social a.instagram {
                background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
            }

            .footer .social a.linkedin {
                background: #0077b5;
            }

            .footer .social a.youtube {
                background: #FF0000;
            }*/

            .footer .social a:hover {
                transform: translateY(-3px);
                opacity: 0.9;
                background-color: #F9BB01;
            }


.bottom2 {
    background-color: #1F64AC;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding: 15px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

   .bottom2 a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            margin: 0 8px;
            transition: color 0.3s;
        }

 .bottom2 a:hover {
                color: #ffd700;
            }
/* CSS me */
#addr-block {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
}

    #addr-block.show {
        max-height: 300px; /* enough space, auto expand feel */
        opacity: 1;
        visibility: visible;
    }

@media (max-width: 900px) {
    .footer .main {
        grid-template-columns: 1fr;
    }

    .footer .social {
        margin: 20px 0;
    }
}


/*00000000000000000000000000000000000000000000000 HOME PAGE 00000000000000000000000000000000000000000*/

/*+++++++++++++++++++++++++++++++ BANNER IMAGE OKY +++++++++++++++++++++++++*/
.welcome {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: -208px;
}

    .welcome img {
        max-width: 100%; 
        height: auto; 
        display:block;
    }

/*+++++++++++++++++++++++++++++++++++++++ NUMBER ++++++++++++++++++++++++++++++++++++*/
.number {
    width: 100%;
    height: 100vh;
    background: url("img/build.jpg") no-repeat center center/cover;
    padding: 80px 0;
    position: relative;
}

    .number .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
    }

/* LEFT CONTENT BLOCK */
.number-content {
    width: 80%;
    max-width: 450px;
    margin-left: 265px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

/* EACH ITEM */
.item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin: 55px 0;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.7s ease;
}

    .item.show {
        opacity: 1;
        transform: translateY(0);
    }

/* YELLOW VERTICAL LINE */
.yellow-line {
    width: 4px;
    height: 110px;
    background: #F9BB01;
}

/* NUMBER + TEXT */
.text-block h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    margin: 0 0 0px 0;
}

.subtitle {
    color: #fff;
    font-size: 15px;
    font-weight:500;
    line-height: 18px;
    letter-spacing: 0.3px;
    margin: 0;
}

.number-top-text {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-top: 40px;
    white-space: nowrap; /* ← TEXT WILL STAY IN ONE LINE */
    opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
}

    .number-top-text.show {
        opacity: 1;
        transform: translateY(0);
    }


/*+++++++++++++++++++++++++++ On title +++++++++++++++++++++++++*/
.on-section {
    padding: 50px 0;
    background: #fff;
}

.on-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 0px; 
}

/*.on-heading {
    position: relative;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #222222 !important;
    padding-bottom: 10px;
    margin-bottom: 30px;
}


    .on-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: #8f8183;
        border-radius: 2px;
    }
*/
.on-heading {
    position: relative;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #222222 !important;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

    .on-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: #8f8183;
        border-radius: 2px;
        /* Start off to the left + invisible */
        transform: translateX(-100%);
        opacity: 0;
        /* Animate transition */
        transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    }

    /* Trigger animation */
    .on-heading.animate-underline::after {
        transform: translateX(0);
        opacity: 1;
    }

.on-subtitle {
    font-size: 28px;
    margin-top: 30px;
    color: #1d1d1d;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.1px; /* optional – thoda premium look */
}

/*+++++++++++++++++++++++++++ ONGOING PROJECT SECTION  X+++++++++++++++++++++++++*/
.ongoing-section {
    width: 100%;
    height: 100vh;
    overflow: hidden; 
}
.ongoing-slide {
    display: flex;
    width: 100%;
    height: 100vh;
}


.ongoing-left {
    width: 65%;
    height: 100%;
}

    .ongoing-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.ongoing-right {
    width: 35%;
    display: flex;
    align-items: center;
    padding: 60px;
}

.ongoing-content img {
    width: 230px;
    margin-bottom: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
    border: 2px solid transparent; /* 👈 pehle invisible */
}

    .ongoing-content img:hover {
        transform: scale(1.08);
        border-color: #1F64AC; 
        border-radius:10px;
    }



.ongoing-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.7s ease;
}

.ongoing-line {
    width: 90%;
    height: 1px;
    background: #ccc;
    margin: 20px 0;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.7s ease;
    display:none;
}

.ongoing-location,
.ongoing-bhk {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.7s ease;
    border-bottom: 1px solid #dcdcdc;
}

    .ongoing-location img,
    .ongoing-bhk img {
        width: 28px;
    }

.ongoing-btn {
    display: inline-block;
    padding: 5px 25px;
    border: 2px solid #000;
    border-radius: 50px;
    font-size: 19px;
    margin-top: 20px;
    transition: 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    background: #fff;
    color: #000;
    text-decoration:none;
}

    .ongoing-btn:hover {
        background: #000;
        color: #fff;
    }

.swiper-button-next,
.swiper-button-prev {
    color: #000 !important;
}

.ongoing-location,
.ongoing-bhk {
    display: flex;
    align-items: center;
    gap: 10px; 
    font-family: "Poppins", sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #000;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 18px;
}


.ongoing-location {
    border-bottom: 1px solid #dcdcdc;
}

.ongoing-bhk {
    border-bottom: 1px solid #dcdcdc;
}

   
    .ongoing-location img,
    .ongoing-bhk img {
        width: 30px;
        height: 30px;
        object-fit: contain;
        display: block;
    }

  
    .ongoing-location span,
    .ongoing-bhk span {
        line-height: 1;
        display: block;
    }
.ongoing-prev,
.ongoing-next {
    z-index: 999999 !important;
    pointer-events: auto !important;
}
/*
body.scroll-lock {
    overflow: hidden;
    height: 100vh;
}*/

.scroll-lock {
    overflow: hidden;
}

.ongoing-section,
.ongoing-section * {
    backface-visibility: hidden;
    transform: translateZ(0);
}

.ongoing-section {
    overflow: hidden !important; 
    overscroll-behavior: none !important; 
    touch-action: none !important; 
}



/*++++++++++++++++++++++++++++++++++ Why Choose Us +++++++++++++++++++++++++++++++++*/
/* Container */
.choose-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0px 40px 40px 40px;
}

/* Card */
.choose-card {
    width: 363px;
    background: #fff;
    border-radius: 15px;
    border: 2px solid rgba(31, 100, 172, 0.4);
    text-align: center;
    padding: 21px 18px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

    .choose-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    }

/* Icon Circle */
.choose-icon-circle {
    width: 90px;
    height: 90px;
    background: #1F64AC;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

    .choose-icon-circle img {
        width: 60px;
        height: 60px;
    }

/* Divider under circle */
.choose-divider {
    width: 0%;
    height: 2px;
    background: #1F64AC;
    margin: 10px auto 18px auto;
    transition: width .35s ease;
}


.choose-card:hover .choose-divider {
    width: 60%; 
}


.choose-title {
    font-size: 1.15rem;
    margin: 0 0 10px;
    font-weight: 600;
    color: #222;
}


.choose-text {
    font-size: .95rem;
    color: #444;
    line-height: 1.4;
    font-weight:500;
}


/*+++++++++++++++++++++++++++++++++ clientele +++++++++++++++++++++++++++++*/
.clientt-swiper {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 20px 0 0px ;
}

    .clientt-swiper .swiper-slide {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

      /*  .clientt-swiper .swiper-slide img {
            width: 170px;
            opacity: 1;
            transition: .25s ease;
        }

            .clientt-swiper .swiper-slide img:hover {
                opacity: 1.5;
                transform: scale(1.05);
            }*/
        .clientt-swiper .swiper-slide img {
            width: 170px;
            filter: grayscale(100%); 
            opacity: 1;
            transition: transform .25s ease, filter .25s ease; 
        }

            .clientt-swiper .swiper-slide img:hover {
                filter: grayscale(0%); 
                transform: scale(1.05); 
                opacity: 1;
            }



.clientt-navigation {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 40px;
}

    .clientt-navigation button {
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px 12px;
        transition: .3s ease;
    }

        .clientt-navigation button svg path {
            stroke: #000;
        }

        .clientt-navigation button:hover svg path {
            stroke: #0b58a5; /* Darker on hover */
        }

        

/* Smaller responsive spacing */
@media (max-width: 768px) {
    .clientt-swiper .swiper-slide img {
        width: 80px;
    }
}


/*00000000000000000000000000000000000000000000000000000 KHPL TEAM 0000000000000000000000000000000000000000000*/

/*++++++++++++++++++++++++++ AJIT SECTION ++++++++++++++++++++++*/
.ajit-section {
    background-color: #ffffff;
}
/* Container */
.ajit-team-container {
    display: flex;
    max-width:1100px;
    margin:auto;
    justify-content: space-between;
    gap:0px;
    padding: 40px 0;  
}

/* Card */
.ajit-card {
    width: 40%;
    background: white;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform .3s ease;
    margin-top: 147px;
}

    .ajit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

/* Image */
.ajit-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Content */
.ajit-content {
    padding: 18px 20px;
}

.ajit-name {
    font-size: 30px;
    margin: 6px 0;
    font-weight: 500;
    color: #111;
}

.ajit-role {
    font-size: .95rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
    /*letter-spacing: .6px;*/
}

.ajit-desc {
    font-size: 15px;
    font-weight: 500;
    color: #666;
    line-height: 1.5;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++ Our Team ++++++++++++++++++++++++++++++++++++++++*/
/* Main section */
.team-section {
    background: #ffffff;
    text-align: center;
    padding: 40px 0 20px;
}

/* Arrow container */
.team-arrow-container {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

/* Circle with thin border */
.team-arrow-circle {
    width: 40px;
    height: 40px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: teamBounce 1.7s infinite ease-in-out;
}

/* Bounce animation */
@keyframes teamBounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Heading */
.team-heading {
    font-family: "Glass", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    color: rgb(34, 34, 34);
    margin-top: 10px;
    text-align: center;
}

/* Team image section */
.team-image-section {
    /*background: #0d65b7;
    padding: 30px 0;*/
}

.team-img {
    width: 100%;
    display: block;
    object-fit: cover;
}


/*000000000000000000000000000000000 ABOUT US 000000000000000000000000000000000*/
/*+++++++++++++++++++++++++++++++ KHPL LEGACY +++++++++++++++++++++++++++++++*/
.aboutt-banner {
    width: 100%;
    overflow: hidden;
    margin-top:100px;
}

.aboutt-img-wrapper {
    width: 100%;
    max-height: 450px;
    overflow: hidden;
}

.aboutt-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/*++++++++++++++++++++++++++++++ established-section ++++++++++++++++++++++++++++++*/
.established-section {
    display: flex;
    width: 100%;
    height: 100vh; /* Full screen */
}

/* LEFT SECTION */
.established-left {
    width: 40%;
  /*  height: 100vh;*/
}

    .established-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* RIGHT SECTION */
.established-right {
    width: 60%;
    /* height: 100vh;*/
    background: #1260AB;
    color: white;
    padding: 60px 60px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* TEXT */
.established-text {
    max-width: 90%;
    font-size: 27px;
    line-height: 48px;
    word-spacing: 0px;
    font-weight: 200;
    text-align: justify;
}
.established-bold {
    font-weight: 600;
    font-size: 28px;
    line-height: 48px;
    margin-top: 25px;
}

/* Yellow shape bottom-right */
.established-corner-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 130px;
    height: auto;
    object-fit: contain;
}

/* Responsive */
/*@media (max-width: 900px) {
    .established-section {
        flex-direction: column;
        height: auto;
    }

    .established-left,
    .established-right {
        width: 100%;
        height: auto;
    }

    .established-corner-img {
        width: 120px;
    }
*//*}*/

/*000000000000000000000000000000000000000000 khpl_edge 0000000000000000000000000000000000000000*/
.edge-section {
    width: 100%;
    background: #1260AB;
    padding: 80px 0px;
    position: relative;
    margin-top: 100px;
    overflow: hidden;
}

.edge-container {
    max-width: 1600px; 
    width: 100%; 
    margin:  auto; 
    padding: 0 20px; 
    box-sizing: border-box;
}

/* ROWS */
.edge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}

/* ITEMS */
.edge-item {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 48%;
}

/* ICON */
.edge-icon {
    width: 130px;
    height: 130px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

    .edge-icon:hover {
        transform: scale(1.12);
    }

/* TEXT */
.edge-text h3 {
    font-size: 34px;
    line-height: 51px;
    font-weight: 400;
    color: white;
    margin: 0;
}
    .edge-text h3 span {
        color: #F7BB03;
        font-weight: 600;
    }

/* Yellow bottom-right image */
.edge-corner-img {
    position: absolute;
    right: 0;
    top: 86%;
    transform: translateY(-50%);
    max-width: 130px;  
    width: 100%;
}

/* Responsive */
@media (max-width: 1000px) {
    .edge-row {
        flex-direction: row;
        gap: 40px;
    }

    .edge-item {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
    }

    .edge-icon {
        width: 90px;
        height: 90px;
    }

    .edge-corner-img {
        width: 150px;
    }
}


/*000000000000000000000000000000000000000 highlighted_expertise 0000000000000000000000000000000000*/

/*++++++++++++++++++++++++++++++++ highlighted_expertise BANNER ++++++++++++++++++++++++++*/
/*.serv {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top:100px;
}

    .serv img {
        max-width: 100%;
        height: auto;
        display: block;
    }

*//*++++++++++++++++++++++++++++++++ INGFOFRAOHY BANNER ++++++++++++++++++++++++++*/
.info {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-top: 0px;
}

    .info img {
        max-width: 100%;
        height: auto;
        display: block;
        /* very small start */
        transform: scale(0.5);
        opacity: 0;
        /* slow + buttery smooth */
        transition: transform 2.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.6s ease;
    }

        .info img.show {
            transform: scale(1);
            opacity: 1;
        }

/*++++++++++++++++++++++++++++++++++++++++ Your Real Estate  ++++++++++++++++++++++++++++++++++++++*/
/* Outer section */
.box-wrapper {
    width: 100%;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main box */
.box-container {
    background: #1F64AC;
    padding: 60px 30px;
    width: 80%;
    max-width: 1250px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    font-family: "Arial", sans-serif;
}

/* Title */
.box-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 35px;
}

/* Text */
.box-text {
    font-size: 24px;
    max-width: 1240px;
    margin: 0 auto 40px auto;
    line-height: 1.6;

}

/* Button */
.box-btn {
    display:inline-block;
    background-color: #F9BB01;
    padding: 12px 25px;
    font-size: 18px;
    border-radius: 30px;
    text-transform: uppercase;
    text-decoration:none;
    font-weight: bold;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    color: #FFF;
    transition: 0.3s ease;
}

/* Button Hover */
    .box-btn:hover {
        color: #1F64AC;
        background: #fff;
        box-shadow: 0 8px 22px rgba(0,0,0,0.35);
        transform: translateY(-3px);
    }

/*000000000000000000000000000000000000000 CLIENTELE PAGE 0000000000000000000000000000000000000000*/

.clin-section {
    width: 100%;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.clin-grid {
    width: 90%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* card */
.clin-card {
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    /* ⭐ default: grayscale logo */
    .clin-card img {
        max-width: 80%;
        height: auto;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
    }

    /* hover card */
    .clin-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

        /* ⭐ hover pe original color */
        .clin-card:hover img {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

/*0000000000000000000000000000000000000000000000 MARKETING USP 000000000000000000000000000000000000000000000000*/

/* Container */
.usp-cards-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0px 40px 40px 40px;
    justify-items: center;
    margin-top: 150px;
}

/* Card */
.usp-card {
    width: 363px;
    background: #fff;
    border-radius: 15px;
    border: 2px solid rgba(31, 100, 172, 0.4);
    text-align: center;
    padding: 21px 18px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
   
}

    .usp-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    }

/* Icon Circle */
.usp-icon-circle {
    width: 90px;
    height: 90px;
    /*background: #1F64AC;*/
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

    .usp-icon-circle img {
        width: 80px;
        height: 80px;
    }

/* Divider under circle */
.usp-divider {
    width: 0%;
    height: 2px;
    background: #1F64AC;
    margin: 10px auto 18px auto;
    transition: width .35s ease;
}


.usp-card:hover .usp-divider {
    width: 60%;
}


.usp-title {
    font-size:17px;
    margin: 0 0 10px;
    font-weight: 600;
    color: #222;
}


.usp-text {
    font-size: .95rem;
    color: #444;
    line-height: 1.4;
    font-weight: 500;
}



/*000000000000000000000000000000000000000000000000000 /aspirations_ahead 000000000000000000000000000000000000000000000*/
.develop-container {
    display: flex;
    align-items: stretch;
    padding: 0px 0px 0px 140px ; 
    gap: 50px;
}

.develop-left {
    flex: 1;
    margin-top: 250px;
}


.develop-block {
    margin-bottom: 40px;
}


.develop-heading {
    font-size: 40px;
    font-weight: 700;
    color: #125FAB;
    display: flex;
    align-items: center;
    gap: 25px;
}


.develop-diamond {
    width: 20px;
    height: 20px;
    background: #125FAB;
    transform: rotate(45deg);
}


.develop-text {
    font-size: 30px;
    color: #000;
    margin-left: 45px;
    margin-top: 6px;
}


.develop-list {
    list-style: none;
    margin-left: 7px;
    margin-top: 12px;
    padding: 0;
}

    .develop-list li {
        display: flex;
        gap: 29px;
        font-size: 30px;
        margin-bottom: 10px;
        align-items: center;
        color: #000;
    }

.develop-slide {
    opacity: 0;
    transform: translateX(-100px);
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

    .develop-slide.show {
        opacity: 1;
        transform: translateX(0);
    }

.develop-diamond-small {
    width: 10px;
    height: 10px;
    background: #125FAB;
    transform: rotate(45deg);
}


.develop-right {
    width: 50%;
    display: flex;
    align-items: center;
}

    .develop-right img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin-top:117px;
    }




/*++++++++++++++++++++++++++++++++++++++ briding the gap ++++++++++++++++++++++++++++++++*/
.brid-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 6px 0px 0px;
    gap: 240px;
    font-family: Arial, sans-serif;
}

.brid-left {
    width: 50%;
}
    .brid-left img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

.brid-right {
    width: 50%;
    margin-bottom: 0px;
}

.brid-block {
    margin-bottom: 51px;
}

.brid-heading {
    font-size: 45px;
    font-weight: 700;
    color: #125FAB;
    display: flex;
    align-items: center;
    gap: 25px;
}

.brid-diamond {
    width: 20px;
    height: 20px;
    background: #125FAB;
    transform: rotate(45deg);
}

.brid-text {
    margin-left: 49px;
    margin-top: 11px;
    font-size: 26px;
    color: #000;
}
/* Animation setup for right side slide */
.brid-slide {
    opacity: 0;
    transform: translateX(100px); /* right → left */
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

    .brid-slide.show {
        opacity: 1;
        transform: translateX(0);
    }


/*00000000000000000000000000000000000000 ONGOING PAGE 0000000000000000000000000000000000000*/

/*++++++++++++++++++++++++++++++++ ONGOING PAGE TITLE +++++++++++++++++++++++++++++++++*/
.common-section {
    padding: 40px 0;
    margin-top:100px;
}

/* CONTAINER */
.common-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.common-title {
    font-size: 38px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 9px;
}
/* DIVIDER */

.common-divider {
    display: flex;
    gap: 14px;
    margin-top: 6px;
    overflow: hidden; /* slide ke time bahar na dikhe */
}

    .common-divider span {
        display: block;
        height: 3px;
        background: #666666;
        transform: translateX(-120%);
        opacity: 0;
    }

        /* sizes */
        .common-divider span:first-child {
            width: 28px;
        }

        .common-divider span:last-child {
            width: 109px;
        }


    .common-divider.show span:last-child {
        animation: slideIn 0.6s ease-out forwards;
        animation-delay: 2s;
    }

    .common-divider.show span:first-child {
        animation: slideIn 0.6s ease-out forwards;
        animation-delay: 3s; 
    }

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}


/*+++++++++++++++++++++++++++++++++++++++++++ our_approach ++++++++++++++++++++++++++++++++++++++*/
        /* HEADER STYLE */
        .our-header {
    background: #005eb8; 
    padding: 10px 0;
    text-align: center;
    margin-top:100px;
}

/* TITLE */
.our-title {
    color: #fff;
    font-size: 70px;
    font-weight: 700;
    font-family: Arial, sans-serif;
}

    /* HIGHLIGHT */
    .our-title .highlight {
        color: #fbbf24; 
    }

.our-subtitle {
    padding: 50px 65px 74px 65px;
    font-size: 34px;
    color: #333;
    font-weight: 500;
    text-align: center;
    /* max-width: 1300px; */
    margin: auto;
    line-height: 1.7;
}

/* Bold only the first part */
.subtitle-bold {
    font-weight: 700; /* bold */
    display: contents;
}


/* 5-IMAGE GRID */
.our-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 70px 30px;
    justify-items: center;
}

/* BOX */
.our-card {
    /*border: 2px solid #ddd; */
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

    /* IMAGE */
    .our-card img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* HOVER EFFECT */
    .our-card:hover {
        transform: scale(1.05);
  /*      box-shadow: 0px 8px 15px rgba(0,0,0,0.15);*/
    }
    /* RESPONSIVE TEXT */
@media (max-width: 600px) {
    .our-title {
        font-size: 1.6rem;
    }

    .our-subtitle {
        font-size: 1rem;
    }
}


/*+++++++++++++++++++++++++++++ URBAN BANNER ++++++++++++++++++++++++++++++*/
.urban {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

    .urban img {
        max-width: 100%;
        height: auto;
        display: block;
    }
/*+++++++++++++++++++++++++++++++++++ DUO SECTION +++++++++++++++++++++++++++++++++++++*/
.duo-wrapper {
    background-color: #F6E7E2 ;
    padding:100px 50px 30px 50px;
    /* margin: 100px auto;*/
    display: flex;
    justify-content: space-between;
    gap: 0px;
}

/* CARD */
.duo {
    width: 880px;
    height: 800px;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s ease;
    cursor: pointer;
}

    /* IMAGE */
    .duo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

  
    .duo:hover {
        transform: translateY(-12px) scale(1.03);
    }
.duo-strip {
    width: 100%;
    background: #F6E7E2;
    padding: 0px 0px 30px;
    /*   text-align: center;*/
}

    .duo-strip p {
        margin: 0 82px;
        font-size: 36px;
        font-weight: 700;
        color: #5B5B5B;
    }


/*++++++++++++++++++++++++++++++++++++++++++++++++++ APPROCH SECTION ++++++++++++++++++++++++++++++++++++++++*/
.approach-section {
    width: 100%;
    max-width: 1700px;
    margin: auto;
    padding: 60px 0px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.approach-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    .approach-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .approach-card:hover img {
        transform: scale(1.08);
    }

.approach-text {
    margin-top: 50px;
    /* text-align: center; */
    padding: 0px 0px 0px 50px;
    font-size: 33px;
    font-weight: 700;
    color: #5B5B5B;
}


/*+++++++++++++++++++++++++++++++ SHREE SECTION +++++++++++++++++++++++++++*/
.shree {
    max-width:1600px;
    margin:auto;
    width: 100%;
    padding: 60px 40px;
}

/* GRID */
.shree-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* CARD */
.shree-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

    /* IMAGE */
    .shree-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

    /* HOVER EFFECT */
    .shree-card:hover img {
        transform: scale(1.08);
    }

/* BOTTOM TEXT */
.shree-text {
    margin-top: 35px;
    text-align: left;
    font-size: 35px;
    font-weight: 700;
    color: #5a5a5a;
}

/*++++++++++++++++++++++++++++++++++ mira section +++++++++++++++++++++++++++++++++++*/
/*.mira-custom-grid {*/
    /*width: 100%;
    max-width:1400px;
    margin:auto;
    display: grid;
    grid-template-columns: 2fr 1.2fr 0.8fr; 
    gap: 16px;
    padding: 20px;
}

   
    .mira-custom-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 6px;
    }


.mira-big,
.mira-mid,
.mira-small {
    height: 260px;
    overflow: hidden;
}*/
    /* SECOND ROW SAME HEIGHT */
    /*.mira-custom-grid > div:nth-child(n+4) {
    height: 260px;
}
@media (max-width: 768px) {
    .mira-custom-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mira-big,
    .mira-mid,
    .mira-small {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .mira-custom-grid {
        grid-template-columns: 1fr;
    }
}*/
    .mira-container

{
    max-width: 1400px;
    margin: auto;
    padding: 20px;
}

/* ROW */
.mira-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content:space-between;
}

/* COMMON ITEM */
.mira-item {
    height: 460px; /* SAME HEIGHT */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

    /* IMAGE */
    .mira-item img {
        width: auto;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }
    .mira-item:hover img {
        transform: scale(1.08);
    }

/*+++++++++++++++++++++++++++++++ BEYOUND SECTION ++++++++++++++++++++++++++++++*/
.beyiund {
    max-width:1700px;
    margin:auto;
    width: 100%;
    padding: 40px 0;
}

/* IMAGE WRAPPER */
.beyiund-image {
    width: 100%;
    overflow: hidden;
}

    /* IMAGE */
    .beyiund-image img {
        width: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.7s ease;
    }

    /* HOVER EFFECT */
    .beyiund-image:hover img {
        transform: scale(1.06);
    }

/* TEXT */
.beyiund-text {
    margin-top: 30px;
    font-size: 34px;
    font-weight: 700;
    color: #5a5a5a;
    padding-left: 40px; /* same left spacing feel */
}

/*+++++++++++++++++++++++++++++++++++++++++ TEXT IDEA +++++++++++++++++++++++++++++++++++++++*/
/* CSS */
.idea {
    background-color: #2261a1; /* Blue background */
    text-align: center;
    padding: 130px 20px;
    font-family: 'Arial', sans-serif;
}

    .idea p {
        color: #fff;
        font-size: 60px;
        font-weight: bold;
        margin: 0 0 20px;
    }

    .idea .highlight {
        color: #fbb03b; /* Yellow text */
    }

/*++++++++++++++++++++++++++++++++++++++++ ONFGOING PROJECT SECTION ++++++++++++++++++++++++++++++++++++*/
.pro {
    padding: 60px 0;
}

.pro-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.pro-card {
    text-align: center;
}

.pro-img {
    position: relative;
    overflow: hidden;
    border-radius:20px;
}

    .pro-img img {
        width: 100%;
        display: block;
        transition: 0.4s ease;
    }

.pro-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
    pointer-events: none; /* ← ye important hai */
}

.pro-img:hover img {
    transform: scale(1.08);
}

.pro-img:hover .pro-hover {
    opacity: 1;
}

.pro-card h3 {
    margin-top: 15px;
    margin-bottom:0px;
    font-size: 26px;
    font-weight: 500;
}

.pro-card p {
    margin: 2px 0;
    font-size: 15px;
    font-weight:500;
    color: #666;
}

.pro-card span {
    font-size: 15px;
    font-weight:500;
    color: #666;
}

.img-link img {
    display: block;
    width: 100%;
    height: auto;
}
/*000000000000000000000000000000000000000000000000 UPCOMING PAGE OKY 0000000000000000000000000000000000000000*/

/*+++++++++++++++++++++++++++++++++ UPCOME SECTION++++++++++++++++++++++++++++++*/
.upcome {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url("img/upcome.jpg") no-repeat center center / cover;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

.upcome-overlay {
    position: absolute;
    inset: 0;
    /*background: rgba(0,0,0,0.45);*/
}


.upcome-box {
    position: absolute;
    text-align: center;
    z-index: 2;
}

    .upcome-box h2 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: -19px;
    }

    .upcome-box p {
        font-size: 18px;
        line-height: 1.5;
    }


    .upcome-box.tl {
        top: 30%;
        left: 30%;
    }

    .upcome-box.tr {
        top: 30%;
        right:29%;
    }

    .upcome-box.bl {
        bottom: 30%;
        left: 30%;
    }

    .upcome-box.br {
        bottom: 30%;
        right: 31%;
    }


.upcome-line {
    position: absolute;
    background: rgba(255,255,255,0.8);
    z-index: 1;
}

    .upcome-line.horizontal {
        width: 60%;
        height: 2px;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
    }

    .upcome-line.vertical {
        height: 44%;
        width: 2px;
        top: 50%;
        left: 50%;
        transform: translateY(-50%);
    }


/*00000000000000000000000000000000000000000 commercial_space 0000000000000000000000000000000000000000*/
.commerce {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('icons/commerce.jpg') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
}

/* blue overlay */
.commerce-overlay {
    position: absolute;
    inset: 0;
    /*background: rgba(38, 78, 110, 0.65);*/
    z-index: 1;
}

/* center content */
.commerce-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* spacing between texts */
.commerce-item:first-child {
    margin-bottom: -30px;
}

.commerce-item h2 {
    font-size: 62px;
    font-weight: 700;
    color: #fff;
    margin-bottom: -29px;
}

.commerce-item p {
    font-size: 23px;
    font-weight: 400;
    color: #fff;
   /* opacity: 0.95;*/
}

/*000000000000000000000000000000000000000000000000 SUCESS STORIES 00000000000000000000000000000000000000*/
.success {
    width: 100%;
    font-family: "Poppins", sans-serif;
    background: #fff;
}


.success-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
}


.success-image {
    width: 50%;
}

    .success-image img {
        width: 100%;
        height: 90%;
        object-fit: cover;
        display: block;
        margin-top: 110px;
    }


.success-content {
    width: 45%;
    max-width: 600px;
    margin: auto;
    padding-right: 40px;
    padding-top: 10px;
    position: relative;
}



.success-title {
    margin-top: 0px;
    margin-bottom: 25px;
}
    .success-title{
        width: 360px;
        height: auto;
        display: block;
        margin-bottom: 20px;
        margin-top:100px;
    }
.title-image {
    width: 450px;
    height: auto;
    display: block;
    margin-bottom: -25px;
}
.success-title p {
    font-size: 36px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
    padding-left:19px;
}


.success-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 70px;
    row-gap: 20px;
}


.success-box h3 {
    font-size: 90px;
    line-height: 1;
    margin: 0;
    color: #C09A5C;
    font-weight: 700;
}

.success-box p {
    margin: 4px 0 0;
    font-size: 22px;
    color:#333;
    line-height: 1.2;
}
.success-box:last-child {
    grid-column: 1 / 2;
}
.success-box {
    margin-bottom:30px;
}
.success-yellow {
    position: absolute;
    right: -155px;
    bottom: -18px;
    width: 146px;
    height: auto;
}
.suffix {
    font-size: 68px;
    font-weight: 700;
    margin-left: 6px;
    color: #C09A5C;

}


/*++++++++++++++++++++++++++++++++++++++++++++ SUCESS 2 ++++++++++++++++++++++++++++++++++++++*/
    .success2 {
    width: 100%;
    font-family: "Poppins", sans-serif;
    background: #fff;
}

.success-wrapper2 {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.success-image2 {
    width: 50%;
}

    .success-image2 img {
        width: 100%;
        height: 90%;
        object-fit: cover;
        display: block;
        margin-top: 110px;
    }

.success-content2 {
    width: 45%;
    max-width: 600px;
    margin: auto;
    padding-right: 40px;
    padding-top: 10px;
    position: relative;
}

.success-title2 {
    margin-top: 0px;
    margin-bottom: 25px;
    width: 360px;
    height: auto;
    display: block;
    margin-bottom: 20px;
    margin-top: 100px;
}

.title-image2 {
    width: 500px;
    height: auto;
    display: block;
    margin-bottom: -25px;
}

.success-title2 p {
    font-size: 36px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
    padding-left: 0px;
}

.success-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 70px;
    row-gap: 20px;
}

.success-box2 h3 {
    font-size: 90px;
    line-height: 1;
    margin: 0;
    color: #967964;
    font-weight: 700;
}

.success-box2 p {
    margin: 4px 0 0;
    font-size: 22px;
    color: #333;
    line-height: 1.2;
}

.success-box2:last-child {
    grid-column: 1 / 2;
}

.success-box2 {
    margin-bottom: 30px;
}

.success-yellow2 {
    position: absolute;
    right: -155px;
    bottom: -18px;
    width: 146px;
    height: auto;
}
.suffix2 {
    font-size: 68px;
    font-weight: 700;
    margin-left: 6px;
    color: #967964;
}


/*00000000000000000000000000000000000000000000 empowering_channel_partners 0000000000000000000000000000000000000000*/

.empower-section {
    padding: 60px 0px 0px 63px;
    background: #fff;
    margin-top: 40px;
}


.empower-wrapper {
    display: flex;
    align-items: center; 
    justify-content: space-between;
    gap: 32px; 
}


.empower-content {
    flex: 1.15;
    margin-top: 0;
}

.empower-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .empower-list li {
        position: relative;
        padding-left: 45px;
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 1.85;
        color: #222;
    }

        .empower-list li::before {
            content: "◆";
            position: absolute;
            left: 0;
            top: 4px;
            color: #0E60B2;
            font-size: 25px;
        }

    .empower-list .highlight {
        color: #0E60B2;
        font-weight: 700;
    }


.empower-images {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

/* image container */
.empower-img {
    width: 100%;
    max-width: 100%;
    border-radius: 22px;
    overflow: hidden;
    padding: 12px; /* ⭐ extra space so star cut na ho */
    transform: scale(0.6);
    opacity: 0;
    transition: transform 1s ease-out 1.2s, opacity 1s ease-out 1.2s;
}

    .empower-img.in-view {
        transform: scale(1);
        opacity: 1;
    }

    /* actual image */
    .empower-img img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 18px; /* padding ke andar clean curve */
        transition: transform 0.5s ease;
    }

    /* ⭐ softer hover – no cut */
    .empower-img:hover img {
        transform: scale(1.05); /* pehle 1.1 tha */
    }

@media(max-width:768px) {
    .empower-wrapper {
        flex-direction: column;
        gap: 28px;
    }

    .empower-content {
        margin-top: 0;
    }

    .empower-images {
        justify-content: center;
    }

    .empower-list li {
        font-size: 15px;
    }
}


/*++++++++++++++++++++++++++++++++++++++++++++ testimonial ++++++++++++++++++++++++++++++++++++++++*/

/* ===== DISCOVER SECTION ===== */
.dis-section {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    justify-content: center; 
    background: #fff;
    box-sizing: border-box;
    margin-top:100px;
}

/* CENTER WRAPPER */
.dis-heading-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    justify-content: center; 
}

/* DIAMOND ICON */
.dis-icon {
    width: 16px;
    height: 16px;
    background: #0b5ed7;
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* HEADING TEXT */
.dis-heading {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #0F5FAC;
    line-height: 1.3;
    text-align: center; 
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .dis-heading {
        font-size: 28px;
    }
}

@media(max-width:768px) {
    .dis-section {
        padding: 40px 16px;
    }

    .dis-heading-wrap {
        gap: 14px;
    }

    .dis-heading {
        font-size: 22px;
    }
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++ Test +++++++++++++++++++++++++++++++++++++++++++*/
.test-review-section {
    padding: 80px 0;
    background: #ffffff;
}

.test-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

/*.test-review-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    width: 75%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 55px;
}

    
    .test-review-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 40px; 
        height: 3px; 
        background: #1f5aa6;
        border-radius: 1px;
        transform-origin: left center;
        animation: border-line 8s linear infinite;
    }


@keyframes border-line {
    0% {
        transform: rotate(0deg) translateX(0);
        top: 0;
        left: 0;
    }

    12.5% {
        transform: rotate(90deg) translateX(0);
        top: 0;
        left: calc(100% - 40px);
    }

    25% {
        transform: rotate(90deg) translateX(0);
        top: 0;
        left: calc(100% - 40px);
    }

    37.5% {
        transform: rotate(180deg) translateX(0);
        top: calc(100% - 3px);
        left: calc(100% - 40px);
    }

    50% {
        transform: rotate(180deg) translateX(0);
        top: calc(100% - 3px);
        left: calc(100% - 40px);
    }

    62.5% {
        transform: rotate(270deg) translateX(0);
        top: calc(100% - 3px);
        left: 0;
    }

    75% {
        transform: rotate(270deg) translateX(0);
        top: calc(100% - 3px);
        left: 0;
    }

    87.5% {
        transform: rotate(360deg) translateX(0);
        top: 0;
        left: 0;
    }

    100% {
        transform: rotate(360deg) translateX(0);
        top: 0;
        left: 0;
    }
}*/

.test-review-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    width: 75%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    margin-bottom: 55px;
    overflow: hidden;
}

.border-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.border-rect {
    fill: none;
    stroke: #1f5aa6;
    stroke-width: 1.5;
    stroke-linecap: round;
    animation: border-run 6s linear infinite;
    animation-play-state: paused;
}

/* start when visible */
.test-review-card.show-border .border-rect {
    animation-play-state: running;
}

@keyframes border-run {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: var(--perimeter);
    }
}

.test-card-one {
    margin-bottom: 80px;
}

.test-card-two {
    margin-left: auto;
    margin-bottom: 80px;
}

/* header */
.test-review-header {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* profile image circle */
.test-profile-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

    .test-profile-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* user info */
.test-user-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.test-user-info span {
    font-size: 15px;
    color: #777;
}

.test-stars {
    color: #f4b400;
    font-size: 18px;
}


.test-review-text {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}


.test-like {
    margin-top: 15px;
    font-size: 20px;
    color: #666;
}


.test-yellow-image {
    position: absolute;
    left: 1321px;
    bottom: 0;
    width: 154px;
    transform: translate(50%, 50%);
}

.test-yellow-image img {
        width: 100%;
    }


/*+++++++++++++++++++++++++++++++++++++++++++++ KHPL CULTURE ++++++++++++++++++++++++++++++++++++++++++++*/

.cult-section {
    padding: 40px 0;
    margin-top: 100px;
}

/* CONTAINER */
.cult-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.cult-title {
    font-size: 38px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 9px;
}
/* DIVIDER */
.cult-divider {
    display: flex;
    gap: 14px;
    margin-top: 6px;
    overflow: hidden; /* slide ke time bahar na dikhe */
}

    .cult-divider span {
        display: block;
        height: 3px;
        background: #666666;
        transform: translateX(-120%);
        opacity: 0;
    }

        /* sizes */
        .cult-divider span:first-child {
            width: 28px;
        }

        .cult-divider span:last-child {
            width: 109px;
        }


    .cult-divider.show span:last-child {
        animation: slideIn 0.3s ease-out forwards;
        animation-delay: 1s;
    }

.cult-divider.show span:first-child {
    animation: slideIn 0.5s ease-out forwards;
    animation-delay: 1.5s;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++ KHPL Cultural Highlights ++++++++++++++++++++++++++++++++++++++*/
.culture-section {
    padding: 0px 0 60px 0;
    background: #fff;
}

.culture-container {
    max-width: 1300px;
    margin: auto;
}

.culture-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.culture-desc {
    max-width: 800px;
    font-size: 15px;
    font-weight:600;
    color: #555;
    margin-bottom: 50px;
}

/* GRID – ye magic hai */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 500px);
    justify-content: left;
    gap: 10px;
}
.culture-card {
    width: 450px;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

    /* IMAGE */
    .culture-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

/* OVERLAY */
.culture-overlay {
    position: absolute;
    inset: 0;
    background: rgba(25, 90, 165, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

/* HOVER */
.culture-card:hover img {
    transform: scale(1.12);
}

.culture-card:hover .culture-overlay {
    opacity: 1;
}

/* BUTTON */
.culture-btn {
    background: #f4b400;
    color: #fff;
    padding: 14px 26px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
}
/* BUTTON */
.culture-btn {
    background: #ffcc00;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .culture-btn:hover {
        background: #fff;
        color: #ffcc00;
    }

/* MOBILE */
@media (max-width: 768px) {
    .culture-grid {
        gap: 24px;
    }
}
/*+++++++++++++++++++++++++++++++++++++++++++ Celebrating a Decade of Excellence! title ++++++++++++++++++++++++++++++++++++++++++++*/
.high-section {
    padding: 0px 0 40px;
}

/* CONTAINER */
.high-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.high-title {
    font-size: 38px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 9px;
}
/* DIVIDER */

.high-divider {
    display: flex;
    gap: 14px;
    margin-top: 6px;
    overflow: hidden; /* slide ke time bahar na dikhe */
}

    .high-divider span {
        display: block;
        height: 3px;
        background: #666666;
        transform: translateX(-120%);
        opacity: 0;
    }

        /* sizes */
        .high-divider span:first-child {
            width: 28px;
        }

        .high-divider span:last-child {
            width: 109px;
        }


    .high-divider.show span:last-child {
        animation: slideIn 0.3s ease-out forwards;
        animation-delay: 1s;
    }

    .high-divider.show span:first-child {
        animation: slideIn 0.5s ease-out forwards;
        animation-delay: 1.5s;
    }

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/*+++++++++++++++++++++++++++++++++++++++++ Celebrating a Decade of Excellence! ++++++++++++++++++++++++++++++++++++++++++*/
    /* ===== SECTION ===== */
    .hgh-insta-section {
        width: 100%;
        padding: 0px 0px 60px 0px;
        background: #fff;
    }

    .hgh-container {
        max-width: 1300px;
        margin: auto;
    }
    /* TOP TEXT */
    .hgh-top-text {
        text-align: left;
        font-size: 15px;
        font-weight: 600;
        color: #555;
        margin-bottom: 40px;
    }
    /* GRID */
    .hgh-insta-grid {
        display: flex;
        gap: 25px;
    }
    /* CARD */
    .hgh-insta-card {
        position: relative;
        flex: 1;
        overflow: hidden;
        border-radius: 6px;
    }
    /* IMAGE */
    .hgh-insta-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    /* HOVER ZOOM */
    .hgh-insta-card:hover img {
        transform: scale(1.08);
    }
    /* ===== CENTER HOVER EFFECT ===== */
    .hgh-hover-overlay {
        position: absolute;
        inset: 0;
        background: rgba(13, 88, 165, 0.75);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .hgh-hover-card:hover .hgh-hover-overlay {
        opacity: 1;
    }
    /* BUTTON */
    .hgh-insta-btn {
        background: #ffcc00;
        color: #fff;
        padding: 12px 24px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .hgh-insta-btn:hover {
        background: #fff;
        color: #ffcc00;
    }
    /* ===== RESPONSIVE ===== */
    @media(max-width:900px) {
        .hgh-insta-grid {
        flex-direction: column;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++ Diwali celebration title ++++++++++++++++++++++++++++++++++++++++++++*/
.diwa-section {
    padding: 0px 0 40px;
}

/* CONTAINER */
.diwa-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.diwa-title {
    font-size: 38px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 9px;
}
/* DIVIDER */
.diwa-divider {
    display: flex;
    gap: 14px;
    margin-top: 6px;
    overflow: hidden; /* slide ke time bahar na dikhe */
}

    .diwa-divider span {
        display: block;
        height: 3px;
        background: #666666;
        transform: translateX(-120%);
        opacity: 0;
    }

        /* sizes */
        .diwa-divider span:first-child {
            width: 28px;
        }

        .diwa-divider span:last-child {
            width: 109px;
        }


    .diwa-divider.show span:last-child {
        animation: slideIn 0.3s ease-out forwards;
        animation-delay: 1s;
    }

    .diwa-divider.show span:first-child {
        animation: slideIn 0.5s ease-out forwards;
        animation-delay: 1.5s;
    }

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/*++++++++++++++++++++++++++++++++++++++++++++++ Diwali celebration ++++++++++++++++++++++++++++++++++++++++++++++*/
/* ===== SECTION ===== */
.diwali-insta-section {
    width: 100%;
    padding: 0px 0px 60px;
    background: #fff;
}

.diwali-container {
    max-width: 1300px;
    margin: auto;
}

/* TOP TEXT */
.diwali-top-text {
    text-align: left;
    font-size: 15px;
    font-weight:600;
    color: #555;
    margin-bottom: 40px;
}

/* GRID */
.diwali-insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 415px);
    gap: 24px;
    justify-content: center;
}

/* CARD SIZE */
.diwali-insta-card {
    position: relative;
    width: 415px;
    height: 415px;
    overflow: hidden;
    border-radius: 10px;
}

    /* IMAGE PERFECT FIT */
    .diwali-insta-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    /* ZOOM ON HOVER */
    .diwali-insta-card:hover img {
        transform: scale(1.08);
    }

/* OVERLAY */
.diwali-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 88, 165, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.diwali-insta-card:hover .diwali-hover-overlay {
    opacity: 1;
}/* BUTTON */
.diwali-insta-btn {
    background: #ffcc00;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .diwali-insta-btn:hover {
        background: #fff;
        color: #ffcc00;
    }

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
    .diwali-insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .diwali-insta-grid {
        grid-template-columns: 1fr;
    }
}


/*++++++++++++++++++++++++++++++++++++++++++++++++++++++ contact page ++++++++++++++++++++++++++++++++++++++++++++++*/
.contact-section {
    padding: 60px 20px;
    background: #fff;
    margin-top:100px;
}

.contact-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* LEFT IMAGE */
.contact-left {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

    .contact-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* OVERLAY */
.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    padding: 40px;
}

.contact-info {
    color: #fff;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 0px;
}

    .contact-item span {
        font-size: 26px;
        margin-top: 14px;
    }

/* RIGHT FORM */
.contact-right {
    flex: 1;
}

    .contact-right h2 {
        font-size: 34px;
        font-weight:400;
        margin-bottom: 25px;
    }

.contact-row {
    display: flex;
    gap: 20px;
}

.contact-field {
    width: 100%;
    margin-bottom: 18px;
}

    .contact-field label {
        display: block;
        font-size: 15px;
        margin-bottom: 4px;
    }

    .contact-field input,
    .contact-field textarea {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #cfd6df;
        border-radius: 4px;
        font-size: 14px;
    }

    .contact-field textarea {
        min-height: 120px;
        resize: none;
    }

.contact-btn {
    background: #1F64AC;
    color: #fff;
    padding: 10px 24px;
    border: 2px solid #ffffff; /* white border */
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}

    .contact-btn:hover {
        background: #fff;
        color: #1F64AC;
        border-color: #1F64AC; /* blue border on hover */
    }

/* ERROR & LOADER */
.error-new {
    display: none;
    color: red;
    font-size: 13px;
    margin-bottom: 10px;
}

.wait_back {
    display: none;
    font-size: 13px;
    margin-bottom: 10px;
}
.form-row {
    display: flex;
    gap: 40px;
    margin-bottom:15px;
}

    .form-row .form-group {
        width: 50%;
    }

        .form-row .form-group input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #cfd6df;
            border-radius: 4px;
            font-size: 14px;
        }

/* RESPONSIVE */
@media(max-width:900px) {
    .contact-container {
        flex-direction: column;
    }
}


/*000000000000000000000000000000000000000000000000000 THANK YOU 000000000000000000000000000000000000000000000000000*/

body, html {
    margin: 0;
    padding: 0;
    /*background-color: #fff;*/
    font-family: 'Segoe UI', sans-serif;
}

.thank-page-v2 {
    margin-top:70px;
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    box-sizing: border-box;
    background-color: #fff;
}

.thank-container-v2 {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.main-thank {
    font-size: 100px;
    font-weight: 900;
    color: #1F4F81;
    text-shadow: 6px 6px 15px rgba(13, 62, 255, 0.3);
    /*  font-family: 'Brush Script MT', cursive;*/
    margin-bottom: 30px;
}

.thank-text {
    font-size: 27px;
    color: #333;
    margin-bottom: 15px;
}

.nice-day {
    font-size: 24px;
    color: #222;
    font-weight: 600;
}



@media (max-width: 768px) {
    .main-thank {
        font-size: 60px;
    }

    .thank-text {
        font-size: 20px;
    }

    .nice-day {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .main-thank {
        font-size: 46px;
    }

    .thank-text {
        font-size: 18px;
    }

    .nice-day {
        font-size: 16px;
    }
}

/*############  BACK TO TOP BUTTON ###########*/
#back-to-top-section {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}




.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background-color: #6292C5;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-infinite 2s infinite ease-in-out;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease-in-out;
}


    .back-to-top:hover {
        box-shadow: 0 20px 25px rgba(0, 0, 0, 0.5);
        background-color: #ffffff;
        color: #6292C5;
    }


@keyframes bounce-infinite {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: translateY(-15px);
        box-shadow: 0 25px 35px rgba(0, 0, 0, 0.6);
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++++++ reached text +++++++++++++++++++++++++++++++++++++++++*/
/* CSS */
.Reach {
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    text-align: center;
    padding: 37px 20px;
}

    .Reach strong {
        font-weight: bold;
        color: #000;
    }


/*+++++++++++++++++++++++++++++++++++++++ serviceas srv section +++++++++++++++++++++++++++++++++++++*/
.srv-section {
    position: relative;
    width: 100%;
    height: 1100px;
    background: url("new/serv.jpg") center/cover no-repeat;
    font-family: Arial, sans-serif;
    color: #fff;
    margin-top:100px;
}

/* overlay */
.srv-overlay {
    position: absolute;
    inset: 0;
    /*background: rgba(0, 60, 120, 0.85);*/
}

/* ================= CENTER ICON ================= */
.srv-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

    .srv-center-icon img {
        width: 143px;
    }

/* ================= DIVIDERS ================= */
.srv-divider {
    position: absolute;
    background: #ffffff;
    z-index: 2;
}

    /* vertical */
    .srv-divider.srv-vertical {
        width: 5px;
        height: 160px;
        left: 50%;
        transform: translateX(-50%);
    }

        .srv-divider.srv-vertical.srv-top {
            top: calc(50% - 240px);
        }

        .srv-divider.srv-vertical.srv-bottom {
            top: calc(50% + 80px);
        }

    /* horizontal */
    .srv-divider.srv-horizontal {
        height: 5px;
        width: 160px;
        top: 50%;
        transform: translateY(-50%);
    }

        .srv-divider.srv-horizontal.srv-left {
            left: calc(50% - 240px);
        }

        .srv-divider.srv-horizontal.srv-right {
            left: calc(50% + 80px);
        }

/* ================= TEXT BLOCKS ================= */
.srv-box {
    position: absolute;
    max-width:500px;
    z-index: 3;
}

    .srv-box h3 {
        color: #f5c400;
        font-size: 38px;
        font-weight:700;
        margin-bottom: -18px;
    }

    .srv-box p {
        font-size: 26px;
        line-height: 1.1;
    }

/* top */
.srv-top-text {
    top: calc(50% - 410px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* bottom */
.srv-bottom-text {
    top: calc(50% + 225px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

/* left */
.srv-left-text {
    top: 50%;
    left: calc(50% - 760px);
    transform: translateY(-50%);
    text-align: left;
}

/* right */
.srv-right-text {
    top: 50%;
    left: calc(50% + 281px);
    transform: translateY(-50%);
    text-align: left;
}
.desk {
    display:block;
}
.mob {
    display:none;
}


/*+++++++++++++++++++++++++++++++++++++ serviceas srv section for mobile+++++++++++++++++++++++++++++++++++++++++*/
.srv2-section {
    position: relative;
    width: 100%;
    height: 1100px;
    background: url("new/serv.jpg") center/cover no-repeat;
    font-family: Arial, sans-serif;
    color: #fff;
    margin-top: 100px;
}

/* center icon */
.srv2-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

    .srv2-center-icon img {
        width: 143px;
    }

/* dividers */
.srv2-divider {
    position: absolute;
    background: #ffffff;
    z-index: 2;
}

    /* vertical */
    .srv2-divider.srv2-vertical {
        width: 5px;
        height: 160px;
        left: 50%;
        transform: translateX(-50%);
    }

        .srv2-divider.srv2-vertical.srv2-top {
            top: calc(50% - 240px);
        }

        .srv2-divider.srv2-vertical.srv2-bottom {
            top: calc(50% + 80px);
        }

    /* horizontal */
    .srv2-divider.srv2-horizontal {
        height: 5px;
        width: 160px;
        top: 50%;
        transform: translateY(-50%);
    }

        .srv2-divider.srv2-horizontal.srv2-left {
            left: calc(50% - 240px);
        }

        .srv2-divider.srv2-horizontal.srv2-right {
            left: calc(50% + 80px);
        }

/* text blocks */
.srv2-box {
    position: absolute;
    max-width: 500px;
    z-index: 3;
}

    .srv2-box h3 {
        color: #f5c400;
        font-size: 38px;
        font-weight: 700;
        margin-bottom: -15px;
    }

    .srv2-box p {
        font-size: 26px;
        line-height: 1.1;
    }

/* positions */
.srv2-top-text {
    top: calc(50% - 410px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.srv2-bottom-text {
    top: calc(50% + 225px);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.srv2-left-text {
    top: 50%;
    left: calc(50% - 760px);
    transform: translateY(-50%);
}

.srv2-right-text {
    top: 50%;
    left: calc(50% + 281px);
    transform: translateY(-50%);
}


/*000000000000000000000000000000000000000000 BALAJI SERENITY 000000000000000000000000000000000000000*/
/* Banner Container */
.balaji-banner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 110px;
}

/* Banner Image */
.balaji-banner-img {
    width: 100%;
    height: auto;
    display: block;
}
.balaji-desk {
    display:block;
}
.balaji-mob {
    display: none;
}
/*++++++++++++++++++++++++++++++ BALAJI OVERVIEW +++++++++++++++++++++++++++++*/
/* Section */
.over-section {
    padding: 60px 40px 30px;
    background-color: #ffffff;
}

/* Container */
.over-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Box */
.over-image-box {
    flex: 1;
}

.over-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Content */
.over-content {
    flex: 1;
}

/* Heading */
.over-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 10px;
}

/* Subheading */
.over-subheading {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #666;
    margin-bottom: 15px;
}

/* Divider (same style like image) */
.over-divider {
    width: 70px;
    height: 3px;
    background-color: #a07c5a;
    margin-bottom: 30px;
}

/* Text */
.over-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    text-align:left;
}

/* Responsive */
@media (max-width: 768px) {
    .over-container {
        flex-direction: column;
        text-align: center;
    }

    .over-divider {
        margin: 20px auto;
    }
}


/*+++++++++++++++++++++++++++++++++++++++ BALAJI OVERVIEW +++++++++++++++++++++++++++++++++++*/
/* Wrapper */
.overview-wrap {
    width: 100%;
    text-align: center;
    padding: 0px 15px;
    box-sizing: border-box;
}

.overview-title {
    font-family: 'Poppins', sans-serif;
    font-size: 47px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0px;
}
/* Divider */
.overview-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

/* Line */
.overview-line {
    width: 280px;
    height: 3px;
    background-color: #8F8183;
}

/* Dots */
.overview-dot {
    width: 9px;
    height: 9px;
    background-color: #8F8183;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 480px) {
    .overview-line {
        width: 180px;
    }

    .overview-title {
        font-size: 28px;
    }
}


/*+++++++++++++++++++++++++++++ CONFIG +++++++++++++++++++++++++++++*/
/* Wrapper */
.config-wrap {
    width: 100%;
    text-align: center;
    padding: 0px 15px;
    box-sizing: border-box;
}

.config-title {
    font-family: 'Poppins', sans-serif;
    font-size: 47px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0px;
}
/* Divider */
.config-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

/* Line */
.config-line {
    width: 280px;
    height: 3px;
    background-color: #8F8183;
}

/* Dots */
.config-dot {
    width: 9px;
    height: 9px;
    background-color: #8F8183;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 480px) {
    .config-line {
        width: 180px;
    }

    .config-title {
        font-size: 28px;
    }
}

/*++++++++++++++++++++++++++++++++++++ CONFIGURATION  ++++++++++++++++++++++++++++++*/
.unit-section {
    background: #ffffff;
    padding: 60px 0 30px;
}

/* container EXACT 900px */
.unit-container {
    width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

/* card size EXACT */
.unit-card {
    width: 240px;
    height: 140px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    /*   padding-top: 10px;*/
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    padding: 20px;
    border: 2px solid rgba(31, 100, 172, 0.4);
}

    .unit-card:hover {
        transform: translateY(-6px);
    }

/* icon */
.unit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
}

    .unit-icon img {
        width: auto;
        height: auto;
    }

/* text */
.unit-title {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 0px;
    color: #000;
}

.unit-size {
    font-size: 17px;
    font-weight: 500;
    color: #666;
}


/*++++++++++++++++++++++++++++++++++++++++ AMINITIES ++++++++++++++++++++++++++++++++++++*/
/* Wrapper */
.ami-wrap {
    width: 100%;
    text-align: center;
    padding: 0px 15px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.ami-title {
    font-family: 'Poppins', sans-serif;
    font-size: 47px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0px;
}
/* Divider */
.ami-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

/* Line */
.ami-line {
    width: 280px;
    height: 3px;
    background-color: #8F8183;
}

/* Dots */
.ami-dot {
    width: 9px;
    height: 9px;
    background-color: #8F8183;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 480px) {
    .ami-line {
        width: 180px;
    }

    .ami-title {
        font-size: 28px;
    }
}


/*++++++++++++++++++++++++++++++++++++++++++++++ AMINITIES SWIPER +++++++++++++++++++++++++++++++++++++++++++*/
.amenities-swiper {
    position: relative;
}

.amenities-section {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.amenities-item {
    text-align: center;
}

/*.amenities-icon {
    width: 90px;
    height: auto;
    margin-bottom: 10px;
}
*/
.amenities-icon {
    width: 95px;
    height: auto;
    margin-bottom: 10px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

/* Hover pe zoom out */
.amenities-item:hover .amenities-icon {
    transform: scale(1.1);
}

.amenities-text {
    font-size: 16px;
    font-weight: 500;
}

.amenities-prev,
.amenities-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Left arrow */
.amenities-prev {
    left: 0;
}

/* Right arrow */
.amenities-next {
    right: 0;
}

/* Arrow icons */
.amenities-prev::after {
    content: '‹';
    color: #000;
    font-size: 50px;
}

.amenities-next::after {
    content: '›';
    color: #000;
    font-size: 50px;
}
/* Hide swiper dots */
.amenities-swiper .swiper-pagination {
    display: none !important;
}


/*++++++++++++++++++++++++++++++++++++++ floor plans+++++++++++++++++++++++++++++++++++*/
.floory-container {
    max-width:1150px;
    margin:auto;
    padding:20px;
}
.floory.gallery-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 30px;
    padding: 20px;
    box-sizing: border-box;
}

    .floory.gallery-full a {
        display: block;
        overflow: hidden;
        border-radius: 8px;
        position: relative;
    }

        .floory.gallery-full a img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.4s ease; /* smooth zoom */
        }

        .floory.gallery-full a:hover img {
            transform: scale(1.2); /* hover पर 1.2 गुना ज़ूम इन */
        }

    .floory.gallery-full figure {
        margin: 0;
    }

    .floory.gallery-full figcaption {
        font-family: 'Montserrat', sans-serif;
        text-align: center;
        padding: 6px 0;
        /*text-transform:uppercase;*/
        font-size: 18px;
        font-weight: 600;
        color: white;
    }

.sliders-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* अगर आप चाहें कि दोनों समान width लें */
    justify-content: center;
}

.slider-col {
    flex: 1 1 45%; /* लगभग आधा width, adjust करना है तो percent बदलें */
    min-width: 300px;
    box-sizing: border-box;
}

    .slider-col .swiper {
        width: 100%;
    }

    .slider-col .swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }

    .slider-col .slider-title {
        text-align: center;
        font-size: 24px;
        margin-bottom: 10px;
        font-weight: bold;
        font-family: 'GothamBookRegular', Arial, sans-serif;
    }
/* Pagination bullets (inactive + all) */
.floory-two-prev::after,
.floory-two-next::after {
    /* color और size पहले line से override हो जाएगी */
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 900;
}

.floory-one-prev::after,
.floory-one-next::after {
    /* color और size पहले line से override हो जाएगी */
    color: #000 !important;
    font-size: 24px !important;
    font-weight: 900;
}

/*+++++++++++++++++++++++++++++++++++++ FLOOR PLAN TITLE +++++++++++++++++++++++++++++++*/
/* Wrapper */
.floor-wrap {
    width: 100%;
    text-align: center;
    padding: 60px 15px 30px;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.floor-title {
    font-family: 'Poppins', sans-serif;
    font-size: 47px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0px;
}
/* Divider */
.floor-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

/* Line */
.floor-line {
    width: 650px;
    height: 3px;
    background-color: #8F8183;
}

/* Dots */
.floor-dot {
    width: 9px;
    height: 9px;
    background-color: #8F8183;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 480px) {
    .floor-line {
        width: 180px;
    }

    .floor-title {
        font-size: 28px;
    }
}


/*+++++++++++++++++++++++++++++++++++++++ RERA SECTION ++++++++++++++++++++++++++++++++++++*/
/* ===== RERA SECTION ===== */
.rera-section {
    background-color: #1F4F81;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin:50px 0px 2px 0px;
}

/* ===== TOP SHORT STRIP ===== */
.rera-short {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.rera-short-text {
    font-size: 15px;
    margin: 0;
}

    .rera-short-text a {
        color: #ffffff;
        text-decoration: underline;
    }

.rera-toggle {
    margin-left: 10px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

/* ===== FULL CONTENT (HIDDEN BY DEFAULT) ===== */
.rera-full-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
    background-color: #1F4F81;
}

    .rera-full-content.rera-open {
        max-height: 900px;
    }

/* ===== INNER WRAP ===== */
.rera-content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0px;
    max-width: 1480px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* ===== DISCLAIMER ===== */
.rera-disclaimer {
    flex: 4;
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
}

/* ===== QR SECTION ===== */
.rera-qr {
    flex: 1;
    text-align: center;
}

    .rera-qr img {
        width: 117px;
        background: #ffffff;
        padding: 8px;
        border-radius: 4px;
    }
/* ===== LOCATION ===== */
.rera-location {
    background-color: #ffffff;
    display: flex;
    align-items: flex-start; /* icon + text align */
    gap: 8px;
    font-size: 18px;
    font-weight:500;
    color: #666;
}

    .rera-location p {
        margin: 0;
        line-height: 1.5;
    }

.location-icon {
    flex-shrink: 0;
    margin-top: 2px; /* text ke baseline ke saath match */
}

    .location-icon img {
        width: 24px;
        height: 24px;
        display: block;
    }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .rera-content-wrap {
        flex-direction: column;
        text-align: center;
    }

    .rera-disclaimer {
        font-size: 12.5px;
    }

    .rera-toggle {
        display: inline-block;
        margin-top: 6px;
    }
}


/*0000000000000000000000000000000000000 SHREE SHAHSHWAT 0000000000000000000000000000000000*/


/*++++++++++++++++++++++++++++++++ CONFIGURATION++++++++++++++++++++++++++*/
.unit2-container {
    width: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

/*++++++++++++++++++++++++++++++++++ PROJECT STATUS ++++++++++++++++++++++++++++++++++++*/
/* Wrapper */
.proj-wrap {
    width: 100%;
    text-align: center;
    padding: 60px 15px 30px;
    box-sizing: border-box;
    margin-bottom: 50px;
}

.proj-title {
    font-family: 'Poppins', sans-serif;
    font-size: 47px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0px;
}
/* Divider */
.proj-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

/* Line */
.proj-line {
    width: 388px;
    height: 3px;
    background-color: #8F8183;
}

/* Dots */
.proj-dot {
    width: 9px;
    height: 9px;
    background-color: #8F8183;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 480px) {
    .proj-line {
        width: 180px;
    }

    .proj-title {
        font-size: 28px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++ PROJECT STATUS SHASHWAT IMAGE ++++++++++++++++++++++++++++++++++++*/
.shashwat-image-section {
    padding: 0px 20px 60px;
    background-color: #ffffff;
}

.shashwat-image-wrap {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

/* Initial state */
.shashwat-animate {
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

    /* When visible */
    .shashwat-animate.shashwat-active {
        transform: scale(1);
        opacity: 1;
    }

.shashwat-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}


/*+++++++++++++++++++++++++++++++++++++++++ RERA 2 +++++++++++++++++++++++++++++++++++++++++++*/
.rera2-section {
    background-color: #1F4F81;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 50px 0 2px 0;
}

/* TOP STRIP */
.rera2-short {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.rera2-short-text {
    font-size: 15px;
    margin: 0;
}

    .rera2-short-text a {
        color: #ffffff;
        text-decoration: underline;
    }

.rera2-toggle {
    margin-left: 10px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

/* CONTENT TOGGLE */
.rera2-full-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
    background-color: #1F4F81;
}

    .rera2-full-content.rera2-open {
        max-height: 900px;
    }

/* INNER WRAP */
.rera2-content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1480px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* DISCLAIMER */
.rera2-disclaimer {
    flex: 4;
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
    padding-right: 20px;
}

/* QR SECTION (2 images) */
.rera2-qr {
    flex: 1;
    display: flex;
    gap: 15px;
    justify-content: center;
}

    .rera2-qr img {
        width: 117px;
        background: #ffffff;
        padding: 8px;
        border-radius: 4px;
    }

/* LOCATION */
.rera2-location {
    background-color: #1F4F81;
    text-align: center;
    padding: 6px;
    font-size: 17px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .rera2-content-wrap {
        flex-direction: column;
        text-align: center;
    }

    .rera2-disclaimer {
        font-size: 12.5px;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .rera2-qr {
        flex-direction: column;
    }

    .rera2-toggle {
        display: inline-block;
        margin-top: 6px;
    }
}


/*0000000000000000000000000000000000000000000000000 urban graduer 00000000000000000000000000000000000000000000*/
/*++++++++++++++++++++++++++ configuration +++++++++++++++++++++++++++++*/
.urbann {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 0;
}

.urbann-card {
    flex: 1;
    background: #fff;
    border-radius: 28px;
    padding: 27px 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
    cursor: pointer;
    border: 2px solid rgba(31, 100, 172, 0.4);
}

    /* 🔥 HOVER EFFECT */
    .urbann-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    }

    .urbann-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: #000;
        letter-spacing: 0.5px;
    }
/*+++++++++++++++++++++++++++++++++URBAN  ABOUT US TITLE ++++++++++++++++++++++++++++++++*/

/* Wrapper */
.abt-wrap {
    width: 100%;
    text-align: center;
    padding: 0px 15px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.abt-title {
    font-family: 'Poppins', sans-serif;
    font-size: 47px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 0px;
}
/* Divider */
.abt-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

/* Line */
.abt-line {
    width: 280px;
    height: 3px;
    background-color: #8F8183;
}

/* Dots */
.abt-dot {
    width: 9px;
    height: 9px;
    background-color: #8F8183;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 480px) {
    .abt-line {
        width: 180px;
    }

    .abt-title {
        font-size: 28px;
    }
}

/*++++++++++++++++++++++++++++++++ ABOUT US CONTENT +++++++++++++++++++++++++*/
.urb {
    width: 100%;
    padding: 10px 0 40px;
    background: #fff;
}

.urb-container {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

    .urb-container p {
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        line-height: 1.8;
        color: #000;
        margin-bottom: 20px;
        font-weight: 400;
    }

/*0000000000000000000000000000000000000 CAREER 0000000000000000000000000000000000000*/

.career-banner {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Banner Image */
.career-banner-img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 106px;
}
.car-desk {
    display:block;
}
.car-mob {
    display:none;
}

/*+++++++++++++++++++++++++++++ CAR CONTENT +++++++++++++++++++++++++*/
.requirement-section {
    background-color: #ffffff;
    padding: 35px 20px;
    font-family: "Poppins", sans-serif;
}

.requirement-container {
    max-width: 1100px;
    margin: 0 auto;
    color: #2c2c2c;
    font-size: 17px;
    line-height: 1.7;
}

.requirement-heading {
    font-size: 54px;
    font-weight: 630;
    margin-bottom: 0px;
    color: #1d2b3a;
}

.requirement-container p {
    margin-bottom: 17px;
    font-weight: 500;
    font-size: 25px;
}

.requirement-container strong {
    font-weight: 600;
    color: #333;
}

.email-link {
    color: #1366d6;
    text-decoration: none;
    font-weight: 600;
}

    .email-link:hover {
        text-decoration: underline;
    }
/*++++++ executive me job profile section ka css++++++*/
.job .subheading {
    font-size: 18px;
    font-weight: 600;
    color: #1e1e1e;
    margin: 20px 0 15px; 
}

.job .job-list {
    list-style-type: decimal;
    padding-left: 20px;
    color: #333;
    font-size: 15.8px;
    margin-bottom: 30px; 
}

    .job .job-list li {
        margin-bottom: 10px; 
    }


/*++++++++++++++++++++++++++++++++++++++++  Apply Now ++++++++++++++++++++++++++++++++++++++++++*/
.apply-section {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 20px;
    box-sizing: border-box;
}

.apply-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.apply-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    border-radius: 8px;
}

.apply-inputs {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.apply-title {
    font-size: 28px;
    font-weight: 700;
    color: #323e4f;
    margin-bottom: 20px;
}

.apply-inputs input[type="text"],
.apply-inputs input[type="email"],
.apply-inputs input[type="tel"],
.apply-inputs select,
.apply-inputs .file-upload-container input[type="file"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 25px;
    border: 1px solid #c3cad9;
    border-radius: 4px;
    font-size: 16px;
    background-color: #fff;
}

.apply-inputs .file-upload-container {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.submit-btn {
    max-width: 140px;
    background: #1F64AC;
    color: #fff;
    padding: 8px 24px;
    border: 2px solid #ffffff;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}

    .submit-btn:hover {
        background: #fff;
        color: #1F64AC;
        border-color: #1F64AC; /* blue border on hover */
    }


.cartext {
    width: 81%;
    min-height:45px;
    padding: 14px 16px;
    border-radius: 5px;
    border: 1px solid #c3cad9;
    font-size: 16px;
    resize: none;
    outline: none;
    font-family: inherit;
    margin-bottom: 25px;
}

    .cartext:focus {
        border-color: #000;
    }

    .cartext::placeholder {
        color: #999;
    }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .apply-image img {
        max-width: 400px;
    }
}

/*    @media (max-width: 768px) {
        .apply-container {
            flex-direction: column;
            align-items: center;
        }*/

.apply-inputs input,
.apply-inputs select,
.apply-inputs .file-upload-container input[type="file"] {
    max-width: 500px;
}
    