:root {
    /* Brand Colors derived from Logo */
    --primary-blue: #1A1464;     /* Deep Navy from Logo */
    --secondary-blue: #2E3192;   /* Bright Navy */
    --light-blue: #4046CC;       /* Light Navy Hover */
    --primary-orange: #F58220;   /* Vibrant Orange from Logo */
    --hover-orange: #E06D10;
    
    /* Layout Colors */
    --background-dark: #1A1464;
    --background-base: #F8F9FA;  
    --background-light: #FFFFFF;
    --text-main: #2A2A2A;        
    --text-muted: #6C757D;       
    --white: #ffffff;

    /* Gradients matching logo vibrancy */
    --gradient-orange: linear-gradient(135deg, #F58220 0%, #FF9E4A 100%);
    --gradient-blue: linear-gradient(135deg, #1A1464 0%, #2E3192 100%);
    --gradient-bg: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);

    /* Soft Brand Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 20, 100, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 20, 100, 0.08);
    --shadow-lg: 0 12px 48px rgba(26, 20, 100, 0.12);
    --shadow-glow-orange: 0 8px 24px rgba(245, 130, 32, 0.25);
    --shadow-glow-blue: 0 8px 24px rgba(46, 49, 146, 0.25);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);

    /* Fonts */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px 0; /* Huge, generous whitespace */
    --border-radius: 24px;      /* Softer, more rounded */
    --radius-round: 50px;
    --transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0b1063 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner {
    text-align: center;
}
.preloader-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 120, 0, 0.3);
    animation: preloaderPulse 1.5s ease-in-out infinite;
    margin-bottom: 20px;
}
.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-bar::after {
    content: '';
    display: block;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), #ff9d00, var(--primary-orange));
    animation: preloaderSlide 1.2s ease-in-out infinite;
    border-radius: 3px;
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.8; }
}
@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(280%); }
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--background-base);
    -webkit-font-smoothing: antialiased;
}

body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-orange { color: var(--primary-orange); }
.text-blue { color: var(--primary-blue); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

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

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

.section-padding {
    padding: var(--section-padding);
}

/* ============================================
   ANIMATED SECTION TITLES
   ============================================ */
.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
    color: var(--primary-blue); /* #1D1D1F */
    padding-bottom: 5px;
}

/* Specific override for Hero and About Company to be Orange */
.hero-title-om,
.about .section-title {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 4px;
    box-shadow: var(--shadow-glow-orange);
    transition: width 0.4s ease;
}

.section-title:hover::after {
    width: 100px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.text-center { text-align: center; }
.bg-light { background-color: var(--background-light); }
.bg-dark { background-color: var(--background-dark); }
.w-100 { width: 100%; }

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.12) 0%, transparent 50%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: screen;
}
.cursor-glow.visible {
    opacity: 1;
}

/* ============================================
   BUTTONS — BRAND HOVER EFFECTS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--gradient-orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-round);
    border: none;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-glow-orange);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #FF9E4A 0%, #F58220 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}
.btn-primary:hover {
    color: var(--white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(245, 130, 32, 0.45);
}
.btn-primary:hover::before {
    opacity: 1;
}
.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background-color: var(--glass-bg);
    backdrop-filter: blur(8px);
    color: var(--secondary-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: var(--radius-round);
    border: 2px solid var(--secondary-blue);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary-outline:hover {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-2px);
    border-color: transparent;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background-color: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: var(--radius-round);
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}
.btn-secondary:hover::before {
    left: 100%;
}
.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* ============================================
   HEADER — GLASSMORPHISM NAV
   ============================================ */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    border-radius: 50px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(11, 16, 99, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
header.header-scrolled {
    top: 10px;
    width: 98%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 50px rgba(11, 16, 99, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
}
header.header-scrolled .nav-container {
    padding: 8px 30px;
}
header.header-scrolled .logo-img {
    height: 38px;
}

.nav-container {
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.4s ease;
}

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

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

/* Actual Logo Image */
.logo-img {
    height: 45px;
    width: auto;
    border-radius: 50%;
    object-fit: contain;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(11, 16, 99, 0.1);
}
.logo:hover .logo-img {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-blue);
    position: relative;
    padding: 5px 0;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gradient-orange);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.nav-active::after {
    width: 100%;
}
.nav-links a:hover {
    color: var(--secondary-blue);
}
.nav-links a.nav-active {
    color: var(--secondary-blue);
    font-weight: 600;
}

.nav-links a.btn-primary-outline {
    color: var(--secondary-blue);
    padding: 12px 32px; /* Restores and slightly increases the outer line padding */
}
.nav-links a.btn-primary-outline::after {
    display: none;
}
.nav-links a.btn-primary-outline:hover {
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   HERO — IMMERSIVE FULL-SCREEN
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: heroZoom 20s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(245, 130, 32, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(46, 49, 146, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, rgba(26, 20, 100, 0.92) 0%, rgba(10, 10, 30, 0.85) 100%);
    z-index: -1;
}

/* Hero Floating Particles */
.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.15);
    animation: particleFloat linear infinite;
}
.hero-particle:nth-child(1) { width: 6px; height: 6px; left: 10%; animation-duration: 15s; animation-delay: 0s; }
.hero-particle:nth-child(2) { width: 4px; height: 4px; left: 25%; animation-duration: 20s; animation-delay: 2s; background: rgba(37, 99, 235, 0.2); }
.hero-particle:nth-child(3) { width: 8px; height: 8px; left: 40%; animation-duration: 18s; animation-delay: 4s; }
.hero-particle:nth-child(4) { width: 5px; height: 5px; left: 55%; animation-duration: 22s; animation-delay: 1s; background: rgba(255, 255, 255, 0.1); }
.hero-particle:nth-child(5) { width: 3px; height: 3px; left: 70%; animation-duration: 16s; animation-delay: 3s; }
.hero-particle:nth-child(6) { width: 7px; height: 7px; left: 85%; animation-duration: 19s; animation-delay: 5s; background: rgba(249, 115, 22, 0.15); }
.hero-particle:nth-child(7) { width: 4px; height: 4px; left: 95%; animation-duration: 14s; animation-delay: 0s; }
.hero-particle:nth-child(8) { width: 5px; height: 5px; left: 5%; animation-duration: 21s; animation-delay: 6s; background: rgba(255, 255, 255, 0.08); }

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    max-width: 850px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    margin-bottom: 25px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 6.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.05;
    letter-spacing: -2px;
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.hero-title-om {
    color: var(--primary-orange);
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px rgba(245, 130, 32, 0.4));
}

