/* =============================================
   FLUID CSS — NO MEDIA QUERIES
   Works on Mobile, HD, 2K, 4K screens
   Using: clamp(), auto-fit, vw/rem units
============================================= */

/* =====================
   RESET & ROOT
===================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --PrimaryBlue:      #0D47A1;
    --SecondaryBlue:    #1565C0;
    --LightBlue:        #E3F2FD;
    --DarkNavy:         #0A1E3F;
    --TextPrimary:      #1A1A1A;
    --TextSecondary:    #60708A;
    --BorderDivider:    #E6EAF0;
    --White:            #FFFFFF;
    --cream:            #F8F3F0;
    --rblue:            #014BAA;
}

html { scroll-behavior: smooth; }

body {
    background: var(--cream);
    color: var(--TextSecondary);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/* =====================
   CURSOR
===================== */

.cursor {
    width: clamp(16px, 1.5vw, 24px);
    height: clamp(16px, 1.5vw, 24px);
    border: 2px solid var(--PrimaryBlue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
}

/* =====================
   NAVBAR
===================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(12px, 1.5vw, 24px) clamp(16px, 5vw, 80px);
    background: linear-gradient(180deg, rgba(227, 242, 253, 0.95) 0%, transparent 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(227, 242, 253, 0.8);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2vw, 2rem);
    font-weight: 900;
    letter-spacing: clamp(1px, 0.15vw, 3px);
    background: var(--PrimaryBlue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.logo span {
    font-size: clamp(0.5rem, 0.65vw, 0.75rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: clamp(2px, 0.4vw, 5px);
    display: block;
    margin-top: -2px;
}

.nav-links {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 50px);
    list-style: none;
}


@media (max-width:768px){

    nav{
        padding:15px 20px;
    }

    .nav-links{
        display:none;
    }
}
.nav-links a {
    color: var(--TextSecondary);
    text-decoration: none;
    font-size: clamp(0.65rem, 0.8vw, 0.9rem);
    letter-spacing: clamp(1px, 0.2vw, 2.5px);
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--PrimaryBlue);
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--PrimaryBlue); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--PrimaryBlue);
    color: var(--White) !important;
    padding: clamp(8px, 0.8vw, 14px) clamp(14px, 1.8vw, 30px) !important;
    border-radius: 2px;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    transition: all 0.3s !important;
}

.nav-cta:hover {
    box-shadow: 0 0 20px rgba(13, 71, 161, 0.5);
    transform: translateY(-1px);
}

/* Hamburger — shown only on narrow screens via JS; hidden by default */
.menu-toggle {
    display: none;
    font-size: clamp(22px, 3vw, 34px);
    cursor: pointer;
    color: var(--PrimaryBlue);
}








@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .nav-links {
        display: none; /* Replace with hamburger menu if needed */
    }

    .logo {
        font-size: 1.2rem;
    }
}



/* =====================
   NAVBAR
===================== */

nav{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 40px;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(12px);

    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

.logo{
    font-size:1.5rem;
    font-weight:700;
    color:#0D47A1;
    line-height:1.2;
}

.logo span{
    display:block;
    font-size:11px;
    letter-spacing:2px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#0D47A1;
}

.nav-cta{
    background:#0D47A1;
    color:#fff !important;
    padding:10px 20px;
    border-radius:5px;
}

/* HAMBURGER */

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#0D47A1;
}

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

