/* 
   VAIDYA VENTURES - Premium Corporate CSS Stylesheet
   Designed with premium corporate aesthetics: luxury glass, aluminium, ACP, and construction solutions.
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Design Tokens & Variables --- */
:root {
    /* Color Palette - Navy & Gold Brand Theme */
    --color-primary: #0E2F56;      /* Deep Navy Blue from Logo */
    --color-primary-rgb: 14, 47, 86;
    --color-secondary: #FFC72C;    /* Gold / Yellow from Logo */
    --color-secondary-rgb: 255, 199, 44;
    --color-accent: #00A4E4;       /* Sky Blue from Tagline */
    --color-dark: #071527;         /* Very Dark Navy */
    --color-dark-rgb: 7, 21, 39;
    --color-light: #F4F7FA;        /* Cool Grey */
    --color-light-rgb: 244, 247, 250;
    --color-white: #FFFFFF;
    --color-white-rgb: 255, 255, 255;
    --color-muted: #5A6E85;        /* Slate Blue Muted */
    --color-border: #E1E8F0;       /* Light border */
    --color-border-dark: #1A2E44;  /* Dark border */
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-circle: 50%;
    
    /* Glassmorphism Styles */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: rgba(0, 0, 0, 0.15);
    
    --glass-dark-bg: rgba(10, 15, 29, 0.7);
    --glass-dark-border: rgba(255, 255, 255, 0.08);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --shadow-glow: 0 0 25px rgba(0, 242, 254, 0.25);
    
    --section-padding: 100px 0;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--color-secondary);
    animation: spin 1s linear infinite;
    position: relative;
}
.loader-spinner::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: var(--color-primary);
    animation: spin 2s linear infinite reverse;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.25;
}

p {
    color: var(--color-muted);
}

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

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

ul {
    list-style: none;
}

/* --- Reusable Components & Layout utilities --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.grid {
    display: grid;
    gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.section {
    padding: var(--section-padding);
    position: relative;
}
.section-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}
.section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--color-white);
}
.section-light {
    background-color: var(--color-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-header .subtitle {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 16px;
    background: rgba(15, 76, 129, 0.06);
    border-radius: 50px;
}
.section-dark .section-header .subtitle {
    color: var(--color-secondary);
    background: rgba(0, 242, 254, 0.08);
}
.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-header p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    gap: 8px;
    z-index: 1;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0c3e69 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(15, 76, 129, 0.2);
}
.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(15, 76, 129, 0.35);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    color: var(--color-dark);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}
.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-link {
    padding: 0;
    background: transparent;
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 600;
    gap: 4px;
}
.btn-link i {
    transition: transform 0.3s ease;
}
.btn-link:hover {
    color: var(--color-accent);
}
.btn-link:hover i {
    transform: translateX(4px);
}

/* Glassmorphism elements */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
}
.glass-panel-dark {
    background: var(--glass-dark-bg);
    border: 1px solid var(--glass-dark-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--glass-shadow);
}

/* --- Header & Navigation --- */
.top-bar {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-info {
    display: flex;
    gap: 24px;
}
.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar-info i {
    color: var(--color-secondary);
}
.top-bar-socials {
    display: flex;
    gap: 16px;
}
.top-bar-socials a:hover {
    color: var(--color-secondary);
}

.header {
    position: fixed;
    top: 42px; /* Accommodate top bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
}
.header.sticky {
    top: 0;
    background: rgba(10, 15, 29, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: var(--transition-normal);
}
.header.sticky .navbar {
    height: 75px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 48px;
    height: 48px;
    background: #FFFFFF;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}
.logo:hover .logo-icon::after {
    transform: translate(100%, 100%) rotate(45deg);
}
.logo-icon svg,
.logo-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 0.2px;
    line-height: 1.1;
    white-space: nowrap;
}
.logo-subtitle {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}
.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-link {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}
.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}
.nav-link:hover, .nav-item:hover > .nav-link {
    color: var(--color-secondary);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    min-width: 220px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
}
.dropdown-link:hover {
    color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.04);
    padding-left: 18px;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 800px;
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.nav-item-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega-col h4 {
    color: var(--color-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
}
.mega-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mega-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mega-link::before {
    content: '→';
    font-size: 0.8rem;
    color: var(--color-secondary);
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition-fast);
}
.mega-link:hover {
    color: var(--color-white);
}
.mega-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Header CTAs */
.header-ctas {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-ctas .btn {
    padding: 10px 14px;
    font-size: 0.85rem;
}
.btn-whatsapp-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: #25D366;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
    background: #20ba59;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 3px;
    transition: var(--transition-normal);
}
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- Hero Banner Slider --- */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-dark);
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s;
    z-index: 1;
}
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s ease;
}
.slide.active .slide-bg {
    transform: scale(1);
}
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 29, 0.92) 0%, rgba(10, 15, 29, 0.4) 60%, rgba(10, 15, 29, 0.8) 100%);
}
.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}
.slide-inner {
    max-width: 800px;
    padding-top: 100px;
}
.slide-tag {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(0, 242, 254, 0.3);
    background: rgba(0, 242, 254, 0.08);
    border-radius: 50px;
}
.slide-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
    transition-delay: 0.15s;
}
.slide-title span {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.slide-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
    transition-delay: 0.3s;
    line-height: 1.6;
}
.slide-btns {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
    transition-delay: 0.45s;
}

