/* ===================================
   CSS Variables & Base Styles
   =================================== */

:root {
    /* Colors - Beautiful Medical Blue Theme */
    --primary-color: #1e90ff;
    --secondary-color: #00bfff;
    --accent-color: #4169e1;
    --dark-color: #0a1628;
    --dark-alt: #152238;
    --text-color: #e8f2ff;
    --text-secondary: #a8c5e8;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1e90ff 0%, #00bfff 50%, #87ceeb 100%);
    --gradient-hover: linear-gradient(135deg, #4169e1 0%, #1e90ff 50%, #00bfff 100%);
    --gradient-soft: linear-gradient(135deg, rgba(30, 144, 255, 0.1) 0%, rgba(0, 191, 255, 0.1) 100%);
    --glow-blue: 0 0 20px rgba(30, 144, 255, 0.4), 0 0 40px rgba(0, 191, 255, 0.2);
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background: linear-gradient(135deg, 
        #0a1628 0%, 
        #0d1f3a 15%,
        #0a1628 30%,
        #152238 45%,
        #0a1628 60%,
        #0d1f3a 75%,
        #0a1628 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(107, 142, 35, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(154, 205, 50, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(107, 142, 35, 0.03) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(107, 142, 35, 0.025) 2px, rgba(107, 142, 35, 0.025) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(107, 142, 35, 0.025) 2px, rgba(107, 142, 35, 0.025) 4px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 3;
    opacity: 0.6;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Animated Background Particles */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(30, 144, 255, 0.2) 0%, 
        rgba(0, 191, 255, 0.1) 50%, 
        transparent 100%);
    animation: float linear infinite, pulse 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(30, 144, 255, 0.4),
                0 0 60px rgba(0, 191, 255, 0.2),
                inset 0 0 20px rgba(135, 206, 235, 0.3);
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.particle:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-duration: 20s; animation-delay: 0s; }
.particle:nth-child(2) { width: 60px; height: 60px; left: 20%; animation-duration: 25s; animation-delay: 2s; }
.particle:nth-child(3) { width: 100px; height: 100px; left: 30%; animation-duration: 30s; animation-delay: 4s; }
.particle:nth-child(4) { width: 70px; height: 70px; left: 40%; animation-duration: 22s; animation-delay: 1s; }
.particle:nth-child(5) { width: 90px; height: 90px; left: 50%; animation-duration: 28s; animation-delay: 3s; }
.particle:nth-child(6) { width: 65px; height: 65px; left: 60%; animation-duration: 24s; animation-delay: 5s; }
.particle:nth-child(7) { width: 85px; height: 85px; left: 70%; animation-duration: 26s; animation-delay: 2s; }
.particle:nth-child(8) { width: 75px; height: 75px; left: 80%; animation-duration: 23s; animation-delay: 4s; }
.particle:nth-child(9) { width: 95px; height: 95px; left: 15%; animation-duration: 27s; animation-delay: 1s; }
.particle:nth-child(10) { width: 55px; height: 55px; left: 25%; animation-duration: 21s; animation-delay: 3s; }
.particle:nth-child(11) { width: 110px; height: 110px; left: 35%; animation-duration: 29s; animation-delay: 0s; }
.particle:nth-child(12) { width: 68px; height: 68px; left: 45%; animation-duration: 25s; animation-delay: 2s; }
.particle:nth-child(13) { width: 88px; height: 88px; left: 55%; animation-duration: 31s; animation-delay: 4s;}
.particle:nth-child(14) { width: 72px; height: 72px; left: 65%; animation-duration: 24s; animation-delay: 1s; }
.particle:nth-child(15) { width: 92px; height: 92px; left: 75%; animation-duration: 26s; animation-delay: 3s; }
.particle:nth-child(16) { width: 58px; height: 58px; left: 85%; animation-duration: 22s; animation-delay: 5s; }
.particle:nth-child(17) { width: 78px; height: 78px; left: 12%; animation-duration: 28s; animation-delay: 2s; }
.particle:nth-child(18) { width: 105px; height: 105px; left: 42%; animation-duration: 30s; animation-delay: 0s; }
.particle:nth-child(19) { width: 62px; height: 62px; left: 72%; animation-duration: 23s; animation-delay: 4s; }
.particle:nth-child(20) { width: 82px; height: 82px; left: 90%; animation-duration: 27s; animation-delay: 1s; }

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

/* Geometric Shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.15;
    animation: rotate-shape 20s linear infinite;
    filter: drop-shadow(0 0 15px rgba(0, 102, 204, 0.1));
}

.shape-1 {
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    border: 2px solid var(--secondary-color);
    transform: rotate(45deg);
    top: 60%;
    right: 10%;
    animation-duration: 30s;
    animation-direction: reverse;
}

.shape-3 {
    width: 180px;
    height: 180px;
    border: 2px solid var(--primary-color);
    border-radius: 30%;
    bottom: 15%;
    left: 15%;
    animation-duration: 28s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    top: 40%;
    right: 20%;
    animation-duration: 22s;
    animation-direction: reverse;
}

.shape-5 {
    width: 160px;
    height: 160px;
    border: 2px solid var(--primary-color);
    transform: rotate(30deg);
    top: 25%;
    left: 50%;
    animation-duration: 26s;
}

@keyframes rotate-shape {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.1;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-padding {
    padding: var(--section-padding);
    position: relative;
    z-index: 2;
    background: rgba(10, 14, 13, 0.95);
}

.section-padding::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 20%, 
        var(--secondary-color) 50%, 
        var(--primary-color) 80%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(107, 142, 35, 0.5);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(107, 142, 35, 0.5);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 30px rgba(107, 142, 35, 0.8);
    }
}

.section-padding::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(107, 142, 35, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.3);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(107, 142, 35, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.3);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 0 50px rgba(107, 142, 35, 0.8), inset 0 0 15px rgba(255, 255, 255, 0.5);
        transform: translateX(-50%) scale(1.1);
    }
}





/* ===================================
   Utility Classes
   =================================== */

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3), 
                0 0 20px rgba(0, 191, 255, 0.2);
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.6s;
    }
    
    .btn-primary:hover::before {
        left: 100%;
    }

    .btn-primary:hover {
        background: var(--gradient-hover);
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(30, 144, 255, 0.5), 
                    0 0 40px rgba(0, 191, 255, 0.3),
                    0 0 60px rgba(30, 144, 255, 0.1);
    }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.2);
}

    .btn-outline:hover {
        background: var(--gradient);
        border-color: transparent;
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(30, 144, 255, 0.4), 
                    0 0 40px rgba(0, 191, 255, 0.2);
    }

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15) 0%, rgba(0, 191, 255, 0.15) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    border: 1px solid rgba(30, 144, 255, 0.3);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.2);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0a1628;
    z-index: 1001;
    transition: var(--transition);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

    .navbar.scrolled {
        background: #0a1628;
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        border-bottom: 1px solid rgba(107, 142, 35, 0.3);
        padding: 12px 0;
    }

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

    .logo a {
        display: flex;
        align-items: center;
        line-height: 0;
    }

    .logo-img {
        height: 80px;
        width: auto;
        object-fit: contain;
        filter: none;
    }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

    /* Hide icons on desktop */
    .nav-link i {
        display: none;
    }
    
    /* Show only dropdown chevron on desktop */
    .nav-link .fa-chevron-down {
        display: inline-block;
        font-size: 12px;
        margin-left: 5px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--white);
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient);
        transition: width 0.3s;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    margin-top: 20px;
    min-width: 800px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content {
    background: var(--dark-alt);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dropdown-section h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dropdown-section a {
    display: block;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

    .dropdown-section a:hover {
        color: var(--white);
        padding-left: 10px;
    }

.nav-cta {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background: var(--white);
        border-radius: 3px;
        transition: var(--transition);
    }

/* ===================================
   Hero Section
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    isolation: isolate;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 25%, 
        var(--secondary-color) 50%, 
        var(--primary-color) 75%, 
        transparent 100%);
    box-shadow: 0 0 30px rgba(107, 142, 35, 0.8);
    z-index: 10;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 29, 17, 0.5) 0%, rgba(37, 41, 32, 0.4) 100%);
    z-index: 1;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(107, 142, 35, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(154, 205, 50, 0.15) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

    .stat-item i {
        font-size: 32px;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .stat-item span {
        display: block;
        font-size: 36px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 5px;
    }

    .stat-item p {
        color: var(--text-secondary);
        font-size: 14px;
    }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

    .mouse::before {
        content: '';
        width: 4px;
        height: 8px;
        background: var(--primary-color);
        border-radius: 2px;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        animation: scroll 2s infinite;
    }

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* ===================================
   About Section
   =================================== */

.about-section {
    background: rgba(10, 14, 13, 0.95);
    position: relative;
    z-index: 2;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--dark-color);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

    .about-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-color);
        box-shadow: 0 12px 40px rgba(107, 142, 35, 0.2);
    }

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .card-icon i {
        font-size: 28px;
        color: var(--white);
    }

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   Gallery Section
   =================================== */