@media(max-width:768px){

    nav{
        padding:15px 20px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;

        background:#fff;

        flex-direction:column;
        gap:20px;

        padding:25px 0;

        display:none;

        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .nav-links.active{
        display:flex;
    }

    .logo{
        font-size:1.1rem;
    }
}










/* =====================
   HERO
===================== */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url(image/webbannerfront.jpeg) center/cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 0 clamp(16px, 5vw, 120px);
    max-width: min(55%, 900px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(227, 242, 253, 0.1);
    border: 1px solid var(--PrimaryBlue);
    padding: clamp(6px, 0.6vw, 12px) clamp(12px, 1.5vw, 28px);
    border-radius: 2px;
    font-size: clamp(0.55rem, 0.7vw, 0.85rem);
    letter-spacing: clamp(2px, 0.3vw, 4px);
    color: var(--SecondaryBlue);
    text-transform: uppercase;
    margin-bottom: clamp(16px, 2vw, 36px);
    animation: fadeInDown 0.8s ease forwards;
}

.hero-badge::before { content: '◆'; font-size: 8px; }

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5.5vw, 8rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: clamp(16px, 2vw, 28px);
    animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-title .line1 { color: var(--DarkNavy); display: block; }

.hero-title .gold-text {
    background: linear-gradient(135deg, var(--SecondaryBlue), var(--PrimaryBlue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.9rem, 1.3vw, 1.8rem);
    color: var(--TextSecondary);
    line-height: 1.7;
    margin-bottom: clamp(24px, 3vw, 50px);
    font-weight: 300;
    animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-actions {
    display: flex;
    gap: clamp(12px, 2vw, 36px);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.6s ease both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--PrimaryBlue);
    color: var(--White);
    padding: clamp(12px, 1.2vw, 22px) clamp(20px, 2.5vw, 50px);
    border: none;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.7rem, 0.85vw, 1rem);
    font-weight: 700;
    letter-spacing: clamp(1px, 0.2vw, 2.5px);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--SecondaryBlue);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 10px 40px rgba(21, 101, 192, 0.5);
    transform: translateY(-3px);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--PrimaryBlue);
    padding: clamp(12px, 1.2vw, 22px) clamp(20px, 2.5vw, 50px);
    border: 1px solid rgba(21, 101, 192, 0.4);
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.7rem, 0.85vw, 1rem);
    font-weight: 600;
    letter-spacing: clamp(1px, 0.2vw, 2.5px);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(21, 101, 192, 0.1);
    border-color: var(--SecondaryBlue);
    transform: translateY(-3px);
}






@media (max-width: 768px) {
    .hero-bg {
        background: none;
    }
}




/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px){

    .hero{
        padding-top: 100px;
    }

    .hero-content{
        padding: 0 15px;
    }

    .hero-title{
        font-size: 1.8rem;
    }

    .hero-sub{
        font-size: 0.85rem;
    }

    .hero-badge{
        font-size: 9px;
    }

    .btn-primary,
    .btn-outline{
        padding: 12px 15px;
        font-size: 0.7rem;
    }
}