/* Active animations for active slide */
.slide.active .slide-tag,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-btns {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Glass Cards on Hero */
.hero-floating-cards {
    position: absolute;
    bottom: 50px;
    right: 5%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 320px;
}
.floating-card {
    padding: 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}
.floating-card:hover {
    transform: translateX(-10px);
    background: rgba(255, 255, 255, 0.12);
}
.floating-card h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.floating-card h4 i {
    color: var(--color-secondary);
}
.floating-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 24px;
    z-index: 10;
    display: flex;
    gap: 12px;
}
.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}
.slider-btn:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
    border-color: var(--color-secondary);
}

.slider-dots {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
}
.slider-dot.active {
    background: var(--color-secondary);
    transform: scale(1.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}
.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--color-white);
    border-radius: 12px;
    position: relative;
}
.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}
@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

/* --- Section - Stats Counters --- */
.stats-bar {
    background-color: var(--color-dark);
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    position: relative;
}
.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}
.stat-item:last-child::after {
    display: none;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Section - Company Overview --- */
.about-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.about-images-wrapper {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}
.about-img-main {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.about-img-main img {
    transition: transform 0.6s ease;
}
.about-img-main:hover img {
    transform: scale(1.05);
}
.about-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 260px;
    height: 220px;
    border-radius: var(--radius-md);
    border: 8px solid var(--color-white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.about-experience-badge {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #082d4d 100%);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}
.about-experience-badge span:first-child {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}
.about-experience-badge span:last-child {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
    margin-top: 4px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.about-feature-item i {
    color: var(--color-primary);
    background: rgba(15, 76, 129, 0.08);
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.about-feature-item h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.about-feature-item p {
    font-size: 0.85rem;
    margin: 0;
}

/* --- Section - Services --- */
.service-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 76, 129, 0.15);
}
.service-card-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.1);
}
.service-card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 15, 29, 0.4) 0%, transparent 60%);
}
.service-card-icon {
    position: absolute;
    bottom: -24px;
    right: 24px;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #082d4d 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-white);
    z-index: 2;
    transition: var(--transition-normal);
}
.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    color: var(--color-dark);
    box-shadow: var(--shadow-glow);
    transform: rotate(360deg);
}
.service-card-body {
    padding: 35px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.service-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}
.service-card-body p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

/* --- Section - Products --- */
.product-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 76, 129, 0.2);
}
.product-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-img img {
    transform: scale(1.08);
}
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: 4px;
    letter-spacing: 1px;
}
.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-content h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}
.product-desc {
    font-size: 0.9rem;
    margin-bottom: 16px;
    flex-grow: 1;
}
.product-specs {
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px dashed var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.spec-tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    background-color: var(--color-light);
    color: var(--color-dark);
    border-radius: 4px;
    font-weight: 500;
}
.product-actions {
    display: flex;
    gap: 10px;
}
.product-actions .btn {
    flex: 1;
    padding: 10px 14px;
    font-size: 0.8rem;
}

/* --- Section - Why Choose Us --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.why-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, #070B19 100%);
    z-index: -1;
    transition: var(--transition-normal);
}
.why-card:hover::before {
    height: 100%;
}
.why-card:hover {
    border-color: var(--color-dark);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.why-card:hover h3, .why-card:hover p {
    color: var(--color-white);
}
.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(15, 76, 129, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}
.why-card:hover .why-icon {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-secondary);
    transform: scale(1.1);
}
.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    transition: var(--transition-normal);
}
.why-card p {
    font-size: 0.9rem;
    margin: 0;
    transition: var(--transition-normal);
}

/* --- Section - Industries --- */
.industry-card {
    height: 380px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    box-shadow: var(--shadow-md);
}
.industry-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}
.industry-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 15, 29, 0.95) 0%, rgba(10, 15, 29, 0.4) 60%, transparent 100%);
    z-index: 1;
}
.industry-card:hover .industry-bg {
    transform: scale(1.1);
}
.industry-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
}
.industry-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}
.industry-card:hover .industry-icon {
    background: var(--color-secondary);
    color: var(--color-dark);
    box-shadow: var(--shadow-glow);
}
.industry-content h3 {
    font-size: 1.35rem;
    color: var(--color-white);
    margin-bottom: 8px;
}
.industry-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}
.industry-card:hover .industry-content p {
    max-height: 80px;
    opacity: 1;
}

