/* ========================================
   DHAN CREATIVE - ULTRA LUXURIOUS APPLE-STYLE PREMIUM DESIGN
   10/10 Rich, Elegant, Timeless - 5-10 Lakh Website Feel
   ======================================== */

:root {
    /* Premium Color Palette - Refined for luxury */
    --gold: #C9A227;
    --gold-dark: #A67C00;
    --emerald: #0F6B4F;
    --emerald-dark: #0A4D38;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F5F0;
    --bg-tertiary: #F4F1EB;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #6B6B6B;
    --border-light: #E8E4DC;
    --border-gold: rgba(201, 162, 39, 0.2);
    
    /* Spacing - Generous for premium feel */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 96px;
    --space-3xl: 128px;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Shadows - Soft & Luxurious */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.12);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.23, 1.0, 0.32, 1);
    --transition-fast: all 0.2s cubic-bezier(0.23, 1.0, 0.32, 1);
}

/* Base Reset & Premium Defaults */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Elegant Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 65ch;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* ========================================
   PREMIUM NAVIGATION - Sticky + Blur
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo img {
    height: 70px;
    width: 230px;
    transition: var(--transition-fast);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a.active {
    color: #080808;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 9999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: #1A1A1A;
    color: white;
    border-color: #1A1A1A;
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
     background: #1A1A1A;
    color: white;
    border-color: #1A1A1A;
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-light);
    transform: translateY(-1px);
}

.btn-gold {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: var(--space-lg);
    border-top: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ========================================
   HERO - Ultra Premium & Impactful
   ======================================== */
   
   /* ====================== HOME PAGE HERO OVERRIDE ====================== */
.home-page .hero {
    background: #000 !important;
}

.home-page .hero h1,
.home-page .hero p {
    color: #000000 !important;
}

.home-page .hero .hero-content {
    color: white;
}
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px var(--space-lg) 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8F5F0 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 820px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tertiary);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 8px 24px;
    border-radius: 9999px;
    margin-bottom: 32px;
    border: 1px solid var(--border-gold);
}

.hero h1 {
    margin-bottom: 28px;
    color: #ffffff);
}

.hero p {
    font-size: 1.25rem;
    max-width: 620px;
    margin: 0 auto 40px;
    color: #000000;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Subtle Decorative Line */
.hero-visual {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}

/* ========================================
   STATS / TRUST BAR
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
    background: var(--bg-secondary);
    border-radius: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-serif);
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 500;
}

/* ========================================
   SECTIONS - Generous Spacing
   ======================================== */
.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    max-width: 720px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.15rem;
    margin: 0 auto;
}

/* ========================================
   LUXURY CARDS - Apple-like Refinement
   ======================================== */
.luxury-card, .premium-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 36px;
    transition: var(--transition-smooth);
    height: 100%;
}

.luxury-card:hover, .premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-gold);
}

.premium-card {
    padding: 36px 32px;
}

/* Gold accent icon */
.gold-icon {
    color: var(--gold);
}

/* ========================================
   SERVICES GRID
   ======================================== */
.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: 28px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PROCESS STEPS - Elegant Timeline
   ======================================== */
.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
}

.process-step:last-child {
    border-bottom: none;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-serif);
    min-width: 70px;
    line-height: 1;
}

.process-content h3 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}

/* ========================================
   TESTIMONIALS - Refined
   ======================================== */
.testimonial-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px 36px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    object-fit: cover;
    border: 2px solid var(--border-light);
}

.author-info h4 {
    margin: 0 0 4px;
    font-size: 1.05rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   INDUSTRIES
   ======================================== */
.industry-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition-fast);
}

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

/* ========================================
   FOOTER - Consistent & Elegant
   ======================================== */
.footer {
    background: #0f2c1f;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 60px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-brand p {
    max-width: 380px;
    color: #FFFFFF;
}

.footer-links h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ffffff;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1280px;
    margin: var(--space-2xl) auto 0;
    padding: var(--space-xl) var(--space-lg);
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ========================================
   FLOATING ACTION BUTTONS
   ======================================== */