.hero-title-ind {
    background: none;
    color: #FFFFFF;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    font-size: 5.8rem;
    letter-spacing: -2px; /* Apple tight spacing */
    filter: none;
}

.hero-divider {
    display: none; /* No dividers in minimal design */
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

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

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounceScroll 2s ease-in-out infinite;
}
.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}
.hero-scroll-indicator .scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}
.hero-scroll-indicator .scroll-mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 3px;
    animation: scrollDot 1.5s ease-in-out infinite;
}
@keyframes scrollDot {
    0% { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}
@keyframes bounceScroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   ANIMATIONS — ENTRANCE
   ============================================ */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    filter: blur(5px);
    transition: all 0.3s ease-out;
    will-change: transform, opacity, filter;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.9); }
.reveal.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translate(0) scale(1);
}

/* ============================================
   ABOUT SECTION — PREMIUM LAYOUT
   ============================================ */
.about {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2fa 100%);
}
.about::before {
    content: '';
    position: absolute;
    top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,120,0,0.12) 0%, transparent 60%);
    z-index: 0;
}
.about::after {
    content: '';
    position: absolute;
    bottom: -10%; left: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(11,16,99,0.08) 0%, transparent 60%);
    z-index: 0;
}
.about .container {
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.85;
    font-weight: 500;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.check-icon {
    color: var(--primary-orange);
    font-weight: 800;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 8px 32px rgba(11, 16, 99, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient-orange);
    transition: var(--transition);
}

/* Animated gradient border accent */
.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 120, 0, 0.04) 100%);
    transition: height 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(11, 16, 99, 0.12);
}

.stat-card:hover::before {
    height: 5px;
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.4);
}

.stat-card:hover::after {
    height: 100%;
}

.stat-card h3 {
    font-size: 3rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-card p {
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Director info */
.director-info {
    position: relative;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-orange);
    background: rgba(255, 120, 0, 0.03);
    border-radius: 0 12px 12px 0;
}

/* ============================================
   SERVICES / PROJECTS (kept for compatibility)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 16, 99, 0.2);
    transition: var(--transition);
}

.service-card:hover .service-img::after {
    background: rgba(11, 16, 99, 0.0);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-muted);
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.project-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(11, 16, 99, 0.9), rgba(11, 16, 99, 0.2));
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.project-overlay h3 {
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
    margin-bottom: 0;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover .project-overlay h3 {
    transform: translateY(0);
}

/* ============================================
   CONTACT (legacy grid, kept for compat)
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact .section-title {
    color: var(--white);
}

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

.info-item .icon {
    font-size: 2rem;
}

.info-item h4 {
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.info-item p {
    color: #cbd5e1;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 120, 0, 0.1);
}

/* ============================================
   VISION & MISSION — SPLIT GLASS BLOCKS
   ============================================ */
.vision-mission {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding);
    background: #f8fafc; /* Very light slate background for contrast */
}
.vision-mission::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(255,120,0,0.02) 0deg, transparent 90deg, rgba(11,16,99,0.02) 180deg, transparent 270deg);
    animation: rotateBg 30s linear infinite;
    z-index: 0;
}
@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vm-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px; /* Add gap between boxes */
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .vm-container {
        flex-direction: column;
    }
}

.vm-box {
    flex: 1;
    padding: 50px 40px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-radius: 24px; /* Soft modern corners */
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    overflow: hidden;
}

.vm-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.vm-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

/* Specific styling for Vision */
.vm-vision {
    background: linear-gradient(135deg, rgba(236, 244, 255, 1) 0%, #ffffff 100%);
    border-top: 4px solid var(--primary-blue);
}
.vm-vision .vm-icon {
    background: linear-gradient(135deg, rgba(11, 16, 99, 0.1), rgba(11, 16, 99, 0.02));
    color: var(--primary-blue);
    border: 1px solid rgba(11, 16, 99, 0.1);
}
.vm-vision h2 {
    color: var(--primary-blue);
}

/* Specific styling for Mission */
.vm-mission {
    background: linear-gradient(135deg, rgba(255, 243, 230, 1) 0%, #ffffff 100%);
    border-top: 4px solid var(--primary-orange);
}
.vm-mission .vm-icon {
    background: linear-gradient(135deg, rgba(255, 120, 0, 0.1), rgba(255, 120, 0, 0.02));
    color: var(--primary-orange);
    border: 1px solid rgba(255, 120, 0, 0.1);
}
.vm-mission h2 {
    color: var(--primary-orange);
}

.vm-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.vm-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.vm-box:hover .vm-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ============================================
   COMPANY POLICY — ARROW TIMELINE
   ============================================ */
.policy {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0 40px;
}

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

.policy-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.policy-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.policy-card:hover .policy-icon {
    transform: scale(1.1) rotate(5deg);
}

.policy-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: inherit;
    opacity: 0.6;
    font-weight: bold;
}

/* Specific Card Backgrounds for Neat Premium Look */
.card-qa {
    background: linear-gradient(135deg, rgba(255, 243, 230, 1) 0%, #ffffff 100%);
    border-top: 4px solid var(--primary-orange);
}
.card-qf {
    background: linear-gradient(135deg, rgba(236, 244, 255, 1) 0%, #ffffff 100%);
    border-top: 4px solid var(--primary-blue);
}
.card-ot {
    background: linear-gradient(135deg, rgba(230, 255, 240, 1) 0%, #ffffff 100%);
    border-top: 4px solid #2ecc71;
}
.card-ce {
    background: linear-gradient(135deg, rgba(245, 235, 255, 1) 0%, #ffffff 100%);
    border-top: 4px solid #9b59b6;
}

/* Responsive handling */
@media (max-width: 991px) {
    .vm-container { flex-direction: column; }
}

/* =========================================
   SLIDE-MATCHING SECTIONS CSS — PREMIUM
   ========================================= */

/* --- Section Backgrounds --- */
.slide-section {
    background: linear-gradient(135deg, #e8eff9 0%, #dce6f5 50%, #d0ddef 100%);
    position: relative;
    overflow: hidden;
}
.slide-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 120, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(11, 16, 99, 0.03) 0%, transparent 50%);
    z-index: 0;
}
.slide-section > .container {
    position: relative;
    z-index: 1;
}

.slide-section-dark {
    background: #020617; /* Very deep blue/black */
    position: relative;
    overflow: hidden;
}
.slide-section-dark::before {
    content: '';
    position: absolute;
    top: -20%; left: -20%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.1) 0%, transparent 60%);
    animation: orbDrift 18s ease-in-out infinite alternate;
    z-index: 0;
}
.slide-section-dark::after {
    content: '';
    position: absolute;
    bottom: -20%; right: -20%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(11, 16, 99, 0.3) 0%, transparent 60%);
    animation: orbDriftReverse 22s ease-in-out infinite alternate;
    z-index: 0;
}

/* --- Section Title --- */
.slide-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0b1063 0%, #1a5d9e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}
.slide-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 4px;
}