/* --- Section - Projects & Portfolio --- */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    background-color: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    color: var(--color-dark);
    transition: var(--transition-normal);
}
.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}
.portfolio-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 15, 29, 0.9) 0%, rgba(10, 15, 29, 0.2) 70%, transparent 100%);
    opacity: 0.85;
    z-index: 1;
}
.portfolio-item:hover .portfolio-item-bg {
    transform: scale(1.1);
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--color-white);
}
.portfolio-cat {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-secondary);
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.portfolio-overlay h3 {
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 12px;
}
.portfolio-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 12px;
    transform: translateY(15px);
    opacity: 0;
    transition: var(--transition-normal);
}
.portfolio-item:hover .portfolio-meta {
    transform: translateY(0);
    opacity: 1;
}
.portfolio-details-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    position: absolute;
    top: 24px;
    right: 24px;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-normal);
    z-index: 3;
}
.portfolio-item:hover .portfolio-details-btn {
    opacity: 1;
    transform: scale(1);
}
.portfolio-details-btn:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
    box-shadow: var(--shadow-glow);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 29, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox-content {
    max-width: 900px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-img {
    max-height: 70vh;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.1);
}
.lightbox-caption {
    color: var(--color-white);
    margin-top: 20px;
    text-align: center;
}
.lightbox-caption h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.lightbox-caption p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}
.lightbox-close:hover {
    color: var(--color-secondary);
}

/* --- Section - Process & QA --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.process-grid::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: dashed rgba(15, 76, 129, 0.15);
    z-index: 1;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}
.process-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 3px solid var(--color-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}
.process-step:hover .process-num {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(15, 76, 129, 0.1);
}
.process-step h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.process-step p {
    font-size: 0.85rem;
    padding: 0 10px;
}

/* --- Section - Testimonials --- */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    text-align: center;
}
.testimonial-quote {
    font-size: 1.35rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--color-white);
    margin-bottom: 30px;
    position: relative;
}
.testimonial-quote::before, .testimonial-quote::after {
    content: '"';
    font-size: 4rem;
    font-family: serif;
    position: absolute;
    color: rgba(0, 242, 254, 0.2);
    line-height: 1;
}
.testimonial-quote::before {
    top: -20px;
    left: -20px;
}
.testimonial-quote::after {
    bottom: -50px;
    right: -20px;
}
.testimonial-client {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--color-secondary);
    object-fit: cover;
    box-shadow: var(--shadow-md);
}
.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}
.testimonial-company {
    font-size: 0.8rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.testimonial-rating {
    display: flex;
    gap: 4px;
    color: #FFC107;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
}
.testimonial-dot.active {
    background-color: var(--color-secondary);
    width: 24px;
    border-radius: 4px;
}

/* --- Section - Brands We Work With --- */
.brands-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.7;
}
.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-muted);
    letter-spacing: 1px;
    transition: var(--transition-normal);
}
.brand-logo:hover {
    color: var(--color-primary);
    opacity: 1;
    transform: scale(1.05);
}

/* --- Section - FAQ Preview & Page --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}
.faq-item.active {
    border-color: rgba(15, 76, 129, 0.2);
    box-shadow: var(--shadow-md);
}
.faq-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
}
.faq-trigger h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding-right: 20px;
    transition: var(--transition-normal);
}
.faq-item.active .faq-trigger h3 {
    color: var(--color-primary);
}
.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-dark);
    transition: var(--transition-normal);
}
.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}
.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}
.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}
.faq-item.active .faq-icon::before {
    background-color: var(--color-primary);
}
.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-content {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-muted);
}

/* --- Section - Blog --- */
.blog-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 76, 129, 0.2);
}
.blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}
.blog-card-meta {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 12px;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}
.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-author {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.blog-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.blog-card-body p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* --- Section - Call to Action (CTA) --- */
.cta-banner {
    background: linear-gradient(135deg, var(--color-dark) 0%, #070B19 100%);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
    z-index: 1;
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.cta-content h2 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 800;
}
.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Section - Contact & Maps --- */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--color-light);
    border: 1px solid var(--color-border);
    padding: 30px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 76, 129, 0.15);
}
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.contact-details p {
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-panel {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 45px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.form-group {
    margin-bottom: 24px;
    position: relative;
}
.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-dark);
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    background-color: var(--color-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark);
    transition: var(--transition-fast);
}
.form-control:focus {
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
    outline: none;
}
textarea.form-control {
    height: 120px;
    resize: none;
}

/* Map frame */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Footer --- */
.footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-logo .logo-title {
    color: var(--color-white);
}
.footer-about p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 20px 0;
    line-height: 1.6;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-normal);
}
.footer-social-btn:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.footer-col h3 {
    color: var(--color-white);
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: block;
}
.footer-col ul a:hover {
    color: var(--color-secondary);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}