@media (max-width: 768px){

    .hero{
        min-height: auto;
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-content{
        padding: 0 20px;
        max-width: 100%;
        margin: auto;
    }

    .hero-badge{
        font-size: 10px;
        letter-spacing: 1px;
        padding: 8px 15px;
        margin-bottom: 20px;
    }

    .hero-title{
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-sub{
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .hero-actions{
        justify-content: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-outline{
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .ground{
        display:none;
    }
}


/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px){

    .hero{
        padding-top: 100px;
    }

    .hero-content{
        padding: 0 15px;
    }

    .hero-title{
        font-size: 1.8rem;
    }

    .hero-sub{
        font-size: 0.85rem;
    }

    .hero-badge{
        font-size: 9px;
    }

    .btn-primary,
    .btn-outline{
        padding: 12px 15px;
        font-size: 0.7rem;
    }
}








/* =====================
   STATS BAR
===================== */

.stats-bar {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.10), rgba(13, 71, 161, 0.10));
    border-top: 1px solid rgba(13, 71, 161, 0.60);
    border-bottom: 1px solid rgba(13, 71, 161, 0.60);
    padding: clamp(20px, 2.5vw, 40px) clamp(16px, 5vw, 80px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(12px, 2vw, 28px);
}

.stat {
    text-align: center;
    padding: clamp(8px, 1vw, 16px);
    border-right: 1px solid rgba(13, 71, 161, 0.30);
}

.stat:last-child { border-right: none; }

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--PrimaryBlue), var(--PrimaryBlue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: clamp(0.65rem, 0.85vw, 1rem);
    letter-spacing: clamp(1px, 0.2vw, 2.5px);
    color: var(--DarkNavy);
    text-transform: uppercase;
    font-weight: bold;
}

.stat-icon {
    font-size: clamp(1.4rem, 2vw, 2.5rem);
    color: var(--PrimaryBlue);
    margin-bottom: clamp(8px, 1vw, 14px);
    transition: 0.3s;
}

/* =====================
   SECTION BASE
===================== */

section {
    padding: clamp(50px, 7vw, 110px) clamp(16px, 5vw, 80px);
}

.section-label {
    font-size: clamp(0.65rem, 0.85vw, 0.95rem);
    letter-spacing: clamp(2px, 0.35vw, 4.5px);
    color: var(--PrimaryBlue);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.section-label::before {
    content: '';
    width: clamp(18px, 2.5vw, 35px);
    height: 1px;
    background: var(--PrimaryBlue);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
    color: var(--DarkNavy);
    max-width: 80ch;
}

section span { color: var(--SecondaryBlue); }

.section-header {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 70px);
}

.section-header span {
    color: var(--PrimaryBlue);
    letter-spacing: 3px;
    font-weight: 700;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 3.5rem);
    color: #102542;
    margin-top: 10px;
}

/* =====================
   SERVICES
===================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(8px, 1.5vw, 20px);
    margin-top: clamp(36px, 5vw, 70px);
}

.service-card {
    width: 100%;
    height: auto;
    background: var(--White);
    padding: clamp(20px, 2.5vw, 50px) clamp(18px, 2vw, 40px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
    border: 1px solid rgba(13, 71, 161, 0.50);
    box-sizing: border-box;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(13, 71, 161, 0.70), var(--LightBlue));
    transition: width 0.4s;
}

.service-card:hover {
    background: #E3F2FD;
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(13, 71, 161, 0.15);
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after { width: 100%; }

.service-icon {
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    margin-bottom: clamp(14px, 1.5vw, 28px);
    display: block;
    filter: drop-shadow(0 0 12px rgba(13, 71, 161, 0.3));
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: clamp(8px, 1vw, 16px);
    color: var(--PrimaryBlue);
}

.service-desc {
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    color: var(--DarkNavy);
    line-height: 1.7;
    font-weight: bold;
}

.service-num {
    position: absolute;
    top: clamp(16px, 2vw, 32px);
    right: clamp(16px, 2vw, 32px);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 5rem);
    font-weight: 900;
    color: var(--TextSecondary);
    line-height: 1;
    opacity: 0.4;
}

/* Services Swiper */
.services-slider {
    width: 100%;
    overflow: hidden;
}

.services-slider .swiper-wrapper { align-items: center; }

.services-slider .swiper-slide {
    width: clamp(230px, 28vw, 400px);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.services-slider .swiper-slide-active { opacity: 1; }

.swiper-wrapper { align-items: stretch; }
.swiper-slide { height: auto !important; }
.service-card { min-height: auto; }

.swiper-pagination { position: relative !important; margin-top: 15px; }
.swiper-button-next, .swiper-button-prev { top: 50%; }

/* =====================
   ABOUT
===================== */

.about {
    padding: clamp(20px, 4vw, 60px) clamp(16px, 8%, 120px) clamp(50px, 7vw, 100px);
}

.about-container {
    max-width: min(1300px, 95%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(30px, 5vw, 90px);
    align-items: center;
}

.about-image { position: relative; }

.about-image img {
    width: 100%;
    height: clamp(300px, 40vw, 650px);
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.experience-box {
    position: absolute;
    bottom: clamp(-15px, -2vw, -30px);
    right: clamp(8px, 1.5vw, -20px);
    background: #0D46A1;
    color: #fff;
    padding: clamp(16px, 2vw, 28px) clamp(20px, 3vw, 40px);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(13, 71, 161, 0.3);
}

.experience-box h3 {
    font-size: clamp(1.8rem, 3vw, 4rem);
    margin: 0;
}

.experience-box span {
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: clamp(12px, 1.5vw, 28px);
    font-size: clamp(0.7rem, 0.9vw, 1rem);
}

.about-content h2 {
    font-size: clamp(1.6rem, 2.8vw, 3.2rem);
}

.about-content p {
    color: var(--TextSecondary);
    line-height: 2;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.about-list li {
    color: var(--PrimaryBlue);
    margin-right: 10px;
    margin-bottom: 18px;
    font-size: clamp(0.85rem, 1vw, 1.1rem);
}

.about-list li i {
    font-size: clamp(0.9rem, 1.1vw, 1.3rem);
    color: #102542;
}

.about-btn {
    display: inline-block;
    padding: clamp(12px, 1.2vw, 18px) clamp(24px, 2.5vw, 40px);
    background: var(--PrimaryBlue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    font-size: clamp(0.85rem, 1vw, 1.1rem);
}

.about-btn:hover { transform: translateY(-5px); }

/* =====================
   PROPERTIES
===================== */

.properties { background: var(--White); }

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(14px, 2vw, 32px);
    margin-top: clamp(36px, 5vw, 70px);
}

.property-card {
    background: var(--White);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(13, 71, 161, 0.50);
    transition: all 0.4s;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 80px rgba(10, 30, 63, 0.60);
    border-color: rgba(13, 71, 161, 0.60);
}

.property-img {
    width: 100%;
    height: clamp(180px, 18vw, 280px);
    position: relative;
    overflow: hidden;
}

.property-img-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2.5rem, 4vw, 5rem);
    transition: 0.4s;
}

.property-card:hover .property-img-inner { transform: scale(1.1); }
.p1.property-img-inner { background: linear-gradient(135deg, #1A2A1A, #2A3A2A); }
.p2.property-img-inner { background: linear-gradient(135deg, #1A2A1A, #252540); }
.p3.property-img-inner { background: linear-gradient(135deg, #2A1A10, #3A2A18); }

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--PrimaryBlue), var(--SecondaryBlue));
    color: var(--White);
    font-size: clamp(0.55rem, 0.65vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 12px;
    border-radius: 1px;
    text-transform: uppercase;
}

.property-info { padding: clamp(16px, 2vw, 32px); }

.property-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.2vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--SecondaryBlue);
}

.property-loc {
    font-size: clamp(0.7rem, 0.8vw, 0.9rem);
    color: var(--DarkNavy);
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-loc::before { content: '📍'; font-size: 12px; }

.property-details {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 1.5vw, 22px);
    margin-bottom: 20px;
    font-size: clamp(0.7rem, 0.8vw, 0.9rem);
    color: var(--PrimaryBlue);
}

.property-price {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 1.5vw, 1.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--PrimaryBlue), var(--LightBlue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-price span {
    font-size: clamp(0.65rem, 0.75vw, 0.85rem);
    font-family: 'Montserrat', sans-serif;
    -webkit-text-fill-color: var(--PrimaryBlue);
    font-weight: 400;
}

.sold-out {
    width: 100%;
    background: var(--PrimaryBlue);
    color: #fff;
    border: none;
    padding: clamp(10px, 1.2vw, 16px);
    cursor: not-allowed;
    font-size: clamp(0.8rem, 1vw, 1rem);
}

/* =====================
   MISSION & VISION
===================== */

.mission-vission {
    padding: clamp(50px, 7vw, 110px) clamp(16px, 8%, 120px);
    background: #ffffff;
}

.mv-container {
    max-width: min(1200px, 95%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 50px);
}

.mv-card {
    background: #f5f9ff;
    padding: clamp(28px, 4vw, 60px);
    border-radius: 25px;
    text-align: center;
    border: 1px solid var(--SecondaryBlue);
    transition: 0.4s;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 71, 161, 0.15);
}

.mv-icon {
    width: clamp(60px, 7vw, 100px);
    height: clamp(60px, 7vw, 100px);
    margin: auto auto clamp(18px, 2vw, 28px);
    border-radius: 50%;
    background: var(--PrimaryBlue);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(24px, 3vw, 40px);
}

.mv-card h3 {
    color: var(--PrimaryBlue);
    font-size: clamp(1.3rem, 1.8vw, 2rem);
    margin-bottom: 20px;
}

.mv-card p {
    color: #555;
    line-height: 1.8;
    font-size: clamp(0.88rem, 1vw, 1.1rem);
}

/* =====================
   WHY US
===================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(30px, 5vw, 100px);
    align-items: center;
    margin-top: clamp(36px, 5vw, 70px);
}

.why-visual {
    position: relative;
    width: 100%;
    height: clamp(auto, 50vw, 750px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 1.5vw, 18px);
}

.why-box {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.15), var(--White));
    border: 1px solid var(--DarkNavy);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(8px, 1.5vw, 16px);
    transition: all 0.5s;
    cursor: pointer;
    animation: whyFloat 6s ease-in-out infinite;
    /* No absolute positioning — flows naturally in grid */
    position: relative;
    width: 100%;
    height: clamp(130px, 14vw, 210px);
}

.why-box {
    width: clamp(120px, 12vw, 320px);
    height: clamp(120px, 12vw, 320px);
}

.why-box-1{
    top:2%;
    left:2%;
}

.why-box-2{
    top:4%;
    right:2%;
}

.why-box-3{
    bottom:2%;
    left:8%;
}

.why-box-4{
    bottom:1%;
    right:4%;
}

.why-box-5{
    top:42%;
    left:25%;
}

.why-box-6{
    top:2%;
    left:45%;
}

.why-box-7{
    top:45%;
    left:62%;
}

.why-box:hover {
    background: var(--White);
    border-color: var(--DarkNavy);
    transform: scale(1.05);
}

@keyframes whyFloat {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -8px; }
}

.why-box-icon {
    font-size: clamp(1.4rem, 2vw, 2.5rem);
    margin-bottom: clamp(6px, 1vw, 14px);
}

.why-box-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.8rem, 1vw, 1.1rem);
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--PrimaryBlue);
}