.slide-title-dark {
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* --- Grid Layouts --- */
.slide-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.slide-grid-5 .slide-card { width: 175px; }
.slide-grid-4 .slide-card { width: 210px; }
.slide-grid-3 .slide-card { width: 250px; }

/* --- Card (each item) --- */
.slide-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.slide-card:hover {
    transform: translateY(-12px) scale(1.02);
    filter: drop-shadow(0 15px 30px rgba(11, 16, 99, 0.15));
    z-index: 10;
}

/* --- Circle Image Wrap (shared) --- */
.slide-circle-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    /* No overflow: hidden; so the image corners don't get cut */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #dce6f0 100%);
    position: relative;
    z-index: 2;
    margin-bottom: -30px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.slide-card:hover .slide-circle-wrap {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    border-color: #ff7800; /* Add brand color on hover */
}
.slide-circle-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 8px; /* Soften the corners of the original rectangular photos */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.5s ease, filter 0.5s ease;
}
.slide-card:hover .slide-circle-img {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)) brightness(1.05);
}

/* Icon-based circles (facility/quality) */
.slide-circle-icon {
    font-size: 2.8rem;
    color: #0b1063;
    transition: all 0.4s ease;
}
.slide-card:hover .slide-circle-icon {
    color: #ff7800;
    transform: scale(1.15);
}

/* --- Product circle: orange border with glow --- */
.product-border {
    border: 4px solid #ff7800;
    box-shadow: 0 5px 15px rgba(255, 120, 0, 0.15);
}
.slide-card:hover .product-border {
    box-shadow: 0 8px 25px rgba(255, 120, 0, 0.35);
}

/* --- Product label --- */
.product-label-style {
    background: linear-gradient(135deg, #19528d, #1a5d9e);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    text-align: center;
    padding: 38px 12px 14px;
    border-radius: 14px;
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(25, 82, 141, 0.3);
    box-shadow: 0 5px 20px rgba(25, 82, 141, 0.15);
    transition: all 0.4s ease;
}
.slide-card:hover .product-label-style {
    box-shadow: 0 8px 25px rgba(25, 82, 141, 0.25);
    background: linear-gradient(135deg, #1a5d9e, #2070b5);
}

/* ============================================
/* ============================================
   APPLICATIONS SECTION - PREMIUM GRID LAYOUT
   ============================================ */
.applications-section {
    background: #020617; /* Deep, modern dark background */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.applications-section::before {
    content: '';
    position: absolute;
    top: -20%; left: -20%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.08) 0%, transparent 60%);
    animation: orbDrift 18s ease-in-out infinite alternate;
    z-index: 0;
}

.applications-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0b1063 0%, #1a5d9e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    z-index: 2;
}
.applications-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff7800, #fca240);
    border-radius: 4px;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Glassmorphism Card */
.app-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 25px 20px 0; /* No bottom padding so the label touches the edge */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-card:hover {
    transform: translateY(-12px) scale(1.03);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 120, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 120, 0, 0.15);
}

/* Image Circle */
.app-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #ffffff;
    padding: 18px; /* Ensures image is fully contained */
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3), inset 0 0 0 3px rgba(11, 16, 99, 0.1);
    margin-bottom: 25px;
    transition: transform 0.4s ease, border-color 0.4s ease;
    border: 3px solid rgba(25, 82, 141, 0.6);
}

.app-card:hover .app-circle {
    transform: scale(1.08);
    border-color: #ff7800;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4), inset 0 0 0 3px rgba(255, 120, 0, 0.1);
}

