/* ========================================
   🎨 COLOR CUSTOMIZATION SYSTEM
   Change colors here - affects entire site
   ======================================== */

:root {
    /* ========== PRIMARY BRAND COLORS ========== */
    --brand-primary: #0F3BD7;          /* Main Blue - CHANGE THIS FOR NEW BRAND */
    --brand-primary-dark: #0A2CA0;     /* Darker Blue */
    --brand-primary-light: #4F6EF0;    /* Lighter Blue */
    --brand-accent: #7B68EE;           /* Purple accent */
    
    /* ========== BACKGROUND COLORS ========== */
    --bg-primary: #FFFFFF;             /* Main background */
    --bg-secondary: #F3F6FF;           /* Section backgrounds (light blue tint) */
    --bg-tertiary: #FAFBFF;            /* Alternative background */
    --bg-dark: #0A0A0A;                /* Dark backgrounds */
    
    /* ========== TEXT COLORS ========== */
    --text-primary: #0A0A0A;           /* Main text */
    --text-secondary: #2C2C2C;         /* Secondary text */
    --text-tertiary: #5F5F5F;          /* Tertiary text */
    --text-muted: #888888;             /* Muted text */
    --text-light: #CCCCCC;             /* Light text */
    --text-white: #FFFFFF;             /* White text */
    
    /* ========== CARD & SURFACE COLORS ========== */
    --card-bg: var(--brand-primary);   /* Card backgrounds (BLUE) */
    --card-bg-alt: #FFFFFF;            /* Alternative card background */
    --card-bg-hover: var(--brand-primary-dark);
    
    /* ========== BORDER COLORS ========== */
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.12);
    --border-dark: rgba(0, 0, 0, 0.2);
    --border-white: rgba(255, 255, 255, 0.25);
    --border-primary: var(--brand-primary);
    
    /* ========== GRADIENTS ========== */
    --gradient-primary: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-accent) 100%);
    --gradient-text: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(15, 59, 215, 0.9) 0%, rgba(79, 110, 240, 0.8) 100%);
    
    /* ========== SHADOW COLORS ========== */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 10px 30px rgba(15, 59, 215, 0.3);
    --shadow-primary-lg: 0 20px 50px rgba(15, 59, 215, 0.5);
    
    /* ========== EFFECTS & OVERLAYS ========== */
    --overlay-light: rgba(255, 255, 255, 0.95);
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --backdrop-blur: blur(20px);
    
    /* ========== TRANSITIONS ========== */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* ========== SPACING ========== */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    --spacing-2xl: 80px;
    --spacing-3xl: 120px;
    
    /* ========== BORDER RADIUS ========== */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    --radius-circle: 50%;
    
    /* ========== FONT SIZES (Responsive) ========== */
    --font-xs: clamp(10px, 1vw, 12px);
    --font-sm: clamp(12px, 1.2vw, 14px);
    --font-base: clamp(14px, 1.4vw, 16px);
    --font-lg: clamp(16px, 1.6vw, 18px);
    --font-xl: clamp(18px, 2vw, 20px);
    --font-2xl: clamp(22px, 2.5vw, 24px);
    --font-3xl: clamp(28px, 3vw, 32px);
    --font-4xl: clamp(36px, 4vw, 48px);
    --font-5xl: clamp(48px, 5vw, 64px);
    --font-6xl: clamp(56px, 6vw, 72px);
    
    /* ========== Z-INDEX SYSTEM ========== */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-modal: 5000;
    --z-popover: 9000;
    --z-tooltip: 9999;
}

/* ============================
   PREMIUM ANIMATION COLLECTION
   ============================ */

/* 1. Fade Up */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 1.1s ease-out;
}
.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 2. Fade From Left */
.anim-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: 1.1s cubic-bezier(.17,.67,.83,.67);
}
.anim-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* 3. Fade From Right */
.anim-right {
    opacity: 0;
    transform: translateX(50px);
    transition: 1.1s cubic-bezier(.17,.67,.83,.67);
}
.anim-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* 4. Soft Zoom */
.anim-zoom {
    opacity: 0;
    transform: scale(0.5);
    transition: 2s ease-out;
}
.anim-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

/* 5. Blur Revealer */
.anim-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: 1.2s ease-out;
}
.anim-blur.visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* 6. Float Rise (premium) */
.anim-float {
    opacity: 0;
    transform: translateY(60px);
    transition: 1.4s ease-out;
}
.anim-float.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================
   GLOBAL STYLES
   ======================================== */

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

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