.why-box-desc {
    font-size: clamp(0.65rem, 0.75vw, 0.85rem);
    color: var(--PrimaryBlue);
    line-height: 1.5;
    font-weight: bold;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vw, 30px);
}

.why-point {
    display: flex;
    gap: clamp(12px, 1.5vw, 22px);
    align-items: flex-start;
    padding: clamp(16px, 2vw, 28px);
    background: rgba(201, 168, 76, 0.04);
    border-radius: 4px;
    transition: all 0.3s;
}

.why-point:hover {
    background: var(--LightBlue);
    border-color: var(--PrimaryBlue);
}

.why-point-icon {
    width: clamp(38px, 4vw, 56px);
    height: clamp(38px, 4vw, 56px);
    background: var(--White);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 1.3vw, 1.5rem);
    flex-shrink: 0;
}

.why-point-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.95rem, 1.1vw, 1.3rem);
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--SecondaryBlue);
}

.why-point-desc {
    font-size: clamp(0.8rem, 0.9vw, 1rem);
    color: var(--DarkNavy);
    line-height: 1.6;
    font-weight: bold;
}

/* =====================
   LEAD FORM
===================== */

.lead-section, .poplead-section {
    background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--LightBlue) 0%, transparent 70%), var(--LightBlue);
    text-align: center;
}