.app-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Card Label (p tag) */
.app-card p {
    margin: auto 0 0 0; /* Pushes to bottom */
    width: calc(100% + 40px); /* Extend past the 20px padding of the card */
    background: linear-gradient(135deg, #0b1063, #1a5d9e);
    color: #ffffff;
    text-align: center;
    padding: 18px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.3;
    border-radius: 0 0 24px 24px;
    transition: background 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 65px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.app-card:hover p {
    background: linear-gradient(135deg, #ff7800, #fca240);
}

/* Responsive */
@media (max-width: 1024px) {
    .app-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .app-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* --- Facility circle: dark blue border --- */
.facility-border {
    border: 4px solid #19528d;
    box-shadow: 0 5px 15px rgba(25, 82, 141, 0.15);
}
.slide-card:hover .facility-border {
    box-shadow: 0 8px 25px rgba(25, 82, 141, 0.3);
    border-color: #2070b5;
}

/* --- Facility label --- */
.facility-label-style {
    background: linear-gradient(135deg, #fca240 0%, #f5a623 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: center;
    padding: 38px 10px 14px;
    border-radius: 14px;
    width: 100%;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(252, 162, 64, 0.2);
    transition: all 0.4s ease;
}
.slide-card:hover .facility-label-style {
    background: linear-gradient(135deg, #ff9d00 0%, #fca240 100%);
    box-shadow: 0 8px 25px rgba(252, 162, 64, 0.35);
}

/* ============================================
   CUSTOMERS SECTION — PREMIUM TAGS
   ============================================ */
.customers {
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
    position: relative;
    padding-bottom: 80px;
}
.customers::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Super neat tech dot grid pattern */
    background-image: radial-gradient(rgba(25, 82, 141, 0.12) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    z-index: 0;
}

.customers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}
.customer-tag {
    display: flex;
    align-items: center;
    height: 70px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 320px;
    background: linear-gradient(135deg, #0b1063 0%, #161e8a 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}
.customer-tag.standalone { margin-top: 10px; }
.customer-tag:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11, 16, 99, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}
.customer-tag::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--primary-orange);
    border-radius: 20px 0 0 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.customer-tag:hover::before {
    opacity: 1;
}

.customer-icon {
    font-size: 1.3rem;
    color: var(--primary-orange);
    margin-right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 120, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customer-name {
    flex: 1;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    font-family: var(--font-body);
    letter-spacing: 0.2px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .slide-grid-5 .slide-card,
    .slide-grid-4 .slide-card {
        width: 140px;
    }
    .slide-circle-wrap {
        width: 100px;
        height: 100px;
        margin-bottom: -25px;
    }
    .slide-title {
        font-size: 1.6rem;
    }
}

/* =============================================
   CABLES & CONNECTORS SECTION — PREMIUM DARK
   ============================================= */
.cc-section {
    position: relative;
    background: #020617; /* Deep modern dark */
    padding: 80px 0 35px;
    overflow: hidden;
}

.cc-section::before {
    content: '';
    position: absolute;
    top: -30%; left: -10%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.15) 0%, transparent 60%);
    animation: orbDrift 15s ease-in-out infinite alternate;
    z-index: 0;
}
.cc-section::after {
    content: '';
    position: absolute;
    bottom: -30%; right: -10%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(11, 16, 99, 0.4) 0%, transparent 60%);
    animation: orbDriftReverse 20s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes orbDrift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}
@keyframes orbDriftReverse {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, -50px) scale(1.2); }
}

.cc-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='100' height='100' fill='none'/%3E%3Cline x1='0' y1='0' x2='100' y2='100' stroke='rgba(255,255,255,0.02)' stroke-width='1'/%3E%3Cline x1='100' y1='0' x2='0' y2='100' stroke='rgba(255,255,255,0.02)' stroke-width='1'/%3E%3C/svg%3E");
    z-index: 1;
}
.cc-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    display: inline-block;
}
.cc-main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 4px;
}
.cc-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 950px;
    margin: 0 auto;
}
.cc-card {
    flex: 1;
    min-width: 320px;
    max-width: 440px;
}
.cc-card-header {
    display: inline-block;
    background: linear-gradient(135deg, #ff7800 0%, #fca240 100%);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 10px 35px;
    border-radius: 25px;
    margin-bottom: -1px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
    border: 2px solid rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
}
.cc-card-body {
    background: linear-gradient(150deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 28px 24px 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.1);
}
.cc-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    transition: all 0.3s ease;
}
.cc-row:hover {
    transform: translateX(10px);
}
.cc-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: linear-gradient(135deg, #ff7800, #fca240);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    box-shadow: 0 3px 8px rgba(255, 120, 0, 0.3);
}
.cc-text {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Bottom accent bars for sections */
.cc-bottom-bar {
    display: flex;
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
}
.cc-bar-blue {
    flex: 4;
    background: linear-gradient(90deg, #0b1063, #19528d);
}
.cc-bar-orange {
    flex: 2;
    background: linear-gradient(90deg, #ff7800, #fca240);
}
.cc-bar-yellow {
    flex: 1;
    background: linear-gradient(90deg, #ffc107, #ffd54f);
}

/* =============================================
   CERTIFICATIONS SECTION — FLOATING HEX BADGES
   ============================================= */
.cert-section {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); /* Premium light theme */
    padding: 80px 0 35px;
    overflow: hidden;
}

.cert-section::before {
    content: '';
    position: absolute;
    top: -20%; left: -20%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(11, 16, 99, 0.08) 0%, transparent 60%);
    animation: orbDrift 18s ease-in-out infinite alternate-reverse;
    z-index: 0;
}
.cert-section::after {
    content: '';
    position: absolute;
    bottom: -20%; right: -20%;
    width: 60%; height: 120%;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.08) 0%, transparent 60%);
    animation: orbDriftReverse 22s ease-in-out infinite alternate-reverse;
    z-index: 0;
}

.cert-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='80' height='80' fill='none'/%3E%3Cpath d='M0,40 L40,0 L80,40 L40,80Z' stroke='rgba(15,23,42,0.03)' fill='none'/%3E%3C/svg%3E");
    z-index: 1;
}
.cert-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    font-style: italic;
    color: #0f172a; /* Dark slate for light bg */
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    display: inline-block;
}
.cert-main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 4px;
}

.cert-badges-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 auto 30px;
    max-width: 850px;
}
.cert-badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 220px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cert-badge-card:hover {
    transform: translateY(-12px) scale(1.02);
}

/* Image badge shapes */
.cert-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border: 4px solid #ffffff;
}
.cert-badge-card:hover .cert-img {
    filter: drop-shadow(0 15px 30px rgba(255, 120, 0, 0.4));
    transform: scale(1.05);
    border-color: var(--primary-orange);
}