.footer-contact-item i {
    color: var(--color-secondary);
    margin-top: 4px;
}
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}
.newsletter-form {
    display: flex;
    gap: 8px;
}
.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}
.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-secondary);
}
.newsletter-form .btn {
    padding: 12px 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a:hover {
    color: var(--color-secondary);
}

/* --- Page-specific Headers / Inner Hero --- */
.inner-hero {
    height: 400px;
    background-color: var(--color-dark);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.inner-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}
.inner-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--color-dark) 0%, transparent 100%);
}
.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 90px;
}
.inner-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.breadcrumbs {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}
.breadcrumbs a {
    color: var(--color-secondary);
}
.breadcrumbs i {
    font-size: 0.7rem;
}

/* --- Page Components --- */

/* Timeline (About page) */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--color-border);
    transform: translateX(-50%);
}
.timeline-item {
    margin-bottom: 60px;
    width: 50%;
    position: relative;
    padding-right: 40px;
}
.timeline-item:nth-child(even) {
    align-self: flex-end;
    margin-left: 50%;
    padding-right: 0;
    padding-left: 40px;
}
.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 4px solid var(--color-white);
    position: absolute;
    right: -10px;
    top: 10px;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}
.timeline-content {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 8px;
    display: block;
}
.timeline-content h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

/* Team (About page) */
.team-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 76, 129, 0.2);
}
.team-img {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.6s ease;
}
.team-card:hover .team-img img {
    transform: scale(1.05);
}
.team-socials {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 2;
}
.team-card:hover .team-socials {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.team-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
}
.team-social-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.team-info {
    padding: 24px;
    text-align: center;
}
.team-info h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.team-info p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    font-weight: 600;
}

/* Scroll Animation classes (driven by Intersection Observer) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .mega-menu {
        width: 700px;
    }
    .slide-title {
        font-size: 3.75rem;
    }
}

@media (max-width: 991px) {
    :root {
        --section-padding: 80px 0;
    }
    .navbar {
        height: 80px;
    }
    .top-bar {
        display: none;
    }
    .header {
        top: 0;
    }
    .mobile-toggle {
        display: flex;
    }
    
    /* Nav Menu Mobile */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 20px;
        overflow-y: auto;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-item {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-link {
        width: 100%;
        padding: 10px 0;
        font-size: 1.15rem;
        justify-content: space-between;
    }
    
    /* Dropdowns in Mobile */
    .dropdown-menu, .mega-menu {
        position: static;
        transform: none !important;
        width: 100% !important;
        opacity: 1;
        visibility: visible;
        display: none; /* Controlled by JS toggle */
        background: rgba(255, 255, 255, 0.03);
        border: none;
        padding: 10px 20px;
        margin-top: 10px;
        box-shadow: none;
    }
    .mega-menu {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .dropdown-menu.active, .mega-menu.active {
        display: block;
    }
    .header-ctas {
        display: none;
    }
    
    /* Layouts */
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr 1fr;
    }
    .about-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-images-wrapper {
        padding-right: 0;
        max-width: 600px;
        margin: 0 auto 30px;
    }
    .contact-split {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
    }
    .slide-title {
        font-size: 3rem;
    }
    .hero-floating-cards {
        display: none;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-right: 0;
        padding-left: 45px;
        margin-bottom: 40px;
    }
    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 45px;
    }
    .timeline-dot {
        left: 10px !important;
    }
}

@media (max-width: 767px) {
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-item::after {
        display: none;
    }
    .slide-title {
        font-size: 2.25rem;
    }
    .slide-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .slide-btns {
        flex-direction: column;
        gap: 12px;
    }
    .slide-btns .btn {
        width: 100%;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .cta-banner {
        padding: 50px 24px;
        border-radius: var(--radius-md);
    }
    .cta-content h2 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
    .process-grid::after {
        display: none;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- Classic, Beautiful, & Professional Look Upgrades --- */

/* 1. Header Tablet Responsiveness & Spacing Fixes */
@media (min-width: 992px) and (max-width: 1200px) {
    .nav-link {
        padding: 10px 6px;
        font-size: 0.82rem;
    }
    .nav-menu {
        gap: 2px;
    }
    .logo-title {
        font-size: 0.95rem;
    }
    .header-ctas .btn.btn-secondary {
        display: none !important; /* Hide "Request Quote" on tablet/small screen views to keep header clean and fit buttons */
    }
    .header-ctas {
        gap: 6px;
    }
}

/* 2. Premium Sticky Header styling */
.header.sticky {
    background: rgba(7, 21, 39, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 199, 44, 0.15) !important; /* Elegant gold thin bottom border */
}

/* 3. WhatsApp Button Pulse Glow Animation */
.btn-whatsapp-icon {
    position: relative;
    overflow: hidden;
    animation: whatsappPulse 3s infinite ease-in-out;
}
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 10px rgba(37, 211, 102, 0.2);
        transform: translateY(-2px);
    }
}
.btn-whatsapp-icon:hover {
    animation: none; /* Disable pulse on manual hover */
}

/* 4. Luxury Card lift-up & shadow animations */
.card, .service-card, .product-card, .portfolio-item, .benefit-bullet, .floating-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.service-card:hover, .product-card:hover, .portfolio-item:hover, .benefit-bullet:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 40px rgba(7, 21, 39, 0.12) !important;
    border-color: rgba(255, 199, 44, 0.25) !important;
}