.floating-btn {
    position: fixed;
    bottom: 28px;
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.floating-btn.whatsapp {
    right: 28px;
    background: #25D366;
    color: white;
    font-size: 26px;
}

.floating-btn.call {
    right: 96px;
    background: var(--emerald);
    color: white;
}

.floating-btn.back-to-top {
    right: 28px;
    bottom: 96px;
    background: var(--text-primary);
    color: white;
    font-size: 22px;
    font-weight: 600;
    display: none;
}

.floating-btn:hover {
    transform: scale(1.08) translateY(-2px);
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1.0, 0.32, 1);
}

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

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s cubic-bezier(0.23, 1.0, 0.32, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.23, 1.0, 0.32, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.23, 1.0, 0.32, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.7s cubic-bezier(0.23, 1.0, 0.32, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.23, 1.0, 0.32, 1);
}

.stagger-children.revealed > *:nth-child(1) { transition-delay: 80ms; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 160ms; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 240ms; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 320ms; }

/* ========================================
   FORM STYLING (for contact)
   ======================================== */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: white;
    transition: var(--transition-fast);
    font-family: var(--font-sans);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

/* ========================================
   RESPONSIVE - Mobile Perfection
   ======================================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        min-height: 100dvh;
        padding: 100px 20px 60px;
    }
    
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .luxury-card, .premium-card {
        padding: 32px 24px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floating-btn.call {
        display: none; /* Hide call on mobile to avoid overlap */
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.35rem;
    }
    
    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* ========================================
   MISC PREMIUM TOUCHES
   ======================================== */
::selection {
    background: var(--gold);
    color: white;
}

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

/* Subtle loading animation for images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

.floating-btn.whatsapp {
    right: 28px;
    background: #25D366;
    color: white;
    font-size: 26px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}


.navbar {
    background: #a67c0000 !important; /* Rich dark green */
    color: #a67c00;
}
.nav-links a {
    color: #080808;
}
/* ===========================================
   DHAN CREATIVE - PREMIUM FLOATING HEADER V2
=========================================== */

.navbar{
    position:fixed;
    top:12px;
    left:50%;
    transform:translateX(-50%);
    width:97%;
    max-width:1450px;
    z-index:9999;

    background:rgba(255,250,242,.82);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(201,162,77,.15);

    border-radius:20px;

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

/* Navigation Container */

.nav-container{

    height:78px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 24px;

}

/* ==========================
        LOGO
========================== */

.luxury-logo{

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(12px);

    border-radius:16px;

    padding:8px 16px;

    border:1px solid rgba(201,162,77,.12);

    box-shadow:
    0 8px 20px rgba(0,0,0,.06);

    transition:.35s;

}

.luxury-logo img{

    width:205px;

    height:auto;

    display:block;

    transition:.35s;

}

.luxury-logo:hover{

    transform:translateY(-2px);

    box-shadow:
    0 12px 28px rgba(0,0,0,.08);

}

.luxury-logo:hover img{

    transform:scale(1.03);

}

/* ==========================
     NAVIGATION
========================== */

.nav-links{

    display:flex;

    align-items:center;

    gap:34px;

}

.nav-links li{

    list-style:none;

}

.nav-links a{

    color:#222;

    text-decoration:none;

    font-size:17px;

    font-weight:600;

    transition:.30s;

    position:relative;

}

.nav-links a:hover{

    color:#C9A24D;

}

.nav-links a.active{

    color:#C9A24D;

}

.nav-links a.active::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:100%;

    height:2px;

    background:#C9A24D;

    border-radius:10px;

}

/* ==========================
      BUTTON
========================== */

.nav-cta .btn{

    background:#1E1E1E;

    color:#fff;

    padding:15px 32px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.nav-cta .btn:hover{

    background:#0F6B4F;

    transform:translateY(-2px);

}

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

.mobile-menu-btn{

    display:none;

}
/* ========================================
   FIXED MOBILE NAV (Add at the very end)
======================================== */
@media (max-width: 900px) {
    .nav-links {
        display: none !important;
    }
    
    .nav-cta {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
    
    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        z-index: 9999;
    }
    
    .mobile-menu.active {
        display: block !important;
    }
    
    .mobile-menu a {
        display: block;
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
        color: #222;
    }
    
    .navbar {
        top: 8px;
        width: 96%;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
        height: 70px;
    }
}

.floating-btn.whatsapp:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7);
}

@media (max-width: 768px) {
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
    }
    
    div[style*="grid-template-columns: 1fr 1fr"] img {
        width: 280px !important;
        height: 280px !important;
        margin: 0 auto;
    }
}