.cert-hex-silver {
    background: transparent;
}
.cert-hex-silver::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(145deg, #b8c6d6 0%, #8a9db5 30%, #6b82a0 60%, #b8c6d6 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}
.cert-hex-gold::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(145deg, #d4a843 0%, #c49a34 30%, #b88c28 60%, #d4a843 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 1;
}
.cert-hex-inner {
    width: 118px;
    height: 118px;
    background: linear-gradient(145deg, #e8edf4 0%, #d5dde8 50%, #c0ccdb 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.cert-hex-inner-gold {
    background: linear-gradient(145deg, #f5d978 0%, #e8c84a 50%, #dbb93c 100%);
}
.cert-emblem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2px;
    padding: 8px;
}
.cert-emblem i {
    font-size: 1.5rem;
    color: #19528d;
    margin-bottom: 3px;
}
.cert-emblem-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: #19528d;
    letter-spacing: 1px;
}
.cert-emblem-iso {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #19528d;
    line-height: 1;
}
.cert-emblem-num {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #19528d;
    line-height: 1.2;
}
.cert-emblem-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.55rem;
    color: #4a6a8a;
    line-height: 1.2;
    letter-spacing: 0.5px;
}
.cert-emblem-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.55rem;
    color: #4a6a8a;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
.cert-emblem-iatf {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #19528d;
    line-height: 1;
}
.cert-emblem-iec {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #c0392b;
    line-height: 1;
}
.cert-emblem-iec-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.5rem;
    color: #c0392b;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* NSIC triangle logo */
.nsic-triangle {
    width: 35px;
    height: 30px;
    position: relative;
    margin-bottom: 4px;
}
.nsic-tri-red {
    width: 0; height: 0;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-bottom: 15px solid #e74c3c;
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
}
.nsic-tri-green {
    width: 0; height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 10px solid #27ae60;
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
}
.nsic-tri-orange {
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 7px solid #f39c12;
    position: absolute;
    top: 9px; left: 50%;
    transform: translateX(-50%);
}

/* Certification orange label */
.cert-label {
    background: linear-gradient(135deg, #ff7800 0%, #fca240 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 20px;
    text-align: center;
    min-width: 160px;
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
    line-height: 1.3;
    transition: all 0.3s ease;
}
.cert-badge-card:hover .cert-label {
    box-shadow: 0 6px 20px rgba(255, 120, 0, 0.5);
}

/* =============================================
   CONTACT / THANK YOU SECTION
   ============================================= */
.contact-final {
    position: relative;
    background: linear-gradient(135deg, #c8d8ed 0%, #b8cce4 40%, #a3bbd4 100%);
    padding: 80px 0 35px;
    overflow: hidden;
    min-height: 500px;
}
.contact-map-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    opacity: 0.6;
}
.contact-map-bg svg {
    width: 100%;
    height: 100%;
}
.contact-final-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin-bottom: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}
.contact-info-side {
    text-align: left;
    align-self: flex-start;
    width: 100%;
}
.contact-title-bold {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    font-style: italic;
    color: #0b1063;
    margin-bottom: 2rem;
}
.contact-info-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.contact-info-row:hover {
    transform: translateX(5px);
}
.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #0b1063, #19528d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(11, 16, 99, 0.2);
    transition: all 0.3s ease;
}
.contact-info-row:hover .contact-info-icon {
    background: linear-gradient(135deg, #ff7800, #fca240);
    box-shadow: 0 4px 15px rgba(255, 120, 0, 0.3);
    transform: scale(1.08);
}
.contact-info-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a2e;
}
.contact-link {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-link:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}
.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    margin-left: 0;
    padding: 10px 24px;
    background: linear-gradient(135deg, #ff7800 0%, #fca240 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.3);
}
.map-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 120, 0, 0.45);
    color: #fff;
}

/* Thank You side */
.contact-thankyou-side {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.thankyou-image-container {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(11, 16, 99, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid rgba(255, 255, 255, 0.2);
    animation: floatGlobe 6s ease-in-out infinite;
}

@keyframes floatGlobe {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.thankyou-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s ease;
}

.thankyou-image-container:hover .thankyou-bg-img {
    transform: scale(1.05);
}

.thankyou-image-overlay {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 20px 30px;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.thankyou-image-container:hover .thankyou-image-overlay {
    transform: scale(1.08);
}

.thankyou-heading-new {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    letter-spacing: 2px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.9)) drop-shadow(0 0 20px rgba(0,0,0,0.7));
}

/* Contact form / WhatsApp section wrapper */
.contact-form-wrap {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 380px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    align-self: center;
    text-align: center;
}

/* WhatsApp QR Card */
.whatsapp-qr-card {
    background: linear-gradient(135deg, #25D366, #075E54);
    border-radius: 24px;
    overflow: hidden;
    margin: 20px auto 20px;
    max-width: 320px;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}
.whatsapp-qr-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    animation: qrShine 4s infinite;
    pointer-events: none;
    z-index: 10;
}
@keyframes qrShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
.whatsapp-qr-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.45);
}
.whatsapp-qr-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}
.whatsapp-qr-header i {
    font-size: 1.5rem;
}
.whatsapp-qr-body {
    background: #fff;
    margin: 0 8px 8px;
    border-radius: 18px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
}
.whatsapp-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 2px;
}
.whatsapp-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 22px;
}
.whatsapp-qr-img {
    position: relative;
    display: inline-block;
    padding: 12px;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.06), 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.whatsapp-qr-img img {
    display: block;
    border-radius: 8px;
}
.whatsapp-qr-card:hover .whatsapp-qr-img {
    transform: scale(1.05);
}
.whatsapp-qr-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    border: 4px solid #fff;
}
.whatsapp-scan-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 18px;
    line-height: 1.5;
    font-weight: 500;
}
.whatsapp-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 14px 38px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}
.whatsapp-link-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}
.whatsapp-link-btn:hover::before {
    left: 100%;
}
.whatsapp-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
    color: #fff;
}
.whatsapp-link-btn i {
    font-size: 1.3rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff7800;
    box-shadow: 0 0 0 4px rgba(255,120,0,0.1);
}