.lead-form-wrap, .poplead-form-wrap {
    max-width: min(700px, 92%);
    margin: clamp(36px, 5vw, 70px) auto 0;
    background: var(--White);
    border: 1px solid var(--DarkNavy);
    border-radius: 6px;
    padding: clamp(28px, 5vw, 70px);
    position: relative;
    overflow: hidden;
}

.lead-form-wrap::before, .poplead-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--PrimaryBlue), var(--SecondaryBlue), var(--PrimaryBlue), transparent);
}

.form-grid, .popform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(12px, 2vw, 22px);
    margin-bottom: 20px;
}

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

.form-group label, .popform-group label {
    font-size: clamp(0.65rem, 0.8vw, 0.85rem);
    letter-spacing: clamp(1px, 0.2vw, 2.5px);
    color: var(--PrimaryBlue);
    text-transform: uppercase;
    font-weight: bold;
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea,
.popform-group input,
.popform-group select,
.popform-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--SecondaryBlue);
    border-radius: 2px;
    color: var(--SecondaryBlue);
    padding: clamp(10px, 1.2vw, 16px) clamp(12px, 1.5vw, 20px);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.78rem, 0.9vw, 1rem);
    outline: none;
    transition: all 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.popform-group input:focus,
.popform-group select:focus,
.popform-group textarea:focus {
    border-color: var(--PrimaryBlue);
    background: rgba(13, 71, 161, 0.04);
    box-shadow: 0 0 20px rgba(13, 71, 161, 0.1);
}