/* Force Responsive on Mobile */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    header {
        min-height: 100vh !important;
    }
}

/* ====================================================
   DHAN CREATIVE - 10/10 LUXURY ANIMATIONS & LOGO FIX
   ==================================================== */

/* 1. LOGO SIZE & PROPORTION FIX */
.luxury-logo img, 
.navbar .logo img {
    height: 52px !important;
    width: auto !important; /* Aspect ratio maintain rakhega */
    object-fit: contain !important;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar .logo:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0 4px 12px rgba(201, 162, 39, 0.3));
}

/* 2. GLOWING BUTTONS (WhatsApp & Primary CTAs) */
@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(201, 162, 39, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0);
    }
}

@keyframes greenPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Floating Button Pulsing */
.floating-btn.whatsapp {
    animation: greenPulse 2s infinite !important;
}

/* CTA Primary Glow */
.btn-primary, .btn-gold {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-primary:hover {
    animation: goldPulse 1.5s infinite;
    transform: translateY(-3px) scale(1.02);
}

/* Shimmer Light Effect on Buttons */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 80%
    );
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.btn-primary:hover::after {
    left: 140%;
}

/* 3. 3D HOVER LIFT & GOLD BORDER FOR CARDS */
.luxury-card, .premium-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s ease !important;
    perspective: 1000px;
}

.luxury-card:hover, .premium-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-1deg) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 20px 40px rgba(15, 107, 79, 0.12), 
                0 0 20px rgba(201, 162, 39, 0.2) !important;
}

/* 4. SMOOTH SCROLL REVEAL (Upgraded) */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
                transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================================
   DHAN CREATIVE - PREMIUM BLOCK ANIMATIONS (NO ROTATION)
   ==================================================== */

/* 1. SHIMMER LIGHT STREAK ON HOVER */
.luxury-card, .premium-card, .industry-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.luxury-card::before, .premium-card::before, .industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(201, 162, 39, 0.15),
        transparent
    );
    transition: left 0.75s ease;
    z-index: 2;
    pointer-events: none;
}

.luxury-card:hover::before, .premium-card:hover::before, .industry-card:hover::before {
    left: 150%;
}

/* 2. ICON ZOOM (NO ROTATION) */
.luxury-card .gold-icon, 
.premium-card span, 
.industry-card span {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.luxury-card:hover .gold-icon, 
.premium-card:hover span, 
.industry-card:hover span {
    transform: scale(1.2); /* Straight zoom without rotation */
}

/* 3. INDUSTRY CARDS POP & GLOW */
.industry-card {
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.03) !important;
    background: #FFFFFF !important;
    border-color: #C9A227 !important;
    box-shadow: 0 12px 30px rgba(201, 162, 39, 0.2) !important;
}

/* 4. PROCESS STEP BLOCKS SLIDE */
.process-step {
    transition: all 0.4s ease;
    border-radius: 16px;
    padding: 24px;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateX(10px);
}

.process-step:hover .process-number {
    transform: scale(1.1);
    color: #0F6B4F;
    transition: all 0.3s ease;
}

/* LUXURY LOGO BADGE POLISH */
.navbar .logo {
    background: #FFFFFF !important;
    padding: 6px 18px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(201, 162, 39, 0.25) !important; /* Soft Gold Border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.navbar .logo img {
    height: 42px !important; /* Perfect height inside the pill */
    width: auto !important;
    object-fit: contain !important;
}

.navbar .logo:hover {
    transform: translateY(-2px) !important;
    border-color: #C9A227 !important;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.2) !important;
}

/* ====================================================
   PERFECT TOP SPACING & BADGE CUTOFF FIX (ALL PAGES)
   ==================================================== */

/* 1. Header & Page Top Spacing Fix */
header, 
.page-header, 
.special-offers-section {
    padding-top: 140px !important; /* Fixed navbar ke niche space banayega */
}

/* 2. Badge Cutoff Problem Fix */
.luxury-card, 
.premium-card, 
.offer-card {
    overflow: visible !important; /* Top badges ko cut hone se rokega */
    margin-top: 20px !important;
}

/* 3. Badge Alignment Fix */
.offer-badge,
.premium-card span[style*="position:absolute"] {
    top: -15px !important;
    z-index: 20 !important;
}