/* 5. Sleek Scroll Indicators and Micro-Animations */
.scroll-indicator {
    transition: opacity 0.3s ease;
}
.scroll-indicator:hover {
    opacity: 1;
}

.logo-icon img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo:hover .logo-icon img {
    transform: scale(1.1) rotate(5deg);
}


/* --- Mobile View & Responsiveness Fixes --- */

/* 1. Header CTAs & Logo adjustments on Mobile (under 991px) */
@media (max-width: 991px) {
    .header-ctas {
        display: flex !important;
        align-items: center;
        gap: 8px;
    }
    .header-ctas .btn.btn-secondary {
        display: none !important; /* Hide Request Quote on mobile */
    }
    .header-ctas .btn-outline-white {
        width: 36px;
        height: 36px;
        border-radius: var(--radius-sm);
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    .btn-whatsapp-icon {
        width: 36px;
        height: 36px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }
    /* Logo scaling on mobile to prevent squishing */
    .logo-title {
        font-size: 0.9rem !important;
    }
    .logo-subtitle {
        display: none !important;
    }
    .logo-icon {
        width: 36px !important;
        height: 36px !important;
    }
    .logo-icon img {
        width: 28px !important;
        height: 28px !important;
    }
}

/* 2. Hero Slider Mobile Overlay & Contrast Adjustments */
@media (max-width: 767px) {
    .slide::after {
        background: linear-gradient(180deg, rgba(7, 21, 39, 0.85) 0%, rgba(7, 21, 39, 0.75) 100%) !important;
    }
    .slide-desc {
        color: rgba(255, 255, 255, 0.85) !important; /* Higher contrast */
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    }
}

/* 3. Slide Transition instant fade-out for inactive elements to prevent overlapping text */
.slide:not(.active) .slide-tag,
.slide:not(.active) .slide-title,
.slide:not(.active) .slide-desc,
.slide:not(.active) .slide-btns {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    transition: opacity 0.15s ease, transform 0.15s ease !important;
}

.slide.active .slide-tag {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition-delay: 0s !important;
}
.slide.active .slide-title {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition-delay: 0.15s !important;
}
.slide.active .slide-desc {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition-delay: 0.3s !important;
}
.slide.active .slide-btns {
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition-delay: 0.45s !important;
}

/* 4. About features column stacking on mobile */
@media (max-width: 767px) {
    .about-features {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
}

/* 5. Portfolio Grid responsiveness (2 cols on tablet, 1 col on mobile) */
@media (max-width: 991px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}
@media (max-width: 575px) {
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* ============================================================
   FLOATING CALL & WHATSAPP BUTTONS — Icon-only circles
   ============================================================ */

.floating-action-btns {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-action-btns.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: visible;
}
.fab-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 28px rgba(0,0,0,0.3);
    color: #ffffff;
}
.fab-btn::before {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(7,21,39,0.92);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.fab-btn:hover::before { opacity: 1; }

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    animation: fabPulseGreen 3s ease-in-out infinite;
}
.fab-whatsapp:hover { background: linear-gradient(135deg, #20c05a 0%, #179043 100%); animation: none; }

.fab-call {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0c3a6a 100%);
    animation: fabPulseBlue 3s ease-in-out infinite;
    animation-delay: 1.5s;
}
.fab-call:hover { background: linear-gradient(135deg, #0a2a4d 0%, #0c3a6a 100%); animation: none; }

@keyframes fabPulseGreen {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
    50%       { box-shadow: 0 4px 24px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.1); }
}
@keyframes fabPulseBlue {
    0%, 100% { box-shadow: 0 4px 16px rgba(14,47,86,0.4); }
    50%       { box-shadow: 0 4px 24px rgba(14,47,86,0.65), 0 0 0 8px rgba(14,47,86,0.1); }
}

@media (max-width: 480px) {
    .floating-action-btns { bottom: 20px; right: 16px; gap: 10px; }
    .fab-btn { width: 48px; height: 48px; font-size: 1.25rem; }
    .fab-btn::before { display: none; }
}
/* ============================================================
   HEADER / NAVBAR IMPROVEMENTS
   ============================================================ */

/* Ensure header starts fully visible with proper background */
.header {
    background: rgba(7, 21, 39, 0.0);
}
.header.sticky {
    background: rgba(7, 21, 39, 0.92) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 199, 44, 0.18) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Inner-page header: always has solid background since there's no full-height hero */
.header.header-solid {
    background: rgba(7, 21, 39, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 199, 44, 0.15) !important;
}

/* Active nav link highlight */
.nav-link.active, 
.nav-item > .nav-link.active {
    color: var(--color-secondary) !important;
}


/* ================================================================
   PREMIUM REDESIGN LAYER — Classic, Beautiful & Professional
   Vaidya Motoglas Ventures — Advanced Animations & Visual Polish
   ================================================================ */

/* ── 1. Enhanced CSS Variables ── */
:root {
    --color-gold-light: #FFD86B;
    --color-primary-light: #1a4a7a;
    --gradient-gold: linear-gradient(135deg, #FFC72C 0%, #FFD86B 50%, #FFC72C 100%);
    --gradient-navy: linear-gradient(135deg, #071527 0%, #0E2F56 50%, #071527 100%);
    --gradient-hero: linear-gradient(135deg, rgba(7,21,39,0.96) 0%, rgba(14,47,86,0.75) 60%, rgba(7,21,39,0.92) 100%);
    --shadow-gold: 0 8px 32px rgba(255, 199, 44, 0.22);
    --shadow-navy: 0 8px 32px rgba(14, 47, 86, 0.28);
    --shadow-card: 0 4px 24px rgba(14,47,86,0.08), 0 1px 4px rgba(14,47,86,0.06);
    --shadow-card-hover: 0 20px 50px rgba(14,47,86,0.16), 0 4px 12px rgba(14,47,86,0.1);
    --border-gold: 1px solid rgba(255,199,44,0.25);
    --anim-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --anim-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── 2. Scroll Progress Bar ── */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 50%, #FFD86B 100%);
    z-index: 10001;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px rgba(255,199,44,0.5);
}

/* ── 3. Enhanced Section Entrances ── */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s var(--anim-smooth), transform 0.8s var(--anim-smooth);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s var(--anim-smooth), transform 0.8s var(--anim-smooth);
}
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--anim-smooth), transform 0.7s var(--anim-smooth);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.7s var(--anim-smooth), transform 0.7s var(--anim-spring);
}
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-up.in-view,
.reveal-scale.in-view {
    opacity: 1;
    transform: none;
}
.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }

/* ── 4. Premium Navbar ── */
.nav-link {
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.3s var(--anim-smooth), left 0.3s var(--anim-smooth);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
    left: 15%;
}
.logo-icon {
    transition: transform 0.5s var(--anim-spring), box-shadow 0.4s ease !important;
}
.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.12) !important;
    box-shadow: 0 6px 20px rgba(255,199,44,0.4) !important;
}