.form-group select option, .popform-group select option {
    background: var(--White);
    color: var(--SecondaryBlue);
}

.form-full, .popform-full { grid-column: 1 / -1; }

.form-submit, .popform-submit {
    width: 100%;
    background: var(--SecondaryBlue);
    color: var(--White);
    border: none;
    padding: clamp(12px, 1.5vw, 20px);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.75rem, 0.9vw, 1rem);
    font-weight: 700;
    letter-spacing: clamp(2px, 0.3vw, 4px);
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
    margin-top: 10px;
}

.form-submit:hover, .popform-submit:hover {
    box-shadow: 0 10px 40px rgba(21, 101, 192, 0.90);
    transform: translateY(-2px);
}

/* =====================
   TESTIMONIALS
===================== */

.testimonaials, .testimonials { background: var(--LightBlue); }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(14px, 2vw, 30px);
    margin-top: clamp(30px, 4vw, 65px);
}

.testi-card {
    background: var(--White);
    border: 1px solid var(--SecondaryBlue);
    border-radius: 10px;
    padding: clamp(22px, 3vw, 44px);
    position: relative;
    transition: all 0.4s;
}

.testi-card:hover {
    border-color: var(--LightBlue);
    transform: translateY(-4px);
}

.testi-quote {
    font-size: clamp(2.5rem, 4vw, 5rem);
    line-height: 1;
    color: var(--SecondaryBlue);
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}

.testi-text {
    font-family: 'Times New Roman', serif;
    font-size: clamp(0.85rem, 1.1vw, 1.2rem);
    color: var(--PrimaryBlue);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    font-weight: bold;
}

.testi-stars {
    color: var(--gold);
    font-size: clamp(0.7rem, 0.85vw, 1rem);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.2vw, 16px);
}

.testi-avatar {
    width: clamp(38px, 4vw, 56px);
    height: clamp(38px, 4vw, 56px);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--LightBlue), var(--White));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(0.8rem, 1vw, 1.1rem);
    color: var(--SecondaryBlue);
}

.testi-name {
    font-weight: 600;
    font-size: clamp(0.8rem, 0.95vw, 1.05rem);
    color: var(--DarkNavy);
}

.testi-role {
    font-size: clamp(0.65rem, 0.75vw, 0.85rem);
    color: var(--TextSecondary);
    margin-top: 2px;
}

/* =====================
   FOOTER
===================== */

footer {
    background: var(--DarkNavy);
    border-top: 1px solid rgba(13, 71, 161, 0.90);
    padding: clamp(36px, 5vw, 90px) clamp(16px, 5vw, 80px);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 70px);
    margin-bottom: clamp(30px, 4vw, 60px);
}

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(16px, 2vw, 30px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: clamp(0.68rem, 0.8vw, 0.9rem);
    color: var(--White);
}

