/* =========================================
   1. MASTER VARIABLES & RESET
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Premium Blue Palette */
    --primary-dark: #021B79;  /* Deep Royal Blue */
    --primary-light: #0575E6; /* Vibrant Blue */
    --accent-cyan: #00F260;   /* Fresh Green/Cyan */
    --text-main: #1A1F36;     /* Dark Blue-Grey */
    
    /* UPDATED: Darker Grey for better contrast (Was #697488) */
    --text-light: #4A5568;    

    --white: #ffffff;
    --off-white: #F0F2F5;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #021B79 0%, #0575E6 100%);
    --gradient-text: -webkit-linear-gradient(#fff, #e0e0e0);

    /* Shadows & Effects */
    --shadow-card: 0 10px 30px -5px rgba(2, 27, 121, 0.1);
    --shadow-hover: 0 25px 50px -10px rgba(2, 27, 121, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.95);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
* { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--off-white);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   2. HEADER & NAVIGATION (High Contrast Fix)
   ========================================= */

header {
    background: rgba(255, 255, 255, 0.98); /* Ensure background is solid white */
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    height: 80px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Ensures horizontal spread */
}

/* Logo Contrast Fix */
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    /* Use Dark Blue for Logo Contrast */
    color: var(--primary-dark, #021B79); 
    letter-spacing: -1px;
    cursor: pointer;
}

/* Navigation Links Container */
.nav-links {
    display: flex; /* Keeps tabs horizontal */
    list-style: none;
    gap: 30px; /* Space between tabs */
    margin: 0;
    padding: 0;
}

/* Individual Links */
.nav-links a {
    text-decoration: none;
    /* Default color: Dark Grey (High Contrast against white) */
    color: var(--text-main, #1A1F36); 
    font-weight: 500;
    font-size: 1rem;
    position: relative; /* Needed for the line effect */
    transition: color 0.3s ease;
    padding: 5px 0;
}

/* Hover State */
.nav-links a:hover {
    color: var(--primary-dark, #021B79);
}

/* --- THE FIX: Active State --- */
.nav-links a.active {
    /* TEXT is Dark Blue (Passes Contrast Check 13:1) */
    color: var(--primary-dark, #021B79); 
    font-weight: 700; /* Bolder text helps readability */
}

/* --- THE EFFECT: Bright Blue Underline --- */
/* We keep the bright blue here because graphical objects */
/* have lower contrast rules than text. */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px; /* Thickness of the line */
    bottom: -2px;
    left: 0;
    background-color: var(--primary-light, #0575E6); /* Bright Blue Line */
    transition: width 0.3s ease;
    border-radius: 2px;
}

/* Expand line on Hover AND Active */
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%; /* Full width line */
}

/* Mobile Menu Fix (Keep this to ensure mobile works too) */
.hamburger { display: none; cursor: pointer; }
.hamburger div { width: 25px; height: 3px; background-color: var(--text-main); margin: 5px; transition: 0.3s; }

@media (max-width: 768px) {
    .hamburger { display: block; }
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 80px;
        background-color: #fff;
        display: flex;
        flex-direction: column; /* Vertical only on mobile */
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding-top: 50px;
    }
    .nav-links.nav-active { transform: translateX(0%); }
}

/* =========================================
   3. HERO SECTION (Clearer Image Fix)
   ========================================= */
.hero {
    /* FIX: Opacity reduced to 0.5 and 0.4 (Was 0.9 and 0.8) */
    background: 
        linear-gradient(135deg, rgba(2, 27, 121, 0.5) 0%, rgba(5, 117, 230, 0.4) 100%),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps image still while scrolling */
    
    color: var(--white);
    text-align: center;
    padding: 140px 20px 100px;
    position: relative;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    box-shadow: 0 20px 40px rgba(2, 27, 121, 0.2);
    margin-bottom: 60px;
}

/* ADD THIS: Ensures text pops out against the visible image */
.hero h1, 
.hero h2, 
.hero p {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8); /* Strong black shadow */
}

/* Ensure the H2 you added is white and bold */
.hero h2 {
    color: #ffffff;
    font-weight: 700;
}

/* =========================================
   HERO SECTION (LCP Optimized)
   ========================================= */

/* The Main Title - STATIC for Speed */
.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    color: #ffffff;
    
    /* THE FIX: Remove Animation & Force Visibility */
    /* This eliminates the 3.3s render delay */
    animation: none !important; 
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* You can keep animations on the Subtitle if you want */
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0; /* Hidden initially */
    animation: fadeInUp 0.8s ease forwards; /* Fades in */
    animation-delay: 0.3s; /* Waits for title */
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Keyframes for the subtitle (Keep this for the paragraph) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   4. SECTIONS & TITLES
   ========================================= */
section { padding: 80px 0; }

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-light);
}

/* =========================================
   5. CARDS (Services, About, Features)
   ========================================= */