/* ── 5. Premium Button Effects ── */
.btn {
    letter-spacing: 0.3px;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, #0E2F56 0%, #1a4a7a 100%);
    box-shadow: 0 4px 20px rgba(14,47,86,0.3);
}
.btn-primary:hover {
    box-shadow: 0 8px 28px rgba(14,47,86,0.45) !important;
    transform: translateY(-3px) !important;
}
.btn-secondary {
    background: linear-gradient(135deg, #FFC72C 0%, #FFD86B 100%);
    color: #071527 !important;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255,199,44,0.3);
}
.btn-secondary:hover {
    box-shadow: 0 8px 28px rgba(255,199,44,0.5) !important;
    transform: translateY(-3px) !important;
}
.btn-outline {
    border-width: 2px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-outline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s var(--anim-smooth);
    z-index: -1;
}
.btn-outline:hover::after { transform: scaleY(1); }
.btn-outline:hover { color: white !important; transform: translateY(-3px); }

/* ── 6. Premium Cards ── */
.service-card,
.product-card,
.blog-card,
.why-card {
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(14,47,86,0.07);
    transition: transform 0.4s var(--anim-spring),
                box-shadow 0.4s var(--anim-smooth),
                border-color 0.4s ease !important;
}
.service-card:hover,
.product-card:hover,
.blog-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--shadow-card-hover) !important;
    border-color: rgba(255,199,44,0.2) !important;
}

/* Card shimmer on hover */
.service-card::before,
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.07), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 3;
}
.service-card:hover::before,
.product-card:hover::before { left: 150%; }

/* Why Cards (dark section) */
.why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    transition: transform 0.4s var(--anim-spring), background 0.4s ease, border-color 0.4s ease !important;
}
.why-card:hover {
    background: rgba(255,199,44,0.06) !important;
    border-color: rgba(255,199,44,0.25) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}