.footer-logo {
    font-family: 'Times New Roman', serif;
    font-size: clamp(1.3rem, 1.8vw, 2rem);
    font-weight: 900;
    background: var(--cream);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: clamp(0.78rem, 0.9vw, 1rem);
    color: var(--White);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: bold;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--White);
    font-size: clamp(0.75rem, 0.85vw, 0.95rem);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
    font-weight: bold;
}

.footer-contact a:hover { color: var(--PrimaryBlue); }

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.9rem, 1.1vw, 1.2rem);
    margin-bottom: 20px;
    color: var(--White);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a {
    color: var(--White);
    font-size: clamp(0.75rem, 0.85vw, 0.95rem);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before { content: '›'; color: var(--SecondaryBlue); }
.footer-col ul li a:hover { color: var(--SecondaryBlue); }
.footer-bottom strong { color: var(--White); }

/* =====================
   FLOATING CTA
===================== */

.floating-cta {
    position: fixed;
    bottom: clamp(16px, 3vw, 50px);
    right: clamp(14px, 3vw, 50px);
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: clamp(8px, 1vw, 14px);
}

.floating-cta.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: clamp(10px, 1vw, 16px) clamp(16px, 2vw, 28px);
    border-radius: 50px;
    font-size: clamp(0.72rem, 0.85vw, 1rem);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.float-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

.float-call {
    background: linear-gradient(135deg, var(--SecondaryBlue), var(--SecondaryBlue));
    color: var(--White);
    font-weight: bold;
    box-shadow: 0 8px 30px rgba(21, 101, 192, 0.4);
    animation: pulse2 2s infinite 1s;
}

.float-call:hover { box-shadow: 0 12px 40px rgba(21, 101, 192, 0.6); }

/* =====================
   POPUP / OVERLAY
===================== */

.popup-overlay, .popup-overlay1 {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
}

.popup-overlay  { z-index: 9999; }
.popup-overlay1 { z-index: 10001; }

.popup-form, .popup-content {
    width: clamp(90%, 80vw, 1400px);
    height: clamp(80%, 88vh, 95vh);
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.95), rgba(227, 242, 253, 0.92));
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: clamp(12px, 1.5vw, 22px);
    padding: clamp(20px, 3vw, 38px);
    position: relative;
    overflow: auto;
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.15), inset 0 0 20px rgba(201, 168, 76, 0.05);
}

.popup-form  { z-index: 100002; }
.popup-content { z-index: 10000; }

.popup-content h2 {
    color: var(--DarkNavy);
    font-size: clamp(1.4rem, 3vw, 44px);
    margin-bottom: 15px;
}

.popup-content p {
    color: var(--DarkNavy);
    line-height: 1.8;
    font-size: clamp(0.85rem, 1vw, 1.05rem);
}

.close-btn {
    position: absolute;
    top: clamp(10px, 1.2vw, 18px);
    right: clamp(14px, 1.5vw, 22px);
    font-size: clamp(28px, 3vw, 44px);
    cursor: pointer;
    color: var(--TextSecondary);
    transition: 0.3s;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: var(--SecondaryBlue);
}

.popup-content::-webkit-scrollbar { width: 8px; }
.popup-content::-webkit-scrollbar-thumb { background: var(--DarkNavy); border-radius: 10px; }
.popup-content img { width: 100%; object-fit: cover; }

/* =====================
   POPUP SERVICES GRID
===================== */

.popservices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(8px, 1.5vw, 20px);
    margin-top: clamp(36px, 5vw, 70px);
}

.popservice-card {
    background: var(--White);
    padding: clamp(28px, 4vw, 55px) clamp(22px, 3vw, 44px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
    border: 1px solid var(--SecondaryBlue);
    border-radius: 10px;
}

.popservice-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.popservice-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: linear-gradient(90deg, rgba(13, 71, 161, 0.70), var(--LightBlue));
    transition: width 0.4s;
}

.popservice-card:hover {
    background: #E3F2FD;
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(13, 71, 161, 0.15);
}

.popservice-card:hover::before { opacity: 1; }
.popservice-card:hover::after { width: 100%; }