body {
    /* font-family: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
    font-family: "Arboria Medium", "Arboria Medium Placeholder", sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: var(--font-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}



/* ========================================
   RESPONSIVE FONT FIXES (All Mobile + Tablets)
   ======================================== */
@media (max-width: 1024px) {

    /* Headings */
    h1, .hero h1 {
        font-size: 23px !important;
        line-height: 1.3;
        margin-bottom: 12px;
        text-align: center;
    }

    h2, .section-header h2, .mission h2 {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 10px;
        text-align: center;
    }

    h3, .compliance-item h3, .product-card h3 {
        font-size: 18px !important;
        line-height: 1.3;
        text-align: center;
    }

    /* Paragraphs */
    p, 
    .mission p, 
    .section-header p,
    .compliance-item p, 
    .product-card p, 
    .hero p {
        font-size: 15px !important;
        line-height: 1.8;
        /* text-align: center; */
        /* max-width: 90%; */
        margin-left: auto;
        margin-right: auto;
    }

    /* Section Padding Adjust */
    /* section {
        padding: 40px 12px !important;
    } */

    /* Fix Video, Images, and Elements Overflow */
    .container, 
    body, 
    html {
        max-width: 100%;
        /* overflow-x: hidden !important; */
    }

    /* Ensure grids stack properly */
    .compliance-grid,
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}




/* ========================================
   HEADER & NAVIGATION
   ======================================== */

    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: var(--z-fixed);
        padding: var(--spacing-md) 0;
        background: var(--gradient-primary);  /*overlay-light*/
        backdrop-filter: var(--backdrop-blur);
        -webkit-backdrop-filter: var(--backdrop-blur);
        border-bottom: 1px solid var(--border-light);
        transition: var(--transition-smooth);
    }

    header.scrolled {
        padding: var(--spacing-sm) 0;
        box-shadow: var(--shadow-md);
        background: var(--gradient-primary);  /*bg-primary*/
    }

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

    /* .logo {
        font-size: var(--font-2xl);
        font-weight: 700;
        color: var(--bg-primary);
        letter-spacing: -0.5px;
        cursor: pointer;
        transition: var(--transition-smooth);
    } */

    .logo {
        display: flex;
        flex-direction: column;
        line-height: 1.1;
        font-weight: 700;
         color: var(--bg-primary);
         transition: var(--transition-smooth);
    }

    /* First line (bigger) */
    .logo-line1 {
        font-size: 20px;
        font-weight: 700;
        white-space: nowrap;
    }

    /* Second line (smaller) */
    .logo-line2 {
        font-size: 13px;
        font-weight: 500;
        opacity: 0.85;
        white-space: nowrap;
    }

    /* RESPONSIVE — adjust for safer fit on mobile */
    @media (max-width: 768px) {
        .logo-line1 {
            font-size: 17px;
        }

        .logo-line2 {
            font-size: 11px;
        }
    }


    .logo:hover {
        opacity: 0.8;
        transform: scale(1.05);
    }

    .nav-links {
        display: flex;
        gap: var(--spacing-lg);
        list-style: none;
    }

    .nav-links a {
        color: var(--text-white);  /* text-primary */
        text-decoration: none;
        font-size: var(--font-sm);
        font-weight: 500;
        transition: var(--transition-smooth);
        position: relative;
        padding: var(--spacing-xs) 0;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--bg-primary);  /*  gradient-primary*/
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

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

    .mobile-menu-btn {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: var(--spacing-xs);
        background: none;
        border: none;
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 2px;
        background: var(--text-white);  /* --text-primary */
        transition: var(--transition-smooth);
        border-radius: 2px;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translateY(7px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-7px);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
        height: 100vh !important;
    }

    .active-page {
        color: var(--brand-primary) !important;
        font-weight: 600 !important;
    }

    @media (max-width: 768px) {
        /* HAMBURGER BUTTON */
        .mobile-menu-btn {
            display: flex !important;
            flex-direction: column !important;
            gap: 5px !important;
            cursor: pointer !important;
            padding: 8px !important;
            z-index: 10001 !important;
            position: relative !important;
        }
        
        .mobile-menu-btn span {
            width: 25px !important;
            height: 2px !important;
            background: var(--text-white)!important;  /* --text-primary */ 
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
            border-radius: 2px !important;
        }
        
        /* Hamburger Animation */
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px) !important;
        }
        
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0 !important;
            transform: translateX(-20px) !important;
        }
        
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px) !important;
        }
        
        /* MOBILE MENU - GLASSMORPHISM BACKGROUND */
        .nav-links {
            /* Positioning */
            position: fixed !important;
            top: 70px !important;
            left: 0 !important;
            right: 0 !important;
            width: 100% !important;
            /* height: calc(100vh - 70px) !important; */
            
            /* Layout */
            flex-direction: column !important;
            justify-content: flex-start !important;
            align-items: center !important;
            gap: 0 !important; /* 👈 No gap between items */
            padding: 30px 20px !important;
            margin: 0 !important;
            
            /* Glassmorphism Effect */
            /* background: rgba(255, 255, 255, 0.85) !important; */
            background: var(--gradient-overlay) !important;
            backdrop-filter: blur(25px) !important; /* 👈 Blur effect */
            -webkit-backdrop-filter: blur(20px) !important; /* 👈 Safari support */
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
            border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
            
            /* Visibility - Hidden by default */
            display: flex !important;
            opacity: 0 !important;
            visibility: hidden !important;
            transform: translateY(-20px) !important; /* 👈 Start position for slide animation */
            pointer-events: none !important;
            
            /* Animation */
            transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
            
            /* Other */
            z-index: 10000 !important;
            overflow-y: auto !important;
            list-style: none !important;
        }
        
        /* SHOW MENU - When 'show' class is added */
        .nav-links.show {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important; /* 👈 Slide down */
            pointer-events: all !important;
        }
        
        /* MENU ITEMS */
        .nav-links li {
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
            text-align: center !important;
            list-style: none !important;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important; /* 👈 Subtle divider */
            
            /* Stagger animation */
            opacity: 0 !important;
            transform: translateX(-20px) !important;
            transition: opacity 0.3s ease, transform 0.3s ease !important;
        }
        
        .nav-links li:last-child {
            border-bottom: none !important;
        }
        
        /* Animate items when menu opens */
        .nav-links.show li {
            opacity: 1 !important;
            transform: translateX(0) !important;
        }
        
        .nav-links.show li:nth-child(1) { transition-delay: 0.1s !important; }
        .nav-links.show li:nth-child(2) { transition-delay: 0.15s !important; }
        .nav-links.show li:nth-child(3) { transition-delay: 0.2s !important; }
        .nav-links.show li:nth-child(4) { transition-delay: 0.25s !important; }
        .nav-links.show li:nth-child(5) { transition-delay: 0.3s !important; }
        .nav-links.show li:nth-child(6) { transition-delay: 0.35s !important; }
        
        /* LINKS STYLING */
        /* .nav-links a {
            display: block !important;
            width: 100% !important;
            padding: 16px 30px !important;
            font-size: 17px !important;
            font-weight: 500 !important;
            color: var(--text-primary) !important;
            text-decoration: none !important;
            transition: all 0.3s ease !important;
            position: relative !important;
        } */
        
        .nav-links a::after {
            display: none !important; /* Remove desktop underline */
        }
        
        /* Link Hover/Active State */
        .nav-links a:hover,
        .nav-links a:active {
            background: rgba(15, 59, 215, 0.08) !important; /* 👈 Subtle blue tint */
            color: var(--brand-primary) !important;
            padding-left: 40px !important; /* 👈 Slight indent on hover */
        }
    }

    /* Smaller Mobile */
    @media (max-width: 480px) {
        .nav-links {
            padding: 25px 15px !important;
        }
        
        .nav-links a {
            font-size: 16px !important;
            padding: 14px 25px !important; /* 👈 Even less gap */
        }
    }




    /* ========================================
   DESKTOP NAVIGATION - HORIZONTAL LAYOUT
   ======================================== */

    /* Navigation Container */
    .nav-links {
        display: flex;
        align-items: center;
        justify-content: center; /* Center all items */
        gap: 32px; /* Space between menu items */
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* All Navigation Links */
    .nav-links li {
        margin: 0; /* Remove any default margin */
    }

    .nav-links a {
        color: #ffffff !important; /* White text */
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        padding: 8px 12px;
        border-radius: 6px;
        transition: all 0.3s ease;
        white-space: nowrap; /* Keep text in one line */
        display: inline-flex;
        align-items: center;
    }

    /* Hover Effect */
    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff !important; /* Keep white on hover */
    }

    /* Active/Clicked State */
    .nav-links a:active,
    .nav-links a:focus {
        color: #ffffff !important; /* Keep white when clicked */
        outline: none;
    }

    /* Active Page Indicator */
    .nav-links a.active-page {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff !important;
    }

    /* Dropdown Specific */
    .nav-links .dropdown {
        position: relative;
    }

    ./* Desktop Dropdown Arrow */
    .nav-links .dropdown-toggle {
        color: #ffffff !important;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 6px; /* Space between text and arrow */
    }

    .nav-links .dropdown-toggle::after {
        content: '▾';
        display: inline-block;
        font-size: 12px;
        color: #ffffff;
        /* transition: transform 0.3s ease; */
        margin-left: 4px;
    }

    /* Desktop - Rotate arrow on hover */
    .nav-links .dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    /* Dropdown Menu (Desktop) */
    .nav-links .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        min-width: 200px;
        padding: 8px 0;
        margin-top: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        list-style: none;
    }

    /* Show dropdown on hover (Desktop) */
    .nav-links .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Dropdown Links (Desktop) - Dark text on white background */
    .nav-links .dropdown-menu li a {
        color: #333333 !important;
        padding: 12px 20px !important;
        display: block !important;
        font-size: 15px !important;
        white-space: nowrap;
    }

    .nav-links .dropdown-menu li a:hover {
        background: rgba(0, 123, 255, 0.08) !important;
        color: var(--brand-primary)!important;
    }


    /* ========================================
    MOBILE NAVIGATION - VERTICAL LAYOUT
    ======================================== */

    @media (max-width: 768px) {
        /* Stack vertically on mobile */
        .nav-links {
            flex-direction: column;
            align-items: stretch;
            gap: 0; /* Remove gap, we'll use padding */
            width: 100%;
        }

        .nav-links li {
            width: 100%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-links li:last-child {
            border-bottom: none;
        }

        /* Mobile Links - Left aligned with padding */
        .nav-links a {
            color: #ffffff !important; /* White text on mobile */
            padding: 16px 24px !important;
            display: flex !important;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            text-align: left;
            font-size: 16px !important;
        }

        .nav-links a:hover,
        .nav-links a:active,
        .nav-links a:focus {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff !important;
        }

        /* Dropdown Toggle on Mobile */
        .nav-links .dropdown {
            width: 100%;
            border-bottom: none !important;
        }

        .nav-links .dropdown-toggle {
            color: #ffffff !important;
        }

        .nav-links .dropdown-toggle::after {
            display: inline-block !important;
            content: '▾' !important;
            font-size: 14px !important;
            color: #ffffff !important; /* White arrow */
            margin-left: auto !important;
            transform-origin: center !important;
            /* transition: transform 0.3s ease !important; */
        }

        /* Hidden state - DEFAULT */
        .nav-links .dropdown-menu {
            position: static !important;
            background: rgba(255, 255, 255, 0.05) !important; /* Subtle background */
            border-radius: 0 !important;
            padding: 0 !important;
            margin: 0 !important;
            width: 100% !important;
            box-shadow: none !important;
            
            /* Hide by default */
            max-height: 0 !important;
            opacity: 0 !important;
            visibility: hidden !important;
            overflow: hidden !important;
            
            /* Smooth animation */
            transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease !important;
        }

        /* OPEN state */
        .nav-links .dropdown.open > .dropdown-menu {
            max-height: 400px !important;
            opacity: 1 !important;
            visibility: visible !important;
            padding: 8px 0 !important;
            overflow-y: auto !important;
            
            /* Custom scrollbar */
            scrollbar-width: thin;
            scrollbar-color: rgba(255,255,255,0.3) transparent;
        }

        /* Webkit scrollbar */
        .nav-links .dropdown-menu::-webkit-scrollbar {
            width: 4px;
        }
        
        .nav-links .dropdown-menu::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,0.3);
            border-radius: 4px;
        }

        /* Dropdown links (Mobile) - Keep white text */
        .nav-links .dropdown-menu li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .nav-links .dropdown-menu li a {
            color: rgba(255, 255, 255, 0.9) !important; /* Slightly dimmed white */
            background: transparent !important;
            padding: 14px 24px 14px 40px !important; /* Indent submenu */
            font-size: 15px !important;
            text-align: left !important;
            display: block !important;
        }

        .nav-links .dropdown-menu li:last-child {
            border-bottom: none;
        }

        .nav-links .dropdown-menu li a:hover,
        .nav-links .dropdown-menu li a:active {
            background: rgba(255, 255, 255, 0.1) !important;
            color: #ffffff !important;
        }

        /* Rotate arrow when open */
        .nav-links .dropdown.open > .dropdown-toggle::after {
            transform: rotate(180deg) !important;
        }

        /* Mobile menu scrolling */
        .nav-links.show {
            overflow-y: auto !important;
            max-height: calc(100vh - 70px) !important;
        }

        /* Remove hover effect on mobile */
        .nav-links .dropdown:hover > .dropdown-toggle::after {
            transform: none;
        }
    }

    @media (max-width: 1024px) {
    .logo-line1 {
        font-size: 18px;
    }

    .logo-line2 {
        font-size: 12px;
    }

    /* Switch to mobile menu at tablet size */
    .mobile-menu-btn {
        display: flex !important;
        z-index: 10001 !important;
        position: relative !important;
    }

    .nav-links {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 0 !important;
        padding: 30px 20px !important;
        margin: 0 !important;
        background: var(--gradient-overlay) !important;
        backdrop-filter: blur(25px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
        display: flex !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-20px) !important;
        pointer-events: none !important;
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 10000 !important;
        overflow-y: auto !important;
        max-height: calc(100vh - 70px) !important;
        list-style: none !important;
    }

    .nav-links.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        pointer-events: all !important;
    }

    .nav-links li {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        opacity: 0 !important;
        transform: translateX(-20px) !important;
        transition: opacity 0.3s ease, transform 0.3s ease !important;
    }

    .nav-links li:last-child {
        border-bottom: none !important;
    }

    .nav-links.show li {
        opacity: 1 !important;
        transform: translateX(0) !important;
    }

    .nav-links.show li:nth-child(1) { transition-delay: 0.1s !important; }
    .nav-links.show li:nth-child(2) { transition-delay: 0.15s !important; }
    .nav-links.show li:nth-child(3) { transition-delay: 0.2s !important; }
    .nav-links.show li:nth-child(4) { transition-delay: 0.25s !important; }
    .nav-links.show li:nth-child(5) { transition-delay: 0.3s !important; }
    .nav-links.show li:nth-child(6) { transition-delay: 0.35s !important; }

    .nav-links a {
        color: #ffffff !important;
        padding: 16px 24px !important;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        text-align: left;
        font-size: 16px !important;
    }

    .nav-links a::after {
        display: none !important;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #ffffff !important;
        padding-left: 40px !important;
    }

    /* Dropdown for tablet */
    .nav-links .dropdown {
        width: 100%;
        border-bottom: none !important;
    }

    .nav-links .dropdown-toggle::after {
        display: inline-block !important;
        content: '▾' !important;
        font-size: 14px !important;
        color: #ffffff !important;
        margin-left: auto !important;
    }

    .nav-links .dropdown-menu {
        position: static !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        box-shadow: none !important;
        max-height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        overflow: hidden !important;
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease !important;
    }

    .nav-links .dropdown.open > .dropdown-menu {
        max-height: 400px !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 8px 0 !important;
    }

    .nav-links .dropdown-menu li a {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 14px 24px 14px 40px !important;
        font-size: 15px !important;
    }

    .nav-links .dropdown.open > .dropdown-toggle::after {
        transform: rotate(180deg) !important;
    }
}



