/* ===================================
   INFYNIX SOLUTIONS - RESPONSIVE CSS PART 1
   Base Styles, Header, Hero, About, Services
   =================================== */

/* === GLOBAL RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --aqua-green: #00E0C6;
    --neon-cyan: #00D9FF;
    --deep-blue: #0D1A40;
    --jet-black: #000000;
    --soft-grey: #F5F7FA;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #00E0C6 0%, #00D9FF 100%);
    --gradient-dark: linear-gradient(135deg, #0D1A40 0%, #000000 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --color-primary: #FF7B00;
    --color-primary-light: #FF9933;
    --color-secondary: #0066CC;
    --color-secondary-light: #0080FF;
    --color-accent: #FFB366;
    --color-text-dark: #1a1a1a;
    --color-text-medium: #4a4a4a;
    --color-text-light: #666666;
    --color-bg-white: #FFFFFF;
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 40px;
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-full: 50px;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(180deg, #001a33 0%, #000d1a 50%, #001a33 100%);
    color: var(--deep-blue);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === HEADER & NAVIGATION === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: linear-gradient(180deg, rgba(13, 26, 41, 0.85) 0%, rgba(22, 32, 41, 0.75) 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
    height: 85px;
    gap: 40px;
}

/* === PERFECT CIRCULAR LOGO - RESPONSIVE === */
.logo {
    /* Perfect circle with equal dimensions */
    width: 65px;
    height: 65px;
    
    /* Enforce circular shape */
    border-radius: 50%;
    background: #ffffff;
    
    /* Box sizing for padding */
    box-sizing: border-box;
    padding: 6px;
    
    /* Flexbox centering */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Prevent shrinking */
    flex-shrink: 0;
    
    /* Smooth transitions */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    
    /* Shadow */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
    filter: contrast(1.15) brightness(1.1) saturate(1.1);
}

/* Navigation */
.nav {
    display: flex;
    gap: 35px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #0066CC 50%, #FF8C42 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #FF8C42;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(255, 140, 66, 0.1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #FF6B35 0%, #0066CC 50%, #FF8C42 100%);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
    background-size: 200% 100%;
    background-position: left;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    background-position: right;
}