/* Home Page Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: var(--gradient-hero); transition: height 0.3s ease; z-index: -1;
}

.service-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { height: 100%; }
.service-card:hover h3, .service-card:hover p, .service-card:hover .icon { color: white; transition: color 0.3s; }

.service-card .icon { font-size: 3.5rem; margin-bottom: 25px; display: block; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary-dark); font-weight: 700; }
.service-card p { color: var(--text-light); font-size: 0.95rem; }

/* About Page Cards */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 80px; }
.about-card, .diff-card, .vendor-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}
.about-card:hover, .diff-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.about-card h3, .diff-card h4 { color: var(--primary-dark); margin-bottom: 20px; font-weight: 700; }
.vendor-info-card { border-left: 6px solid var(--accent-cyan); text-align: left; }

/* Industries Grid */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 80px; }
.industry-item {
    background: var(--white); padding: 25px; border-radius: 15px; box-shadow: var(--shadow-card);
    text-align: center; font-weight: 600; color: var(--primary-light); transition: var(--transition);
    border-left: 4px solid var(--primary-light);
}
.industry-item:hover { background: var(--primary-dark); color: var(--white); transform: scale(1.05); }


/* =========================================
   6. SERVICES & PRICING (Detailed Page)
   ========================================= */
.services-list { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.service-item {
    background: var(--white); padding: 40px; border-radius: 24px; box-shadow: var(--shadow-card);
    transition: var(--transition); border-left: 6px solid var(--primary-light);
}
.service-item:hover { transform: translateX(10px); box-shadow: var(--shadow-hover); }
.service-item h3 { color: var(--primary-dark); font-size: 1.8rem; margin-bottom: 10px; font-weight: 700; }
.service-item ul { list-style: none; padding: 0; margin-bottom: 20px; }
.service-item li { margin-bottom: 10px; position: relative; padding-left: 30px; }
.service-item li::before { content: '✓'; color: var(--accent-cyan); font-weight: bold; position: absolute; left: 0; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; align-items: stretch; }
.pricing-card {
    background: var(--white); padding: 40px 30px; border-radius: 24px; box-shadow: var(--shadow-card);
    text-align: center; transition: var(--transition); display: flex; flex-direction: column; border: 2px solid transparent;
}
.pricing-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-hover); }
.pricing-card .price { font-size: 2.2rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 10px; }
.pricing-cta {
    background: var(--gradient-hero); color: var(--white); padding: 12px 25px; border-radius: 50px;
    font-weight: 700; display: inline-block; box-shadow: 0 5px 15px rgba(5, 117, 230, 0.2);
}