/* ========================================
HERO SECTION - TAGS IN GLASS CONTAINER
======================================== */
.hero-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero {
    min-height: 85vh;
    /* display: flex; */
    align-items: flex-start;
    justify-content: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-primary);
}

/* Background Image Layer - Arrow from head */
.hero::after {
    content: '';
    position: absolute;
    top: 65%;
    left: 50%;
    width: 100%;
    height: 230%;
    background-image: url('../assets/logo-eg.png');
    /* background-size: contain; */
    background-repeat: no-repeat;
    background-position: center bottom;
    opacity: 0.12;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    filter: blur(0.5px);
}

/* Gradient Overlay Layer */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at center top, rgba(15, 59, 215, 0.25) 0%, rgba(15, 59, 215, 0.12) 50%, transparent 80%),
        radial-gradient(circle at 15% 40%, rgba(15, 59, 215, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 85% 75%, rgba(15, 59, 215, 0.2) 0%, transparent 55%),
        linear-gradient(180deg, rgba(15, 59, 215, 0.08) 0%, transparent 100%);
    animation: pulseBackground 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseBackground {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* HIDE HERO PERSON IMAGE */
.hero-person {
    display: none !important;
}

/* Hero Content - Text only, NO glass background */
.hero-content {
    text-align: center;
    z-index: 4;
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0px auto 0px;
    padding: 30px 40px;
}

/* Main Heading */
.hero h1 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

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

/* Rotating Text Container */
.rotating-text-container {
    height: 36px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-text {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
}

.rotating-text h2 {
    font-size: clamp(16px, 2vw, 22px) !important;
    font-weight: 400;
    letter-spacing: 1.2px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    font-family: "Arboria Medium", "Arboria Medium Placeholder", sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(60px);
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    opacity: 0;
    animation: rotateTextFast 6s infinite;
}

.rotating-text h2:nth-child(1) { animation-delay: 0s; }
.rotating-text h2:nth-child(2) { animation-delay: 2s; }
.rotating-text h2:nth-child(3) { animation-delay: 4s; }

@keyframes rotateTextFast {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(60px);
    }
    5% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
    }
    30% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0);
    }
    35% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-60px);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(-60px);
    }
}