.cta-button:active {
    transform: translateY(0);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.menu-toggle.active span {
    background: linear-gradient(90deg, #FF6B35 0%, #0066CC 100%);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* === RESPONSIVE HEADER === */
@media (max-width: 992px) {
    .header-container {
        padding: 0 40px;
        height: 80px;
        gap: 25px;
    }
    
    .logo {
        width: 58px;
        height: 58px;
        padding: 5px;
    }
    
    .nav {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 30px;
        height: 75px;
        gap: 20px;
    }
    
    .logo {
        width: 52px;
        height: 52px;
        padding: 4px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 75px;
        left: -320px;
        width: 280px;
        height: calc(100vh - 75px);
        background: linear-gradient(180deg, rgba(13, 26, 41, 0.98) 0%, rgba(22, 32, 41, 0.96) 100%);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 8px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav.active {
        left: 0;
    }
    
    /* Overlay backdrop when menu is open */
    .nav.active::before {
        content: '';
        position: fixed;
        top: 75px;
        left: 280px;
        width: calc(100vw - 280px);
        height: calc(100vh - 75px);
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 140, 66, 0.15);
        border-color: rgba(255, 140, 66, 0.3);
        padding: 14px 16px 14px 20px;
        transform: translateX(4px);
    }
    
    .cta-button {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 20px;
        height: 70px;
        gap: 15px;
    }
    
    .logo {
        width: 48px;
        height: 48px;
        padding: 4px;
    }
    
    .nav {
        top: 70px;
        left: -280px;
        width: 260px;
        height: calc(100vh - 70px);
        padding: 25px 16px;
        gap: 6px;
    }
    
    .nav.active::before {
        top: 70px;
        left: 260px;
        width: calc(100vw - 260px);
        height: calc(100vh - 70px);
    }
    
    .nav-link {
        font-size: 14px;
        padding: 12px 14px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        padding: 12px 14px 12px 18px;
    }
}

@media (max-width: 380px) {
    .header-container {
        padding: 0 15px;
        height: 65px;
        gap: 12px;
    }
    
    .logo {
        width: 44px;
        height: 44px;
        padding: 3px;
    }
    
    .nav {
        top: 65px;
        left: -240px;
        width: 240px;
        height: calc(100vh - 65px);
        padding: 20px 14px;
        gap: 6px;
    }
    
    .nav.active::before {
        top: 65px;
        left: 240px;
        width: calc(100vw - 240px);
        height: calc(100vh - 65px);
    }
    
    .nav-link {
        font-size: 13px;
        padding: 11px 12px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        padding: 11px 12px 11px 16px;
    }
}

@media (max-width: 320px) {
    .header-container {
        padding: 0 12px;
        height: 60px;
        gap: 10px;
    }
    
    .logo {
        width: 40px;
        height: 40px;
        padding: 3px;
    }
    
    .nav {
        top: 60px;
        left: -220px;
        width: 220px;
        height: calc(100vh - 60px);
        padding: 18px 12px;
        gap: 6px;
    }
    
    .nav.active::before {
        top: 60px;
        left: 220px;
        width: calc(100vw - 220px);
        height: calc(100vh - 60px);
    }
    
    .nav-link {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        padding: 10px 12px 10px 16px;
    }
    
    .menu-toggle span {
        width: 24px;
        height: 2.5px;
    }
}
/* === HERO SECTION - FULLY RESPONSIVE === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(13, 26, 41, 0.75) 0%, rgba(22, 32, 41, 0.85) 50%, rgba(13, 26, 41, 0.9) 100%),
                url('public/office.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 120px 0 80px 0;
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(255, 107, 53, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(0, 102, 204, 0.10) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-text-content {
    max-width: 650px;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-subtitle {
    color: #FF8C42;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    display: inline-block;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    padding: 6px 14px;
    background: rgba(255, 107, 53, 0.15);
    border: 1.5px solid rgba(255, 107, 53, 0.4);
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    letter-spacing: -0.8px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #4A9FFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    display: inline-block;
    filter: drop-shadow(0 2px 10px rgba(255, 107, 53, 0.3));
}

.hero-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 580px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.35);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    letter-spacing: 0.2px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.45);
    background: linear-gradient(135deg, #FF7B45 0%, #FF9C52 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    letter-spacing: 0.2px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-indicator i {
    font-size: 26px;
    color: #FF8C42;
    opacity: 0.8;
    filter: drop-shadow(0 3px 10px rgba(255, 107, 53, 0.5));
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(12px);
    }
}

/* === HERO RESPONSIVE BREAKPOINTS === */

/* Large Desktop (1200px+) - Left aligned content */
@media (min-width: 1200px) {
    .hero-content {
        justify-content: flex-start;
    }
    
    .hero-text-content {
        text-align: left;
        align-items: flex-start;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        flex-direction: row;
    }
}

/* Medium Desktop (992px - 1199px) - Left aligned content */
@media (max-width: 1199px) {
    .hero {
        padding: 110px 0 70px 0;
    }
    
    .hero-content {
        padding: 0 50px;
        justify-content: flex-start;
    }
    
    .hero-text-content {
        max-width: 600px;
        text-align: left;
        align-items: flex-start;
    }
    
    .hero-title {
        font-size: 38px;
        margin-bottom: 18px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 26px;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        flex-direction: row;
    }
}

/* Tablet (768px - 991px) - Centered content */
@media (max-width: 991px) {
    .hero {
        min-height: 100vh;
        background-attachment: scroll;
        padding: 100px 0 60px 0;
    }
    
    .hero-content {
        padding: 0 40px;
        justify-content: center;
    }

    .hero-text-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: -0.7px;
        margin-bottom: 18px;
    }
    
    .hero-subtitle {
        font-size: 8px;
        padding: 6px 13px;
        letter-spacing: 1.4px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 26px;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        max-width: 320px;
        justify-content: center;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 26px;
        font-size: 13px;
        width: 100%;
    }
    
    .scroll-indicator {
        bottom: 35px;
    }
}

/* Mobile Large (481px - 767px) - Centered content */
@media (max-width: 767px) {
    .hero {
        min-height: 100vh;
        padding: 95px 0 50px 0;
    }
    
    .hero-content {
        padding: 0 30px;
        justify-content: center;
    }

    .hero-text-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: -0.6px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 8px;
        padding: 5px 12px;
        letter-spacing: 1.3px;
        margin-bottom: 14px;
    }
    
    .hero-description {
        font-size: 13px;
        margin-bottom: 24px;
        max-width: 100%;
        text-align: center;
        line-height: 1.65;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        max-width: 300px;
        justify-content: center;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 11px 24px;
        font-size: 12px;
        width: 100%;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
    
    .scroll-indicator i {
        font-size: 22px;
    }
}

/* Mobile Medium (381px - 480px) - Centered content */
@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
        padding: 90px 0 40px 0;
    }
    
    .hero-content {
        padding: 0 24px;
        justify-content: center;
    }

    .hero-text-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 14px;
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 7px;
        padding: 5px 11px;
        letter-spacing: 1.2px;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 12px;
        margin-bottom: 22px;
        text-align: center;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        max-width: 280px;
        gap: 10px;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 22px;
        font-size: 12px;
        width: 100%;
    }
    
    .scroll-indicator {
        bottom: 25px;
    }
    
    .scroll-indicator i {
        font-size: 20px;
    }
}

/* Mobile Small (321px - 380px) - Centered content */
@media (max-width: 380px) {
    .hero {
        min-height: 85vh;
        padding: 85px 0 35px 0;
    }
    
    .hero-content {
        padding: 0 20px;
    }

    .hero-text-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 7px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 11px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-buttons {
        max-width: 260px;
        gap: 9px;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 11px;
        padding: 9px 20px;
    }
    
    .scroll-indicator {
        bottom: 22px;
    }
    
    .scroll-indicator i {
        font-size: 18px;
    }
}

/* Mobile Extra Small (≤320px) - Centered content */
@media (max-width: 320px) {
    .hero {
        min-height: 80vh;
        padding: 80px 0 30px 0;
    }
    
    .hero-content {
        padding: 0 16px;
    }

    .hero-text-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 10px;
        letter-spacing: -0.4px;
    }
    
    .hero-subtitle {
        font-size: 6px;
        padding: 4px 9px;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 11px;
        margin-bottom: 18px;
        text-align: center;
        line-height: 1.55;
    }
    
    .hero-buttons {
        max-width: 240px;
        gap: 8px;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 11px;
        padding: 9px 18px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator i {
        font-size: 16px;
    }
}
/* === ABOUT SECTION === */
        .about {
            padding: 60px 0;
            background: #FFFFFF;
            position: relative;
            overflow: hidden;
        }