/* =========================================
   7. PRODUCTS / STORE
   ========================================= */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.product-card {
    background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-card);
    transition: var(--transition); display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,0.03);
}
.product-card:hover { transform: translateY(-15px); box-shadow: var(--shadow-hover); }
.product-image-box { position: relative; overflow: hidden; height: 250px; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover img { transform: scale(1.1); }
.category-badge {
    position: absolute; top: 20px; left: 20px; background: var(--primary-light); color: white;
    padding: 5px 15px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}
.product-info { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.product-info h3 { font-size: 1.3rem; margin: 0 0 12px 0; color: var(--primary-dark); line-height: 1.4; min-height: 3.6em; }
.product-price { margin-top: auto; display: flex; align-items: baseline; gap: 12px; margin-bottom: 25px; }
.original-price { color: #999; text-decoration: line-through; font-size: 1rem; }
.sale-price { color: var(--primary-light); font-size: 1.8rem; font-weight: 800; }
.add-to-cart-btn {
    background: var(--gradient-hero); color: var(--white); text-align: center; padding: 14px;
    border-radius: 12px; font-weight: 700; box-shadow: 0 5px 15px rgba(5, 117, 230, 0.2); display: block;
}
.add-to-cart-btn:hover { background: var(--primary-dark); transform: scale(1.02); }

/* =========================================
   8. FORMS (Contact, Career, Vendor)
   ========================================= */
.form-container {
    max-width: 900px; margin: 0 auto; background: var(--white); padding: 50px;
    border-radius: 30px; box-shadow: var(--shadow-card); border: 1px solid rgba(255,255,255,0.8);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card {
    background: var(--white); padding: 50px; border-radius: 30px;
    box-shadow: var(--shadow-card); transition: var(--transition); border: 1px solid rgba(255,255,255,0.8);
}
.contact-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.form-group { margin-bottom: 25px; text-align: left; }
.form-group label { display: block; margin-bottom: 10px; font-weight: 600; color: var(--primary-dark); font-size: 0.95rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 15px; border: 2px solid #E9EFF5; border-radius: 12px;
    font-family: 'Poppins', sans-serif; font-size: 1rem; background: #F9FBFF; transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary-light); background: #ffffff; box-shadow: 0 0 15px rgba(5, 117, 230, 0.1);
}
.radio-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin-top: 10px; }
.radio-option {
    background: #F9FBFF; border: 2px solid #E9EFF5; padding: 10px 15px; border-radius: 10px;
    cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 10px; font-size: 0.9rem;
}
.radio-option:hover { border-color: var(--primary-light); }

/* =========================================
   UPDATED CTA BUTTON (High Visibility)
   ========================================= */

.cta-button {
    display: inline-block;
    /* 1. High Contrast Background */
    background-color: #ffffff; 
    
    /* 2. Dark Text for Readability */
    color: var(--primary-dark); 
    
    /* 3. Logical Size & Spacing */
    padding: 16px 35px;
    font-size: 1rem;
    font-weight: 700; /* Bold text implies action */
    border-radius: 50px; /* Modern "Pill" shape */
    
    /* 4. Visual Depth */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 30px;
    border: 2px solid #ffffff; /* Solid border prevents layout shift on hover */
}

/* Hover Effect: The "Lift" */
.cta-button:hover {
    /* Invert colors slightly or just lift */
    background-color: var(--accent-cyan); /* Optional: A "Go" color like Green/Cyan */
    border-color: var(--accent-cyan);
    color: #000;
    transform: translateY(-3px); /* Physically moves up */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); /* Shadow grows */
}

/* Active/Click Effect */
.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Contact Details List */
.contact-details ul { list-style: none; padding: 0; margin: 0; text-align: left; }
.contact-details li { margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #f0f4f8; color: var(--text-light); }
.contact-details li strong { display: block; color: var(--primary-light); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 5px; }

/* =========================================
   9. LEGAL & DOCS (Privacy, Terms)
   ========================================= */
.policy-container, .document-container {
    max-width: 900px; margin: 0 auto; background: var(--white); padding: 60px;
    border-radius: 30px; box-shadow: var(--shadow-card); text-align: left;
}
.policy-container h2, .document-container h2 {
    font-size: 1.8rem; color: var(--primary-dark); margin-top: 40px; margin-bottom: 20px;
    border-left: 5px solid var(--primary-light); padding-left: 20px; font-weight: 700;
}
.policy-container ul, .document-container ul { padding-left: 20px; margin-bottom: 30px; }

/* =========================================
   10. FOOTER & EXTRAS
   ========================================= */
footer {
    background-color: #0b1021; 
    color: #cbd5e1; 
    padding: 80px 0 30px; 
    margin-top: 80px;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    gap: 50px; 
}

/* CHANGED h4 TO h3 HERE */
.footer-column h3 { 
    color: var(--white); 
    margin-bottom: 25px; 
    text-transform: uppercase; 
    font-size: 1.1rem; /* Added explicit size to match previous look */
    font-weight: 700;
}

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

.footer-column a { 
    color: #cbd5e1; 
    transition: 0.3s; 
}

.footer-column a:hover { 
    color: var(--primary-light); 
    padding-left: 5px; 
}

.copyright { 
    text-align: center; 
    padding-top: 30px; 
    border-top: 1px solid #1c2540; 
    margin-top: 50px; 
    color: #94a3b8; 
}

/* Testimonials (Index) */
.testimonial-card {
    background: var(--gradient-hero); color: var(--white); padding: 60px; border-radius: 30px;
    max-width: 900px; margin: 0 auto; position: relative; box-shadow: 0 20px 50px rgba(5, 117, 230, 0.3); text-align: center;
}
.testimonial-card p { font-size: 1.5rem; font-style: italic; margin-bottom: 30px; line-height: 1.6; font-weight: 300; }
.testimonial-card .author { font-weight: 700; font-size: 1.2rem; }

/* Leadership (Index) */
.leadership-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.leader-card {
    background: var(--white); border-radius: 20px; overflow: hidden; width: 320px;
    box-shadow: var(--shadow-card); transition: var(--transition);
}
.leader-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-hover); }
.leader-card img { width: 100%; height: 350px; object-fit: cover; object-position: top; }
.leader-info { padding: 25px; text-align: center; }
.leader-info h3 { color: var(--primary-dark); margin: 0; font-size: 1.3rem; }
.leader-info p { color: var(--primary-light); font-weight: 500; margin-top: 5px; }

/* CTA Section (Index) */
.cta-section {
    background: linear-gradient(135deg, #00F260 0%, #0575E6 100%); color: var(--white); padding: 80px 20px;
    border-radius: 30px; margin: 60px 20px; text-align: center; box-shadow: 0 20px 50px rgba(0, 242, 96, 0.2);
}
.cta-section h2 { font-size: 2.5rem; margin-bottom: 15px; }
.cta-section p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.95; color: white; }

/* =========================================
   11. ANIMATIONS & RESPONSIVE
   ========================================= */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .contact-grid, .about-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero { border-radius: 0 0 40px 40px; padding: 100px 20px 60px; }
    .hero h1 { font-size: 2.5rem; }
    .testimonial-card, .policy-container, .form-con
    tainer { padding: 30px; }
}

/* =========================================
   MOBILE NAVIGATION (Added Phase 1)
   ========================================= */

/* Hide Hamburger on Desktop */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    margin: 5px;
    transition: all 0.3s ease;
}