.hero-subtitle {
    font-size: clamp(13px, 1.3vw, 16px);
    color: var(--text-secondary);
    margin-bottom: 0;
    letter-spacing: 0.5px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
    display: inline-flex;
    gap: var(--spacing-sm);
    animation: fadeInUp 1s ease-out 0.6s both;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}

.cta-button {
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    display: inline-block;
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-primary);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-lg);
}

.cta-secondary {
    background: transparent;
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.cta-secondary:hover {
    background: var(--brand-primary);
    color: var(--text-white);
}

/* Hero Tags Container - GLASS EFFECT */
.hero-tags {
    position: relative;
    z-index: 3;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-tag {
    flex: 1;
    min-width: 200px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-tag.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-tag h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Animation delays for tags */
.tag-1 { animation-delay: 0.2s; }
.tag-2 { animation-delay: 0.4s; }
.tag-3 { animation-delay: 0.6s; }

/* ========================================
   RESPONSIVE - LARGE DESKTOP
   ======================================== */
@media (max-width: 1400px) {
    .hero-content {
        max-width: 900px;
    }

    .hero-tags {
        max-width: 850px;
        padding: 45px 35px;
        gap: 35px;
    }

    .hero-tag h3 {
        font-size: 34px;
    }
}

/* ========================================
   RESPONSIVE - TABLET (1024px)
   ======================================== */
@media (max-width: 1024px) {
    .hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }

    .hero::after {
        width: 110%;
        opacity: 0.1;
        background-position: center 60%;
        background-size: contain;
        top: 46%
    }

    .hero-content {
        max-width: 700px;
        padding: 30px 30px;
        /* margin-bottom: 40px; */
    }

    .hero h1 {
        font-size: 40px!important;
        margin-bottom: 18px;
        line-height: 1.15;
    }

    .rotating-text-container {
        height: 40px;
        margin-bottom: 10px;
    }

    .rotating-text h2 {
        font-size: 18px!important;
    }

    .hero-subtitle {
        line-height: 1.65;
        margin-bottom: 14px;
    }

    /* Tablet glass container */
    .hero-tags {
        max-width: 700px;
        padding: 40px 30px;
        gap: 30px;
    }

    .hero-tag {
        min-width: 180px;
    }

    .hero-tag h3 {
        font-size: 30px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (768px)
   ======================================== */
@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 90px 0 50px;
    }

    .hero-content {
        max-width: 90%;
        padding: 30px 25px;
        /* margin-bottom: 35px; */
    }

    .hero h1 {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .rotating-text-container {
        height: 28px;
        margin-bottom: 18px;
    }

    .rotating-text h2 {
        font-size: 16px !important;
    }

    .hero-subtitle {
        font-size: 12px;
        line-height: 1.7;
    }

    /* Mobile glass container */
    .hero-tags {
        max-width: 90%;
        padding: 35px 25px;
        gap: 25px;
        flex-direction: column;
    }

    .hero-tag {
        min-width: 100%;
    }

    .hero-tag h3 {
        font-size: 28px;
    }

    .hero-cta {
        width: 55%;
        flex-direction: column;
        gap: 10px;
    }

    .cta-button {
        width: 100%;
        padding: 13px 26px;
        font-size: 12.5px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (480px)
   ======================================== */
@media (max-width: 480px) {
    .hero {
        min-height: 65vh;
        padding: 80px 0 40px;
    }

    .hero::after {
        opacity: 0.06;
    }

    .hero-content {
        max-width: 92%;
        padding: 30px 20px;
        /* margin-bottom: 30px; */
    }

    .hero h1 {
        font-size: 26px!important;
        margin-bottom: 14px!important;
        line-height: 1.25!important;
    }

    .rotating-text-container {
        height: 26px;
        margin-bottom: 16px;
    }

    .rotating-text h2 {
        font-size: 14px !important;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 11px!important;
        letter-spacing: 0.8px;
    }

    /* Small mobile glass container */
    .hero-tags {
        max-width: 92%;
        padding: 30px 20px;
        gap: 20px;
        border-radius: 20px;
    }

    .hero-tag h3 {
        font-size: 24px;
    }

    .hero-cta {
        width: 65%;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 11.5px;
    }
}

/* ========================================
   RESPONSIVE - EXTRA SMALL (360px)
   ======================================== */
@media (max-width: 360px) {
    .hero {
        padding: 75px 0 35px;
    }

    .hero-content {
        padding: 30px 18px;
        /* margin-bottom: 25px; */
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .rotating-text-container {
        height: 24px;
        margin-bottom: 14px;
    }

    .rotating-text h2 {
        font-size: 13px !important;
    }

    .hero-subtitle {
        font-size: 10px;
    }

    .hero-tags {
        padding: 25px 18px;
        gap: 18px;
        border-radius: 18px;
    }

    .hero-tag h3 {
        font-size: 22px;
    }
}

    

/* ========================================
   compliance SECTION - SMALLER SIZE
   ======================================== */

   .compliance-features {
        padding: var(--spacing-xl) 0;
        background: var(--gradient-primary);
        /* position: relative; */
        border-top: 0px solid #ffffff;
    }

    /* .compliance-features::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: min(600px, 90%);
        height: min(600px, 90%);
        background: radial-gradient(circle, rgba(#0F3BD7, 0.05) 0%, transparent 50%);
        pointer-events: none;
    } */

    .compliance-item {
        transition: all 0.3s ease !important;
    }

    .compliance-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 35px 50px;
        text-align: center;
    }

    .compliance-item h3 {
        font-size: 20px;
        font-weight: 700;
        color: var(--text-white);
        margin-bottom: 5px;
    }

    .compliance-item p {
        font-size: 16px;
        color: var(--text-white);
        font-weight: 400;
    }

    /* Mobile Responsive */
    /* @media (max-width: 768px) {
        .compliance-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    } */


    /* ========================================
   TABLET RESPONSIVE (1024px)
   ======================================== */
@media (max-width: 1024px) {
    .compliance-features {
        padding: 50px 0;
    }

    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
        max-width: 700px;
        margin: 0 auto;
    }

    .compliance-item h3 {
        font-size: 19px;
        margin-bottom: 4px;
    }

    .compliance-item p {
        font-size: 15px;
    }
}

/* ========================================
   MOBILE RESPONSIVE (768px)
   ======================================== */
@media (max-width: 768px) {
    .compliance-features {
        padding: 40px 0;
    }

    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 30px;
        max-width: 500px;
    }

    .compliance-item h3 {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .compliance-item p {
        font-size: 14px;
    }
}

/* ========================================
   SMALL MOBILE (480px)
   ======================================== */
@media (max-width: 480px) {
    .compliance-features {
        padding: 35px 0;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .compliance-item h3 {
        font-size: 17px;
        margin-bottom: 2px;
    }

    .compliance-item p {
        font-size: 13px;
    }
}


/* ========================================
   STATS SECTION - SMALLER SIZE
   ======================================== */

    /* .stats {
        padding: 50px 0; 
        background: var(--bg-secondary);
        position: relative;
        margin-top: 40px; 
        margin-bottom: 20px;
    }

    .stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border-light), transparent);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr); 
        gap: var(--spacing-md);
        text-align: center;
        max-width: 900px; 
        margin: 0 auto;
    }

    .stat-item {
        padding: var(--spacing-md) var(--spacing-sm); 
        background: var(--card-bg);
        border-radius: var(--radius-sm); 
        border: 1px solid var(--border-white);
        transition: var(--transition-smooth);
    }

    .stat-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

    .stat-item h3 {
        font-size: clamp(28px, 3vw, 36px); 
        font-weight: 700;
        margin-bottom: 4px; 
        color: var(--text-white);
        line-height: 1;
    }

    .stat-item p {
        font-size: 10px; 
        color: var(--text-white);
        text-transform: uppercase;
        letter-spacing: 0.5px; 
        opacity: 0.9;
        line-height: 1.3;
    } */

/* 👈 Responsive - Keep compact on all devices */

/* Tablet (1024px) */
/* @media (max-width: 1024px) {
    .stats {
        padding: 45px 0;
        margin-top: 35px;
        margin-bottom: 35px;
    }
    
    .stats-grid {
        max-width: 800px;
    }
} */

/* @media (max-width: 768px) {
    .stats {
        padding: 40px 0;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm); 
    }
    
    .stat-item {
        padding: var(--spacing-sm) var(--spacing-xs); 
    }
    
    .stat-item h3 {
        font-size: 26px;
        margin-bottom: 2px;
    }
    
    .stat-item p {
        font-size: 9px;
        letter-spacing: 0.3px;
    }
} */

/* @media (max-width: 480px) {
    .stats {
        padding: 35px 0;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .stats-grid {
        gap: var(--spacing-xs);
    }
    
    .stat-item {
        padding: var(--spacing-xs) 4px; 
    }
    
    .stat-item h3 {
        font-size: 24px;
    }
    
    .stat-item p {
        font-size: 8px;
    }
} */

/* @media (max-width: 360px) {
    
    .stat-item h3 {
        font-size: 22px;
    }
} */

/* ========================================
   MISSION SECTION
   ======================================== */

.mission {
    padding: var(--spacing-2xl) 0;
    text-align: center;
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(600px, 90%);
    height: min(600px, 90%);
    background: radial-gradient(circle, rgba(15, 59, 215, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.mission-content {
    position: relative;
    z-index: 2;
}

.mission h2 {
    font-size: var(--font-4xl);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -1px;
    color: var(--text-primary);
}

.mission p {
    font-size: var(--font-xl);
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.products {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    font-size: var(--font-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
    color: var(--text-primary);
}

.section-header p {
    font-size: var(--font-xl);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.product-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-white);
    position: relative;
    overflow: hidden;

    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    
    min-height: 380px; /* Adjust if needed */
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-3xl);
}

.product-card h3 {
    font-size: var(--font-3xl);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    color: var(--text-white);
}

.product-card p {
    font-size: var(--font-base);
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--font-sm);
    border: 1px solid var(--border-white);
}

.coming-soon-btn {
    background: #FFC107;
    color: var(--text-white);
    border: none;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    align-self: center;
    margin-top: auto !important; 
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    width: fit-content !important;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Shine animation */
.coming-soon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.75), transparent);
    animation: shine 2.5s infinite;
}

@keyframes shine {
    0% { left: -120%; }
    50% { left: 130%; }
    100% { left: 130%; }
}


/* ========================================
   FRAMEWORK SECTION
   ======================================== */

.framework {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--brand-primary-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.framework::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    /* background: radial-gradient(circle, rgba(15, 59, 215, 0.15) 0%, transparent 70%); */
    background: radial-gradient(circle, rgba(123, 104, 238, 0.15) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.framework::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    /* background: radial-gradient(circle, rgba(79, 110, 240, 0.15) 0%, transparent 70%); */
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.framework-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.framework-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(15, 59, 215, 0.3);
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: var(--font-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-lg);
}

.framework h2 {
    font-size: var(--font-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -1px;
    color: var(--text-white);
}

.framework p {
    font-size: var(--font-xl);
    color: var(--text-white);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.join-btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-2xl);
    background: var(--text-white);
    color: var(--brand-primary);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: var(--font-lg);
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
}

.join-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary-lg);
}

/* ========================================
   BRANDS SECTION - FIXED TO HORIZONTAL
   ======================================== */

.brands {
    padding: var(--spacing-md) 0;
    background: var(--bg-secondary);
    text-align: center;
    overflow: hidden;
}

.brands h3 {
    font-size: var(--font-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.brands-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brands-wrapper::before,
.brands-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.brands-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.brands-grid {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    animation: scroll-brands 30s linear infinite;
    width: fit-content;
}

.brands-grid:hover {
    animation-play-state: paused;
}

@keyframes scroll-brands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    height: 60px;
    min-width: 150px;
    background: var(--card-bg-alt);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: var(--font-xs);
    border: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    padding: var(--spacing-sm);
    flex-shrink: 0;
}

.brand-logo:hover {
    border-color: var(--brand-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .brands-grid {
        animation-duration: 20s; 
    }
    
    .brand-logo {
        min-width: 120px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .brands-grid {
        animation-duration: 15s; 
    }
    
    .brand-logo {
        min-width: 100px;
        height: 45px;
    }
}


/* ========================================
   PROJECTS SECTION
   ======================================== */

.projects {
    padding: var(--spacing-3xl) 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.project-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--border-white);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(79, 110, 240, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-4xl);
    font-weight: 700;
    position: relative;
    z-index: 2;
    color: var(--text-white);
}

.project-card h3 {
    font-size: var(--font-3xl);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    position: relative;
    z-index: 2;
    color: var(--text-white);
}

.project-label {
    display: inline-block;
    padding: 6px var(--spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-card p {
    font-size: var(--font-base);
    color: var(--text-white);
    line-height: 1.8;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* ========================================
   PILLARS SECTION
   ======================================== */

/* .pillars {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.pillar-card {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-white);
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pillar-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    font-weight: 700;
    margin: 0 auto var(--spacing-lg);
    color: var(--text-white);
}

.pillar-card h3 {
    font-size: var(--font-2xl);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    color: var(--text-white);
}

.pillar-card p {
    font-size: var(--font-base);
    color: var(--text-white);
    line-height: 1.8;
    opacity: 0.9;
} */

/* ========================================
   BLOG SECTION
   ======================================== */

.blog {
    padding: var(--spacing-3xl) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.blog-card {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-white);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--font-sm);
    position: relative;
    overflow: hidden;
}

.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 59, 215, 0.3) 100%);
}

.blog-content {
    padding: var(--spacing-lg);
}

.blog-category {
    display: inline-block;
    padding: 6px var(--spacing-sm);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: var(--font-xs);
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-content h3 {
    font-size: var(--font-2xl);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    font-weight: 600;
    color: var(--text-white);
}

.blog-content p {
    font-size: var(--font-sm);
    color: var(--text-white);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-xs);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-sm);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.read-more:hover {
    gap: var(--spacing-xs);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
    padding-top: 10px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-2xl);
    align-items: start;
}

.contact-info h2 {
    font-size: var(--font-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -1px;
    color: var(--text-primary);
}

.contact-info p {
    font-size: var(--font-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-detail-item {
    display: flex;
    align-items: start;
    gap: var(--spacing-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-xl);
    flex-shrink: 0;
    color: var(--text-white);
}

.contact-detail-item div h4 {
    font-size: var(--font-base);
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-detail-item div p {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    background: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-white);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--text-white);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-white);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: var(--font-base);
    font-family: inherit;
    transition: var(--transition-smooth);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-primary-light);
    box-shadow: 0 0 0 3px rgba(79, 110, 240, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

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

.submit-btn {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--text-white);
    color: var(--brand-primary);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.form-message {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    color: var(--bg-primary);
}

.form-message.error {
    color: var(--bg-primary);
}

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

footer {
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h3 {
    font-size: var(--font-lg);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--brand-primary);
}

.footer-section p {
    font-size: var(--font-sm);
    /* color: var(--text-secondary); */
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.officers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
    margin-top: 15px;
}

.officer-box {
    background: var(--secondary-bg);
    padding: 15px 18px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.officer-title {
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 8px;
    font-size: 15px;
}

.officer-list li {
    margin-bottom: 4px;
    font-size: 14px;
    color: var(--text-secondary);
}

.officer-list li:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .officers-grid {
        grid-template-columns: 1fr;
    }
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links.officer-list li{
    margin-bottom: 0px;
}

.footer-links a {
    font-size: var(--font-sm);
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    font-size: var(--font-lg);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: transparent;
    transform: translateY(-3px);
}

.disclaimer {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.disclaimer h4 {
    font-size: var(--font-base);
    margin-bottom: var(--spacing-md);
    color: var(--brand-primary);
    font-weight: 600;
}

.disclaimer p {
    font-size: var(--font-xs);
    color: var(--text-tertiary);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.disclaimer strong {
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: var(--font-sm);
    color: var(--text-secondary);
}

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 25px;
    }

    .footer-section h3 {
        font-size: 17px;
    }

    .footer-section p {
        font-size: 13px;
    }

    .officers-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .officer-box {
        padding: 13px 16px;
    }

    .officer-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .officer-list li {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .disclaimer {
        padding: 22px;
    }

    .disclaimer h4 {
        font-size: 15px;
    }

    .disclaimer p {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    footer {
        padding: 60px 0 40px;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 30px;
    }

    .officers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-section h3{
        display: flex;
    }

    .officer-box {
        padding: 14px 16px;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .disclaimer {
        padding: 24px;
    }
}

/* ========================================
   PAGE LOADER
   ======================================== */

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-tooltip);
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-light);
    border-top-color: var(--brand-primary);
    border-radius: var(--radius-circle);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: var(--z-sticky);
    box-shadow: var(--shadow-primary);
    border: none;
    padding: 0;
    color: var(--text-white);
    font-size: 20px; /* Icon size */
}

.scroll-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary-lg);
}

.scroll-to-top::before {
    content: '↑';
    font-size: var(--font-2xl);
    color: var(--text-white);
}

/* ========================================
   🎯 RESPONSIVE BREAKPOINTS
   ======================================== */

/* Large Tablets (1200px) */
@media (max-width: 1200px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .product-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet & Below (1024px) */
@media (max-width: 1024px) {
    :root {
        --spacing-3xl: 80px;
        --spacing-2xl: 60px;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    /* .hero-content {
        padding-bottom: clamp(240px, 25vw, 320px);
    } */
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Below (768px) */
@media (max-width: 768px) {
    :root {
        --spacing-3xl: 60px;
        --spacing-2xl: 40px;
    }
    
    /* Hero Adjustments */
    /* .hero {
        padding-top: 80px;
    } */
    
    /* .hero-person {
        width: min(280px, 70%);
    }
    
    .hero-content {
        padding-bottom: clamp(200px, 20vw, 260px);
    }
    
    .rotating-text-container {
        height: clamp(50px, 6vw, 60px);
    }
    
    .hero-cta {
        width: 100%;
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    } */
    
    /* Grid Adjustments */
    .stats-grid,
    .product-grid,
    .blog-grid,
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    /* Padding Adjustments */
    .product-card,
    .project-card,
    .pillar-card {
        padding: var(--spacing-lg);
    }
    
    .contact-form {
        padding: var(--spacing-lg);
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    :root {
        --spacing-3xl: 40px;
        --spacing-2xl: 30px;
        --spacing-xl: 30px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* .hero-person {
        width: min(220px, 60%);
    } */
    
    .product-card,
    .project-card,
    .pillar-card,
    .contact-form {
        padding: var(--spacing-md);
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .disclaimer {
        padding: var(--spacing-md);
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }
.mt-3xl { margin-top: var(--spacing-3xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }
.mb-3xl { margin-bottom: var(--spacing-3xl); }

.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }
.pt-2xl { padding-top: var(--spacing-2xl); }
.pt-3xl { padding-top: var(--spacing-3xl); }

.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }
.pb-2xl { padding-bottom: var(--spacing-2xl); }
.pb-3xl { padding-bottom: var(--spacing-3xl); }

/* Visibility Classes */
.hidden { display: none; }
.visible { display: block; }

/* Flexbox Utilities */
.flex { display: flex; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-column { flex-direction: column; }

/* Grid Utilities */
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Width Utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }

/* Height Utilities */
.h-full { height: 100%; }
.h-auto { height: auto; }

/* Border Utilities */
.border { border: 1px solid var(--border-light); }
.border-primary { border-color: var(--brand-primary); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadow Utilities */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Print Styles */
@media print {
    .page-loader,
    .scroll-to-top,
    header,
    .mobile-menu-btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Keyboard Navigation Accessibility */
body.keyboard-nav *:focus {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}









/* ========================================
   PILLARS SECTION - REDESIGNED WITH SLIDER
   ======================================== */

.pillars {
    padding: var(--spacing-xl) 0;
    background: var(--bg-secondary);
}

.pillars-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 👈 50/50 split */
    gap: var(--spacing-2xl);
    align-items: center;
    margin-top: var(--spacing-xl);
}

/* ========================================
   LEFT SIDE - AUTO SWIPE SLIDER
   ======================================== */

.pillars-slider {
    position: relative;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: var(--brand-primary);
    transform: scale(1.3);
    border-color: white;
    box-shadow: 0 0 10px rgba(15, 59, 215, 0.5);
}

.slider-dots .dot:hover {
    background: var(--brand-primary);
    transform: scale(1.2);
}

/* ========================================
   RIGHT SIDE - FOUNDER INFORMATION
   ======================================== */

.pillars-content {
    padding: var(--spacing-sm);
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

/* Pillar Items */
.pillar-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    padding: var(--spacing-lg);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--brand-primary); /* 👈 Blue accent */
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.pillar-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-width: 6px;
}

.pillar-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-2xl);
    font-weight: 700;
    color: var(--text-white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(15, 59, 215, 0.3);
}

.pillar-text h3 {
    font-size: var(--font-xl);
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 600;
}

.pillar-text p {
    font-size: var(--font-base);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Founder Quote */
.founder-quote {
    padding: var(--spacing-xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    margin-top: var(--spacing-md);
    box-shadow: var(--shadow-lg);
}

.founder-quote i {
    font-size: var(--font-4xl);
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: var(--spacing-sm);
}

.founder-quote p {
    font-size: var(--font-xl);
    color: var(--text-white);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.founder-quote h4 {
    color: var(--text-white);
    font-size: var(--font-lg);
    font-weight: 600;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .pillars-wrapper {
        grid-template-columns: 1fr; /* 👈 Stack on tablet */
        gap: var(--spacing-xl);
    }

    .slider-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 400px;
    }

    .pillar-item {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }

    .pillar-number {
        margin: 0 auto var(--spacing-sm);
    }

    .founder-quote {
        padding: var(--spacing-lg);
    }

    .founder-quote p {
        font-size: var(--font-lg);
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 350px;
    }

    .pillar-text h3 {
        font-size: var(--font-lg);
    }

    .pillar-text p {
        font-size: var(--font-sm);
    }
}

.view-product-btn{
display:inline-block;
margin-top:20px;
padding:12px 22px;
background:#0d6efd;
color:#fff;
font-weight:600;
border-radius:6px;
text-decoration:none;
transition:0.3s;
}

.view-product-btn:hover{
background:#084298;
}