.about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.60) 100%),
                        url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.75;
            filter: blur(0px);
            pointer-events: none;
            z-index: 0;
        }
        .about::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 30%, rgba(255, 123, 0, 0.03) 0%, transparent 45%),
                        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.03) 0%, transparent 45%);
            pointer-events: none;
            z-index: 0;
        }

        .about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .about-left {
            max-width: 520px;
            margin: 0 auto;
        }

        .section-label {
            color: #FF7B00;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.8px;
            margin-bottom: 16px;
            display: inline-block;
            padding: 5px 14px;
            background: rgba(255, 123, 0, 0.15);
            border: 1.5px solid rgba(255, 123, 0, 0.4);
            border-radius: 50px;
            font-family: 'Inter', 'Segoe UI', sans-serif;
            text-transform: uppercase;
            backdrop-filter: blur(8px);
        }

        .about-left .section-title {
            font-size: 32px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 18px;
            line-height: 1.25;
            font-family: 'Inter', 'Segoe UI', sans-serif;
            letter-spacing: -0.5px;
            text-shadow: none;
        }

        .about-left .section-title .gradient-text {
            background: linear-gradient(135deg, #FF7B00 0%, #FF9933 25%, #0066CC 75%, #0080FF 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            filter: drop-shadow(0 1px 3px rgba(255, 123, 0, 0.15));
        }

        .about-left .section-description {
            font-size: 14px;
            color: #4a4a4a;
            line-height: 1.65;
            margin-bottom: 14px;
            font-family: 'Inter', 'Segoe UI', sans-serif;
            font-weight: 400;
            text-shadow: none;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 26px;
        }

        .stat-item {
            text-align: center;
            padding: 16px 10px;
            background: #ffffff;
            border-radius: 14px;
            transition: all 0.3s ease;
            border: 1.5px solid transparent;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(8px);
        }

        .stat-item:nth-child(1) {
            border-color: rgba(255, 123, 0, 0.3);
        }

        .stat-item:nth-child(2) {
            border-color: rgba(0, 102, 204, 0.3);
        }

        .stat-item:nth-child(3) {
            border-color: rgba(255, 153, 51, 0.3);
        }

        .stat-item:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, rgba(255, 123, 0, 0.04) 0%, rgba(0, 102, 204, 0.04) 100%);
        }

        .stat-item:nth-child(1):hover {
            box-shadow: 0 4px 16px rgba(255, 123, 0, 0.2);
        }

        .stat-item:nth-child(2):hover {
            box-shadow: 0 4px 16px rgba(0, 102, 204, 0.2);
        }

        .stat-item:nth-child(3):hover {
            box-shadow: 0 4px 16px rgba(255, 153, 51, 0.2);
        }

        .stat-item h3 {
            font-size: 26px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 3px;
            font-family: 'Inter', 'Segoe UI', sans-serif;
            line-height: 1;
        }

        .stat-item:nth-child(1) h3 {
            color: #FF9933;
        }

        .stat-item:nth-child(2) h3 {
            color: #0080FF;
        }

        .stat-item:nth-child(3) h3 {
            color: #FFB366;
        }

        .stat-item p {
            font-size: 10px;
            color: #666666;
            font-weight: 600;
            font-family: 'Inter', 'Segoe UI', sans-serif;
            letter-spacing: 0.4px;
            line-height: 1.3;
            text-transform: uppercase;
        }

        .about-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-image-container {
            position: relative;
            width: 100%;
            max-width: 420px;
            height: 380px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            border: 2px solid rgba(255, 123, 0, 0.2);
            backdrop-filter: blur(5px);
        }

        .about-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
        }

        .about-image-container:hover img {
            transform: scale(1.05);
        }

        .about-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 123, 0, 0.08) 0%, rgba(0, 102, 204, 0.08) 100%);
            z-index: 1;
            pointer-events: none;
            mix-blend-mode: overlay;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .about .container {
                grid-template-columns: 1fr;
                gap: 35px;
                text-align: center;
                max-width: 600px;
            }

            .about-left {
                display: flex;
                flex-direction: column;
                align-items: center;
                max-width: 100%;
            }

            .about-image-container {
                max-width: 380px;
                height: 340px;
            }

            .about-stats {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .about {
                padding: 50px 0;
            }

            .about .container {
                padding: 0 24px;
            }

            .section-title {
                font-size: 26px !important;
                margin-bottom: 16px !important;
            }

            .section-label {
                font-size: 9px;
                padding: 4px 12px;
                margin-bottom: 14px;
            }

            .section-description {
                font-size: 13px !important;
                margin-bottom: 12px !important;
            }

            .about-stats {
                gap: 10px;
                margin-top: 22px;
            }

            .stat-item {
                padding: 14px 8px;
            }

            .stat-item h3 {
                font-size: 22px;
                margin-bottom: 2px;
            }

            .stat-item p {
                font-size: 9px;
            }

            .about-image-container {
                max-width: 100%;
                height: 300px;
            }
        }
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            background: #000;
        }