/* MOBILE STYLES (Max-Width 768px) */
@media (max-width: 768px) {
    /* Show Hamburger */
    .hamburger {
        display: block;
        z-index: 1001; /* Above the menu */
    }

    /* Transform Nav Links into a Sidebar */
    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        background: rgba(255, 255, 255, 0.98); /* Glass effect */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%; /* Covers 70% of screen */
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        padding-top: 60px; /* Space for top bar */
    }

    /* The "Active" Class (Slide In) */
    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        margin: 20px 0; /* More space on mobile */
        opacity: 0; /* Hidden for fade animation */
        animation: navLinkFade 0.5s ease forwards 0.3s;
    }
}

/* Animation for Links appearing */
@keyframes navLinkFade {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Hamburger to "X" Animation */
.hamburger.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.hamburger.toggle .line2 { opacity: 0; }
.hamburger.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

/* =========================================
   12. SCROLL HIGHLIGHT ANIMATION
   ========================================= */
.service-card.highlight-active {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

/* Force the blue background effect */
.service-card.highlight-active::before {
    height: 100%; 
}

/* Force text colors to white */
.service-card.highlight-active h3, 
.service-card.highlight-active p, 
.service-card.highlight-active .icon {
    color: white;
    transition: color 0.3s;
}

/* =========================================
   13. CENTER-FOCUS ANIMATION (About & Differentiators)
   ========================================= */

/* Update the selector to include .service-item */
.about-card, .diff-card, .leader-card, .cta-section, .service-item {
    border: 2px solid transparent; 
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

/* Active State */
.about-card.scroll-focus, .diff-card.scroll-focus, .leader-card.scroll-focus, .cta-section.scroll-focus, .service-item.scroll-focus {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 20px 60px rgba(5, 117, 230, 0.15);
    border-color: var(--primary-light);
    z-index: 2;
}

/* =========================================
   14. INDUSTRY GRID ANIMATION (Blue Wave)
   ========================================= */

/* The Active State (Triggered by Scroll or Hover) */
.industry-item.highlight-active {
    background: var(--primary-dark);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(2, 27, 121, 0.2);
}

/* =========================================
   15. LEADERSHIP CARDS (Floating Circles)
   ========================================= */
.leadership-grid { 
    display: flex; 
    justify-content: center; 
    gap: 60px; /* More space between the floating heads */
    flex-wrap: wrap; 
    margin-top: 50px;
}

/* The Container (Now Invisible) */
.leader-card {
    background: transparent; /* No White Box */
    box-shadow: none;        /* No Shadow Box */
    border: none;
    width: 280px; 
    text-align: center; 
    transition: transform 0.5s ease;
    padding: 0;
}

/* The Image (The Main Element) */
.leader-card img { 
    width: 250px;      
    height: 250px;     
    border-radius: 50%; 
    object-fit: cover; 
    object-position: top center; 
    margin: 0 auto 25px; 
    display: block;
    
    /* Default State: Clean White Ring */
    border: 6px solid rgba(255, 255, 255, 0.5); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    transition: all 0.5s ease;
}

/* The Text Info */
.leader-info h3 { 
    color: var(--primary-dark); 
    margin: 0; 
    font-size: 1.6rem; 
    font-weight: 800;
}

.leader-info p { 
    color: var(--primary-light); 
    font-weight: 600; 
    margin-top: 8px; 
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* === FOCUS ANIMATION === */
/* When the card hits center screen (added by JS) */
.leader-card.scroll-focus {
    transform: translateY(-10px); /* Lifts the whole group slightly */
}

/* The Image glows Blue */
.leader-card.scroll-focus img {
    border-color: var(--primary-light); /* Ring turns Blue */
    box-shadow: 0 0 0 8px rgba(5, 117, 230, 0.15), /* Outer Glow Ring */
                0 20px 50px rgba(2, 27, 121, 0.3); /* Deep Shadow */
    transform: scale(1.05); /* Slight Zoom */
}

/* =========================================
   16. MILESTONE INTERACTION (Blue Wave)
   ========================================= */

/* 1. The Container (Makes them horizontal) */
.milestones-grid {
    display: flex;
    justify-content: space-between; /* Spreads items evenly */
    flex-wrap: wrap; /* Wraps to next line on mobile */
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

/* 2. The Card (Base Styles) */
.milestone-card {
    background: var(--white); 
    color: var(--primary-dark); 
    padding: 40px 20px;
    border-radius: 24px; 
    text-align: center; 
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    border: 1px solid transparent;

    /* Flex Layout for Equal Sizing */
    flex: 1;
    min-width: 200px; /* Prevents them from getting too thin on mobile */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 3. Number Wrapper (Keeps number and 'k' aligned) */
.number-wrapper {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
}

/* 4. The Number Styling */
.milestone-card .number { 
    font-size: 3.5rem; 
    font-weight: 800; 
    display: block; 
    color: var(--primary-light); 
    transition: color 0.4s ease;
    line-height: 1;
}

/* 5. The Symbol Styling (for 'k' or '+') */
.milestone-card .symbol {
    font-size: 3.5rem; 
    font-weight: 800; 
    color: var(--primary-light); 
    transition: color 0.4s ease;
    line-height: 1;
}

/* 6. The Label Styling */
.milestone-card .label {
    font-weight: 600;
    color: var(--text-light);
    transition: color 0.4s ease;
    margin-top: 10px;
}

/* --- ACTIVE STATE (Triggered by JS) --- */

/* Card Background Turns Blue */
.milestone-card.highlight-active {
    background: var(--gradient-hero); 
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(2, 27, 121, 0.3);
}

/* Force Text to White when Card is Blue */
.milestone-card.highlight-active .number,
.milestone-card.highlight-active .symbol,
.milestone-card.highlight-active .label {
    color: var(--white);
}


/* =========================================
   17. CTA SECTION FOCUS (The Bottom Box)
   ========================================= */
.cta-section {
    transition: all 0.5s ease;
    border: 2px solid transparent;
}

/* When it hits the center of screen */
.cta-section.scroll-focus {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 242, 96, 0.3); /* Green/Blue Glow */
    border-color: var(--white);
}

/* =========================================
   18. PRICING CARD INTERACTION (Blue Wave + Hover)
   ========================================= */

/* Default State */
.pricing-card {
    transition: all 0.4s ease;
    border: 2px solid transparent; 
}

/* THE ACTIVE STATE (Triggered by Scroll OR Mouse) */
.pricing-card:hover, 
.pricing-card.highlight-active {
    background: var(--gradient-hero); /* Blue Background */
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(2, 27, 121, 0.3);
    border: none;
}

/* FORCE ALL TEXT TO WHITE */
/* This includes h3, price, list items, paragraphs (p), and spans */
.pricing-card:hover h3, .pricing-card.highlight-active h3,
.pricing-card:hover .price, .pricing-card.highlight-active .price,
.pricing-card:hover li, .pricing-card.highlight-active li,
.pricing-card:hover p, .pricing-card.highlight-active p,
.pricing-card:hover span, .pricing-card.highlight-active span {
    color: var(--white) !important;
    transition: color 0.3s;
}

/* Keep Checkmarks Green/Cyan */
.pricing-card:hover li::before, .pricing-card.highlight-active li::before {
    color: var(--accent-cyan); 
}

/* Invert the Button (White Button, Blue Text) */
.pricing-card:hover .pricing-cta, .pricing-card.highlight-active .pricing-cta {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ... [KEEP ALL YOUR EXISTING CSS EXACTLY AS IT WAS] ... */
/* ... Scroll down to the bottom of your style.css and append this: ... */

/* =========================================
   19. PRODUCT MODAL (E-COMMERCE DETAIL VIEW)
   ========================================= */

/* The Dark Background Overlay */
.product-modal {
    display: none; /* Hidden by default */
    position: fixed; 
    z-index: 2000; /* On top of everything */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
    backdrop-filter: blur(5px);
    overflow: auto; /* Enable scroll if screen is small */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Open State Class */
.product-modal.show {
    display: flex;
    opacity: 1;
}

/* The White Box (Modal Content) */
.modal-content {
    background-color: #fff;
    margin: auto;
    width: 90%;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.4s ease-out;
}

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

/* Close Button (X) */
.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: 0.2s;
}

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

/* The Split Layout Body */
.modal-body {
    display: flex;
    flex-wrap: wrap;
}

/* Left Side (Image) */
.modal-left {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal-left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Right Side (Details) */
.modal-right {
    flex: 1;
    min-width: 300px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left; /* Ezo style alignment */
}

/* Typography & Details */
.modal-breadcrumb {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-right h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.modal-price-box {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-price-box .old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.2rem;
}

.modal-price-box .new-price {
    color: var(--primary-dark);
    font-size: 2rem;
    font-weight: 800;
}

.modal-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Feature List */
.modal-features {
    margin-bottom: 40px;
    background: #f9fbfd;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-light);
}

.modal-features h4 {
    margin: 0 0 15px 0;
    color: var(--primary-dark);
}

.modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-features li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    color: var(--text-main);
}

.modal-features li::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Final Action Button */
.final-buy-btn {
    background: #000; /* Black for high contrast/Ezo style */
    color: #fff;
    padding: 18px 40px;
    text-align: center;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.final-buy-btn:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* Mobile Responsive For Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        overflow-y: auto; /* Allow full page scroll */
    }
    .modal-body {
        flex-direction: column;
    }
    .modal-left {
        padding: 40px 20px;
        min-height: 300px;
    }
    .modal-right {
        padding: 30px 20px 80px; /* Extra padding at bottom */
    }
    .close-modal {
        color: #000;
        top: 15px;
        right: 15px;
        background: rgba(255,255,255,0.8);
        width: 40px;
        height: 40px;
        text-align: center;
        border-radius: 50%;
        line-height: 40px;
    }
}

/* =========================================
   20. PRODUCT CARD LOOP ANIMATION
   ========================================= */

/* The Active State (Triggered by Script) */
.product-card.highlight-active {
    background: var(--gradient-hero); /* Turns Blue */
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(2, 27, 121, 0.3);
}

/* 1. Force Text to White */
.product-card.highlight-active h3,
.product-card.highlight-active .product-category,
.product-card.highlight-active .original-price,
.product-card.highlight-active .sale-price, 
.product-card.highlight-active li {
    color: #ffffff !important;
    transition: color 0.3s;
}

/* 2. Invert the Button (White Button, Blue Text) */
/* This makes the button "pop" against the blue background */
.product-card.highlight-active .add-to-cart-btn {
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 3. Handle the Image Box */
/* Slight zoom effect when active to match the vibe */
.product-card.highlight-active .product-image-box img {
    transform: scale(1.05);
}

/* =========================================
   21. CHECKOUT FORM STYLES
   ========================================= */

/* Back Button */
.back-link {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding: 0;
    transition: 0.3s;
}
.back-link:hover { color: var(--primary-dark); text-decoration: underline; }

/* Subtitle */
.checkout-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Form Styling */
.checkout-form .form-group {
    margin-bottom: 20px;
}

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

.checkout-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
}

.checkout-form input:focus {
    border-color: var(--primary-light);
    outline: none;
}

/* Validation Styling */
.required { color: red; }
.optional { color: #aaa; font-weight: 400; font-size: 0.8rem; }

/* Payment Summary Box */
.payment-summary {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed var(--primary-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.summary-amount {
    color: var(--primary-dark);
    font-size: 1.4rem;
}

/* Pay Button Specifics */
.pay-btn {
    background: #5f259f; /* PhonePe Purple vibe */
}
.pay-btn:hover {
    background: #4a1c7c;
}

/* =========================================
   22. CHECKOUT FORM & LAYOUT
   ========================================= */

/* Main Container (Grid Layout) */
.checkout-container {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr; /* Left side slightly wider */
    gap: 40px;
    align-items: start;
    padding-top: 10px;
}

/* Headings */
.checkout-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f0f4f8;
    padding-bottom: 10px;
}

/* --- LEFT COLUMN: BILLING FORM --- */
.checkout-left label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
}

.checkout-left input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 18px;
    border: 1px solid #dcdcdc;
    border-radius: 8px; /* Smooth rounded corners */
    font-size: 0.95rem;
    background: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.checkout-left input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(5, 117, 230, 0.1); /* Blue Glow */
    outline: none;
}

/* --- RIGHT COLUMN: ORDER SUMMARY BOX --- */
.order-summary-box {
    background: #fdfdfd;
    border: 2px solid var(--primary-dark); /* Using your Premium Blue Theme */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* The Table Style */
.order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.order-table th { text-align: left; color: #555; font-weight: 600; padding-bottom: 15px; }
.order-table td { text-align: right; color: #333; padding-bottom: 15px; border-bottom: 1px solid #eee; }

.order-table td span { font-weight: 500; color: var(--text-main); }
.order-table td strong { color: #888; font-size: 0.9rem; }

.total-row th { 
    font-size: 1.2rem; 
    padding-top: 15px; 
    border-top: 2px solid #eee;
    color: var(--text-main);
}

.total-row td { 
    font-size: 1.4rem; 
    font-weight: 800; 
    color: var(--primary-dark); 
    padding-top: 15px; 
    border-top: 2px solid #eee;
    border-bottom: none; 
}

/* Payment Method Visual (The Grey Box) */
.payment-method-box {
    background: #f4f6f8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-light);
}

.privacy-text {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Place Order Button */
.pay-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    background: var(--gradient-hero);
    box-shadow: 0 10px 20px rgba(2, 27, 121, 0.2);
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(2, 27, 121, 0.3);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .checkout-container { grid-template-columns: 1fr; gap: 30px; }
    .order-summary-box { padding: 20px; }
}

/* =========================================
   23. AUTO POP-UP CONSULTATION FORM
   ========================================= */

/* The Background Overlay */
.popup-overlay {
    display: none; 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(5px); 
    z-index: 9999; 
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.popup-overlay.show {
    display: flex;
    opacity: 1;
}

/* The Box */
.popup-content {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    position: relative;
    transform: translateY(50px);
    transition: transform 0.4s ease;
    border-top: 5px solid var(--primary-light); 
}

.popup-overlay.show .popup-content {
    transform: translateY(0);
}

.close-popup-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
    z-index: 10;
}

.close-popup-btn:hover { color: var(--primary-dark); }

/* Form Elements */
.popup-content h3 { color: var(--primary-dark); margin: 0 0 5px 0; font-size: 1.5rem; text-align: center; }
.popup-content p { text-align: center; color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }

.popup-form-group { margin-bottom: 15px; }
.popup-form-group input, .popup-form-group textarea {
    width: 100%; padding: 12px; border: 2px solid #eee; border-radius: 8px; font-family: inherit; font-size: 0.95rem;
}
.popup-form-group input:focus, .popup-form-group textarea:focus {
    border-color: var(--primary-light); outline: none;
}

.popup-submit-btn {
    width: 100%; background: var(--gradient-hero); color: white; border: none; padding: 12px;
    font-size: 1rem; font-weight: 700; border-radius: 50px; cursor: pointer; transition: 0.3s;
    box-shadow: 0 5px 15px rgba(5, 117, 230, 0.3);
}
.popup-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(5, 117, 230, 0.4); }

/* SUCCESS MESSAGE STATE */
.popup-success-message {
    text-align: center;
    display: none; /* Hidden by default */
    padding: 20px 0;
}
.popup-success-message .icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
}
.popup-success-message h3 { color: var(--accent-cyan); }

/* =========================================
   25. CLIENT LOGOS SECTION (Hidden Scrollbar)
   ========================================= */

.client-logos-grid {
    display: flex;
    flex-direction: row;     
    flex-wrap: nowrap;       
    justify-content: space-around; 
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding: 20px;
    
    /* 1. ENABLE SCROLLING BUT HIDE THE BAR */
    overflow-x: auto;          /* Allow horizontal scroll */
    overflow-y: hidden;        /* Prevent vertical scroll */
    scrollbar-width: none;     /* Hide scrollbar (Firefox) */
    -ms-overflow-style: none;  /* Hide scrollbar (IE/Edge) */
}

/* 2. HIDE SCROLLBAR FOR CHROME/SAFARI */
.client-logos-grid::-webkit-scrollbar {
    display: none;
}

/* The Container (Entrance Animation) */
.client-logo {
    flex: 1;                 
    text-align: center;
    min-width: 80px;         
    
    /* INITIAL STATE */
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); 
}

/* ACTIVE STATE */
.client-logo.lift-active {
    opacity: 1;
    transform: translateY(0);
}

/* DELAYS */
.client-logo:nth-child(1) { transition-delay: 0.1s; }
.client-logo:nth-child(2) { transition-delay: 0.2s; }
.client-logo:nth-child(3) { transition-delay: 0.3s; }
.client-logo:nth-child(4) { transition-delay: 0.4s; }

/* The Image (Hover Effect) */
.client-logo img {
    max-width: 100%;
    width: 180px;            
    height: auto;
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.3s ease; 
}

/* Hover Effect */
.client-logo img:hover {
    transform: scale(1.2);   
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .client-logo img {
        width: 100px;        
    }
    .client-logos-grid {
        justify-content: space-between; 
    }
}

/* =========================================
   26. MAGIC CURSOR & SPRINKLE TAIL
   ========================================= */

/* Only apply on devices that actually have a mouse (Desktops) */
@media (pointer: fine) {
    
    /* 1. Hide the Default System Cursor */
    * {
        cursor: none !important;
    }

    /* 2. The Big Main Dot */
    .magic-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 25px;            /* Size of the dot */
        height: 25px;
        background: #00e5ff;    /* Bright Cyan/Blue for high contrast */
        border-radius: 50%;
        pointer-events: none;   /* Lets clicks pass through to buttons */
        z-index: 100000;        /* On top of EVERYTHING */
        transform: translate(-50%, -50%); /* Centers dot on mouse tip */
        
        /* The "Color Changing" Magic Logic */
        mix-blend-mode: difference; 
        transition: transform 0.1s ease, width 0.2s, height 0.2s;
    }

    /* Hover State: When hovering buttons/links, it gets bigger */
    .magic-cursor.hovered {
        width: 40px;
        height: 40px;
        background: #fff;       /* Turns white (inverts to black) for precision */
    }

    /* 3. The Magic Sprinkles (Tail) */
    .cursor-sprinkle {
        position: fixed;
        width: 6px;
        height: 6px;
        background: var(--primary-light); /* Uses your Theme Blue */
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        animation: sprinkleFade 0.8s forwards; /* Plays animation then vanishes */
    }

    @keyframes sprinkleFade {
        0% {
            opacity: 1;
            transform: scale(1) translate(0, 0);
        }
        100% {
            opacity: 0;
            transform: scale(0) translate(var(--rx), var(--ry)); /* Random drifting */
        }
    }
}

/* =========================================
   27. FOOTER SOCIAL ICONS
   ========================================= */
.social-links {
    display: flex;
    gap: 15px; /* Space between icons */
    margin-top: 20px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1); /* Slight background circle */
    border-radius: 50%;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* =========================================
   UPDATED: SOCIAL ICONS HOVER (High Visibility)
   ========================================= */
.social-links a:hover {
    /* 1. White Background for Contrast against Magic Cursor */
    background-color: #ffffff; 
    
    /* 2. Blue Icon Color */
    color: var(--primary-light); 
    
    /* 3. "Neon" Glow Effect */
    box-shadow: 0 0 20px var(--primary-light); 
    
    /* 4. Pop Animation */
    transform: translateY(-5px) scale(1.1); 
}

/* =========================================
   28. LEADERSHIP LINKEDIN HOVER EFFECT
   ========================================= */

/* Wrapper to hold Image + Overlay */
.leader-img-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 25px; 
    border-radius: 50%; 
    overflow: hidden;   
    border: 6px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}

/* Ensure image fills the wrapper */
.leader-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border: none; 
    margin: 0;    
    display: block;
    transition: transform 0.5s ease;
}

/* The Overlay (Hidden by default) */
.leader-social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 27, 121, 0.7); /* Deep Blue Transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    text-decoration: none;
    z-index: 2;
    cursor: pointer; /* Ensures pointer shows on hover */
}

/* The LinkedIn Icon */
.leader-social-overlay i {
    color: #ffffff;
    font-size: 2.5rem;
    transform: translateY(20px); 
    transition: all 0.4s ease;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* --- HOVER EFFECTS --- */

.leader-img-wrapper:hover .leader-social-overlay {
    opacity: 1;
}

.leader-img-wrapper:hover .leader-social-overlay i {
    transform: translateY(0);
}

.leader-img-wrapper:hover img {
    transform: scale(1.1);
}

.leader-img-wrapper:hover {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 8px rgba(5, 117, 230, 0.15);
}

/* =========================================
   29. STICKY WHATSAPP BUTTON (Icon Only)
   ========================================= */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    
    /* Design: Perfect Circle */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%; /* Makes it round */
    
    /* Centering the Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    
    /* Smooth Transitions */
    transition: all 0.3s ease;
    
    /* Entrance Animation */
    opacity: 0;
    animation: slideUpFloat 0.8s ease-out forwards 1s;
}

/* Larger Icon Size */
.whatsapp-float-btn i {
    font-size: 2rem; /* 32px equivalent */
}

/* The "Pulse" Ring Animation */
.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%; /* Match parent circle */
    border: 2px solid #25D366;
    z-index: -1;
    animation: whatsappPulse 2s infinite;
}

/* Hover Effect */
.whatsapp-float-btn:hover {
    background-color: #128C7E;
    transform: translateY(-5px) rotate(10deg); /* Slight lift + twist */
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    color: white;
}

/* --- ANIMATIONS --- */
 @keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

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

/* Mobile Adjustment */
 @media (max-width: 768px) {
    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float-btn i {
        font-size: 1.6rem;
    }
}
/* =========================================
   CONNECT US SECTION (PREMIUM UI)
   ========================================= */
.connect-section {
    padding: 80px 20px;
    background: #f8fbff; /* Very soft blue-white background */
    display: flex;
    justify-content: center;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.1); /* Soft Vaibwork Blue shadow */
    overflow: hidden; /* Ensures the blue box corners are rounded */
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

/* --- LEFT SIDE: INFO (BLUE) --- */
.contact-info {
    flex: 1;
    background: linear-gradient(135deg, #0056b3, #004494); /* Vaibwork Gradient */
    padding: 50px;
    color: white;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.info-item a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Social Icons */
.social-links {
    margin-top: auto;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 50%;
    margin-right: 15px;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: #fff;
    color: #0056b3;
    transform: translateY(-3px);
}

/* --- RIGHT SIDE: FORM (WHITE) --- */
.contact-form-box {
    flex: 1.4;
    padding: 50px;
    background: #fff;
}

.contact-form-box h2 {
    font-size: 26px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Inputs */
.input-group {
    display: flex;
    gap: 20px;
}

.input-box {
    width: 100%;
    margin-bottom: 20px;
}

.input-box label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #eee;
    background: #fafafa;
    border-radius: 8px;
    font-size: 15px;
    transition: 0.3s;
    font-family: inherit;
}

.input-box input:focus,
.input-box textarea:focus {
    border-color: #0056b3;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

/* =========================================
   PREMIUM SUBMIT BUTTON GRAPHICS
   ========================================= */
.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%); /* Premium Gradient */
    color: #ffffff;
    font-size: 16px;
    font-weight: 700; /* Bold text like "Register" buttons */
    text-transform: uppercase; /* Makes it look official */
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Space between Telegram icon and text */
    box-shadow: 0 4px 6px rgba(0, 86, 179, 0.2);
    margin-top: 15px;
}

/* Hover Effect: Lifts up and glows */
.submit-btn:hover {
    background: linear-gradient(135deg, #0062cc 0%, #0056b3 100%); /* Slightly lighter on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.3);
}

/* Click Effect: Presses down */
.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 5px rgba(0, 86, 179, 0.2);
}

/* Icon Styling */
.submit-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Icon flies slightly when hovered */
.submit-btn:hover i {
    transform: translateX(3px) rotate(-10deg);
}

/* RESPONSIVE (Mobile) */
 @media (max-width: 850px) {
    .contact-wrapper {
        flex-direction: column;
    }
    .contact-info, .contact-form-box {
        padding: 30px 20px;
    }
    .input-group {
        flex-direction: column;
        gap: 0;
    }
}