.popservice-icon {
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    margin-bottom: 24px;
    display: block;
    filter: drop-shadow(0 0 12px rgba(13, 71, 161, 0.3));
}

.popservice-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--PrimaryBlue);
}

.popservice-desc {
    font-size: clamp(0.88rem, 1vw, 1.1rem);
    color: var(--DarkNavy);
    line-height: 1.7;
    font-weight: bold;
}

.popservice-num {
    position: absolute;
    top: clamp(16px, 2vw, 32px);
    right: clamp(16px, 2vw, 32px);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 5rem);
    font-weight: 900;
    color: var(--TextSecondary);
    line-height: 1;
    opacity: 0.4;
}

/* =====================
   SOCIAL ICONS
===================== */

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 1.2vw, 18px);
}

.social-icons a {
    width: clamp(36px, 4vw, 52px);
    height: clamp(36px, 4vw, 52px);
    background: var(--PrimaryBlue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: clamp(14px, 1.5vw, 22px);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
}

/* =====================
   IMAGE WRAPPER
===================== */

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: clamp(6px, 1vw, 12px);
}

.overlay-btn {
    position: absolute;
    bottom: clamp(8px, 1.5vw, 22px);
    right: clamp(8px, 1.5vw, 22px);
    background: var(--PrimaryBlue);
    color: white;
    border: none;
    padding: clamp(8px, 1vw, 16px) clamp(12px, 1.5vw, 28px);
    border-radius: 10px;
    cursor: pointer;
    font-size: clamp(12px, 1.3vw, 22px);
    z-index: 10;
    transition: all 0.3s;
}

/* =====================
   IFRAME
===================== */

iframe {
    width: 100% !important;
    max-width: 100%;
    height: clamp(200px, 30vw, 500px) !important;
    border: 0;
}

/* =====================
   3D / HERO ANIMATION ELEMENTS
===================== */

@keyframes floatScene {
    0%, 100% { transform: rotateX(10deg) rotateY(-15deg) translateY(0px); }
    50%       { transform: rotateX(10deg) rotateY(-15deg) translateY(-20px); }
}

.face-front, .face-side, .face-top { position: absolute; }

.face-front {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 2px;
    padding: 4px;
}

.window {
    background: rgba(227, 242, 253, 0.6);
    border-radius: 1px;
    animation: windowBlink 3s infinite;
}

.window:nth-child(3n) { animation-delay: 0.5s; }
.window:nth-child(4n) { animation-delay: 1s; background: rgba(227, 242, 253, 0.3); }
.window:nth-child(5n) { animation-delay: 1.5s; }

@keyframes windowBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.ground {
    position: absolute;
    bottom: clamp(30px, 5vw, 70px);
    left: -40px;
    width: clamp(300px, 40vw, 650px);
    height: 20px;
    background: linear-gradient(90deg, transparent, rgba(15, 64, 99, 0.4), rgba(227, 242, 253, 0.4), transparent);
    transform: rotateX(80deg);
    box-shadow: 0 0 60px rgba(227, 242, 253, 0.3);
}

/* =====================
   DECORATIVE
===================== */

.gold-divider {
    width: clamp(80px, 10vw, 150px);
    height: 3px;
    background: linear-gradient(90deg, var(--PrimaryBlue), var(--LightBlue));
    margin: 20px 0 50px;
    border-radius: 2px;
}

.sep { color: var(--SecondaryBlue); margin: 0 8px; }

/* =====================
   SCROLL REVEAL
===================== */

.reveal {
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   ANIMATIONS
===================== */

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
    50%       { box-shadow: 0 8px 50px rgba(37, 211, 102, 0.7); }
}

@keyframes pulse2 {
    0%, 100% { box-shadow: 0 8px 30px rgba(21, 101, 192, 0.4); }
    50%       { box-shadow: 0 8px 50px rgba(21, 101, 192, 0.7); }
}





@media(max-width:768px) {
    
    
    .why-visual { display: none; } 
    
}