/* Google Maps container */
.map-container {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.map-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-top: 15px;
}
.map-wrap iframe {
    display: block;
    width: 100%;
    min-height: 350px;
}
.map-overlay-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 380px;
    z-index: 10;
}
.map-pin {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #ff7800, #f5a623);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(255,120,0,0.3);
}
.map-address {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #1a1a2e;
    line-height: 1.5;
}
.map-address strong {
    font-size: 0.9rem;
    color: #0b1063;
}
.map-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #0b1063 0%, #19528d 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(11, 16, 99, 0.3);
}
.map-open-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(11, 16, 99, 0.4);
    background: linear-gradient(135deg, #19528d 0%, #0b1063 100%);
    color: #fff;
}
.map-open-btn i {
    font-size: 1.1rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .cc-grid {
        flex-direction: column;
        align-items: center;
    }
    .cc-card {
        min-width: 280px;
    }
    .cert-badges-grid {
        gap: 25px;
    }
    .cert-hexagon {
        width: 110px;
        height: 110px;
    }
    .cert-hex-inner {
        width: 92px;
        height: 92px;
    }
    .contact-final-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-info-side {
        text-align: center;
    }
    .contact-info-row {
        justify-content: center;
    }
    .contact-diagonal-stripe {
        display: none;
    }
    .thankyou-logo-wrap {
        position: relative;
        top: auto;
        right: auto;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .cc-main-title,
    .cert-main-title,
    .contact-title-bold {
        font-size: 1.8rem;
    }
    .thankyou-heading-new {
        font-size: 2.8rem;
    }
    .thankyou-image-overlay {
        padding: 15px 30px;
    }
}

/* ============================================
   FOOTER — PREMIUM DARK
   ============================================ */
footer {
    background: linear-gradient(135deg, #060a14 0%, #0f172a 50%, #0b1063 100%);
    color: #94a3b8;
    text-align: center;
    padding: 50px 0 35px;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue), var(--primary-orange));
    background-size: 200% 100%;
    animation: gradientSlide 4s ease infinite;
}
@keyframes gradientSlide {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}
footer p {
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    opacity: 0.8;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}
.reveal.reveal-up {
    transform: translateY(40px);
}
.reveal.reveal-left {
    transform: translateX(-40px);
}
.reveal.reveal-right {
    transform: translateX(40px);
}
.reveal.reveal-scale {
    transform: scale(0.95);
}
.reveal.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translate(0, 0) scale(1);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff9630 100%);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(255, 120, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 30px rgba(255, 120, 0, 0.55);
}

/* ============================================
   GLASSMORPHISM ACCENTS & INTERACTIONS
   ============================================ */
.vm-box {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   SECTION DIVIDERS — Smooth wave transitions
   ============================================ */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 5;
}
.wave-divider svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   FLOATING WHATSAPP BUTTON & INTERACTIVE MAP
   ============================================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 30px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.contact-map-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1150px) {
    .nav-links {
        gap: 15px;
    }
    .nav-links a.btn-primary-outline {
        padding: 10px 20px;
    }
}

@media (max-width: 991px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 25px 30px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        gap: 15px;
        border-top: 2px solid rgba(255, 120, 0, 0.2);
    }
    .nav-links a::after {
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 46px;
        height: 46px;
    }
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 46px;
        height: 46px;
        font-size: 28px;
    }
    .hero-scroll-indicator {
        bottom: 15px;
    }
    .map-link {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .slide-title {
        font-size: 1.4rem;
    }
    .customer-tag {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================
   CURSOR GLOW EFFECT (desktop only)
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.1s ease;
    will-change: transform, opacity;
    opacity: 0;
}
.cursor-glow.visible {
    opacity: 1;
}

@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
}

/* ============================================
   NEW: SCROLL PROGRESS BAR
   ============================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-blue);
    width: 100%; /* Full width */
    transform-origin: 0% 50%; /* Scale from the left edge */
    transform: scaleX(0); /* Start at 0 width */
    z-index: 10000;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
    /* will-change tells the browser to hardware accelerate this specific property */
    will-change: transform;
    /* transition removed or made extremely fast to prevent rubber-banding on scroll */
}



/* ============================================
   NEW: 3D TILT EFFECT PREPARATION
   ============================================ */
.slide-card {
    /* Enable 3D transform on children */
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.1s; /* Faster transition for smooth JS tracking */
}
.slide-card:hover {
    /* Remove the default CSS transform to let JS handle the tilt */
    transform: none; 
    box-shadow: var(--shadow-lg), var(--shadow-glow-orange);
}
.slide-circle-wrap {
    transform: translateZ(30px); /* Pop out 3D */
}
.slide-label {
    transform: translateZ(20px); /* Pop out 3D */
}

/* ============================================
   MODAL STYLES (Super Fast No Delay)
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85); /* Dark slate overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    /* Very fast transition for instant feel */
    transition: opacity 0.05s ease-out;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    transform: scale(0.95) translateY(10px);
    /* Fast transform */
    transition: transform 0.05s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary-orange);
    color: white;
    transform: rotate(90deg);
}

.modal-body img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.modal-body h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.modal-body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* ============================================
   LIGHT APP SECTION (For Facility)
   ============================================ */
.applications-section-light {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2fa 100%) !important;
}

.applications-section-light::before {
    background: radial-gradient(circle, rgba(255, 120, 0, 0.05) 0%, transparent 60%) !important;
}

.applications-section-light .app-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 25px rgba(11, 16, 99, 0.06);
}

.applications-section-light .app-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 120, 0, 0.4);
    box-shadow: 0 15px 35px rgba(11, 16, 99, 0.12), 0 0 20px rgba(255, 120, 0, 0.1);
}

.applications-section-light .app-circle {
    box-shadow: 0 10px 25px rgba(11, 16, 99, 0.15), inset 0 0 0 3px rgba(11, 16, 99, 0.1);
    border: 3px solid rgba(25, 82, 141, 0.2);
}

.applications-section-light .app-card:hover .app-circle {
    box-shadow: 0 12px 30px rgba(11, 16, 99, 0.2), inset 0 0 0 3px rgba(255, 120, 0, 0.1);
    border-color: #ff7800;
}

/* ============================================
   DARK BLUE APP SECTION (For Quality)
   ============================================ */
.applications-section-blue {
    background: linear-gradient(135deg, #0b1063 0%, #172554 100%) !important;
}
.applications-section-blue::before {
    background: radial-gradient(circle, rgba(255, 120, 0, 0.15) 0%, transparent 60%) !important;
}

/* ============================================
   FACILITY GRID (4 cards top, 3 bottom centered)
   ============================================ */
.facility {
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); /* Elegant premium grey */
}