/* === SERVICES SECTION === */
        .services {
            padding: 50px 0 60px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #0A1929 0%, #0D2135 25%, #0F2943 50%, #0D2135 75%, #0A1929 100%);
        }

        /* Banner Image Background - More Visible */
        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=1920&h=1080&fit=crop&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            filter: blur(0.5px);
            z-index: 1;
        }

        /* Enhanced Gradient Overlay with Blue Accents */
        .services::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(135deg, rgba(10, 25, 41, 0.75) 0%, rgba(13, 33, 53, 0.85) 50%, rgba(10, 25, 41, 0.75) 100%),
                radial-gradient(circle at 15% 20%, rgba(41, 128, 185, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 85% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(30, 100, 150, 0.08) 0%, transparent 60%);
            z-index: 2;
            pointer-events: none;
        }

        /* Subtle Texture */
        .services-noise {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' 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)' opacity='0.025'/%3E%3C/svg%3E");
            z-index: 3;
            pointer-events: none;
            opacity: 0.6;
        }

        /* Vertical Light Accent */
        .services-accent {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(52, 152, 219, 0.3) 50%, transparent 100%);
            z-index: 3;
            pointer-events: none;
        }

        .container {
            position: relative;
            z-index: 4;
        }

        .section-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .section-header .section-label {
            color: #3498DB;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 1.8px;
            margin-bottom: 10px;
            display: inline-block;
            padding: 4px 12px;
            background: rgba(52, 152, 219, 0.15);
            border: 1.5px solid rgba(52, 152, 219, 0.4);
            border-radius: 50px;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
        }

        .section-header .section-title {
            font-size: 28px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 10px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .section-header .gradient-text {
            background: linear-gradient(135deg, #3498DB 0%, #5DADE2 50%, #85C1E9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 2px 10px rgba(52, 152, 219, 0.4));
            font-weight: 800;
        }

        .section-subtitle {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            margin-top: 6px;
            font-weight: 400;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            backdrop-filter: blur(16px);
            padding: 28px 20px;
            text-align: center;
        }

        /* Premium Glass Effect */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(52, 152, 219, 0.03) 100%);
            opacity: 0;
            transition: opacity 0.45s ease;
            z-index: 0;
            pointer-events: none;
            border-radius: 16px;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(52, 152, 219, 0.4);
            box-shadow: 
                0 16px 48px rgba(52, 152, 219, 0.2),
                0 0 40px rgba(52, 152, 219, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        .service-icon-wrapper {
            width: 60px;
            height: 60px;
            margin: 0 auto 18px;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.15) 0%, rgba(41, 128, 185, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(52, 152, 219, 0.3);
            transition: all 0.45s ease;
            position: relative;
            z-index: 1;
        }

        .service-card:hover .service-icon-wrapper {
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.25) 0%, rgba(41, 128, 185, 0.2) 100%);
            border-color: rgba(52, 152, 219, 0.5);
            box-shadow: 0 8px 24px rgba(52, 152, 219, 0.3);
        }

        .service-icon-wrapper i {
            font-size: 26px;
            color: #5DADE2;
            transition: all 0.45s ease;
        }

        .service-card:hover .service-icon-wrapper i {
            color: #85C1E9;
            transform: scale(1.1);
        }

        .service-content {
            position: relative;
            z-index: 1;
        }

        .service-content h3 {
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 12px;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0.3px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
        }

        .service-content > p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 16px;
            font-weight: 400;
        }

        .service-features {
            list-style: none;
            margin: 0;
            padding: 0;
            text-align: left;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 10px;
            line-height: 1.5;
            font-weight: 400;
        }

        .service-features li:last-child {
            margin-bottom: 0;
        }

        .service-features i {
            font-size: 10px;
            flex-shrink: 0;
            color: #3498DB;
            opacity: 0.9;
            width: 16px;
            height: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(52, 152, 219, 0.15);
            border-radius: 50%;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .services-grid {
                gap: 28px;
                max-width: 900px;
            }

            .section-header .section-title {
                font-size: 38px;
            }
        }

        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                max-width: 700px;
            }
            
            .section-header .section-title {
                font-size: 34px;
            }

            .service-card {
                padding: 36px 24px;
            }
        }

        @media (max-width: 768px) {
            .services {
                padding: 60px 0 70px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 20px;
                max-width: 500px;
            }
            
            .section-header {
                margin-bottom: 50px;
            }
            
            .section-header .section-title {
                font-size: 32px;
            }
            
            .section-header .section-label {
                font-size: 9px;
                padding: 5px 14px;
                margin-bottom: 14px;
            }
            
            .section-subtitle {
                font-size: 15px;
            }
            
            .service-card {
                padding: 32px 22px;
            }
            
            .service-content h3 {
                font-size: 18px;
                margin-bottom: 14px;
            }

            .service-icon-wrapper {
                width: 70px;
                height: 70px;
                margin-bottom: 20px;
            }

            .service-icon-wrapper i {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .section-header .section-title {
                font-size: 28px;
            }
            
            .service-content h3 {
                font-size: 17px;
            }
            
            .service-content > p {
                font-size: 13px;
            }
            
            .service-features li {
                font-size: 12px;
            }

            .service-card {
                padding: 28px 20px;
            }
        }
   
/* === PRODUCT SECTION === */
/* === PRODUCT SECTION === */
.product {
    padding: 20px 0;
    background: var(--color-bg-white);
    position: relative;
    overflow: hidden;
}

.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.60) 100%),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.75;
    pointer-events: none;
    z-index: 0;
}

