/* ================================================================= */
/* 💎 PART 2 (a): PRECIOUS GROUP - ADVANCED DESKTOP GLOBAL CSS       */
/* ================================================================= */
@import url('https://googleapis.com');

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #f8f4ef;
    color: #1f2937;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* ================================================================= */
/* ULTRA-BIG ROYAL PORTAL HEADER STYLING (Min 992px Screen Default)  */
/* ================================================================= */
.top-header {
    position: sticky;
    top: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 60px; /* Big size canvas height spacing */
    min-height: 120px;
    background: #031410 !important; /* YOUR EXACT MIDNIGHT EMERALD GREEN THEME */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-wrap: nowrap;
    overflow: visible;
    border-bottom: 2.5px solid rgba(212, 164, 111, 0.45); /* Solid premium gold strip */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* BRAND DESIGN: Majestic scale visibility */
.brand {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

/* Circle Gold Ring for Attached Design Fitment */
.brand .logo-icon {
    width: 75px; /* Exact size requested for perfect fit */
    height: 75px;
    border-radius: 50%;
    border: 2px solid #D4A46F;
    padding: 5px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 0 20px rgba(212, 164, 111, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand:hover .logo-icon {
    transform: scale(1.06) rotate(3deg);
    border-color: #ffd700;
}

.brand-text h2 {
    margin: 0;
    color: #ffffff;
    font-size: 32px; /* Standout high resolution name identity */
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    line-height: 1.1;
}

.brand-text p {
    margin: 4px 0 0;
    color: #D4A46F;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* NAVIGATION LINKS DESKTOP GRID */
.nav-links {
    display: flex;
    align-items: center;
    gap: 35px; /* Wide extra premium menu gap */
    flex-wrap: nowrap;
}

.nav-links a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px; /* Highly readable big size links */
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: #D4A46F;
}

/* Thicker dynamic underline transition */
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2.5px;
    background: #D4A46F;
    transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    width: 100%;
}

/* EXTRA PREMIUM CALL TO ACTION BUTTON */
.call-btn {
    display: inline-block;
    background: linear-gradient(135deg, #D4A46F, #E7BC86);
    color: #031410; /* Dynamic contrast inside midnight green base */
    padding: 13px 28px;
    border-radius: 4px; /* Royal rectangular-curve corporate touch */
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
    box-shadow: 0 6px 20px rgba(212, 164, 111, 0.3);
}

.call-btn:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.45);
}

/* CORE HERO ARCHITECTURE */
.hero {
    padding: 90px 0 80px;
    background: linear-gradient(180deg, #f8f4ef 0%, #f5f1eb 100%);
}

.gold-text {
    color: #C9A227;
    font-weight: 600;
}

.hero-wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
    min-width: 420px;
    max-width: 620px;
}

/* ================================================================= */
/* 💎 PART 3: PRECIOUS GROUP - CLEAN FULL-WIDTH HERO ARCHITECTURE    */
/* ================================================================= */

/* GLOBAL MODERN SLIDER & BANNER CONTAINER LAYER */
.hero {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important; /* Zero padding to enforce pure modern edge-to-edge full width */
    background: #031410 !important; /* Continuous background sync with midnight emerald header */
    overflow: hidden;
    position: relative;
}

/* Standout Royal Text Elements */
.gold-text {
    color: #D4A46F !important;
    text-shadow: 0 0 15px rgba(212, 164, 111, 0.25);
    font-weight: 600;
}

/* Full Width Structural Wrapper (Bypassing old broken WordPress grid framework) */
.hero-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important; /* Changes multi-column clash to absolute single linear wrapper */
}

/* Modern Dynamic Full-Screen Layer Layout Typography */
.hero-left {
    width: 100% !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
    padding: 60px 25px !important; /* Balanced premium grid safety limits */
    box-sizing: border-box !important;
    text-align: center !important; /* Central symmetric corporate focus */
}

/* Sub-heading Tag Element */
.hero-left small {
    display: inline-block;
    padding: 10px 24px;
    border: 1.5px solid rgba(212, 164, 111, 0.4);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #D4A46F;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
}

/* Majestic Standout Heading Title for Large Display Screens */
.hero-left h1 {
    font-family: 'Cinzel', 'Cormorant Garamond', serif !important;
    font-size: 64px !important; /* Big Standout Display Text */
    line-height: 1.2 !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-left h1 span {
    color: #D4A46F !important;
}

/* High Fidelity Sub-text Paragraph */
.hero-left p {
    font-family: 'Poppins', sans-serif !important;
    font-size: 19px !important;
    color: #a4c2b5 !important; /* Premium Mint Silver Contrast Text */
    max-width: 850px !important;
    margin: 0 auto 35px auto !important;
    line-height: 1.8 !important;
}

/* FIXED FULL WIDTH DYNAMIC SLIDER/IMAGE TARGET */
.hero-image {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* Full Width Fluid Image Scaler (No clipping on side bounds) */
.hero-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important; /* Follows natural full-width canvas properties */
    object-fit: cover !important;
    display: block !important;
    border-radius: 0 !important; /* Edge to edge crisp alignment formatting */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5) !important;
}

/* ROYAL INTERACTIVE BUTTONS SYSTEM */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center; /* Balanced symmetry grid lines */
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.hero-btn-primary {
    background: #D4A46F !important;
    color: #031410 !important;
    padding: 16px 36px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(212, 164, 111, 0.3) !important;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.hero-btn-primary:hover {
    background: #ffd700 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.45) !important;
}

.hero-btn-outline {
    border: 1.5px solid rgba(212, 164, 111, 0.5) !important;
    padding: 16px 36px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 15.5px;
    background: transparent !important;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.hero-btn-outline:hover {
    background: rgba(212, 164, 111, 0.15) !important;
    color: #D4A46F !important;
}

/* RESPONSIVE LAYOUT CONSTRAINTS FOR COMPACT VIEWPORTS */
@media (max-width: 768px) {
    .hero-left h1 { font-size: 38px !important; line-height: 1.3 !important; }
    .hero-left p { font-size: 15px !important; line-height: 1.7 !important; }
    .hero-btn-primary, .hero-btn-outline { width: 100% !important; text-align: center !important; justify-content: center !important; }
    .hero-buttons { gap: 15px !important; width: 100% !important; padding: 0 15px !important; box-sizing: border-box !important; }
}


/* TABLET */

@media(max-width:992px){

.hero{
padding:70px 0 60px;
}

.hero-wrapper{
gap:40px;
}

.hero-image{
min-width:100%;
}

.hero-image img{
max-width:100%;
}

.hero-left h1{
font-size:58px;
}

}

/* MOBILE */

@media(max-width:768px){

.hero{
padding:50px 0 40px;
}

.hero-wrapper{
padding:0 20px;
gap:35px;
}

.hero-left{
min-width:100%;
max-width:100%;
}

.hero-left h1{
font-size:42px;
line-height:1.1;
}

.hero-left p{
font-size:16px;
line-height:1.8;
}

.hero-buttons{
gap:15px;
}

.hero-btn-primary,
.hero-btn-outline{
width:100%;
justify-content:center;
}

.hero-image img{
border-radius:20px;
}

}
/* =========================
HERO STATS SECTION
========================= */

.hero-divider{
width:120px;
height:2px;
background:linear-gradient(
90deg,
transparent,
#D4A46F,
transparent
);
margin:38px 0;
border-radius:10px;
}

.hero-stats{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
}

.stat-box{
min-width:120px;
}

.hero-stat{
text-align:center;
position:relative;
}

.hero-stat::after{
content:'';
position:absolute;
right:-15px;
top:10%;
width:1px;
height:80%;
background:#E5DED2;
}

.hero-stat:last-child::after{
display:none;
}

.hero-stat h3{
font-size:42px;
font-weight:700;
color:#0F2D2A;
margin-bottom:8px;
font-family:'Cormorant Garamond',serif;
line-height:1;
}

.hero-stat p{
font-size:15px;
color:#777;
letter-spacing:.5px;
margin:0;
}
/* ================================================================= */
/* 💎 PART 4: PRECIOUS GROUP - ADVANCED BANNERS & MOBILE NAVIGATION  */
/* ================================================================= */

/* TABLET STATS RESPONSIVE ACCORDION */
@media(max-width:992px){
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    .hero-stat::after {
        display: none !important;
    }
}

/* MOBILE STATS RESPONSIVE ACCORDION */
@media(max-width:768px){
    .hero-divider {
        margin: 30px auto !important;
    }
    .hero-stats {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
    }
    .hero-stat {
        padding-bottom: 10px !important;
        border-bottom: 1px solid #E5DED2 !important;
    }
    .hero-stat:last-child {
        border-bottom: none !important;
    }
    .hero-stat h3 {
        font-size: 34px !important;
    }
    .hero-stat p {
        font-size: 14px !important;
    }
}

/* ================================================================= */
/* PREMIUM BOTTOM BANNER (UNIFIED WITH #031410 LUXURY THEME)         */
/* ================================================================= */
.premium-banner {
    margin: 70px auto;
    max-width: 1280px;
    padding: 0 30px;
}

.banner-box {
    background: linear-gradient(135deg, #031410 0%, #0a2117 100%) !important; /* Premium Midnight Green */
    border-radius: 4px !important; /* Luxury corporate edge */
    border: 1px solid rgba(212, 164, 111, 0.3) !important;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.banner-left {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.banner-left span {
    color: #D4A46F !important;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.banner-left h2 {
    font-family: 'Cinzel', 'Cormorant Garamond', serif !important;
    font-size: 48px !important;
    color: #fff;
    margin-top: 8px;
    margin-bottom: 0;
    line-height: 1.2;
    font-weight: 700;
}

.banner-right {
    position: relative;
    z-index: 2;
}

.banner-btn {
    background: #D4A46F !important;
    padding: 15px 36px;
    border-radius: 4px !important;
    text-decoration: none;
    font-weight: 700;
    color: #031410 !important;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(212, 164, 111, 0.3);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.banner-btn:hover {
    background: #ffd700 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* ================================================================= */
/* BOTTOM FLOATING BANNER                                            */
/* ================================================================= */
.floating-banner {
    width: 92%;
    margin: -40px auto 90px;
}

.banner-content {
    background: linear-gradient(135deg, #031410 0%, #0a2117 100%) !important;
    border-radius: 4px !important;
    border: 1px solid rgba(212, 164, 111, 0.3) !important;
    padding: 45px 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.banner-content .banner-left h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 46px !important;
    font-family: 'Cinzel', 'Cormorant Garamond', serif !important;
    line-height: 1.2;
    font-weight: 700;
}

.banner-content .banner-left p {
    color: #a4c2b5 !important;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    max-width: 700px;
    margin: 0;
}

.banner-button {
    background: #D4A46F !important;
    color: #031410 !important;
    text-decoration: none;
    padding: 16px 38px;
    border-radius: 4px !important;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(212, 164, 111, 0.3);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.banner-button:hover {
    background: #ffd700 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* ================================================================= */
/* 🚨 ABSOLUTE FIX: MOBILE HAMBURGER MENU & SLIDING SIDEBAR          */
/* ================================================================= */
@media (max-width: 991px) {
    /* 1. Prevent right side drag or layout bounce */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }

    /* Override header coordinates to clean mobile layout */
    .top-header {
        padding: 20px 15px !important;
        min-height: 90px !important;
        flex-direction: row !important; /* Aligns Logo left and Hamburger right horizontally */
        justify-content: space-between !important;
    }

    .brand-text h2 { font-size: 20px !important; }
    .brand-text p { font-size: 9px !important; letter-spacing: 1px !important; }
    .brand .logo-icon { width: 50px !important; height: 50px !important; }
    .call-btn { display: none !important; } /* Hide heavy desktop call target on top header */

    /* 2. THE AIRTIGHT SIDEBAR CANVAS (Locked off-screen seamlessly) */
    .nav-links {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        height: 100vh !important;
        width: 290px !important;
        max-width: 85% !important;
        background: #031410 !important; /* Perfect Midnight Green Base */
        padding: 100px 30px 40px 30px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-shadow: -15px 0 45px rgba(0,0,0,0.7) !important;
        z-index: 99999999 !important;
        box-sizing: border-box !important;
        
        /* Safe hidden state prevents screen dragging errors */
        right: -100% !important;
        left: auto !important;
        visibility: hidden !important;
        transition: right 0.45s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.45s !important;
    }

    /* Slides inside smooth on trigger */
    .nav-links.active {
        right: 0 !important;
        visibility: visible !important;
    }

    .nav-links a {
        color: #ffffff !important;
        display: block !important;
        width: 100% !important;
        padding: 12px 0 !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
    .nav-links a::after { display: none !important; } /* Kill desktop animations lines */

    /* 3. HIGH VISIBILITY CLICKABLE HAMBURGER ICON */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 30px !important;
        height: 20px !important;
        z-index: 100000009 !important; /* Stays above sidebar layer to remain clickable */
        cursor: pointer !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mobile-toggle span {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
        background-color: #D4A46F !important; /* Gold Lines */
        border-radius: 4px !important;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
        pointer-events: none !important; /* Prevents touch bleed bugs */
    }

    /* Fluid Morphing Animations to cross 'X' */
    .mobile-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg) !important; }
    .mobile-toggle.open span:nth-child(2) { opacity: 0 !important; transform: scale(0.3) !important; }
    .mobile-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg) !important; }
    
    /* Banners Mobile Scaling Adjustments */
    .banner-box, .banner-content { padding: 30px 20px !important; text-align: center !important; justify-content: center !important; }
    .banner-left h2, .banner-content .banner-left h2 { font-size: 28px !important; }
    .banner-btn, .banner-button { width: 100% !important; text-align: center !important; }
}

/* =========================
TABLET
========================= */

@media(max-width:992px){

.banner-box,
.banner-content{
padding:35px;
}

.banner-left h2{
font-size:46px;
}

.banner-content .banner-left h2{
font-size:42px;
}

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.premium-banner{
padding:0 20px;
}

.banner-box,
.banner-content{
padding:28px;
text-align:center;
justify-content:center;
}

.banner-left h2,
.banner-content .banner-left h2{
font-size:34px;
}

.banner-left span{
font-size:16px;
}

.banner-content .banner-left p{
font-size:16px;
}

.banner-btn,
.banner-button{
width:100%;
text-align:center;
}

.floating-banner{
width:94%;
margin:-20px auto 60px;
}

}
/* =========================
GLOBAL LAYOUT
========================= */

.container{
width:90%;
max-width:1280px;
margin:auto;
}

/* SECTION SPACING */

section{
padding:100px 0;
}

/* TYPOGRAPHY */

h1,h2,h3,h4,h5,h6{
font-family:'Poppins',sans-serif;
font-weight:700;
line-height:1.2;
}

.section-title{
font-size:42px;
margin-bottom:20px;
color:#1E3A34;
}

p{
font-size:16px;
color:#4A4A4A;
}

/* =========================
RESPONSIVE UTILITIES
========================= */

@media(max-width:991px){

.container{
width:92%;
}

section{
padding:80px 0;
}

.section-title{
font-size:34px;
}

}

@media(max-width:768px){

.container{
width:94%;
}

section{
padding:60px 0;
}

.section-title{
font-size:30px;
}

p{
font-size:15px;
}

}
/* HERO SECTION */

.hero{
    padding:140px 0 100px;
    background:#F6F2EB;
}

.about-hero .hero-wrapper{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    align-items:center !important;
    gap:60px !important;
}

.about-hero .hero-image img{
    width:100%;
    max-width:620px !important;
}

.about-hero .hero-image{
    margin-top:-10px;
}

.hero-tag{
    display:inline-block;
    padding:10px 22px;
    background:#EAE3D8;
    border-radius:50px;
    color:#1E3A34;
    font-size:14px;
    margin-bottom:25px;
    font-weight:600;
}

.tagline{
    color:#D4A46F;
    font-size:11px;
    letter-spacing:3px;
    text-transform:uppercase;
    opacity:.95;
    text-shadow:
    0 0 10px rgba(212,164,111,.45),
    0 0 18px rgba(212,164,111,.22);
}

.hero-title{
    font-size:40px;
    line-height:1.1;
    margin-bottom:20px;
    color:#1E3A34;
}

.hero-content p{
    font-size:18px;
    margin-bottom:40px;
    color:#4A4A4A;
    max-width:580px;
}

.hero-buttons{
    display:flex;
    gap:25px;
}

/* PREMIUM CARD */

.premium-card{
    overflow:hidden;
    border-radius:24px;
    transition:all .4s ease;
    background:#fff;
}

.premium-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:18px;
    transition:transform .7s ease;
}

.premium-card:hover img{
    transform:scale(1.08);
}

.premium-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* FIXED BUG */

.premium-card{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(212,164,111,0.15);
    transition:all .4s ease;
    border-radius:22px;
    background:#fff;
}

.why-section{
    background:#f3eee7;
    padding:100px 0;
}

/* GRID */

.grid-3{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

/* IMAGES */

img{
    width:100%;
    display:block;
}

/* PORTFOLIO IMAGES */

.portfolio-section img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:16px;
}

/* FOOTER */

footer{
    background:#121212;
    padding:80px 0 40px;
    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-bottom{
    margin-top:40px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    color:#999;
}

/* MOBILE */

@media(max-width:992px){

    .grid-3{
        grid-template-columns:1fr;
        align-items:stretch;
        gap:30px;
    }

    .hero-title{
        font-size:48px;
    }

    .section-title{
        font-size:34px;
    }

}

@media(max-width:768px){

    section{
        padding:70px 0;
    }

    .hero-title{
        font-size:38px;
    }

    .section-title{
        font-size:30px;
    }

    .nav-links{
        display:none;
    }

    .hero{
        text-align:center;
    }

    .primary-btn,
    .secondary-btn{
        display:block;
        margin-bottom:15px;
        text-align:center;
    }

}

/* =========================
LUXURY HERO SECTION
========================= */

.luxury-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:120px 8%;
    background:#f8f5ef;
    min-height:100vh;
}

.hero-left{
    width:50%;
}

.hero-tag{
    display:inline-block;
    padding:10px 18px;
    border:1px solid #d4af37;
    border-radius:50px;
    font-size:13px;
    letter-spacing:1px;
    color:#0f2b24;
    margin-bottom:25px;
    font-weight:600;
}

.hero-left h1{
    font-size:68px;
    line-height:1.1;
    color:#0f2b24;
    margin-bottom:30px;
    font-weight:700;
}

.tagline{
    font-size:11px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#D4A46F;
    opacity:.95;
    text-shadow:
    0 0 10px rgba(212,164,111,.45),
    0 0 18px rgba(212,164,111,.22);
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}

.btn-primary{
    background:#0f2b24;
    color:#fff;
    padding:18px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-primary:hover{
    background:#d4af37;
    color:#000;
}

.btn-outline{
    border:2px solid #d4af37;
    color:#0f2b24;
    padding:18px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-outline:hover{
    background:#d4af37;
    color:#000;
}

.hero-stats{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.stat-box h3{
    font-size:34px;
    color:#0f2b24;
    margin-bottom:8px;
}

.stat-box span{
    color:#666;
    font-size:15px;
}

/* RIGHT IMAGE */

.hero-right{
    width:50%;
}

.hero-right img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
}
.cta-banner{
    width:85%;
    margin:-80px auto 100px;
    background:linear-gradient(135deg,#0f2b24,#123d33);
    padding:50px 60px;
    border-radius:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    position:relative;
    z-index:10;
}

.cta-left h2{
    color:#fff;
    font-size:42px;
    margin-bottom:15px;
}

.cta-left p{
    color:#ddd;
    font-size:18px;
}

.cta-button{
    background:#d4af37;
    color:#000;
    padding:18px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    white-space:nowrap;
}
.final-cta p,
.final-cta-content p{
    color:#666 !important;
}

/* RESPONSIVE */

@media(max-width:991px){

    .luxury-hero{
        flex-direction:column;
        padding:100px 6%;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-left h1{
        font-size:48px;
    }

    .hero-right img{
        height:450px;
    }

    .cta-banner{
        flex-direction:column;
        text-align:center;
    }

}
/* PREMIUM FOOTER */

.premium-footer{
    background:
    linear-gradient(135deg,#041E1A,#0B2D28);
    border-top:1px solid rgba(255,255,255,.06);
    padding:90px 40px 30px;
    margin-top:100px;
}

.footer-container{
    max-width:1280px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:70px;
}

.footer-about h2{
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    color:#D4A84F;
    margin-bottom:20px;
}

.footer-about p{
    color:rgba(255,255,255,0.75);
    line-height:1.9;
    margin-bottom:30px;
    max-width:500px;
}

.footer-btn{
    display:inline-block;
    background:#d4a46f;
    color:#111827;
    padding:16px 28px;
    border-radius:60px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s;
}

.footer-btn:hover{
transform:translateY(-4px);
background:#e2b27d;
box-shadow:0 12px 30px rgba(212,164,111,.25);
}

.footer-links h3,
.footer-contact h3{
    color:#ffffff;
    margin-bottom:22px;
    font-size:22px;
}

.footer-links a{
    display:block;
    color:rgba(255,255,255,0.72);
    text-decoration:none;
    margin-bottom:14px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#D4A84F;
    transform:translateX(6px);
}
/* FOOTER LINKS */

.footer-links{

display:flex;
flex-direction:column;
gap:12px;
}

.footer-links h4{

color:#fff;

font-size:20px;

margin-bottom:12px;
}

.footer-links a{

color:rgba(255,255,255,0.85);

text-decoration:none;

transition:.3s ease;

display:block;
}

.footer-links a:hover{

color:#D4A46F;

padding-left:5px;
}

/* FOOTER DROPDOWN */

.footer-dropdown,
.footer-sub-dropdown{

position:relative;
}

.footer-dropdown-menu,
.footer-sub-menu{

display:none;

margin-top:10px;
margin-left:15px;

padding-left:12px;

border-left:1px solid rgba(212,164,111,0.25);
}

.footer-dropdown:hover .footer-dropdown-menu{

display:block;
}

.footer-sub-dropdown:hover .footer-sub-menu{

display:block;
}

.footer-contact p{
    color:rgba(255,255,255,0.72);
    margin-bottom:16px;
    line-height:1.8;
}

.footer-bottom{
    text-align:center;
    color:rgba(255,255,255,0.55);
    border-top:1px solid rgba(255,255,255,0.08);
    margin-top:60px;
    padding-top:25px;
    font-size:14px;
}
/* PREMIUM CARD EFFECT */

.premium-card,
.why-card,
.hero-stat,
.gallery-card,
.contact-card,
.why-card{
background:#fff;
padding:40px;
border-radius:18px;
min-height:240px;

display:flex;
flex-direction:column;
justify-content:flex-start;

box-sizing:border-box;

box-shadow:0 6px 20px rgba(0,0,0,0.05);
transition:.3s ease;
}

.why-card h3{
font-size:25px;
margin-bottom:22px;
line-height:1.2;
font-weight:700;

max-width:85%;
}
/* WHY CHOOSE CARD HEADING FIX */

.why-card h3,
.premium-card h3{

font-size:24px !important;

line-height:1.2;

word-break:normal;

max-width:220px
}

.why-card p{
font-size:16px;
line-height:1.9;
color:#666;

max-width:90%;
}

.premium-card:hover,
.why-card:hover,
.hero-stat:hover,
.gallery-card:hover,
.contact-card:hover,
.feature-card:hover{
transform:translateY(-10px);
border-color:#c89b6330;
box-shadow:0 20px 60px rgba(0,0,0,.08);
}


@keyframes float{
0%,100%{
transform:translateY(0px);
}
50%{
transform:translateY(-10px);
}
}
button,
.btn{
transition:all .35s ease;
}

button:hover,
.btn:hover{
transform:translateY(-3px);
}
.social-icons{
display:flex;
justify-content:center;
gap:18px;
margin-top:50px;
margin-right:15px;
}

.social-icons a{
width:58px;
height:58px;
border-radius:18px;
display:flex;
align-items:center;
justify-content:center;
background:#16212B;
color:#D4A46F;
font-size:22px;
transition:.35s ease;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.social-icons a:hover{
background:#D4A46F;
color:#fff;
transform:translateY(-6px);
}
.compliance-section{
padding:90px 0;
background:#f3eee7;
}

.compliance-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
margin-top:40px;
}

.compliance-card{
background:#fff;
padding:30px;
border-radius:20px;
transition:all .35s ease;
border:1px solid rgba(0,0,0,.05);
}

.compliance-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.compliance-card h3{
font-size:18px;
margin-bottom:12px;
color:#111827;
}

.compliance-card p{
color:#666;
font-size:15px;
word-break:break-word;
}
.compliance-card{
background:#fff;
border-radius:22px;
padding:30px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
border:1px solid rgba(212,164,111,.12);
transition:.35s ease;
}

.compliance-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}
.final-cta{
margin-top:80px;
margin-bottom:60px;
}

.compliance-section{
margin-top:70px;
margin-bottom:30px;
}
.final-cta{
margin-top:70px;
margin-bottom:50px;
text-align:center;
}
.final-cta{
text-align:center;
}

.final-cta p{
margin-top:12px;
margin-bottom:20px;
line-height:1.8;
}


.final-cta .btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 28px;
border-radius:40px;
font-size:15px;
font-weight:600;
background:#16212B;
color:#fff;
text-decoration:none;
transition:.3s ease;
margin-top:28px;
}

.final-cta .btn:hover{
background:#D4A46F;
transform:translateY(-3px);
}
.final-cta{
text-align:center;
}
.premium-tagline{
color:#D4A46F !important;
font-size:11px !important;
letter-spacing:3px !important;
text-transform:uppercase;
margin-top:4px;
display:block;

text-shadow:
0 0 10px rgba(212,164,111,.55),
0 0 18px rgba(212,164,111,.28);

}
.logo-text{
opacity:1 !important;
}
.logo-text p{
font-weight:600;
}
.portfolio-link{
color:#D4AA6F;
font-size:16px;
font-weight:600;
text-decoration:none;
position:relative;
transition:.3s ease;
}

.portfolio-link::after{
content:'';
position:absolute;
left:0;
bottom:-4px;
width:0;
height:2px;
background:#D4AA6F;
transition:.3s ease;
}

.portfolio-link:hover{
color:#b8894f;
}

.portfolio-link:hover::after{
width:100%;
}/* FORCE LOGO FIX */

.logo-icon{
width:85px !important;
height:85px !important;
display:flex !important;
align-items:center !important;
justify-content:center !important;
overflow:visible !important;
margin-right:18px !important;
position:relative;
z-index:9999;
}

.logo-icon img{
width:100% !important;
height:100% !important;
object-fit:contain !important;
display:block !important;
filter:brightness(1.15);
}

/* navbar alignment */
.navbar{
padding:12px 35px !important;
}

/* logo + text alignment */
.logo{
display:flex;
align-items:center;
gap:18px;
}
/* FLOATING WHATSAPP BUTTON */

.floating-whatsapp{
position:fixed;
bottom:28px;
right:28px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 8px 25px rgba(37,211,102,.45);
z-index:99999;
text-decoration:none;
animation:whatsappPulse 2s infinite;
transition:.3s ease;
}

.floating-whatsapp:hover{
transform:scale(1.08);
box-shadow:0 10px 30px rgba(37,211,102,.6);
}

.floating-whatsapp i{
font-size:32px;
color:#fff;
}

@keyframes whatsappPulse{
0%{
box-shadow:0 0 0 0 rgba(37,211,102,.5);
}
70%{
box-shadow:0 0 0 18px rgba(37,211,102,0);
}
100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}
}
/* TRUST STRIP */

.trust-strip{
display:flex;
justify-content:center;
gap:50px;
flex-wrap:wrap;
padding:28px 20px;
background:#fff;
border-top:1px solid rgba(0,0,0,.05);
border-bottom:1px solid rgba(0,0,0,.05);
}

.trust-strip span{
font-size:15px;
font-weight:600;
letter-spacing:1px;
color:#666;
position:relative;
}

.trust-strip span::after{
content:'•';
position:absolute;
right:-28px;
color:#D4A46F;
}

.trust-strip span:last-child::after{
display:none;
}
/* CTA ELEGANCE LINE */

.cta-elegance{
font-size:22px;
color:rgba(255,255,255,.82);
margin-top:18px;
letter-spacing:.5px;
font-weight:300;
}

/* CTA BULLETS */

.cta-bullets{
display:grid;
grid-template-columns:repeat(3, max-content);
justify-content:flex-start;
column-gap:55px;
row-gap:20px;
margin-top:32px;
}

.cta-bullets span{
position:relative;
color:#D4A46F;
font-size:15px;
font-weight:600;
letter-spacing:.8px;
padding-left:18px;
text-transform:uppercase;
}

.cta-bullets span::before{
content:'•';
position:absolute;
left:0;
color:#D4A46F;
}
/* HERO IMAGE */

.hero-image{

flex:1;

min-width:420px;

display:flex;
justify-content:center;
align-items:center;

animation:float 6s ease-in-out infinite;
}

/* HERO IMAGE AUTO RESIZE */

.hero-image img{

width:100%;
max-width:620px;

/* automatic premium ratio */
aspect-ratio:1/1;

/* auto resize */
object-fit:cover;
object-position:center;

display:block;

border-radius:30px;

background:#f8f5ef;

box-shadow:
0 30px 80px rgba(0,0,0,.15);

transition:
transform .6s ease;
}

/* PREMIUM HOVER */

.hero-image img:hover{

transform:scale(1.03);
}

/* MOBILE */

@media(max-width:992px){

.hero-image{

min-width:100%;
}

.hero-image img{

max-width:100%;
}
}/* TESTIMONIALS */

.testimonial-section{

padding:110px 0;

background:#f8f5ef;

overflow:hidden;
}

/* HEADER */

.section-header{

text-align:center;

margin-bottom:60px;
}

.section-tag{

display:inline-block;

padding:10px 22px;

border:1px solid rgba(212,164,111,.35);

border-radius:50px;

font-size:13px;
letter-spacing:1px;

margin-bottom:18px;

color:#B8863B;
}

.section-header h2{

font-size:48px;

margin-bottom:18px;

color:#0B1C33;
}

.section-header p{

max-width:700px;

margin:auto;

line-height:1.8;

color:#666;
}

/* SLIDER */

.testimonial-slider{

overflow:hidden;

position:relative;
}

.testimonial-track{

display:flex;

gap:30px;

width:max-content;

animation:scrollTestimonials 28s linear infinite;
}

/* CARD */

.testimonial-card{

width:360px;

background:#fff;

padding:38px;

border-radius:26px;

border:1px solid rgba(212,164,111,.18);

box-shadow:
0 12px 40px rgba(0,0,0,.06);

transition:all .4s ease;
}

.testimonial-card:hover{

transform:translateY(-8px);

border-color:#D4A46F;

box-shadow:
0 20px 60px rgba(212,164,111,.18);
}

/* STARS */

.stars{

font-size:24px;

color:#D4A46F;

margin-bottom:20px;
}

/* TEXT */

.testimonial-card p{

line-height:1.9;

margin-bottom:25px;

color:#555;
}

/* NAME */

.testimonial-card h4{

font-size:20px;

margin-bottom:6px;

color:#0B1C33;
}

.testimonial-card span{

font-size:14px;

color:#888;
}

/* BUTTON */

.review-btn-wrap{

text-align:center;

margin-top:55px;
}

.google-review-btn{

display:inline-block;

padding:16px 34px;

background:#0B1C33;

color:#fff;

border-radius:50px;

text-decoration:none;

font-weight:600;

transition:.4s ease;
}

.google-review-btn:hover{

background:#D4A46F;

transform:translateY(-3px);
}

/* AUTO SCROLL */

@keyframes scrollTestimonials{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}
}

/* MOBILE */

@media(max-width:768px){

.testimonial-card{

width:300px;
}

.section-header h2{

font-size:36px;
}
}/* MOBILE MENU */

.menu-toggle{

display:none;

font-size:28px;
color:#fff;

cursor:pointer;
}

/* MOBILE RESPONSIVE */

@media(max-width:991px){

.nav-links{

position:absolute;

top:100%;
left:0;

width:100%;

background:#08101b;

flex-direction:column;

padding:30px 0;

display:none;
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
}
}
/* REUSABLE LIGHT LUXURY INNER HERO */

.inner-hero{

position:relative;

padding:130px 8% 110px;

border-radius:0 0 32px 32px;

overflow:hidden;

background-size:cover;
background-position:center;

display:flex;
align-items:center;

min-height:460px;
}

/* SOFT LIGHT OVERLAY */

.inner-hero::before{

content:'';

position:absolute;
inset:0;

background:
linear-gradient(
90deg,
rgba(248,245,239,0.92),
rgba(248,245,239,0.58)
);

z-index:1;
}

/* CONTENT */

.inner-hero-content{

position:relative;
z-index:2;

max-width:720px;
}

/* SMALL LABEL */

.inner-hero-label{

display:inline-block;

padding:10px 20px;

margin-bottom:24px;

border-radius:40px;

background:rgba(212,164,111,0.10);

border:1px solid rgba(212,164,111,0.22);

color:#B8863B;

font-size:13px;
letter-spacing:1px;
text-transform:uppercase;
}

/* TITLE */

.inner-hero h1{

font-size:64px;
line-height:1.1;

margin-bottom:24px;

color:#0B1C33;
}

/* DESCRIPTION */

.inner-hero p{

font-size:18px;
line-height:1.8;

color:#555;

margin-bottom:38px;
}

/* BUTTON GROUP */

.hero-btn-group{

display:flex;
gap:18px;
flex-wrap:wrap;
}

/* PRIMARY BUTTON */

.primary-btn{

display:inline-flex;
align-items:center;
justify-content:center;

padding:16px 34px;

border-radius:50px;

background:
linear-gradient(
135deg,
#D4A46F,
#F4D19B
);

color:#111;
font-weight:600;

text-decoration:none;

transition:.35s ease;
}

.primary-btn:hover{

transform:translateY(-4px);

box-shadow:
0 15px 35px rgba(212,164,111,0.20);
}

/* SECONDARY BUTTON */

.secondary-btn{

display:inline-flex;
align-items:center;
justify-content:center;

padding:16px 34px;

border-radius:50px;

border:1px solid rgba(212,164,111,0.28);

color:#0B1C33;

background:#fff;

text-decoration:none;

transition:.35s ease;
}

.secondary-btn:hover{

background:#D4A46F;
color:#111;
}

/* MOBILE */

@media(max-width:768px){

.inner-hero{

padding:110px 7% 90px;
}

.inner-hero h1{
font-size:42px;
}

.inner-hero p{
font-size:16px;
}

.hero-btn-group{
flex-direction:column;
align-items:flex-start;
}
}
/* DROPDOWN MENU */

.dropdown{
position:relative;
}

.dropdown-menu,
.dropdown-sub-menu{

position:absolute;

top:100%;
left:0;

min-width:280px;

background:#fff;

border-radius:18px;

padding:14px 0;

box-shadow:
0 18px 50px rgba(0,0,0,.10);

opacity:0;
visibility:hidden;

transform:translateY(10px);

transition:.35s ease;

z-index:999;
}

/* LINKS */

.dropdown-menu a,
.dropdown-sub-menu a{

display:block;

padding:12px 22px;

color:#222;

text-decoration:none;

font-size:15px;

transition:.3s ease;
}
/* DROPDOWN */

.dropdown{
position:relative;
}

.dropdown-menu,
.dropdown-sub-menu{

display:none;
position:absolute;

background:#081420;

min-width:260px;

border-radius:14px;

padding:10px 0;

box-shadow:0 15px 40px rgba(0,0,0,0.15);

z-index:999;
}

.dropdown:hover .dropdown-menu{
display:block;
}

.dropdown-menu a,
.dropdown-sub-menu a{

display:block;

padding:12px 20px;

color:#fff !important;

white-space:nowrap;
}

.dropdown-menu a:hover,
.dropdown-sub-menu a:hover{

background:rgba(212,164,111,0.12);

color:#D4A46F !important;
}

/* SUB DROPDOWN */

.dropdown-sub{
position:relative;
}

.dropdown-sub-menu{

top:0;
left:100%;
}

.dropdown-sub:hover .dropdown-sub-menu{
display:block;
}

/* HOVER */

.dropdown-menu a:hover,
.dropdown-sub-menu a:hover{

background:#f8f5ef;

color:#D4A46F;
}

/* SHOW MENU */

.dropdown:hover>.dropdown-menu{

opacity:1;
visibility:visible;

transform:translateY(0);
}

/* SUB DROPDOWN */

.dropdown-sub{
position:relative;
}

.dropdown-sub-menu{
right:0;
top:0;
left:auto;
}

/* SHOW SUBMENU */

.dropdown-sub:hover>.dropdown-sub-menu{

opacity:1;
visibility:visible;

transform:translateY(0);
}
/* MENU FONT COLOR */

.nav-links a{
color:#ffffff !important;
font-weight:500;
transition:0.3s ease;
}

/* HOVER COLOR */

.nav-links a:hover{
color:#D4A46F !important;
}
/* DROPDOWN MENU */

.dropdown-menu{
background:#081420;
right:0;
left:auto;
}

.dropdown-menu a{
color:#ffffff !important;
padding:12px 18px;
display:block;
}

.dropdown-menu a:hover{
background:rgba(212,164,111,0.12);
color:#D4A46F !important;
}
/* =========================
MOBILE RESPONSIVE
========================= */

@media (max-width:768px){

/* BODY */

body{
overflow-x:hidden;
}

/* HEADER */

.top-header{

padding:14px 20px;

flex-direction:column;

gap:18px;
}

/* NAVBAR */

.nav-links{

flex-wrap:wrap;

justify-content:center;

gap:14px;
}

/* HERO SECTION */

.hero-section,
.hero-container{

grid-template-columns:1fr !important;

display:grid;

gap:35px;
}

/* HERO CONTENT */

.hero-content{

text-align:center;

align-items:flex-start;
}

/* HERO IMAGE */

.hero-image img{

width:100%;

height:auto;

max-height:420px;

object-fit:cover;
}

/* BUTTONS */

.hero-buttons{

flex-direction:column;

width:100%;

gap:14px;
}

.hero-buttons a{

width:100%;
text-align:center;
}

/* GRID CARDS */

.grid-3,
.grid-4{

grid-template-columns:1fr !important;
}

/* PREMIUM CARDS */

.premium-card,
.why-card,
.feature-card{

width:100%;

text-align:center;
}

/* FOOTER */

.footer-grid{

grid-template-columns:1fr !important;

gap:35px;

text-align:center;
}

/* DROPDOWN */

.dropdown-menu,
.dropdown-sub-menu{

position:static;

width:100%;

box-shadow:none;

margin-top:10px;
}

}
/* ===================================
PREMIUM MOBILE HEADER
=================================== */

.mobile-toggle{

display:none;

width:34px;
height:26px;

flex-direction:column;
justify-content:space-between;

cursor:pointer;

z-index:99999;
}

.mobile-toggle span{

display:block;

height:3px;

border-radius:10px;

background:#fff;

transition:.35s ease;
}

/* MOBILE */

@media(max-width:991px){

/* HEADER */

.top-header{

padding:14px 20px;

position:sticky;
top:0;

z-index:99999;
}

/* SHOW TOGGLE */

.mobile-toggle{
display:flex;
}

/* HIDE NAV INITIALLY */

.nav-links{

position:fixed;

top:0;
right:-100%;

width:300px;
height:100vh;

background:
linear-gradient(
180deg,
#081420,
#102033
);

padding:110px 30px;

flex-direction:column;

align-items:flex-start;

gap:18px;

transition:.45s ease;

overflow-y:auto;

box-shadow:
-10px 0 40px rgba(0,0,0,.18);
}

/* ACTIVE MENU */

.nav-links.active{
right:0;
}

/* LINKS */

.nav-links a{

font-size:17px;

width:100%;
}

/* DROPDOWNS */

.dropdown-menu,
.dropdown-sub-menu{

position:static;

display:none;

opacity:1;
visibility:visible;

transform:none;

background:transparent;

box-shadow:none;

padding-left:15px;

margin-top:10px;
}

/* OPEN ON HOVER */

.dropdown:hover .dropdown-menu,
.dropdown-sub:hover .dropdown-sub-menu{

display:block;
}

/* LOGO */

.brand img{
height:85px;
width:auto;
object-fit:contain;
}

/* =========================
MOBILE HEADER FIX
========================= */

@media(max-width:991px){

.top-header{

display:flex;
align-items:center;
justify-content:space-between;

padding:10px 14px;

height:auto;
}

/* LOGO AREA */

.brand{

display:flex;
align-items:center;

gap:10px;

max-width:70%;
}

/* LOGO IMAGE */

.logo-icon img{

width:58px !important;
height:auto;
}

/* TEXT */

.brand-text h2{

font-size:22px;
line-height:1.1;
}

.premium-tagline{

font-size:10px;
letter-spacing:2px;
}

/* CALL BUTTON */

.call-btn{

padding:10px 16px;

font-size:14px;

border-radius:30px;
}

/* HERO SECTION */

.hero-section{

padding-top:40px;
}

/* HERO GRID */

.hero-grid{

grid-template-columns:1fr !important;

gap:40px;
}

/* HERO IMAGE */

.hero-image{

width:100%;
}

.hero-image img{

width:100%;
height:auto;

max-height:420px;

object-fit:cover;

border-radius:24px;
}

/* HERO TEXT */

.hero-text{

text-align:center;
}

.hero-text h1{

font-size:42px;
line-height:1.15;
}

.hero-text p{

font-size:18px;
line-height:1.8;
}

/* BUTTONS */

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

gap:15px;
}

/* STATS */

.hero-stats{

grid-template-columns:1fr 1fr;

gap:20px;
}
}
/* =====================================
FINAL MOBILE FIX
===================================== */

@media only screen and (max-width:768px){

.top-header{

padding:12px 15px !important;

display:flex !important;
align-items:center !important;
justify-content:space-between !important;

overflow:hidden !important;
}


/* LOGO */

.brand{

max-width:65% !important;

display:flex !important;
align-items:center !important;

gap:10px !important;
}

/* LOGO IMAGE */

.logo-icon img{

width:55px !important;

height:auto !important;

display:block !important;
}

/* BRAND TEXT */

.brand-text h2{

font-size:20px !important;

line-height:1.1 !important;
}

.premium-tagline{

font-size:9px !important;

letter-spacing:2px !important;
}

/* CALL BUTTON */

.call-btn{

padding:10px 14px !important;

font-size:13px !important;

border-radius:30px !important;

white-space:nowrap !important;
}

/* HERO */

.hero-grid{

display:grid !important;

grid-template-columns:1fr !important;

gap:35px !important;
}

/* HERO TEXT */

.hero-text{

text-align:center !important;
}

.hero-text h1{

font-size:42px !important;

line-height:1.2 !important;
}

.hero-text p{

font-size:12px !important;

line-height:1.8 !important;
}

/* BUTTONS */

.hero-buttons{

display:flex !important;

justify-content:center !important;

flex-wrap:wrap !important;

gap:15px !important;
}

/* STATS */

.hero-stats{

grid-template-columns:1fr 1fr !important;

gap:15px !important;
}

/* HERO IMAGE */

.hero-image{

width:100% !important;
}

.hero-image img{

width:100% !important;

height:auto !important;

max-height:420px !important;

object-fit:cover !important;

border-radius:24px !important;

display:block !important;
}
}
/* =====================================
FINAL MOBILE FIX
===================================== */

@media only screen and (max-width:768px){

.top-header{

padding:12px 15px !important;

display:flex !important;
align-items:center !important;
justify-content:space-between !important;

overflow:hidden !important;
}

/* LOGO */

.brand{

max-width:65% !important;

display:flex !important;
align-items:center !important;

gap:10px !important;
}

/* LOGO IMAGE */

.logo-icon img{

width:55px !important;

height:auto !important;

display:block !important;
}

/* BRAND TEXT */

.brand-text h2{

font-size:20px !important;

line-height:1.1 !important;
}

.premium-tagline{

font-size:9px !important;

letter-spacing:2px !important;
}

/* CALL BUTTON */

.call-btn{

padding:10px 14px !important;

font-size:13px !important;

border-radius:30px !important;

white-space:nowrap !important;
}

/* HERO */

.hero-grid{

display:grid !important;

grid-template-columns:1fr !important;

gap:35px !important;
}

/* HERO TEXT */

.hero-text{

text-align:center !important;
}

.hero-text h1{

font-size:42px !important;

line-height:1.2 !important;
}

.hero-text p{

font-size:18px !important;

line-height:1.8 !important;
}

/* BUTTONS */

.hero-buttons{

display:flex !important;

justify-content:center !important;

flex-wrap:wrap !important;

gap:15px !important;
}

/* STATS */

.hero-stats{

grid-template-columns:1fr 1fr !important;

gap:15px !important;
}

/* HERO IMAGE */

.hero-image{

width:100% !important;
}

.hero-image img{

width:100% !important;

height:auto !important;

max-height:420px !important;

object-fit:cover !important;

border-radius:24px !important;

display:block !important;
}
}
/* ====================================
FINAL CLEAN MOBILE RESPONSIVE FIX
==================================== */

@media only screen and (max-width:768px){

body{
overflow-x:hidden;
}

/* CONTAINER */

.container{
width:92% !important;
max-width:92% !important;
margin:auto !important;
padding:0 !important;
}

/* HEADER */

.top-header{
padding:12px 14px !important;
display:flex !important;
justify-content:space-between !important;
align-items:center !important;
}

/* LOGO */

.logo-icon img{
width:50px !important;
height:auto !important;
}

.brand-text h2{
font-size:18px !important;
line-height:1.1 !important;
}

.premium-tagline{
font-size:8px !important;
}

/* CALL BUTTON */

.call-btn{
padding:10px 16px !important;
font-size:12px !important;
}

/* HERO SECTION */

.hero-grid{
display:flex !important;
flex-direction:column !important;
gap:30px !important;
}

/* HERO TEXT */

.hero-text{
width:100% !important;
text-align:center !important;
}

.hero-text h1{
font-size:42px !important;
line-height:1.2 !important;
}

.hero-text p{
font-size:17px !important;
line-height:1.8 !important;
}

/* HERO BUTTONS */

.hero-buttons{
display:flex !important;
justify-content:center !important;
gap:12px !important;
flex-wrap:wrap !important;
}

/* HERO STATS */

.hero-stats{
display:grid !important;
grid-template-columns:1fr 1fr !important;
gap:36px !important;
}

/* HERO IMAGE */

.hero-image{
width:100% !important;
}

.hero-image img{
width:100% !important;
height:auto !important;
display:block !important;
border-radius:24px !important;
object-fit:cover !important;
}

/* ALL CARDS */

.premium-card,
.why-card,
.feature-card,
.compliance-card,
.testimonial-card{

width:100% !important;

padding:24px !important;

margin-bottom:20px !important;
}

/* ALL GRIDS */

.grid-3,
.grid-4,
.footer-grid{

display:grid !important;

grid-template-columns:1fr !important;

gap:22px !important;
}

/* FEATURE IMAGES */

.feature-card img{

width:100% !important;

height:220px !important;

object-fit:cover !important;
}

/* SECTION TITLES */

.section-title{

font-size:32px !important;

line-height:1.2 !important;

text-align:center !important;
}

/* SECTION SUBTITLE */

.section-subtitle{

text-align:center !important;
}

/* FOOTER */

footer{

text-align:center !important;
}
}
/* ===============================
MOBILE GRID FORCE FIX
=============================== */

@media only screen and (max-width:768px){

/* COMPLIANCE SECTION */

.compliance-grid,
.compliance-cards,
.regulatory-grid{

display:grid !important;

grid-template-columns:1fr !important;

gap:18px !important;
}

/* COMPLIANCE CARDS */

.compliance-card{

width:100% !important;

padding:22px !important;

text-align:center !important;
}

/* WHY CHOOSE */

.why-grid{

display:grid !important;

grid-template-columns:1fr !important;

gap:20px !important;
}

/* FEATURED SECTION */

.feature-grid{

display:grid !important;

grid-template-columns:1fr !important;

gap:22px !important;
}

/* BOTTOM CTA BANNER */

.cta-banner,
.bottom-banner,
.cta-section{

padding:30px 22px !important;

text-align:center !important;

border-radius:24px !important;
}

/* CTA CONTENT */

.cta-banner h2,
.bottom-banner h2{

font-size:30px !important;

line-height:1.3 !important;
}

.cta-banner p,
.bottom-banner p{

font-size:16px !important;

line-height:1.8 !important;
}

/* CTA BUTTON */

.cta-banner .btn,
.bottom-banner .btn{

width:100% !important;

max-width:280px !important;

margin:auto !important;

display:flex !important;

justify-content:center !important;
}

/* FOOTER */

.footer-grid{

display:grid !important;

grid-template-columns:1fr !important;

gap:30px !important;

text-align:center !important;
}
}
/* ==========================
MOBILE FOOTER DROPDOWN FIX
========================== */

@media only screen and (max-width:768px){

/* FOOTER LINKS */

.footer-links ul{

padding:0;
margin:0;

list-style:none;
}

/* MAIN DROPDOWN */

.footer-links .dropdown-menu,
.footer-links .sub-menu{

position:relative !important;

top:auto !important;
left:auto !important;

width:100% !important;

display:block !important;

background:transparent !important;

box-shadow:none !important;

padding-left:15px !important;

margin-top:10px !important;

border:none !important;
}

/* DROPDOWN ITEMS */

.footer-links .dropdown-menu li,
.footer-links .sub-menu li{

margin-bottom:10px !important;
}

/* LINKS */

.footer-links a{

display:block !important;

padding:8px 0 !important;

line-height:1.6 !important;
}

/* REMOVE HOVER FLOAT */

.footer-links a:hover{

transform:none !important;
}

/* PREVENT OVERFLOW */

footer{

overflow:hidden !important;
}
}
/* ===============================
MOBILE GRID FORCE FIX
=============================== */

@media only screen and (max-width:768px){

/* COMPLIANCE SECTION */

.compliance-grid,
.compliance-cards,
.regulatory-grid{

display:grid !important;

grid-template-columns:1fr !important;

gap:18px !important;
}

/* COMPLIANCE CARDS */

.compliance-card{

width:100% !important;

padding:22px !important;

text-align:center !important;
}

/* WHY CHOOSE */

.why-grid{

display:grid !important;

grid-template-columns:1fr !important;

gap:20px !important;
}

/* FEATURED SECTION */

.feature-grid{

display:grid !important;

grid-template-columns:1fr !important;

gap:22px !important;
}

/* BOTTOM CTA BANNER */

.cta-banner,
.bottom-banner,
.cta-section{

padding:30px 22px !important;

text-align:center !important;

border-radius:24px !important;
}

/* CTA CONTENT */

.cta-banner h2,
.bottom-banner h2{

font-size:30px !important;

line-height:1.3 !important;
}

.cta-banner p,
.bottom-banner p{

font-size:16px !important;

line-height:1.8 !important;
}

/* CTA BUTTON */

.cta-banner .btn,
.bottom-banner .btn{

width:100% !important;

max-width:280px !important;

margin:auto !important;

display:flex !important;

justify-content:center !important;
}

/* FOOTER */

.footer-grid{

display:grid !important;

grid-template-columns:1fr !important;

gap:30px !important;

text-align:center !important;
}
}
/* ===================================
MOBILE SUB DROPDOWN FIX
=================================== */

@media only screen and (max-width:768px){

/* FOOTER QUICK LINKS */

.footer-links{

width:100% !important;

overflow:hidden !important;
}

/* MAIN DROPDOWN */

.footer-links .dropdown-menu{

position:relative !important;

left:0 !important;
top:0 !important;

width:100% !important;

display:block !important;

padding-left:15px !important;

margin-top:10px !important;

background:transparent !important;

box-shadow:none !important;
}

/* SUB DROPDOWN */

.footer-links .sub-menu{

position:relative !important;

left:0 !important;
top:0 !important;

width:100% !important;

display:block !important;

padding-left:18px !important;

margin-top:8px !important;

background:transparent !important;

box-shadow:none !important;

border-left:2px solid rgba(212,164,111,0.3) !important;
}

/* ALL LINKS */

.footer-links li{

display:block !important;

width:100% !important;

margin-bottom:8px !important;
}

/* TEXT */

.footer-links a{

display:block !important;

font-size:15px !important;

line-height:1.7 !important;

white-space:normal !important;
}

/* REMOVE FLOATING */

.footer-links .dropdown,
.footer-links .submenu{

position:relative !important;
}

/* STOP RIGHT OVERFLOW */

footer{

overflow-x:hidden !important;
}


/* =================================
ABOUT US - OUR APPROACH SECTION
================================= */

.why-choose-section{

padding:100px 0;
}

/* SECTION HEADER */

.section-header{

text-align:center;

max-width:850px;

margin:0 auto 60px;
}

.section-header h2{

font-size:48px;

line-height:1.2;

margin-bottom:20px;

color:#0B1C33;
}

.section-header p{

font-size:12px;

line-height:1.8;

color:#666;
}

/* GRID */

.why-choose-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;
}

/* CARD */

.why-card{

background:#fff;

padding:40px 30px;

border-radius:24px;

text-align:center;

box-shadow:
0 20px 50px rgba(0,0,0,.06);

transition:.35s ease;

border:1px solid rgba(212,164,111,.10);
}

/* HOVER */

.why-card:hover{

transform:translateY(-8px);

box-shadow:
0 30px 60px rgba(0,0,0,.10);
}

/* ICON */

.why-icon{

width:75px;
height:75px;

margin:0 auto 25px;

border-radius:20px;

display:flex;
align-items:center;
justify-content:center;

font-size:28px;

background:
linear-gradient(
135deg,
#D4A46F,
#F4D19B
);

color:#fff;
}

/* TITLE */

.why-card h3{

font-size:26px;

margin-bottom:18px;

color:#0B1C33;
}

/* TEXT */

.why-card p{

font-size:16px;

line-height:1.8;

color:#666;
}

/* MOBILE */

@media(max-width:768px){

.why-choose-grid{

grid-template-columns:1fr;

gap:22px;
}

.section-header h2{

font-size:36px;
}
/* =================================
ABOUT PAGE HERO FINAL FIX
================================= */

.about-hero .hero-wrapper{

display:grid !important;

grid-template-columns:55% 45% !important;

align-items:center !important;

gap:70px !important;
}

.about-hero .hero-content{

max-width:100% !important;

padding-right:0 !important;
}
*/
.about-hero .hero-image{

display:flex !important;

justify-content:center !important;

align-items:center !important;
}

.about-hero .hero-image img{

width:100% !important;

max-width:720px !important;

display:block !important;
}

/* REMOVE OLD FLEX */

.about-hero .hero-wrapper,
.about-hero .hero-content,
.about-hero .hero-image{

float:none !important;
}
/* =================================
ABOUT US - HERO SECTION
================================= */

.about-hero h1{

font-size:58px;
line-height:1.1;
max-width:520px;

}

.about-hero p{

font-size:16px;
line-height:1.7;
max-width:520px;

}
/* =================================
ABOUT US - HERO IMAGE FIX
================================= */

.about-hero-image{

margin-top:-40px;
}
.about-hero .hero-text
*/
}
/* =========================================
ABOUT COMPANY SECTION
========================================= */

.about-company-section{
padding:100px 8%;
background:#fffdf9;
}

.about-company-container{
display:grid;
grid-template-columns:3, 1fr;
gap:70px;
align-items:center;
}

/* LEFT */

.section-tag{
display:inline-block;
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
color:#b68b5a;
margin-bottom:18px;
font-weight:600;
}

.about-company-content h2{
font-size:46px;
line-height:1.2;
color:#0f172a;
margin-bottom:28px;
font-family:'Cormorant Garamond', serif;
max-width:620px;
}

.about-company-content p{
font-size:16px;
line-height:1.9;
color:#555;
margin-bottom:22px;
max-width:620px;
}

.about-points{
margin-top:25px;
padding-left:18px;
}

.about-points li{
margin-bottom:14px;
font-size:15px;
color:#333;
}

/* TRUST GRID */

.trust-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
}

.trust-card{
background:#fff;
padding:30px 26px;
border-radius:24px;
box-shadow:0 15px 45px rgba(0,0,0,0.06);
border:1px solid rgba(212,164,111,0.15);
transition:0.4s ease;
}

.trust-card:hover{
transform:translateY(-8px);
box-shadow:0 22px 60px rgba(0,0,0,0.10);
}

.trust-card h3{
font-size:22px;
margin-bottom:12px;
color:#0f172a;
font-family:'Cormorant Garamond', serif;
}

.trust-card p{
font-size:14px;
line-height:1.7;
color:#666;
}

/* MOBILE */

@media(max-width:991px){

.about-company-container{
grid-template-columns:1fr;
gap:50px;
}

.about-company-content h2{
font-size:38px;
}

.trust-grid{
grid-template-columns:1fr;
}

}.trust-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:24px;
align-items:stretch;
}

.trust-card{
background:#ffffff;
padding:28px 24px;
border-radius:22px;
border:1px solid rgba(212,164,111,0.18);
box-shadow:0 15px 45px rgba(0,0,0,0.06);

display:flex;
flex-direction:column;
justify-content:center;

min-height:150px;

transition:0.4s ease;
}

.trust-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.10);
}

.trust-card h3{
font-size:22px;
margin-bottom:10px;
color:#0f172a;
font-family:'Cormorant Garamond', serif;
}

.trust-card p{
font-size:14px;
line-height:1.7;
color:#666;
margin:0;
}
.grid-3{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
margin-top:40px;
}
/* =========================================
CAMPAIGN HERO
========================================= */

.campaign-hero{
position:relative;
padding:140px 8% 110px;
background:
linear-gradient(rgba(6,18,24,0.82),rgba(6,18,24,0.86)),
url('../assets/images/corporate-bg.jpg');
background-size:cover;
background-position:center;
overflow:hidden;
}

.campaign-content{
max-width:760px;
position:relative;
z-index:2;
}

.hero-badge{
display:inline-block;
padding:12px 24px;
border-radius:40px;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,0.12);
color:#fff;
font-size:13px;
letter-spacing:1px;
margin-bottom:28px;
}

.campaign-hero h1{
font-size:68px;
line-height:1.08;
color:#fff;
margin-bottom:28px;
font-family:'Cormorant Garamond', serif;
}

.campaign-hero p{
font-size:18px;
line-height:1.9;
color:#d8d8d8;
max-width:640px;
margin-bottom:36px;
}

.hero-buttons{
display:flex;
gap:20px;
flex-wrap:wrap;
margin-bottom:50px;
}

.primary-btn,
.secondary-btn{
padding:16px 34px;
border-radius:50px;
font-size:15px;
font-weight:600;
text-decoration:none;
transition:0.4s ease;
}

.primary-btn{
background:#d4a46f;
color:#0b1c33;
}

.secondary-btn{
border:1px solid rgba(255,255,255,0.2);
color:#fff;
background:rgba(255,255,255,0.06);
backdrop-filter:blur(10px);
}

.primary-btn:hover,
.secondary-btn:hover{
transform:translateY(-6px);
}

.trust-strip{
display:flex;
flex-wrap:wrap;
gap:16px;
}

.trust-item{
padding:12px 20px;
border-radius:40px;
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.08);
color:#f5f5f5;
font-size:14px;
}