/* Subtle background accent */
.facility::before {
    content: '';
    position: absolute;
    top: -20%; left: -10%; width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(255,120,0,0.03) 0%, transparent 60%);
    z-index: 0;
}

.facility h2 {
    color: #0b1063; /* Deep premium blue */
    margin-bottom: 60px;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

/* PERFECT CENTERING USING FLEXBOX */
.facility .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1150px; 
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* PREMIUM WHITE CARDS */
.facility .card {
    width: 240px;
    height: 310px;
    background: #ffffff; /* Clean white card */
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(11, 16, 99, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

/* Subtle inner glow for card bottom */
.facility .card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(255,120,0,0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.facility .card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(11, 16, 99, 0.12), 0 0 20px rgba(255, 120, 0, 0.1);
    border-color: rgba(255, 120, 0, 0.2);
}

.facility .card:hover::after {
    opacity: 1;
}

/* IMAGE CIRCLE */
.facility .img-box {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #f8fafc; /* Very light grey */
    border: 2px solid #e2e8f0;
    margin: 35px auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.facility .card:hover .img-box {
    transform: scale(1.08);
    border-color: #ff7800; /* vibrant orange border on hover */
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(255, 120, 0, 0.15);
}

.facility .img-box img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    transition: all 0.4s ease;
    mix-blend-mode: multiply; /* Blends white backgrounds perfectly */
}

/* ELEGANT TYPOGRAPHY */
.facility .card p {
    color: #0b1063; /* Dark premium blue text */
    padding: 0 20px;
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.facility .card:hover p {
    color: #ff7800; /* vibrant orange */
}

/* RESPONSIVE LAYOUT */
@media (max-width: 1150px) {
    .facility .grid { max-width: 850px; }
}
@media (max-width: 850px) {
    .facility .grid { max-width: 550px; }
}
@media (max-width: 550px) {
    .facility .grid { max-width: 280px; }
}

/* =========================================
   UNIFIED APPLE MINIMALIST THEME
   (Products, Applications, Facility, Quality)
   ========================================= */

/* 1. SECTIONS - PURE SOFT NEUTRALS */
#products, #facility {
    background: #FFFFFF !important;
    padding: 140px 20px !important;
    position: relative !important;
    overflow: hidden !important;
}
.applications-section, #quality {
    background: #F5F5F7 !important;
    padding: 140px 20px !important;
    position: relative !important;
    overflow: hidden !important;
}

/* 2. TYPOGRAPHY - CRISP BLACK */
#products .slide-title, .applications-section h2, .facility h2 {
    color: #1D1D1F !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.04em !important;
    margin-bottom: 80px !important;
    position: relative !important;
    z-index: 1 !important;
    text-shadow: none !important;
    text-transform: none !important;
    text-align: center !important;
}

/* 3. CLEAN WHITE CARDS WITH ULTRA-SOFT SHADOWS */
#products .slide-card-product, .applications-section .app-card, .facility .card {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: none !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 !important;
    width: 260px !important;
    height: 340px !important;
    padding: 0 !important;
}

/* 4. HOVER STATES FOR CARDS */
#products .slide-card-product:hover, .applications-section .app-card:hover, .facility .card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08) !important;
}

/* Remove bottom highlight bar */
#products .slide-card-product::after, .applications-section .app-card::after, .facility .card::after {
    display: none !important;
}

/* 5. IMAGE CIRCLES - CLEAN & FLAT */
#products .slide-circle-wrap, .applications-section .app-circle, .facility .img-box {
    border-radius: 50% !important;
    background: #F5F5F7 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
    position: relative !important;
    z-index: 1 !important;
    box-shadow: none !important;
    width: 150px !important; 
    height: 150px !important; 
    margin: 40px auto 30px !important;
    padding: 0 !important;
}

/* Circle Hover - Pure scale */
#products .slide-card-product:hover .slide-circle-wrap, 
.applications-section .app-card:hover .app-circle, 
.facility .card:hover .img-box {
    transform: scale(1.04) !important;
    border-color: transparent !important;
    box-shadow: none !important;
}

/* 6. IMAGES */
#products .slide-circle-img, .applications-section .app-circle img, .facility .img-box img {
    width: 100px !important;
    height: 100px !important;
    object-fit: contain !important;
    display: block !important;
    border-radius: 0 !important;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
    mix-blend-mode: multiply !important;
    box-shadow: none !important;
    filter: none !important;
}

/* 7. TYPOGRAPHY - SUBTLE GRAY TEXT */
#products .slide-label, .applications-section p, .facility .card p {
    color: #1D1D1F !important;
    padding: 0 20px !important;
    margin: 0 !important;
    font-size: 1.15rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    text-align: center !important;
    position: relative !important;
    z-index: 1 !important;
    transition: color 0.3s ease !important;
    text-shadow: none !important;
    background: none !important;
    letter-spacing: -0.01em !important;
}

#products .slide-card-product:hover .slide-label, 
.applications-section .app-card:hover p, 
.facility .card:hover p {
    color: #0071E3 !important; /* Apple Action Blue on hover */
}

/* Layouts */
#products .slide-grid-3, .applications-section .app-grid, .facility .grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 48px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}
/* ============================================
   GLOBAL ANIMATIONS & TRANSITIONS (PREMIUM)
   ============================================ */

