:root {
    --primary: #0066b3;
    --secondary: #ff9800;
    --accent: #4caf50;
    --dark: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
    --header-height: 70px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f5f7fa;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

/* ============================================
   LOADER
============================================ */
#loader {
    height: 100%;
    width: 100%;
    background-color: #000;
    position: fixed;
    z-index: 9999;
    top: 0;
    transition: all ease 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4vw;
    color: transparent;
    background: linear-gradient(to right, var(--secondary), #ff4500);
    -webkit-background-clip: text;
    position: absolute;
    opacity: 0;
    animation-name: load;
    animation-duration: 1s;
    animation-timing-function: linear;
}

#loader h1:nth-child(2) {
    animation-delay: 2s;
}

#loader h1:nth-child(3) {
    animation-delay: 3s;
}

@keyframes load {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

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

header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

header.nav-hidden {
    transform: translateY(-100%);
}

header.nav-visible {
    transform: translateY(0);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    animation: rotate 10s linear infinite;
}

.logo-icon i {
    color: white;
    font-size: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    letter-spacing: 1px;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation Menu */
/* Dropdown Styles */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu .dropdown-toggle i {
    font-size: 0.8em;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    min-width: 200px;
    z-index: 1000;
}

.nav-menu .dropdown-menu li {
    list-style: none;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.nav-menu .dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-menu ul {
    display: flex;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary);
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
}

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

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

/* Mobile Toggle Icon - Hamburger to X Animation */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    background: transparent;
    border: none;
    outline: none;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
    display: block;
}

/* When menu is active - Transform to X */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--primary);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--primary);
}

.mobile-toggle:hover span {
    background: var(--primary);
}

.mobile-toggle:active {
    transform: scale(0.95);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 50%, rgba(51, 65, 85, 0.92) 100%),
        url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1772&q=80') no-repeat center center/cover;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite alternate;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(1deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #22c55e;
}

.badge-icon {
    font-size: 1rem;
}

.hero-heading {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(167, 210, 246, 0.5),
        0 0 20px rgba(157, 189, 253, 0.438),
        0 0 40px rgba(162, 177, 251, 0.315),
        0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}



.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 4px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-modern.btn-primary {
    background: linear-gradient(135deg, #1d385c 0%, #006eff 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(226, 239, 249, 0.405);
}

.btn-modern.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4);
}

.btn-modern.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-modern.btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
    z-index: 5;
    position: relative;
}

.hero-main-image:hover {
    transform: scale(1.02);
}

/* Floating Cards */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    animation: floatAnimation 6s ease-in-out infinite;
    z-index: 15;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    left: -30px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: -10px;
    animation-delay: 4s;
}

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

.card-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
}

.card-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
}

/* ============================================
   PRODUCT SPOTLIGHT SECTION
============================================ */
#product-spotlight {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.product-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
}

.spotlight-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    position: relative;
}

.spotlight-heading:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.floating-product {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    background: transparent;
}

.product-image-2d {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float3D 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.product-image-2d:hover {
    transform: scale(1.05);
}

@keyframes float3D {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg) scale(1);
        filter: drop-shadow(0 20px 30px rgba(0, 102, 179, 0.2));
    }
    25% {
        transform: translateY(-15px) rotateX(2deg) rotateY(2deg) scale(1.02);
        filter: drop-shadow(0 25px 35px rgba(0, 102, 179, 0.3));
    }
    50% {
        transform: translateY(-25px) rotateX(-1deg) rotateY(-1deg) scale(1.01);
        filter: drop-shadow(0 30px 40px rgba(0, 102, 179, 0.25));
    }
    75% {
        transform: translateY(-10px) rotateX(1deg) rotateY(-2deg) scale(1.03);
        filter: drop-shadow(0 22px 32px rgba(0, 102, 179, 0.28));
    }
}

.product-content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.tagline {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 25px;
    display: block;
    text-align: left;
}

.main-description {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 30px;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    line-height: 1.7;
    background: rgba(76, 175, 80, 0.05);
    padding: 20px;
    border-radius: 0 10px 10px 0;
}

.benefits-heading {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
    display: inline-block;
}

.benefit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.benefit-list li {
    font-size: 0.9rem;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    transition: transform 0.3s ease;
}

.benefit-list li:hover {
    transform: translateX(5px);
}

.benefit-list li i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 1.1em;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ============================================
   APPLICATIONS SECTION
============================================ */
.applications {
    background: var(--light);
    padding: 60px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.applications-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.scroll-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: all;
    font-size: 1.2rem;
}

.scroll-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.applications-scroll-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: 0 60px;
}

.applications-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.applications-scroll::-webkit-scrollbar {
    display: none;
}

.application-card {
    flex: 0 0 calc(16.66% - 17px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    min-width: 250px;
}

.application-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.application-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.application-card:hover .application-image img {
    transform: scale(1.05);
}

.application-info {
    padding: 15px;
    text-align: center;
}

.application-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 700;
}