.gallery-section {
    background: rgba(10, 14, 13, 0.95);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.gallery-scroll {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--dark-alt);
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: var(--dark-alt);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.gallery-track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    flex: 0 0 auto;
    width: 400px;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(107, 142, 35, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===================================
   Services Section
   =================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, 
        rgba(21, 34, 56, 0.5) 0%, 
        rgba(10, 22, 40, 0.8) 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(30, 144, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, 
            rgba(30, 144, 255, 0.1) 0%, 
            transparent 70%);
        opacity: 0;
        transition: opacity 0.4s;
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-color);
        box-shadow: 0 12px 40px rgba(30, 144, 255, 0.3),
                    0 0 60px rgba(0, 191, 255, 0.2),
                    inset 0 0 30px rgba(30, 144, 255, 0.05);
    }

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(30, 144, 255, 0.2) 0%, 
        rgba(0, 191, 255, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.3);
    position: relative;
    z-index: 1;
}

    .service-icon i {
        font-size: 28px;
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: drop-shadow(0 0 10px rgba(30, 144, 255, 0.5));
    }

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
}

    .service-list li {
        padding: 8px 0;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .service-list i {
        color: var(--primary-color);
        font-size: 14px;
    }

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .service-link:hover {
        gap: 12px;
    }

/* Services CTA Button */
.services-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-cta .btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(107, 142, 35, 0.3);
    transition: all 0.3s ease;
}