.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,199,44,0.12) 0%, rgba(14,47,86,0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin: 0 auto 24px;
    border: 1px solid rgba(255,199,44,0.2);
    transition: transform 0.4s var(--anim-spring), background 0.3s ease;
}
.why-card:hover .why-icon {
    transform: scale(1.15) rotate(-6deg);
    background: linear-gradient(135deg, rgba(255,199,44,0.2) 0%, rgba(14,47,86,0.2) 100%);
}
.why-card h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 12px;
    text-align: center;
}
.why-card p {
    text-align: center;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
}

/* ── 7. Stats Bar — Animated Gradient Numbers ── */
.stats-bar {
    background: linear-gradient(135deg, #071527 0%, #0a1e35 50%, #071527 100%);
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,199,44,0.05) 0%, transparent 60%);
    animation: statsGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
}
@keyframes statsGlow {
    from { transform: translateX(-10%) translateY(-10%); }
    to   { transform: translateX(10%) translateY(10%); }
}
.stat-number {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-secondary) 60%, #FFD86B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.75rem !important;
}

/* ── 8. Section Heading Accent Line ── */
.section-header h2 {
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
}
.section-dark .section-header h2::after {
    background: linear-gradient(90deg, var(--color-secondary), #FFD86B);
}

/* ── 9. Gold Subtitle Pill ── */
.section-header .subtitle {
    background: linear-gradient(135deg, rgba(255,199,44,0.1) 0%, rgba(255,199,44,0.06) 100%);
    border: 1px solid rgba(255,199,44,0.3);
    color: var(--color-primary) !important;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.75rem;
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}
.section-dark .section-header .subtitle {
    background: linear-gradient(135deg, rgba(255,199,44,0.12) 0%, rgba(255,199,44,0.06) 100%);
    border-color: rgba(255,199,44,0.3);
    color: var(--color-secondary) !important;
}

/* ── 10. Hero Animated Orbs ── */
.hero-slider::before,
.hero-slider::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
.hero-slider::before {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,199,44,0.08) 0%, transparent 65%);
    top: -150px; left: -100px;
    animation: orbFloat1 8s ease-in-out infinite alternate;
}
.hero-slider::after {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,164,228,0.07) 0%, transparent 65%);
    bottom: -100px; right: -80px;
    animation: orbFloat2 10s ease-in-out infinite alternate;
}
@keyframes orbFloat1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(60px, 40px) scale(1.15); }
}
@keyframes orbFloat2 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-40px, -50px) scale(1.1); }
}

/* ── 11. Portfolio Item hover lift ── */
.portfolio-item {
    cursor: pointer;
    transition: transform 0.4s var(--anim-spring), box-shadow 0.4s ease !important;
}
.portfolio-item:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 24px 50px rgba(7,21,39,0.3) !important;
}
.portfolio-overlay {
    transition: background 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(7,21,39,0.95) 0%, rgba(14,47,86,0.6) 100%);
}

/* ── 12. Industry Cards ── */
.industry-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: transform 0.4s var(--anim-spring), box-shadow 0.4s ease !important;
}
.industry-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--shadow-card-hover) !important;
}
.industry-bg {
    transition: transform 0.6s ease !important;
}
.industry-card:hover .industry-bg {
    transform: scale(1.08) !important;
}
.industry-icon {
    transition: transform 0.4s var(--anim-spring), background 0.3s ease;
}
.industry-card:hover .industry-icon {
    transform: scale(1.2) rotate(-5deg);
    background: var(--color-secondary) !important;
    color: var(--color-dark) !important;
}

/* ── 13. CTA Banner ── */
.cta-banner {
    position: relative;
    overflow: hidden;
}
.cta-banner::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255,199,44,0.07) 0%, transparent 65%);
    border-radius: 50%;
    animation: ctaOrb 7s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}
@keyframes ctaOrb {
    from { transform: translateY(0) scale(1); }
    to   { transform: translateY(30px) scale(1.15); }
}

/* ── 14. Footer Upgrade ── */
.footer {
    background: linear-gradient(180deg, #071527 0%, #050e1c 100%);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,199,44,0.4), transparent);
}
.footer-social-btn {
    transition: transform 0.35s var(--anim-spring),
                background 0.3s ease,
                box-shadow 0.3s ease !important;
}
.footer-social-btn:hover {
    transform: translateY(-4px) scale(1.12) !important;
    box-shadow: 0 6px 18px rgba(255,199,44,0.3) !important;
}
.footer-col ul a {
    position: relative;
    padding-left: 0;
    transition: color 0.25s ease, padding-left 0.25s ease !important;
}
.footer-col ul a::before {
    content: '→';
    position: absolute;
    left: -16px;
    opacity: 0;
    transition: opacity 0.25s ease, left 0.25s ease;
    color: var(--color-secondary);
    font-size: 0.85rem;
}
.footer-col ul a:hover {
    padding-left: 16px !important;
    color: var(--color-secondary) !important;
}
.footer-col ul a:hover::before {
    opacity: 1;
    left: 0;
}

/* ── 15. Team Card Animation ── */
.team-card {
    transition: transform 0.4s var(--anim-spring), box-shadow 0.4s ease !important;
}
.team-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--shadow-card-hover) !important;
}