.product::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 123, 0, 0.03) 0%, transparent 45%),
                radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.03) 0%, transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.product .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.product-left {
    max-width: 520px;
    margin: 0 auto;
}

.product .section-label {
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 123, 0, 0.15);
    border: 1.5px solid rgba(255, 123, 0, 0.4);
    border-radius: var(--border-radius-full);
    font-family: 'Inter', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.product-left .section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 18px;
    line-height: 1.25;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    letter-spacing: -0.5px;
}

.product-left .section-title .gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 25%, var(--color-secondary) 75%, var(--color-secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    filter: drop-shadow(0 1px 3px rgba(255, 123, 0, 0.15));
}

.product-left .section-description {
    font-size: 14px;
    color: var(--color-text-medium);
    line-height: 1.65;
    margin-bottom: 14px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 400;
}

/* Learn More Button - Professional Design */
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: var(--color-bg-white);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: var(--border-radius-full);
    font-weight: 700;
    font-size: 14px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    transition: all var(--transition-fast);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.35);
    margin: 20px 0 26px 0;
    letter-spacing: 0.3px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.learn-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-medium);
}

.learn-more-btn:hover::before {
    left: 100%;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 107, 53, 0.45);
    background: linear-gradient(135deg, #FF7B45 0%, #FF9C52 100%);
}

.learn-more-btn:active {
    transform: translateY(-1px);
}

.learn-more-btn:focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
}

.learn-more-btn i {
    font-size: 13px;
    transition: transform var(--transition-fast);
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

/* Icon fallback */
.learn-more-btn i::after {
    content: '→';
    display: none;
    font-style: normal;
}

.learn-more-btn i:empty::after {
    display: inline;
}

.product-features {
    margin: 26px 0 0 0;
}

.product-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    padding: 14px var(--spacing-md);
    background: var(--color-bg-white);
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(8px);
    border: 1.5px solid transparent;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.product-features .feature-item:nth-child(1) {
    border-color: rgba(255, 123, 0, 0.3);
}

.product-features .feature-item:nth-child(2) {
    border-color: rgba(0, 102, 204, 0.3);
}

.product-features .feature-item:nth-child(3) {
    border-color: rgba(255, 153, 51, 0.3);
}

.product-features .feature-item:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.04) 0%, rgba(0, 102, 204, 0.04) 100%);
}

.product-features .feature-item:nth-child(1):hover {
    box-shadow: 0 4px 16px rgba(255, 123, 0, 0.2);
}

.product-features .feature-item:nth-child(2):hover {
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.2);
}

.product-features .feature-item:nth-child(3):hover {
    box-shadow: 0 4px 16px rgba(255, 153, 51, 0.2);
}

.product-features .feature-item i {
    font-size: 20px;
    min-width: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.product-features .feature-item:nth-child(1) i {
    color: var(--color-primary-light);
}

.product-features .feature-item:nth-child(2) i {
    color: var(--color-secondary-light);
}

.product-features .feature-item:nth-child(3) i {
    color: var(--color-accent);
}

.product-features .feature-item h4 {
    color: var(--color-text-dark);
    font-size: 14px;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    letter-spacing: 0.1px;
}

.product-features .feature-item p {
    color: var(--color-text-light);
    font-size: 12px;
    line-height: 1.5;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    font-weight: 400;
}

.product-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 380px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(255, 123, 0, 0.2);
    /* ❌ Removed blur */
    backdrop-filter: none;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-medium);
    will-change: transform;
}

.product-image-container:hover img {
    transform: scale(1.05);
}

.product-image-container .recognition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.product-image-container .face-box {
    position: absolute;
    border: 3px solid var(--color-primary);
    border-radius: var(--border-radius-sm);
    box-shadow: 
        0 0 25px rgba(255, 123, 0, 0.5), 
        inset 0 0 20px rgba(255, 123, 0, 0.1);
    animation: scanBox 4s infinite ease-in-out;
    backdrop-filter: blur(2px);
    background: linear-gradient(135deg, rgba(255, 123, 0, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
}

.product-image-container .box-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.product-image-container .box-2 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    right: 18%;
    animation-delay: 2s;
    border-color: var(--color-secondary);
    box-shadow: 
        0 0 25px rgba(0, 102, 204, 0.5), 
        inset 0 0 20px rgba(0, 102, 204, 0.1);
}

@keyframes scanBox {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.product-image-container .detection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-primary-light), var(--color-secondary), transparent);
    box-shadow: 0 0 12px rgba(255, 123, 0, 0.6);
    animation: scanLine 3s infinite linear;
}

.product-image-container .line-1 {
    width: 40%;
    top: 30%;
    left: 10%;
    animation-delay: 0s;
}

.product-image-container .line-2 {
    width: 35%;
    top: 55%;
    right: 15%;
    animation-delay: 1s;
    background: linear-gradient(90deg, transparent, var(--color-secondary), var(--color-secondary-light), var(--color-primary), transparent);
}