.services-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(107, 142, 35, 0.4);
}

.services-cta-text {
    margin-top: 20px;
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===================================
   Process Section
   =================================== */

.process-section {
    position: relative;
    z-index: 2;
    background: rgba(10, 14, 13, 0.95);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    position: relative;
    padding: 40px 30px;
    text-align: center;
}

.step-number {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 72px;
    font-weight: 700;
    color: rgba(107, 142, 35, 0.1);
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

    .step-icon i {
        font-size: 32px;
        color: var(--white);
    }

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   Team Section
   =================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: var(--dark-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

    .team-member:hover {
        transform: translateY(-10px);
        border-color: var(--primary-color);
        box-shadow: 0 12px 40px rgba(107, 142, 35, 0.2);
    }

.member-image {
    position: relative;
    padding-top: 100%;
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    overflow: hidden;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .image-placeholder i {
        font-size: 80px;
        color: rgba(255, 255, 255, 0.3);
    }

.member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

    .member-social a:hover {
        background: var(--primary-color);
        color: var(--white);
    }

.member-info {
    padding: 30px;
}

    .member-info h3 {
        font-size: 22px;
        margin-bottom: 5px;
    }

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 14px;
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials-section {
    position: relative;
    z-index: 2;
    background: rgba(10, 14, 13, 0.95);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-color);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

    .testimonial-card:hover {
        border-color: var(--primary-color);
        transform: translateY(-5px);
    }

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

    .stars i {
        color: #fbbf24;
        font-size: 18px;
    }

.testimonial-text {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .author-image i {
        font-size: 24px;
        color: var(--white);
    }

.author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===================================
   FAQ Section
   =================================== */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-alt);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

    .faq-item:hover {
        border-color: var(--primary-color);
    }

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

    .faq-question h3 {
        font-size: 18px;
        font-weight: 600;
    }

    .faq-question i {
        color: var(--primary-color);
        font-size: 18px;
        transition: var(--transition);
    }

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   Careers Section
   =================================== */

.careers-section {
    position: relative;
    z-index: 2;
    background: rgba(10, 14, 13, 0.95);
}

.jobs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.job-card {
    background: var(--dark-alt);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(107, 142, 35, 0.2);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.job-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.job-badge {
    background: rgba(30, 144, 255, 0.2);
    color: var(--primary-color);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

.job-title {
    font-size: 24px;
    color: var(--white);
    margin: 0;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    color: var(--primary-color);
}

.job-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.job-requirements h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 15px;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.job-requirements li {
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.job-requirements i {
    color: var(--primary-color);
    margin-top: 4px;
    font-size: 14px;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: rgba(107, 142, 35, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(107, 142, 35, 0.3);
    transition: var(--transition);
}

.skill-tag:hover {
    background: rgba(107, 142, 35, 0.2);
    border-color: var(--primary-color);
}

.job-card .btn {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}

.job-card-placeholder {
    background: linear-gradient(135deg, rgba(107, 142, 35, 0.05) 0%, rgba(154, 205, 50, 0.05) 100%);
    border: 2px dashed rgba(107, 142, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.job-card-placeholder:hover {
    transform: none;
    border-color: var(--primary-color);
}

.placeholder-content {
    text-align: center;
    padding: 40px;
}

.placeholder-content i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.placeholder-content h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.placeholder-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.placeholder-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.placeholder-content a:hover {
    color: var(--secondary-color);
}

/* ===================================
   Contact Section
   =================================== */

.contact-section {
    position: relative;
    z-index: 2;
    background: rgba(10, 14, 13, 0.95);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

    .contact-item i {
        width: 50px;
        height: 50px;
        background: rgba(107, 142, 35, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--primary-color);
        flex-shrink: 0;
    }

    .contact-item h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .contact-item p {
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.6;
    }

.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        width: 45px;
        height: 45px;
        background: rgba(107, 142, 35, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 18px;
    }

        .social-links a:hover {
            background: var(--gradient);
            color: var(--white);
        }

.contact-form-wrapper {
    background: var(--dark-color);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--white);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 18px;
        background: var(--dark-alt);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: var(--white);
        font-family: inherit;
        font-size: 15px;
        transition: var(--transition);
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.contact-form button {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: #0a1628;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(107, 142, 35, 0.3);
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 20%, 
        var(--secondary-color) 50%, 
        var(--primary-color) 80%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(107, 142, 35, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .footer-logo .logo-img {
        height: 120px;
        width: auto;
        object-fit: contain;
        filter: none;
    }

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        background: rgba(107, 142, 35, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
    }

        .footer-social a:hover {
            background: var(--gradient);
            color: var(--white);
        }

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 12px;
    }

    .footer-section ul a {
        color: var(--text-secondary);
        font-size: 15px;
    }

        .footer-section ul a:hover {
            color: var(--white);
            padding-left: 5px;
        }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .footer-bottom p {
        color: var(--text-secondary);
        font-size: 14px;
    }

.footer-links {
    display: flex;
    gap: 30px;
}

    .footer-links a {
        color: var(--text-secondary);
        font-size: 14px;
    }

        .footer-links a:hover {
            color: var(--white);
        }

/* ===================================
   Back to Top Button
   =================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-5px);
    }

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .dropdown-menu {
        min-width: 600px;
    }

    .dropdown-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet / Small Desktop - Navigation Fix */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 15px;
    }

    .logo-img {
        height: 70px;
    }

    .nav-cta {
        padding: 10px 20px;
        font-size: 14px;
    }

    .dropdown-menu {
        min-width: 600px;
    }

    .dropdown-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 950px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
        padding: 6px 0;
    }

    .dropdown-toggle {
        font-size: 14px;
    }

    .nav-cta .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    .dropdown-menu {
        min-width: 90vw;
        left: 5vw;
        right: 5vw;
        transform: translateX(0) translateY(20px);
    }

    .dropdown:hover .dropdown-menu {
        transform: translateX(0) translateY(0);
    }

    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 850px) {
    .nav-cta {
        display: none;
    }

    .nav-wrapper {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --container-padding: 0 15px;
    }

    * {
        max-width: 100%;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .navbar .container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 200px;
        max-height: calc(100vh - 100px);
        background: linear-gradient(135deg, rgba(37, 41, 32, 0.98) 0%, rgba(26, 29, 17, 0.98) 100%);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 15px 10px;
        gap: 0;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.6), inset 3px 0 0 var(--primary-color);
        border-radius: 12px 0 0 12px;
        overflow-y: auto;
        z-index: 1000;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) var(--dark-color);
    }

    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: var(--dark-color);
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }

        .nav-menu.active {
            right: 0;
        }

    .nav-link {
        padding: 12px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
        min-height: 44px;
        -webkit-tap-highlight-color: transparent;
    }

    /* Show icons on mobile */
    .nav-link i {
        display: inline-block;
        font-size: 16px;
        color: var(--primary-color);
        min-width: 20px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(107, 142, 35, 0.2);
        padding-left: 14px;
        border-bottom-color: var(--primary-color);
        box-shadow: 0 2px 8px rgba(107, 142, 35, 0.3);
        transform: translateX(-2px);
    }

    .nav-link.active {
        background: rgba(107, 142, 35, 0.25);
        border-left: 3px solid var(--primary-color);
        box-shadow: 0 2px 8px rgba(107, 142, 35, 0.4);
    }

    .nav-link:hover i,
    .nav-link.active i {
        color: var(--secondary-color);
        transform: scale(1.1);
    }

    .nav-link span {
        flex: 1;
    }

    .nav-link .fa-chevron-down {
        font-size: 10px;
        margin-left: auto;
        color: var(--text-secondary);
    }

    .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: none;
    }

    /* Hide dropdown content on mobile - too narrow */
    .dropdown-content {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-wrapper {
        justify-content: space-between;
        width: 100%;
    }

    .mobile-menu-btn {
        display: flex;
        order: 3;
        margin-left: auto;
    }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero {
        padding: 100px 0 60px;
        width: 100%;
        overflow: hidden;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

        .hero-cta .btn {
            justify-content: center;
            width: 100%;
        }

    .services-grid,
    .process-grid,
    .team-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .services-cta {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .services-cta .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .services-cta-text {
        font-size: 14px;
        margin-top: 15px;
    }

    .gallery-item {
        width: 300px;
        height: 225px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social,
    .footer-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .hero-title {
        font-size: 36px;
    }

    .stat-item span {
        font-size: 28px;
    }

    .about-cards,
    .services-grid,
    .process-grid,
    .team-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0;
    }

    .service-card,
    .about-card,
    .contact-form-wrapper {
        padding: 25px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-content {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo-img {
        height: 60px;
    }

    .footer-logo .logo-img {
        height: 90px;
    }

    .section-header {
        padding: 0 15px;
        max-width: 100%;
    }

    .jobs-container {
        grid-template-columns: 1fr;
    }

    .job-card {
        padding: 25px;
    }

    .job-title {
        font-size: 24px;
    }

    .job-meta {
        flex-direction: column;
        gap: 10px;
    }

    .section-padding {
        padding: 60px 0;
        overflow: hidden;
    }

    .gallery-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero-title,
    .hero-subtitle,
    .hero-description {
        max-width: 100%;
        word-wrap: break-word;
    }

    /* Menu items styling */
    .nav-menu li {
        margin-bottom: 4px;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(8) { transition-delay: 0.4s; }

    /* Reduce particles on mobile for performance */
    .particle:nth-child(n+11) {
        display: none;
    }

    .shape-4,
    .shape-5 {
        display: none;
    }

    /* Section dividers on mobile */
    .section-padding::after {
        width: 90%;
    }

    .section-padding::before {
        width: 20px;
        height: 20px;
        bottom: -8px;
    }

    /* Smaller screens - keep compact but readable */
    @media (max-width: 400px) {
        .nav-menu {
            width: 160px;
            padding: 12px 8px;
        }

        .nav-link {
            font-size: 13px;
            padding: 10px 8px;
        }

        .nav-link i {
            font-size: 14px;
            min-width: 18px;
        }
        
        .nav-link:hover {
            padding-left: 12px;
        }
    }
}