/* =========================================
SERVICES
========================================= */

.corporate-services{
padding:110px 8%;
background:#fffdf9;
}

.section-heading{
margin-bottom:60px;
}

.section-heading.center{
text-align:center;
}

.section-label{
display:inline-block;
padding:10px 22px;
background:#0d2b2a;
color:#fff;
border-radius:40px;
font-size:12px;
letter-spacing:1px;
margin-bottom:22px;
}

.section-heading h2{
font-size:54px;
line-height:1.15;
color:#0f172a;
font-family:'Cormorant Garamond', serif;
max-width:760px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:#fff;
border-radius:28px;
overflow:hidden;
box-shadow:0 15px 50px rgba(0,0,0,0.06);
transition:0.4s ease;
border:1px solid rgba(212,164,111,0.12);
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.10);
}

.service-card img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

.service-content{
padding:24px;
}

.service-content h3{
font-size:28px;
margin-bottom:16px;
font-family:'Cormorant Garamond', serif;
color:#0f172a;
}

.service-content p{
font-size:15px;
line-height:1.8;
color:#666;
}

/* =========================================
PROCUREMENT
========================================= */

.procurement-section{
padding:110px 8%;
background:#f8f6f1;
}

.procurement-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
margin-top:60px;
}

.proc-card{
background:#fff;
padding:36px 32px;
border-radius:26px;
box-shadow:0 12px 40px rgba(0,0,0,0.05);
border:1px solid rgba(212,164,111,0.15);
transition:0.4s ease;
}