.product-image-container .line-3 {
    width: 45%;
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
    background: linear-gradient(90deg, transparent, var(--color-primary-light), var(--color-primary), var(--color-secondary), transparent);
}

@keyframes scanLine {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(240, 245, 250, 0.95) 0%, rgba(230, 240, 250, 0.95) 50%, rgba(235, 245, 255, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-medium);
}

.product-image-container:hover .product-image-placeholder {
    transform: scale(1.05);
}

.product-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(255, 123, 0, 0.03) 80px,
            rgba(255, 123, 0, 0.03) 81px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 80px,
            rgba(0, 102, 204, 0.03) 80px,
            rgba(0, 102, 204, 0.03) 81px
        );
    pointer-events: none;
}

.product-image-placeholder i {
    font-size: 55px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 25%, var(--color-secondary) 75%, var(--color-secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 2px 8px rgba(255, 123, 0, 0.3));
    position: relative;
    z-index: 1;
}

.product-image-placeholder p {
    color: var(--color-text-medium);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* ❌ Removed orange tint & blending */
    background: transparent !important;
    mix-blend-mode: normal !important;
    pointer-events: none;
    z-index: 2;
}
/* === ACCESSIBILITY === */
/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .learn-more-btn,
    .learn-more-btn::before,
    .learn-more-btn i,
    .product-features .feature-item,
    .product-image-container img,
    .product-image-placeholder,
    .face-box,
    .detection-line {
        animation: none !important;
        transition: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .product .section-label {
        border-width: 2px;
    }
    
    .product-features .feature-item {
        border-width: 2px;
    }
    
    .learn-more-btn {
        border: 3px solid var(--color-primary);
    }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .product .container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
        max-width: 600px;
    }

    .product-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .product-image-container {
        max-width: 380px;
        height: 340px;
    }

    .product-features {
        max-width: 100%;
    }

    .learn-more-btn {
        margin: 18px auto 24px;
    }
}

@media (max-width: 768px) {
    .product {
        padding: 50px 0;
    }

    .product .container {
        padding: 0 var(--spacing-lg);
    }

    .product-left .section-title {
        font-size: 26px;
        margin-bottom: var(--spacing-md);
    }

    .product .section-label {
        font-size: 9px;
        padding: var(--spacing-xs) 12px;
        margin-bottom: 14px;
    }

    .product-left .section-description {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .learn-more-btn {
        padding: 12px 28px;
        font-size: 13px;
        margin: var(--spacing-md) auto 22px;
    }
    
    .learn-more-btn i {
        font-size: 12px;
    }

    .product-features {
        margin-top: 22px;
    }

    .product-features .feature-item {
        padding: 12px 14px;
        margin-bottom: 10px;
    }

    .product-features .feature-item i {
        font-size: 18px;
        min-width: 22px;
    }

    .product-features .feature-item h4 {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .product-features .feature-item p {
        font-size: 11px;
    }

    .product-image-container {
        max-width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .learn-more-btn {
        padding: 11px var(--spacing-lg);
        font-size: 12px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* === PRINT STYLES === */
@media print {
    .product::before,
    .product::after,
    .recognition-overlay,
    .face-box,
    .detection-line,
    .product-image-overlay {
        display: none;
    }
    
    .learn-more-btn {
        box-shadow: none;
        border: 2px solid var(--color-primary);
    }
}
/* === INDUSTRIES SECTION === */
        /* === INDUSTRIES SECTION === */
        .industries {
            padding: 50px 0 60px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #0A1929 0%, #0D2135 25%, #0F2943 50%, #0D2135 75%, #0A1929 100%);
        }

        /* Banner Image Background - Matching Services */
        .industries::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=1080&fit=crop&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            filter: blur(0.5px);
            z-index: 1;
        }

        /* Enhanced Gradient Overlay with Blue Accents */
        .industries::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(135deg, rgba(10, 25, 41, 0.75) 0%, rgba(13, 33, 53, 0.85) 50%, rgba(10, 25, 41, 0.75) 100%),
                radial-gradient(circle at 15% 20%, rgba(41, 128, 185, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 85% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(30, 100, 150, 0.08) 0%, transparent 60%);
            z-index: 2;
            pointer-events: none;
        }

        /* Subtle Texture */
        .industries-noise {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' 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)' opacity='0.025'/%3E%3C/svg%3E");
            z-index: 3;
            pointer-events: none;
            opacity: 0.6;
        }

        /* Vertical Light Accent */
        .industries-accent {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(52, 152, 219, 0.3) 50%, transparent 100%);
            z-index: 3;
            pointer-events: none;
        }

        .container {
            position: relative;
            z-index: 4;
        }

        .section-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .section-header .section-label {
            color: #3498DB;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 1.8px;
            margin-bottom: 10px;
            display: inline-block;
            padding: 4px 12px;
            background: rgba(52, 152, 219, 0.15);
            border: 1.5px solid rgba(52, 152, 219, 0.4);
            border-radius: 50px;
            text-transform: uppercase;
            backdrop-filter: blur(10px);
        }

        .section-header .section-title {
            font-size: 28px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 10px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .section-header .gradient-text {
            background: linear-gradient(135deg, #3498DB 0%, #5DADE2 50%, #85C1E9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 2px 10px rgba(52, 152, 219, 0.4));
            font-weight: 800;
        }

        .section-subtitle {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.85);
            margin-top: 6px;
            font-weight: 400;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .industry-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            backdrop-filter: blur(16px);
            text-align: center;
        }

        /* Premium Glass Effect */
        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(52, 152, 219, 0.03) 100%);
            opacity: 0;
            transition: opacity 0.45s ease;
            z-index: 0;
            pointer-events: none;
            border-radius: 12px;
        }

        .industry-card:hover::before {
            opacity: 1;
        }

        .industry-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(52, 152, 219, 0.4);
            box-shadow: 
                0 16px 48px rgba(52, 152, 219, 0.2),
                0 0 40px rgba(52, 152, 219, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        .industry-image {
            height: 140px;
            position: relative;
            overflow: hidden;
        }

        .industry-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            filter: brightness(0.75) contrast(1.15) saturate(0.9);
        }

        .industry-card:hover .industry-image img {
            transform: scale(1.05);
            filter: brightness(0.85) contrast(1.2) saturate(1);
        }

        /* Subtle Blue Overlay on Image */
        .industry-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(180deg, rgba(11, 26, 47, 0.4) 0%, rgba(15, 34, 60, 0.3) 40%, rgba(11, 26, 47, 0.7) 100%),
                radial-gradient(circle at 50% 50%, rgba(0, 153, 204, 0.12) 0%, transparent 60%);
            z-index: 1;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .industry-card:hover .industry-image::before {
            opacity: 0.85;
        }

        .industry-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(11, 26, 47, 0.95), transparent);
            padding: 8px 14px;
            color: #ffffff;
            font-weight: 600;
            font-size: 8px;
            z-index: 2;
            letter-spacing: 1.3px;
            text-transform: uppercase;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
        }

        .industry-content {
            padding: 18px 20px;
            position: relative;
            z-index: 1;
        }

        .industry-content h3 {
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 10px;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0.3px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
        }

        .industry-content p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin: 0;
            font-weight: 400;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .industries-grid {
                gap: 18px;
                max-width: 900px;
            }

            .section-header .section-title {
                font-size: 26px;
            }
        }

        @media (max-width: 992px) {
            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
                max-width: 700px;
            }
            
            .section-header .section-title {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .industries {
                padding: 45px 0 50px;
            }
            
            .industries-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                padding: 0 20px;
                max-width: 500px;
            }
            
            .section-header {
                margin-bottom: 30px;
            }
            
            .section-header .section-title {
                font-size: 22px;
            }
            
            .section-header .section-label {
                font-size: 8px;
                padding: 4px 10px;
                margin-bottom: 8px;
            }
            
            .section-subtitle {
                font-size: 12px;
            }
            
            .industry-image {
                height: 130px;
            }
            
            .industry-content {
                padding: 16px 18px;
            }
            
            .industry-content h3 {
                font-size: 15px;
                margin-bottom: 8px;
            }
        }

        @media (max-width: 480px) {
            .section-header .section-title {
                font-size: 20px;
            }
            
            .industry-content h3 {
                font-size: 14px;
            }
            
            .industry-content p {
                font-size: 11px;
            }

            .industry-image {
                height: 120px;
            }
        }