.application-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.applications-indicator {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* ============================================
   BACK TO TOP BUTTON
============================================ */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    padding: 10px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #0066b3, #4caf50);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#back-to-top:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

/* ============================================
   FOOTER
============================================ */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.footer-col {
    text-align: center;
    margin: 10px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-top: 20px;
    margin-left: 15px;
    margin-right: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #0077b5;
}

/* ============================================
   ANIMATIONS
============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN - TABLETS
============================================ */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .product-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-visual {
        order: -1;
    }
    
    .benefit-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
============================================ */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .header-container {
        padding: 12px 15px;
    }
    
    .logo {
        margin-right: auto;
    }
    
    .mobile-toggle {
        display: flex;
        margin-left: 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        background: white;
        width: 100%;
        height: calc(100vh - 70px);
        transition: all 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 20px 0;
        height: auto;
        justify-content: flex-start;
    }
    
    .nav-menu li {
        margin: 0;
        text-align: left;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        display: block;
        padding: 15px 25px;
        width: 100%;
    }
    
    /* Mobile Dropdown Specific */
    .nav-menu .dropdown {
        position: static;
    }
    
    .nav-menu .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 25px;
        cursor: pointer;
    }
    
    .nav-menu .dropdown-menu {
        position: static !important;
        display: none !important;
        background: rgba(0, 102, 179, 0.03);
        box-shadow: none;
        border-radius: 0;
        border-left: 4px solid var(--primary);
        width: 100%;
        animation: none;
    }
    
    .nav-menu .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .nav-menu .dropdown-menu a {
        padding: 12px 45px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .nav-menu .dropdown-menu a:hover {
        background: rgba(0, 102, 179, 0.08);
        padding-left: 50px;
    }
    
    .nav-menu .dropdown-toggle i {
        transition: transform 0.3s ease;
    }
    
    .nav-menu .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 40px;
        background: 
            linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.92) 50%, rgba(51, 65, 85, 0.95) 100%),
            url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1772&q=80') no-repeat center center/cover;
    }
    
    .floating-card {
        background: rgba(255, 255, 255, 0.98);
        padding: 10px 14px;
        border-radius: 10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
    
    .card-1 {
        top: 10%;
        right: 5px;
    }
    
    .card-2 {
        top: 50%;
        left: 5px;
    }
    
    .card-3 {
        bottom: 15%;
        right: 5px;
    }
    
    .card-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .card-text {
        font-size: 0.8rem;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    }
    
    .hero-heading {
        font-size: 2rem;
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    }
    
    .hero-badge {
        background: rgba(34, 197, 94, 0.25);
        border: 1px solid rgba(34, 197, 94, 0.6);
    }
    
    .hero-stats {
        gap: 20px;
        background: rgba(0, 0, 0, 0.3);
        padding: 20px;
        border-radius: 15px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.8rem;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    }
    
    .hero-stats .stat-label {
        color: #e2e8f0;
    }
    
    .hero-visual {
        margin-top: 30px;
    }
    
    /* Applications Mobile */
    .applications {
        padding: 60px 0;
    }
    
    .applications-controls {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        padding: 0 10px;
    }
    
    .scroll-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .scroll-btn:active {
        transform: scale(0.95);
    }
    
    .applications-scroll-container {
        margin: 0 20px;
    }
    
    .applications-scroll {
        gap: 15px;
        padding: 20px 5px;
        scroll-snap-type: x mandatory;
    }
    
    .application-card {
        flex: 0 0 calc(100% - 40px);
        min-width: calc(100% - 40px);
        max-width: calc(100% - 40px);
        scroll-snap-align: center;
    }
    
    .application-image {
        height: 180px;
    }
    
    /* Back to Top Mobile */
    #back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 15px;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 25px 15px;
    }
    
    .footer-bottom p {
        margin: 8px 0;
        font-size: 13px;
        line-height: 1.6;
    }
    
    .footer-bottom p:first-child {
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 8px;
    }
    
    .footer-bottom a {
        color: #82b8f9;
        font-weight: 600;
    }
    
    .footer-bottom a:hover {
        color: #5a9bff;
        text-decoration: underline;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-col {
        margin: 15px 0;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .spotlight-heading {
        font-size: 1.8rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE
============================================ */
@media (max-width: 576px) {
    .header-container {
        padding: 10px 12px;
    }
    
    .logo-main {
        font-size: 1.3rem;
    }
    
    .logo-sub {
        font-size: 0.75rem;
    }
    
    /* Floating cards */
    .floating-card {
        padding: 8px 12px;
        border-radius: 8px;
    }
    
    .card-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .card-text {
        font-size: 0.75rem;
    }
    
    .card-1 {
        top: 8%;
        right: 3px;
    }
    
    .card-2 {
        top: 48%;
        left: 3px;
    }
    
    .card-3 {
        bottom: 12%;
        right: 3px;
    }
    
    .hero-heading {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .btn-modern {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .spotlight-heading {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .main-description {
        font-size: 0.9rem;
        padding: 15px;
    }
    
    .application-card {
        flex: 0 0 calc(100% - 30px);
        min-width: calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    
    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    #back-to-top {
        width: 38px;
        height: 38px;
        bottom: 15px;
        right: 12px;
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - EXTRA SMALL MOBILE
============================================ */
@media (max-width: 400px) {
    .header-container {
        padding: 8px 10px;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-sub {
        font-size: 0.7rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon i {
        font-size: 18px;
    }
    
    /* Floating cards */
    .floating-card {
        padding: 6px 10px;
        border-radius: 6px;
    }
    
    .card-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    .card-text {
        font-size: 0.7rem;
    }
    
    .card-1 {
        top: 5%;
        right: 2px;
    }
    
    .card-2 {
        top: 45%;
        left: 2px;
    }
    
    .card-3 {
        bottom: 10%;
        right: 2px;
    }
    
    .hero-heading {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .applications-scroll-container {
        margin: 0 15px;
    }
    
    .application-card {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    
    .scroll-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    #back-to-top {
        width: 35px;
        height: 35px;
        bottom: 12px;
        right: 10px;
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding: 20px 10px;
        gap: 12px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
}