.proc-card:hover{
transform:translateY(-8px);
}

.proc-card h3{
font-size:28px;
margin-bottom:18px;
color:#0f172a;
font-family:'Cormorant Garamond', serif;
}

.proc-card p{
font-size:15px;
line-height:1.8;
color:#666;
margin-bottom:8px;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:991px){

.campaign-hero h1{
font-size:46px;
}

.section-heading h2{
font-size:40px;
}

.services-grid,
.procurement-grid{
grid-template-columns:1fr;
}

.hero-buttons{
flex-direction:column;
align-items:flex-start;
}
/* CAMPAIGN HERO */

.campaign-hero{
padding:140px 8%;
background:linear-gradient(rgba(5,15,22,0.88),rgba(5,15,22,0.88)),
url('assets/images/event-1.jpg');
background-size:cover;
background-position:center;
}

.campaign-content{
max-width:760px;
}

.hero-badge{
display:inline-block;
padding:12px 24px;
border-radius:50px;
background:rgba(255,255,255,0.08);
color:#fff;
margin-bottom:24px;
font-size:13px;
}

.campaign-hero h1{
font-size:64px;
line-height:1.1;
color:#fff;
margin-bottom:24px;
font-family:'Cormorant Garamond', serif;
}

.campaign-hero p{
font-size:18px;
line-height:1.8;
color:#d8d8d8;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:18px;
margin-bottom:40px;
flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
padding:16px 32px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:0.3s ease;
}

.primary-btn{
background:#d4a46f;
color:#111;
}

.secondary-btn{
border:1px solid rgba(255,255,255,0.15);
color:#fff;
}

.primary-btn:hover,
.secondary-btn:hover{
transform:translateY(-5px);
}

.trust-strip{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.trust-item{
padding:12px 18px;
border-radius:40px;
background:rgba(255,255,255,0.08);
color:#fff;
font-size:14px;
}

@media(max-width:991px){

.campaign-hero h1{
font-size:42px;
}

}
/* CORPORATE SERVICES */

.corporate-services{
padding:110px 8%;
background:#f8f6f1;
}

.section-heading{
max-width:760px;
margin-bottom:60px;
}

.section-label{
display:inline-block;
padding:10px 22px;
border-radius:40px;
background:#0d2b2a;
color:#fff;
font-size:12px;
letter-spacing:1px;
margin-bottom:24px;
}

.section-heading h2{
font-size:56px;
line-height:1.1;
margin-bottom:24px;
font-family:'Cormorant Garamond',serif;
color:#111827;
}

.section-heading p{
font-size:17px;
line-height:1.9;
color:#666;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
align-items:stretch;
}

.service-card{
background:#fff;
border-radius:28px;
overflow:hidden;
box-shadow:0 15px 45px rgba(0,0,0,0.06);
transition:0.4s ease;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 60px rgba(0,0,0,0.10);
}

.service-card img{
width:100%;
height:260px;
object-fit:cover;
display:block;
}

.service-content{
padding:30px;
}

.service-content h3{
font-size:30px;
margin-bottom:16px;
font-family:'Cormorant Garamond',serif;
color:#111827;
}

.service-content p{
font-size:15px;
line-height:1.8;
color:#666;
}

@media(max-width:991px){

.services-grid{
grid-template-columns:1fr;
}

.section-heading h2{
font-size:40px;
}

}
/* =========================================
cAMPAIGN - FINAL MOBILE OPTIMIZATION
========================================= */

@media(max-width:991px){

.hero-wrapper{
grid-template-columns:1fr;
gap:50px;
}

.hero-left{
text-align:center;
}

.hero-left h1{
font-size:42px;
line-height:1.15;
}

.hero-left p{
font-size:16px;
line-height:1.8;
margin:auto;
}

.hero-buttons{
justify-content:center;
}

.hero-stats{
justify-content:center;
gap:18px;
}

.hero-image img{
max-width:100%;
height:auto;
}

.grid-3{
grid-template-columns:1fr;
gap:24px;
}

.section-title{
font-size:36px;
line-height:1.2;
text-align:center;
}

.container{
padding-left:20px;
padding-right:20px;
}

.banner-box{
flex-direction:column;
gap:35px;
text-align:center;
}

.banner-right{
text-align:center;
}

.cta-bullets{
justify-content:center;
}

.about-company-container{
grid-template-columns:1fr;
gap:50px;
}

.premium-card{
padding:24px;
}

.footer-container{
grid-template-columns:1fr;
gap:40px;
}

.social-icons{
justify-content:center;
}

}

/* SMALL MOBILE */

@media(max-width:576px){

.brand-text h2{
font-size:42px;
line-height:1;
}
.section-title{
font-size:30px;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

.btn-primary,
.banner-btn{
width:100%;
text-align:center;
}

.hero-stats{
grid-template-columns:repeat(2,1fr);
}

}
/* DESKTOP BALANCE */

.hero-wrapper{
align-items:center;
}

.hero-image{
text-align:center;
}

.hero-image img{
max-width:92%;
}

.premium-card{
height:100%;
}

.card-inner{
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
}
html, body{
overflow-x:hidden !important;
width:100%;
max-width:100%;
}

*{
box-sizing:border-box;
}

section{
overflow:hidden;
}

/* MOBILE TOGGLE */

.mobile-toggle{
position:relative;
z-index:99999;
cursor:pointer;
}

.mobile-toggle span{
display:block;
width:34px;
height:4px;
background:#fff;
margin:6px 0;
border-radius:10px;
}

/* MOBILE MENU */

.mobile-menu{
display:none;
flex-direction:column;
position:absolute;
top:100%;
left:0;
width:100%;
background:#06211d;
padding:20px;
z-index:9999;
}

.mobile-menu.active{
display:flex;
}
html, body{
overflow-x:hidden !important;
width:100%;
max-width:100%;
}

*{
box-sizing:border-box;
}
/* =========================================
MOBILE RESPONSIVE FIX
========================================= */

@media (max-width:768px){

/* NAVBAR */
.nav-links{
display:none;
}

.mobile-toggle{
display:flex;
cursor:pointer;
z-index:999;
}

.mobile-menu.active{
display:flex;
flex-direction:column;
}

/* HERO SECTION */
.hero-section,
.campaign-hero{
padding:110px 24px 70px;
overflow:hidden;
}

.hero-content,
.campaign-content{
max-width:100%;
text-align:center;
}

.hero-content h1,
.campaign-content h1{
font-size:54px !important;
line-height:1.08;
word-break:break-word;
overflow-wrap:break-word;
}

.hero-content p,
.campaign-content p{
font-size:17px;
line-height:1.8;
max-width:100%;
padding:0 5px;
}

/* BUTTONS */
.hero-buttons{
flex-direction:column;
align-items:center;
gap:16px;
}

.hero-buttons a{
width:100%;
max-width:320px;
text-align:center;
}

/* TRUST STRIP */
.trust-strip{
justify-content:center;
gap:12px;
}

.trust-item{
font-size:13px;
padding:10px 14px;
text-align:center;
}

/* BIG TRUST BANNER */
.cta-banner h2,
.trust-banner h2{
font-size:48px !important;
line-height:1.12;
word-break:break-word;
overflow-wrap:break-word;
text-align:center;
}

.cta-banner ul,
.trust-banner ul{
grid-template-columns:1fr;
padding-left:18px;
}

/* STATS */
.stats-grid{
grid-template-columns:repeat(2,1fr);
gap:18px;
text-align:center;
}

.stat-item h3{
font-size:28px;
}

/* PORTFOLIO */
.portfolio-grid{
grid-template-columns:1fr;
gap:28px;
}

/* EXCELLENCE IN ACTION */
.section-heading{
padding-left:12px;
padding-right:12px;
}

.section-label{
margin-left:0;
}

/* BULLET ALIGNMENT */
.feature-card ul,
.proc-card ul{
padding-left:22px;
text-align:left;
}

.feature-card li,
.proc-card li{
text-align:left;
line-height:1.8;
margin-bottom:8px;
}

/* CARDS */
.service-card,
.feature-card,
.proc-card{
padding:28px 22px;
}

/* IMAGES */
.service-card img,
.portfolio-card img{
height:auto;
}

/* TRUST TEXT */
.trust-banner{
padding:60px 24px;
overflow:hidden;
}

/* PREVENT RIGHT SIDE CUT */
body,
section,
div{
max-width:100%;
overflow-x:hidden;
}

}
background:url('assets/images/corporate1.jpg');
background:url('assets/images/corporate1.jpg');
background:url('assets/images/catering.jpg');
background:url('assets/images/expo.jpg');
}
/* =========================================
FINAL MOBILE & ALIGNMENT FIX
========================================= */

/* SMALL GOLD LABELS */

.section-label,
.section-tag,
.small-heading{
display:inline-block;
margin-left:0 !important;
text-align:left !important;
}

/* FORCE LEFT ALIGN */

.section-heading{
text-align:left !important;
align-items:flex-start !important;
}

/* TRUST CTA FIX */

.trust-banner h2,
.cta-banner h2{
font-size:42px !important;
line-height:1.15 !important;
word-break:break-word;
overflow-wrap:break-word;
max-width:100%;
}

/* MOBILE CTA TEXT */

@media(max-width:768px){

.trust-banner h2,
.cta-banner h2{
font-size:30px !important;
line-height:1.2 !important;
}

.trust-banner ul,
.cta-banner ul{
grid-template-columns:1fr !important;
padding-left:20px;
}

}

/* TOP MOBILE MENU */

.mobile-toggle{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
gap:6px;
cursor:pointer;
z-index:99999;
position:relative;
}

.mobile-toggle span{
width:34px;
height:4px;
background:#fff;
border-radius:10px;
display:block;
}

/* MOBILE MENU LINKS */

.nav-links.active{
display:flex !important;
flex-direction:column;
position:absolute;
top:100%;
left:0;
width:100%;
background:#06211d;
padding:20px;
z-index:9999;
gap:18px;
}
/* =========================================
TRUST / COMPLIANCE CARDS GRID
========================================= */

.trust-grid,
.stats-grid,
.compliance-grid{
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:30px;
margin-top:40px;
align-items:stretch;
}

/* CARD DESIGN */

.trust-card,
.stat-card,
.compliance-card{
background:#fff;
padding:40px 32px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
border:1px solid rgba(0,0,0,0.05);
height:100%;
}

/* MOBILE */

@media(max-width:768px){

.trust-grid,
.stats-grid,
.compliance-grid{
grid-template-columns:1fr;
gap:20px;
}

}
/* MOBILE BULLET ALIGNMENT */

@media(max-width:768px){

.proc-card li,
.feature-card li{
text-align:left !important;
display:list-item;
}

.proc-card ul,
.feature-card ul{
padding-left:22px;
}

}
/* ====================================
PREMIUM CORPORATE CONTACT SECTION
==================================== */

.corporate-contact-section{
padding:110px 20px;
background:#f7f3ed;
}

.corporate-contact-wrap{
max-width:1250px;
margin:auto;
display:grid;
grid-template-columns:1.1fr 420px;
gap:60px;
align-items:center;
}

.corporate-contact-left{
max-width:720px;
}

.corp-label{
display:inline-block;
font-size:12px;
letter-spacing:2px;
text-transform:uppercase;
color:#b68b5a;
font-weight:600;
margin-bottom:20px;
}

.corporate-contact-left h2{
font-size:54px;
line-height:1.15;
margin-bottom:24px;
color:#0f172a;
font-family:'Cormorant Garamond',serif;
}

.corporate-contact-left p{
font-size:17px;
line-height:1.9;
color:#666;
margin-bottom:30px;
max-width:650px;
}

.corp-points{
display:flex;
flex-wrap:wrap;
gap:14px;
}

.corp-points span{
padding:12px 18px;
border-radius:40px;
background:#fff;
border:1px solid rgba(212,164,111,0.18);
font-size:14px;
font-weight:600;
color:#0f172a;
}

.corporate-contact-card{
background:linear-gradient(135deg,#06211d,#0d332d);
padding:40px;
border-radius:30px;
box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.corporate-contact-card h3{
font-size:30px;
color:#fff;
margin-bottom:24px;
}

.corporate-contact-card form{
display:flex;
flex-direction:column;
gap:16px;
}

.corporate-contact-card input,
.corporate-contact-card select{
height:56px;
padding:0 18px;
border:none;
border-radius:14px;
font-size:15px;
background:#fff;
width:100%;
outline:none;
}

.corporate-contact-card button{
height:58px;
border:none;
border-radius:14px;
background:#d4a46f;
color:#111;
font-size:16px;
font-weight:700;
cursor:pointer;
transition:.35s ease;
}

.corporate-contact-card button:hover{
transform:translateY(-3px);
background:#e5b67d;
}

/* MOBILE */

@media(max-width:991px){

.corporate-contact-wrap{
grid-template-columns:1fr;
}

.corporate-contact-left{
text-align:center;
margin:auto;
}

.corporate-contact-left h2{
font-size:38px;
}

.corp-points{
justify-content:center;
}

.corporate-contact-card{
width:100%;
max-width:100%;
padding:30px 24px;
}

}
/* ===== CONSULTATION FORM SECTION ===== */

.consult-section{
    background: linear-gradient(135deg,#06211d,#0b3b33);
    padding:60px;
    border-radius:40px;
    margin:80px auto;
    max-width:650px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.consult-section::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:300px;
    height:300px;
    background:rgba(212,175,55,0.08);
    border-radius:50%;
}

.consult-subtitle{
    color:#d4af37;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
    font-weight:600;
}

.consult-title{
    font-size:42px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:700;
    max-width:700px;
}

.consult-text{
    color:rgba(255,255,255,0.75);
    max-width:850px;
    margin-bottom:35px;
    line-height:1.8;
}

.consult-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.consult-form input,
.consult-form select{
    width:100%;
    padding:16px 18px;
    border:none;
    border-radius:14px;
    background:#ffffff;
    font-size:15px;
    color:#222;
    outline:none;
}

.consult-form input::placeholder{
    color:#777;
}

.consult-btn{
    background:#d4af37;
    color:#111;
    border:none;
    padding:16px 30px;
    border-radius:14px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.consult-btn:hover{
    background:#e6c14c;
    transform:translateY(-2px);
}

.consult-full{
    grid-column:1 / -1;
}

/* MOBILE */

@media(max-width:768px){

    .consult-section{
        padding:35px 22px;
        border-radius:28px;
    }

    .consult-title{
        font-size:28px;
    }

    .consult-form{
        grid-template-columns:1fr;
    }

}
/* ===== CONSULT WRAPPER ===== */

..consult-wrapper{
    display:flex;
    justify-content:center;
}

.consult-form-card{
    max-width:700px;
    width:100%;
}

/* ===== WHY GRID ===== */

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-top:30px;
}

/* ===== FORM CARD ===== */

.consult-form-card{
    background:#ffffff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.consult-form-card h3{
    margin-bottom:25px;
    color:#06211d;
    font-size:28px;
}

/* ===== FORM ===== */

.consult-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.consult-form input,
.consult-form select{
    width:100%;
    min-height:58px;
    padding:16px 20px;
    border:1px solid #d8d8d8;
    border-radius:14px;
    font-size:16px;
    box-sizing:border-box;
}

/* ===== BUTTON ===== */

.consult-btn{
    width:100%;
    min-height:58px;
    font-size:16px;
    font-weight:600;
    border-radius:14px;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

    .consult-wrapper{
        grid-template-columns:1fr;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

}
.consult-form-card form{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:20px;
}

.consult-form-card input,
.consult-form-card select{
    width:100%;
    padding:14px 16px;
    border:1px solid #d7d7d7;
    border-radius:12px;
    font-size:15px;
    background:#fff;
}

.consult-form-card button{
    margin-top:10px;
    width:100%;
}
/* PORTFOLIO MOBILE FIX */

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.portfolio-card{
    background:#f8f6f2;
    border-radius:28px;
    overflow:hidden;
    height:auto !important;
    min-height:auto !important;
    padding-bottom:20px;
}

.portfolio-card img{
    width:100%;
    height:auto !important;
    object-fit:contain !important;
    display:block;
    border-radius:22px;
}

.portfolio-card-content{
    padding:22px;
}

.portfolio-card h3{
    font-size:34px;
    line-height:1.15;
    margin-top:18px;
    color:#1d2433;
}

/* MOBILE */

@media(max-width:768px){

    .portfolio-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .portfolio-card{
        border-radius:22px;
    }

    .portfolio-card img{
        border-radius:18px;
    }

    .portfolio-card-content{
        padding:18px;
    }

    .portfolio-card h3{
        font-size:18px;
        line-height:1.3;
    }

}
/* =========================================
CORPORATE PANTRY HERO
========================================= */

.pantry-hero{
    padding:140px 8% 100px;
    background:
    linear-gradient(
        rgba(6,33,29,0.82),
        rgba(6,33,29,0.86)
    ),
    url('../assets/images/pantry-hero.jpg');

    background-size:cover;
    background-position:center;
    color:#fff;
}
.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.pantry-content{
    max-width:760px;
}

.pantry-tag{
    display:inline-block;
    padding:10px 22px;
    border-radius:40px;
    background:rgba(255,255,255,0.12);
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:24px;
}

.pantry-hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
    color:#fff;
}

.pantry-hero p{
    font-size:18px;
    line-height:1.9;
    color:#e6e6e6;
    margin-bottom:35px;
}

.pantry-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-bottom:40px;
    padding:0;
    list-style:none;
}

.pantry-features li{
    background:rgba(255,255,255,0.08);
    padding:14px 18px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,0.08);
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#d4a46f;
    color:#111;
    padding:16px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.btn-secondary{
    background:rgba(255,255,255,0.10);
    color:#fff;
    padding:16px 30px;
    border-radius:50px;
    text-decoration:none;
    border:1px solid rgba(255,255,255,0.12);
}

/* =========================================
SERVICE GALLERY
========================================= */

.pantry-gallery{
    padding:100px 8%;
    background:#f8f6f2;
}

.gallery-heading{
    text-align:center;
    margin-bottom:60px;
}

.gallery-heading h2{
    font-size:52px;
    margin-bottom:15px;
    color:#0f172a;
}

.gallery-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.gallery-card{
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
}

.gallery-card img{
    width:100%;
    height:450px;
    object-fit:cover;
    object-position:center center;
    display:block;
}

/* =========================================
CTA SECTION
========================================= */

.pantry-cta{
    padding:100px 8%;
    text-align:center;
    background:#06211d;
    color:#fff;
}

.pantry-cta h2{
    font-size:52px;
    margin-bottom:20px;
}

.pantry-cta p{
    max-width:700px;
    margin:0 auto 35px;
    color:#d6d6d6;
    line-height:1.9;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

    .pantry-hero{
        padding:120px 24px 70px;
    }

    .pantry-hero h1{
        font-size:38px;
    }

    .pantry-features{
        grid-template-columns:1fr;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-card img{
        height:auto;
    }

    .gallery-heading h2,
    .pantry-cta h2{
        font-size:34px;
    }

}
.pantry-cta{
    background:#06211d;
    color:#fff;
    text-align:center;
    padding:80px 30px;
    border-radius:30px;
    margin:80px auto;
    width:90%;
}

.pantry-cta h2{
    margin-bottom:20px;
}

.pantry-cta p{
    margin-bottom:30px;
}
@media(max-width:768px){

.logo-icon img{
    width:50px;
    height:50px;
    object-fit:contain;
}

.brand-text h2{
    font-size:18px;
}

.premium-tagline{
    font-size:10px;
}

@media(max-width:768px){

.portfolio-card h3{
    font-size:20px;
    line-height:1.3;
}

}
.testimonial-slider{
    overflow-x:auto;
    scroll-snap-type:x mandatory;
}

.testimonial-card{
    min-width:300px;
    scroll-snap-align:center;
}
.gallery-card img{
    cursor:pointer;
    transition:all .35s ease;
}

.gallery-card:hover img{
    transform:scale(1.04);
}
.hero-stats{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:10px;
}

.hero-stats .stat-item{
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-stats .stat-item img{
    max-height:22px;
    width:auto;
    object-fit:contain;
    opacity:0.95;
}
.hero-compliance{
    margin-top:15px;
}

.hero-compliance img{
    width:100%;
    max-width:950px;
    height:auto;
    display:block;
}.hero-compliance{
    margin-top:15px;
}

.hero-compliance img{
    width:100%;
    max-width:950px;
    height:auto;
    display:block;
}
/* CONTACT HERO */

.contact-hero{
    width:100%;
    height:320px;
    padding:0 !important;
    margin:0 !important;

    background:linear-gradient(
        135deg,
        #06211d,
        #103b34
    );

    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-hero-overlay{
    width:100%;
    text-align:center;
}

.contact-hero h1{
    margin:0;

    color:#ffffff;

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;
}

/* CONTENT BELOW HERO */

.contact-content{
    padding:80px 0 40px !important;
}
.cta-strip{
display:flex;
width:100%;
}

.cta-box{
width:50%;
padding:30px;
text-align:center;
}

.book{
background:#D4AF37;
color:#0B3D2E;
}

.whatsapp{
background:#25D366;
color:#fff;
}

.cta-box a{
display:inline-block;
padding:12px 25px;
background:#fff;
color:#000;
border-radius:5px;
text-decoration:none;
font-weight:bold;
margin-top:10px;
}
/* HEADER OVERRIDE */

.top-header{
min-height:120px !important;
padding:20px 50px !important;
}

.logo-icon img{
height:85px !important;
width:auto !important;
}

.brand-text h2{
font-size:42px !important;
}

.brand-text p{
font-size:14px !important;
}

.call-btn{
padding:16px 32px !important;
font-size:16px !important;
}
/* ================================================================= */
/* 💎 FINAL BOX RESET: PRECIOUS INFRASTRUCTURE PORTAL CLICK FIXED     */
/* ================================================================= */
@import url('https://googleapis.com');

/* 1. COMPUTER / WEB PORTAL CONFIGURATION (Min 992px Width) */
@media (min-width: 992px) {
    .top-header, header {
        padding: 28px 0 !important;
        background: #031410 !important; /* Premium Midnight Green */
        border-bottom: 2.5px solid rgba(212, 164, 111, 0.45) !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 999999 !important;
    }
    .brand { display: flex !important; align-items: center !important; gap: 20px !important; }
    .brand .logo-icon { width: 75px !important; height: 75px !important; display: flex !important; }
    .brand .logo-icon img { width: 100% !important; height: 100% !important; object-fit: contain !important; }
    .brand .brand-text h2 { font-family: 'Cinzel', serif !important; font-size: 28px !important; font-weight: 700 !important; color: #ffffff !important; margin: 0 !important; }
    .brand .brand-text .premium-tagline span { font-family: 'Poppins', sans-serif !important; font-size: 11px !important; color: #D4A46F !important; display: block !important; }
    .nav-links { display: flex !important; gap: 35px !important; align-items: center !important; }
    .nav-links a { font-family: 'Poppins', sans-serif !important; font-size: 16px !important; font-weight: 500 !important; color: #ffffff !important; text-decoration: none !important; }
    
    /* 🚨 COMPUTER COMPUTER PAR MENU HIDDEN: Badi screen par 3-lines menu bilkul block/hide rahega */
    .mobile-toggle, .menu-toggle, .nav-toggle { display: none !important; }
}

/* 2. MOBILE & TABLET DEVICE CONFIGURATION (Max 991px Width) */
@media (max-width: 991px) {
    .top-header, header {
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px 15px !important;
        position: relative !important; 
        background: #031410 !important;
    }
    .brand { display: flex !important; flex-direction: column !important; align-items: center !important; margin-bottom: 12px !important; }
    .brand .logo-icon { width: 58px !important; height: 58px !important; display: flex !important; }
    .brand .logo-icon img { width: 100% !important; height: 100% !important; object-fit: contain !important; }
    .brand .brand-text h2 { font-family: 'Cinzel', serif !important; font-size: 19px !important; font-weight: 700 !important; color: #ffffff !important; }

    /* 🚨 MOBILE SIDEBAR AIRTIGHT FIXING LOCK */
    .nav-links.mobile-nav {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        height: 100vh !important; 
        background: #031410 !important;
        padding: 95px 30px 40px 30px !important; 
        flex-direction: column !important;
        align-items: flex-start !important; 
        justify-content: flex-start !important;
        gap: 12px !important; 
        overflow-y: auto !important; 
        overflow-x: hidden !important;
        box-shadow: -15px 0 45px rgba(0,0,0,0.7) !important;
        z-index: 99999999 !important; /* Supremo structural top grid protection */
        box-sizing: border-box !important;
        width: 290px !important; 
        max-width: 85% !important; 
        right: -100% !important; /* Locked safe state */
        left: auto !important;
        visibility: hidden !important;
        transition: right 0.45s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.45s !important;
    }
    .nav-links.mobile-nav.active { right: 0 !important; visibility: visible !important; }
    .nav-links.mobile-nav a { color: #ffffff !important; display: block !important; width: 100% !important; padding: 10px 0 !important; font-size: 15.5px !important; font-weight: 600 !important; text-decoration: none !important; }
    .nav-links.mobile-nav .dropdown.show-submenu > .dropdown-menu { display: flex !important; flex-direction: column !important; gap: 4px !important; border-left: 2px solid #D4A46F !important; }

    /* 🚨 CLICKABLE HAMBURGER BOX PROTECTION AREA */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 32px !important; /* Bigger Target space for fat fingers */
        height: 22px !important;
        z-index: 100000009 !important; /* Higher than sidebar wrapper to remain clickable always */
        cursor: pointer !important;
        position: absolute !important;
        right: 20px !important;
        top: 38px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }
    .mobile-toggle span { display: block !important; width: 100% !important; height: 3px !important; background-color: #D4A46F !important; border-radius: 4px !important; transition: all 0.4s ease !important; pointer-events: none !important; }
    .mobile-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg) !important; }
    .mobile-toggle.open span:nth-child(2) { opacity: 0 !important; }
    .mobile-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg) !important; }
}
/* ================================================================= */
/* 💎 THE ULTIMATE AIRTIGHT FIXED BLUEPRINT FOR PRECIOUS EVENTS       */
/* ================================================================= */
@import url('https://googleapis.com');

/* 1. DESKTOP/WEB PORTAL MASTER RESET (Min 992px Screen Default) */
@media (min-width: 992px) {
    .top-header, header {
        padding: 28px 0 !important; /* Majestic Big Vertical Size Banner */
        background: #031410 !important; /* YOUR DEEP LUXURY MIDNIGHT EMERALD GREEN */
        border-bottom: 2.5px solid rgba(212, 164, 111, 0.45) !important; /* Solid Premium Gold Accent Strip */
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6) !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 999999 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .brand {
        display: flex !important;
        align-items: center !important;
        gap: 20px !important;
        padding-left: 40px !important;
    }

    /* Gold Circle Ring For Attached Design Fitment */
    .brand .logo-icon {
        width: 75px !important; /* Fixed Target Scale for the Circle Gold Ring */
        height: 75px !important;
        border-radius: 50% !important;
        border: 2px solid #D4A46F !important;
        padding: 5px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        box-shadow: 0 0 20px rgba(212, 164, 111, 0.25) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .brand .logo-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .brand:hover .logo-icon {
        transform: scale(1.06) rotate(3deg) !important;
    }

    .brand-text h2 {
        font-family: 'Cinzel', serif !important;
        font-size: 28px !important; /* High Resolution Stands out Title */
        font-weight: 700 !important;
        letter-spacing: 1.8px !important;
        color: #ffffff !important;
        line-height: 1.1 !important;
        margin: 0 !important;
    }

    .brand-text p.premium-tagline span {
        font-family: 'Poppins', sans-serif !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        letter-spacing: 1.5px !important;
        color: #D4A46F !important;
        margin-top: 5px !important;
        display: block !important;
    }

    .nav-links {
        display: flex !important;
        gap: 35px !important; /* Wide Premium Grid Gaps */
        align-items: center !important;
    }

    .nav-links a {
        font-family: 'Poppins', sans-serif !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #ffffff !important;
        text-decoration: none !important;
    }

    /* 🚨 DESKTOP DESKTOP PAR HAMBURGER HIDDEN: Badi screen par button bilkul lock rahega */
    .mobile-toggle, .menu-toggle, .nav-toggle {
        display: none !important;
    }
}

/* 2. MOBILE & TABLET DEVICE CONFIGURATION (Max 991px Width) */
@media (max-width: 991px) {
    /* Safe global width lock prevents horizontal screen shaking layout errors */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    .top-header, header {
        padding: 20px 15px !important;
        min-height: 90px !important;
        background: #031410 !important;
        display: flex !important;
        flex-direction: row !important; /* Logo on left, Hamburger on right horizontally linear */
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .brand {
        display: flex !important;
        flex-direction: row !important; /* Keeps row structure clean on tiny screens */
        align-items: center !important;
        gap: 12px !important;
    }

    .brand .logo-icon {
        width: 55px !important; /* Scaled down perfectly for touch interfaces */
        height: 55px !important;
        display: flex !important;
    }

    .brand .logo-icon img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .brand-text h2 {
        font-family: 'Cinzel', serif !important;
        font-size: 19px !important;
        color: #ffffff !important;
        margin: 0 !important;
    }
    
    .brand-text p.premium-tagline span {
        font-size: 9px !important;
        letter-spacing: 0.5px !important;
    }

    .call-btn {
        display: none !important; /* Hidden from mobile header to prevent overlapping */
    }

    /* 🚨 THE AIRTIGHT SIDEBAR CANVAS (Locked off-screen seamlessly) */
    .nav-links.mobile-nav {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        height: 100vh !important;
        width: 290px !important;
        max-width: 85% !important;
        background: #031410 !important; /* Solid Midnight Green Canvas */
        padding: 110px 30px 40px 30px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        overflow-y: auto !important; /* Scrolling capability active for landscape links visibility */
        overflow-x: hidden !important;
        box-shadow: -15px 0 45px rgba(0,0,0,0.7) !important;
        z-index: 99999999 !important; /* Dominates Elementor and standard grids layers */
        box-sizing: border-box !important;
        
        /* Rigidly locked right bounds */
        right: -100% !important;
        left: auto !important;
        visibility: hidden !important;
        transition: right 0.45s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.45s !important;
    }

    /* Slides out smoothly on clicking the button target trigger */
    .nav-links.mobile-nav.active {
        right: 0 !important;
        visibility: visible !important;
    }

    .nav-links.mobile-nav a {
        color: #ffffff !important;
        display: block !important;
        width: 100% !important;
        padding: 12px 0 !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        text-align: left !important;
    }
    .nav-links.mobile-nav a::after { display: none !important; }

    /* Accordion Dropdowns system alignment */
    .nav-links.mobile-nav .dropdown-menu {
        display: none !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border-left: 2px solid #D4A46F !important;
        padding-left: 15px !important;
    }
    .nav-links.mobile-nav .dropdown.show-submenu > .dropdown-menu {
        display: flex !important;
        flex-direction: column !important;
    }

    /* 🚨 HIGH-VISIBILITY HAMBURGER BOX PROTECTION AREA */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 32px !important; /* Clean target bounds for touch gestures */
        height: 22px !important;
        z-index: 100000009 !important; /* Elevated higher than sidebar level stack */
        cursor: pointer !important;
        position: absolute !important;
        right: 20px !important;
        top: 35px !important; /* Perfect visual grid alignment center */
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mobile-toggle span {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
        background-color: #D4A46F !important; /* Crisp Gold Lines */
        border-radius: 4px !important;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
        pointer-events: none !important; /* Shield against touch click bleeding bugs */
    }

    /* Morphing mechanics transitions into 'X' cross symbol */
    .mobile-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg) !important; }
    .mobile-toggle.open span:nth-child(2) { opacity: 0 !important; transform: scale(0.2) !important; }
    .mobile-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg) !important; }
}
/* ======================================================== */
/* 📲 FINAL VIEWER ALIGNMENT: PUSH MENU TO MOBILE SCREEN CENTER */
/* ======================================================== */
@media (max-width: 991px) {
    /* Safe viewport constraints */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
    }

    /* 🚨 VIEWER INTERFACE FIX: Menu ko screen ke andar aur left me fit karna */
    .nav-links.mobile-nav, 
    .nav-links, 
    header .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important; /* Mobile screen ke left edge se perfectly align ho jayega */
        width: 290px !important; /* Perfect readable container box width */
        max-width: 85% !important;
        height: 100vh !important;
        background: #031410 !important; /* Premium Midnight Green background */
        padding: 100px 25px 40px 25px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 15px !important;
        overflow-y: auto !important; /* Vertical finger touch scroll enabled */
        z-index: 999999999 !important;
        box-sizing: border-box !important;
        
        /* Default state me panel hidden rahega taaki screen stretch na ho */
        visibility: hidden !important;
        opacity: 0 !important;
        transform: translateX(-100%) !important; /* Screen ke piche locked */
        transition: transform 0.4s ease, opacity 0.4s, visibility 0.4s !important;
    }

    /* 🚨 ACTIVE STATE: 3-lines click karte hi viewer ke bilkul samne screen par aa jayega */
    .nav-links.mobile-nav.active,
    .nav-links.active,
    header .nav-links.active {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateX(0) !important; /* Pushes completely inside mobile viewport */
    }

    /* Text Formatting inside viewer box */
    .nav-links a {
        color: #ffffff !important;
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        padding: 12px 0 !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }
}

/* ======================================================== */
/* 📲 FIXED: DROPDOWN SINGLE COLUMN VERTICAL ALIGNMENT      */
/* ======================================================== */
@media (max-width: 991px) {
    /* 1. Main dropdown menu aur sub-menus ko ek hi column me vertical lock karna */
    .nav-links.mobile-nav .dropdown-menu,
    .nav-links.mobile-nav .dropdown-sub-menu,
    .mobile-nav .dropdown-menu,
    .mobile-nav .dropdown-sub-menu {
        display: none !important; /* Default hidden */
        flex-direction: column !important; /* Strictly Single Column Line */
        align-items: flex-start !important; /* Left alignment symmetry */
        justify-content: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        position: static !important; /* No absolute position to prevent horizontal overflow */
        float: none !important;
        padding: 5px 0 5px 15px !important; /* Left space for neat hierarchy */
        margin: 5px 0 !important;
        box-sizing: border-box !important;
        background: rgba(255, 255, 255, 0.03) !important; /* Subtle inner box tint */
    }

    /* 2. Menu open hone par vertical display flex force karna */
    .nav-links.mobile-nav .dropdown.show-submenu > .dropdown-menu,
    .nav-links.mobile-nav .dropdown-sub.show-submenu > .dropdown-sub-menu {
        display: flex !important; /* Force display block inline column */
        border-left: 2px solid #D4A46F !important; /* Luxury Gold Guide Line */
    }

    /* 3. Submenu ke andar ke a tags (Links) ko full-width single column banana */
    .mobile-nav .dropdown-menu a,
    .mobile-nav .dropdown-sub-menu a {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important; /* Force wrap text within mobile frame bounds */
        word-break: break-word !important;
        padding: 8px 0 !important;
        font-size: 14px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    }
}