/* ── 16. Contact Card Lift ── */
.contact-card {
    transition: transform 0.4s var(--anim-spring), box-shadow 0.4s ease, border-color 0.3s ease !important;
}
.contact-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow-card-hover) !important;
    border-color: rgba(255,199,44,0.25) !important;
}
.contact-icon {
    transition: transform 0.4s var(--anim-spring), background 0.3s ease;
}
.contact-card:hover .contact-icon {
    transform: scale(1.12) rotate(-5deg);
    background: var(--color-secondary) !important;
    color: var(--color-dark) !important;
}

/* ── 17. Image Parallax Overlay ── */
.about-img-main {
    overflow: hidden;
    position: relative;
}
.about-img-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,47,86,0.08) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.about-img-main:hover::after { opacity: 0; }

/* ── 18. Testimonial Slider Polish ── */
.testimonial-slide {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-md);
    margin: 0 10px;
}
.testimonial-img {
    box-shadow: 0 4px 16px rgba(255,199,44,0.25);
    transition: transform 0.4s var(--anim-spring) !important;
}
.testimonial-img:hover { transform: scale(1.08) !important; }

/* ── 19. FAQ Accordion Polish ── */
.faq-item {
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.faq-item.active {
    box-shadow: 0 8px 28px rgba(14,47,86,0.1) !important;
    border-color: rgba(255,199,44,0.25) !important;
}
.faq-trigger:hover h3 { color: var(--color-primary); }

/* ── 20. Brand Logo Hover ── */
.brand-logo {
    transition: transform 0.35s var(--anim-spring), color 0.3s ease, letter-spacing 0.3s ease !important;
}
.brand-logo:hover {
    color: var(--color-primary) !important;
    transform: translateY(-4px) scale(1.06) !important;
    letter-spacing: 2px !important;
}

/* ── 21. Inner Hero Improvements ── */
.inner-hero {
    background: linear-gradient(135deg, #071527 0%, #0E2F56 100%);
}
.inner-hero-content h1 {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTextIn 0.9s var(--anim-smooth) both;
}
@keyframes heroTextIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.breadcrumbs {
    animation: heroTextIn 0.9s var(--anim-smooth) 0.2s both;
}

/* ── 22. Top Bar Hover Effect ── */
.top-bar-info a:hover { color: var(--color-secondary) !important; }

/* ── 23. Scroll Indicator Pulse ── */
.scroll-indicator {
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
    50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* ── 24. Page Section Dividers (subtle wave) ── */
.section-wave-top {
    position: relative;
}
.section-wave-top::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,199,44,0.3), var(--color-secondary), rgba(255,199,44,0.3), transparent);
    border-radius: 0 0 4px 4px;
}

/* ── 25. Gold Glow on Key Borders ── */
.cta-banner,
.quote-form-panel,
.contact-form-panel {
    border: 1px solid rgba(255,199,44,0.08) !important;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.cta-banner:hover,
.quote-form-panel:hover,
.contact-form-panel:hover {
    border-color: rgba(255,199,44,0.18) !important;
    box-shadow: 0 0 40px rgba(255,199,44,0.05) !important;
}

/* ── 26. Filter Buttons ── */
.filter-btn {
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--anim-spring), box-shadow 0.3s ease !important;
}
.filter-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(14,47,86,0.15) !important;
}
.filter-btn.active {
    box-shadow: 0 4px 16px rgba(14,47,86,0.2) !important;
}

/* ── 27. Timeline Item Entrance ── */
.timeline-content {
    transition: transform 0.4s var(--anim-spring), box-shadow 0.4s ease, border-color 0.3s ease;
}
.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(14,47,86,0.12);
    border-color: rgba(255,199,44,0.2);
}
.timeline-dot {
    transition: transform 0.35s var(--anim-spring), box-shadow 0.35s ease;
}
.timeline-item:hover .timeline-dot {
    transform: scale(1.4) !important;
    box-shadow: 0 0 0 6px rgba(14,47,86,0.12);
}

/* ── 28. Input Focus Gold Ring ── */
.form-control:focus {
    border-color: var(--color-secondary) !important;
    box-shadow: 0 0 0 3px rgba(255,199,44,0.15) !important;
}

/* ── 29. Header CTA Button Glow ── */
.header-ctas .btn-secondary {
    animation: headerBtnPulse 4s ease-in-out infinite;
}
@keyframes headerBtnPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(255,199,44,0.2); }
    50%       { box-shadow: 0 4px 24px rgba(255,199,44,0.45); }
}
.header-ctas .btn-secondary:hover { animation: none; }

/* ── 30. Smooth Image Load ── */
img {
    transition: opacity 0.4s ease;
}
img.loaded { opacity: 1; }