/* ===================================
   CONTACT SECTION - COMPLETE CSS
   Replace your contact section CSS with this
   =================================== */

/* === CONTACT SECTION === */
.contact {
    padding: 80px 0 120px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Animated Background */
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.90) 100%),
                url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

/* Dynamic gradient orbs */
.contact::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, -30px) scale(1.05); }
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* --- Left Column Styling --- */
.contact-left {
    max-width: 540px;
    padding-top: 20px;
}

.contact .section-label {
    color: #FF7B00;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 123, 0, 0.08);
    border: 1.5px solid rgba(255, 123, 0, 0.25);
    border-radius: 50px;
    text-transform: uppercase;
}

.contact .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.contact .gradient-text {
    background: linear-gradient(135deg, #FF7B00 0%, #FF9933 30%, #0066CC 70%, #0080FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.contact .section-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 400;
}

/* --- Info Cards --- */
.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.info-card:hover {
    transform: translateX(8px);
    border-color: rgba(0, 102, 204, 0.3);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12);
    background: #ffffff;
}

.icon-box {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(245, 247, 250, 1) 0%, rgba(241, 245, 249, 1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.icon-box i {
    font-size: 16px;
}

.info-card:nth-child(1) .icon-box { background: linear-gradient(135deg, rgba(255, 123, 0, 0.1) 0%, rgba(255, 153, 51, 0.08) 100%); }
.info-card:nth-child(1) .icon-box i { color: #FF7B00; }

.info-card:nth-child(2) .icon-box { background: linear-gradient(135deg, rgba(51, 51, 51, 0.08) 0%, rgba(71, 85, 105, 0.06) 100%); }
.info-card:nth-child(2) .icon-box i { color: #334155; }

.info-card:nth-child(3) .icon-box { background: linear-gradient(135deg, rgba(0, 128, 255, 0.1) 0%, rgba(0, 102, 204, 0.08) 100%); }
.info-card:nth-child(3) .icon-box i { color: #0080FF; }

.info-card h4 {
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 4px;
    font-weight: 700;
}

.info-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* --- Right Column: Form --- */
.contact-right {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF7B00 0%, #0066CC 100%);
    border-radius: 20px 20px 0 0;
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    text-align: center;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-form .form-group {
    margin-bottom: 14px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    color: #0f172a;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-form input::placeholder,
.contact-form select::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066CC;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    background: #ffffff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 10px;
    background: linear-gradient(135deg, #FF7B00 0%, #FF6B35 25%, #0066CC 75%, #0080FF 100%);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.35);
    transform: translateY(-3px);
}

.contact-form .btn-primary:active {
    transform: translateY(-1px);
}

/* Form Loading State */
.contact-form .btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.contact-form .btn-primary .fa-spinner {
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form Pulse Animation */
@keyframes formPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 24px 70px rgba(0, 102, 204, 0.15);
    }
}

/* Success/Error Message (Optional - using notifications instead) */
.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* ===================================
   NOTIFICATION SYSTEM STYLES
   =================================== */

/* === NOTIFICATION STYLES === */
.notification {
    position: fixed;
    top: 100px;
    right: -450px;
    min-width: 340px;
    max-width: 420px;
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 14px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10000;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid;
    backdrop-filter: blur(10px);
}

.notification.show {
    right: 30px;
    animation: slideInBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInBounce {
    0% {
        transform: translateX(500px) scale(0.8);
        opacity: 0;
    }
    60% {
        transform: translateX(-20px) scale(1.05);
        opacity: 1;
    }
    80% {
        transform: translateX(10px) scale(0.98);
    }
    100% {
        transform: translateX(0) scale(1);
    }
}

.notification-success {
    border-left-color: #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.notification-error {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.notification i {
    font-size: 26px;
    flex-shrink: 0;
    animation: iconPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

@keyframes iconPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.notification-success i {
    color: #10b981;
}

.notification-error i {
    color: #ef4444;
}

.notification span {
    flex: 1;
    color: #1f2937;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: all 0.2s ease;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.notification-close:hover {
    color: #1f2937;
    background: rgba(0, 0, 0, 0.05);
    transform: rotate(90deg);
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .contact {
        padding: 60px 0 100px 0;
    }

    .contact .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        max-width: 550px;
    }

    .contact-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 0;
    }

    .contact .section-title {
        font-size: 36px;
    }

    .contact-info-grid {
        width: 100%;
        max-width: 420px;
    }

    .info-card {
        text-align: left;
    }

    .contact-form-wrapper {
        margin: 0 auto;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .notification {
        min-width: 300px;
        max-width: calc(100% - 40px);
        right: -400px;
        top: 80px;
        padding: 18px 20px;
    }
    
    .notification.show {
        right: 20px;
    }

    .notification i {
        font-size: 22px;
    }

    .notification span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 50px 0 80px 0;
    }

    .contact .container {
        padding: 0 20px;
    }

    .contact .section-title {
        font-size: 30px;
    }

    .contact .section-description {
        font-size: 15px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrapper {
        padding: 28px 24px;
    }

    .notification {
        min-width: 280px;
        top: 70px;
        padding: 16px 18px;
        gap: 12px;
    }

    .notification i {
        font-size: 20px;
    }

    .notification span {
        font-size: 12px;
        line-height: 1.5;
    }

    .notification-close {
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
}
/* === FOOTER SECTION === */
.footer {
    background: linear-gradient(180deg, rgba(31, 44, 57, 0.7) 0%, rgba(22, 32, 41, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    
    /* CRITICAL FIX: Pull the footer UP by 50px to sit on top of the Contact section's white padding */
    margin-top: -50px;
    
    padding: 80px 0 30px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    
    /* Z-index must be higher than contact (1) to overlap correctly */
    z-index: 10;
}

/* Subtle glow effect behind the footer content */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 123, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    /* 4 Columns: Logo (wide), Services, Links, Contact (wide) */
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

/* --- Footer Columns --- */
.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Gradient underline for headings */
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #FF7B00 0%, #0066CC 100%);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #FF7B00;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 123, 0, 0.3);
}

/* --- Specific Styles for "About" Column --- */
.footer-about {
    max-width: 100%;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 140px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 20px;
}

/* --- Specific Styles for "Contact" Column --- */
.footer-contact li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.footer-contact i {
    color: #FF7B00; /* Orange Icon Accent */
    font-size: 16px;
    margin-top: 4px;
    filter: drop-shadow(0 0 5px rgba(255, 123, 0, 0.4));
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* --- Footer Bottom --- */
.footer-bottom {
    text-align: center;
    padding-top: 10px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.footer-bottom a {
    color: #FF7B00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #0066CC;
    text-decoration: underline;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr; /* 2 Columns on Tablet */
        gap: 40px;
    }

    .footer-about {
        grid-column: span 2; /* Logo section spans full width */
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 35px;
        padding-bottom: 30px;
    }
    
    .footer-about {
        grid-column: auto;
        text-align: left;
    }

    .footer-logo {
        justify-content: flex-start;
    }
    
    .footer-logo-img {
        max-width: 120px;
    }
}
/* === SMOOTH SCROLLING === */
html {
    scroll-padding-top: 80px;
}

/* === SELECTION STYLING === */
::selection {
    background: var(--aqua-green);
    color: var(--white);
}

::-moz-selection {
    background: var(--aqua-green);
    color: var(--white);
}