/* Initial states for JS scroll observer */
.reveal {
    opacity: 0 !important;
    will-change: transform, opacity;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal-up {
    transform: translateY(50px) !important;
}

.reveal-left {
    transform: translateX(-50px) !important;
}

.reveal-right {
    transform: translateX(50px) !important;
}

.reveal-scale {
    transform: scale(0.85) !important;
}

/* Revealed states triggered by JS */
.reveal.revealed {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* Hardcoded animations (e.g., Hero) */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    will-change: transform, opacity;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button micro-interactions */
.btn-primary:active, .btn-secondary:active, .btn-primary-outline:active {
    transform: scale(0.95) !important;
    transition: transform 0.1s ease !important;
}

/* Seamless Image Zoom (No distortion) */
.slide-circle-img, .app-circle img, .img-box img {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.slide-card-product:hover .slide-circle-img, 
.app-card:hover .app-circle img, 
.card:hover .img-box img {
    transform: scale(1.12) !important;
}

/* Micro-interaction: Nav Link Ripple */
.nav-links a {
    position: relative;
    overflow: hidden;
}

/* ============================================
   OVERRIDE: SMALLER APPLICATION CARDS & 5 PER ROW
   ============================================ */
.applications-section .container {
    max-width: 1400px !important;
}
.applications-section .app-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px !important;
    justify-items: center !important;
    width: 100% !important;
}
.applications-section .app-card {
    width: 100% !important;
    max-width: 220px !important;
    height: 260px !important;
    margin: 0 auto !important;
}
.applications-section .app-circle {
    width: 110px !important;
    height: 110px !important;
    margin: 30px auto 20px !important;
}
.applications-section .app-circle img {
    width: 65px !important;
    height: 65px !important;
}
.applications-section p {
    font-size: 1rem !important;
    padding: 0 10px !important;
}


/* ============================================
   CUSTOMERS SECTION (INFINITE MARQUEE)
   ============================================ */
.customers {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.customers .container {
    margin-bottom: 50px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    display: flex;
}

/* Fading edges for the marquee to blend with the background */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(248,250,252,1) 0%, rgba(248,250,252,0) 100%);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(248,250,252,1) 0%, rgba(248,250,252,0) 100%);
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll-marquee 30s linear infinite;
    padding-left: 20px; /* offset gap */
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 20px)); } /* Shift by exactly half the track length */
}

.customer-logo-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 140px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.customer-logo-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 120, 0, 0.15);
    border-color: rgba(255, 120, 0, 0.3);
}

.customer-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
}

.customer-logo-card:hover img {
    transform: scale(1.05);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(245, 130, 32, 0.6);
}

/* ============================================
   GLOBAL RESPONSIVE OVERRIDES (MOBILE, TABLET, MAC)
   ============================================ */
@media (max-width: 1200px) {
    .applications-section .app-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 991px) {
    #products .slide-title, .applications-section h2, .facility h2, .contact-title-bold {
        font-size: 2.8rem !important;
        margin-bottom: 50px !important;
    }
    
    #products, #facility, .applications-section, #quality {
        padding: 80px 20px !important;
    }
    
    .applications-section .app-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .customers {
        padding: 60px 0 !important;
    }
}

@media (max-width: 768px) {
    #products .slide-title, .applications-section h2, .facility h2, .contact-title-bold {
        font-size: 2.2rem !important;
        margin-bottom: 40px !important;
    }

    #products, #facility, .applications-section, #quality {
        padding: 60px 15px !important;
    }
    
    .applications-section .app-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    #products .slide-grid-3, .facility .grid {
        gap: 20px !important;
    }

    #products .slide-card-product, .applications-section .app-card, .facility .card {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        min-height: 280px !important;
        padding-bottom: 20px !important;
    }
    
    #products .slide-circle-wrap, .applications-section .app-circle, .facility .img-box {
        width: 120px !important;
        height: 120px !important;
        margin: 25px auto 20px !important;
    }

    #products .slide-circle-img, .applications-section .app-circle img, .facility .img-box img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .customer-logo-card {
        width: 180px;
        height: 100px;
        padding: 15px;
    }

    .marquee-track {
        gap: 20px;
        animation: scroll-marquee 20s linear infinite; /* Slightly faster on mobile */
    }
}

@media (max-width: 480px) {
    #products .slide-title, .applications-section h2, .facility h2, .contact-title-bold {
        font-size: 1.8rem !important;
    }
    
    .applications-section .app-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .customer-logo-card {
        width: 140px;
        height: 80px;
    }
    
    .marquee-container::before, .marquee-container::after {
        width: 40px; /* Smaller fade area on small screens */
    }
}

/* ============================================
   DEEP MOBILE OPTIMIZATIONS (ALL SECTIONS)
   ============================================ */
@media (max-width: 991px) {
    .cert-badges-wrap {
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
    }
    .cert-badge-card {
        width: 100% !important;
        max-width: 350px !important;
    }
    .vm-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px !important;
        min-height: auto !important;
        padding-bottom: 80px !important;
    }
    .hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box;
    }
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary {
        width: 100% !important;
        text-align: center !important;
    }
    .about-stats {
        flex-direction: column !important;
        gap: 30px !important;
    }
    .modal-content {
        padding: 1.5rem !important;
        width: 90% !important;
    }
    .contact-info-row {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
    .contact-info-icon {
        margin: 0 auto !important;
    }
    .qr-box {
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px !important;
    }
    .hero-content h1 {
        font-size: 2rem !important;
    }
    .section-title, .cc-main-title {
        font-size: 1.8rem !important;
    }
    .btn-primary, .btn-secondary, .btn-primary-outline {
        padding: 12px 20px !important;
    }
    .cert-badge-card {
        max-width: 280px !important;
    }
}

/* ============================================
   ULTIMATE MOBILE FIXES (HERO & CONTACT CENTERING)
   ============================================ */
@media (max-width: 991px) {
    .hero-title-ind {
        font-size: 4rem !important;
    }
    .hero-title-om {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 768px) {
    /* Hero Overflow Fixes */
    .hero-title-ind {
        font-size: 2.6rem !important;
        letter-spacing: 0px !important;
    }
    .hero-title-om {
        font-size: 1.5rem !important;
    }
    .hero-tagline {
        font-size: 1rem !important;
        padding: 0 10px;
    }
    
    /* Contact Section Perfect Centering */
    .contact-final-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 40px !important;
    }
    .contact-info-side, .contact-thankyou-side, .contact-form-wrap {
        width: 100% !important;
        max-width: 400px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    .whatsapp-qr-card {
        margin: 0 auto !important;
        width: 100% !important;
    }
    
    /* Fix Overlapping Back To Top Button */
    .back-to-top {
        right: auto !important;
        left: 20px !important; /* Move to bottom left so it doesn't block WhatsApp */
    }
}

@media (max-width: 480px) {
    .hero-title-ind {
        font-size: 2.1rem !important;
    }
}
