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

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

body {
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
}

:root {
    /* Color Palette - Minimalist Corporate */
    --primary: #0A1F44;      /* Deep Navy Blue */
    --secondary: #007BFF;    /* Electric Blue */
    --accent: #00C896;       /* Emerald Green */
    --background: #F9FAFB;   /* Soft White */
    --background-alt: #EDEFF2; /* Light Gray */
    --text-primary: #1C1C1E; /* Dark Charcoal */
    --text-secondary: #6B7280; /* Muted Gray */
    --white: #FFFFFF;
    --shadow: rgba(10, 31, 68, 0.1);
    --shadow-hover: rgba(10, 31, 68, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.3rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(10, 31, 68, 0.08);
    box-shadow: 0 1px 20px rgba(10, 31, 68, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 4px 30px rgba(10, 31, 68, 0.12);
    padding: 0.2rem 0;
    border-bottom: 1px solid rgba(10, 31, 68, 0.12);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Container Enhancement */
.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0.2rem;
    border-radius: 12px;
    position: relative;
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.03), rgba(0, 200, 150, 0.03));
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-logo:hover::before {
    opacity: 1;
}

/* Enhanced Logo Image */
.logo-image {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(10, 31, 68, 0.15));
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px;
}

.navbar.scrolled .logo-image {
    width: 65px;
    height: 65px;
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(10, 31, 68, 0.25));
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

/* Final Header Polish */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 123, 255, 0.1) 25%, 
        rgba(0, 200, 150, 0.1) 50%, 
        rgba(0, 123, 255, 0.1) 75%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar.scrolled::after {
    opacity: 1;
}

/* Enhanced Navigation Items */
.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem 1rem;
    letter-spacing: 0.3px;
    border-radius: 8px;
    margin: 0 0.2rem;
}

.nav-menu a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
    background: rgba(0, 123, 255, 0.05);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 200, 150, 0.05));
    border-radius: 8px;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-menu a:hover::before {
    transform: scale(1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
    box-shadow: 0 1px 4px rgba(0, 123, 255, 0.3);
}

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

/* Active Navigation State */
.nav-menu a.active {
    color: var(--secondary);
    font-weight: 600;
    background: rgba(0, 123, 255, 0.08);
}

.nav-menu a.active::after {
    width: 80%;
}

/* Navigation Menu Animation on Page Load */
@keyframes navFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu li {
    animation: navFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.nav-menu li:nth-child(1) { animation-delay: 0.8s; }
.nav-menu li:nth-child(2) { animation-delay: 0.9s; }
.nav-menu li:nth-child(3) { animation-delay: 1.0s; }
.nav-menu li:nth-child(4) { animation-delay: 1.1s; }
.nav-menu li:nth-child(5) { animation-delay: 1.2s; }
.nav-menu li:nth-child(6) { animation-delay: 1.3s; }

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-alt) 100%);
    overflow: visible;
    padding-top: 120px; /* Account for fixed navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 123, 255, 0.1) 25%, transparent 50%, rgba(0, 200, 150, 0.1) 75%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(10, 31, 68, 0.08) 50%, transparent 100%);
    animation: waveMove 20s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    background-image: 
        radial-gradient(ellipse 200px 100px at 20% 50%, rgba(0, 123, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 150px 80px at 80% 30%, rgba(0, 200, 150, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 180px 90px at 60% 70%, rgba(10, 31, 68, 0.04) 0%, transparent 50%);
    animation: ellipseFloat 25s ease-in-out infinite;
}

/* Additional Aura Layer */
.hero-background .aura-layer {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(0, 123, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(0, 200, 150, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 15% 15%, rgba(10, 31, 68, 0.06) 0%, transparent 50%);
    animation: auraPulse 15s ease-in-out infinite;
}

.tech-pattern {
    position: absolute;
    top: -50px;
    left: -50px;
    width: calc(100% + 100px);
    height: calc(100% + 100px);
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(0, 123, 255, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 70% 80%, rgba(0, 200, 150, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 50% 50%, rgba(10, 31, 68, 0.05) 0%, transparent 70%);
    animation: gentleFloat 30s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0px) skewX(0deg); }
    50% { transform: translateX(20px) skewX(2deg); }
}

@keyframes ellipseFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes auraPulse {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 1;
        transform: scale(1.05) rotate(2deg); 
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 60px;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(10, 31, 68, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    /* Ensure glass pane doesn't extend beyond viewport */
    box-sizing: border-box;
    width: calc(100% - 40px);
    max-width: calc(900px + 120px);
}

.hero-title {
    margin-bottom: 2.5rem;
    color: var(--primary);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 
        0 2px 4px rgba(10, 31, 68, 0.15),
        0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-title .typewriter {
    display: block;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .typewriter-delay {
    display: block;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.6s;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 3.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.4);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.5s;
}

/* Highlights */
.highlights {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    background: var(--white);
    margin-top: 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

/* Top edge - Curved from hero */
.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    border-radius: 0 0 60px 60px;
    box-shadow: 0 -5px 20px rgba(10, 31, 68, 0.08);
}

/* Bottom edge - Angled transition to about */
.highlights::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--background) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 60%);
}

/* Subtle background pattern */
.highlights .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 200, 150, 0.03) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 1;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.highlight-item {
    text-align: center;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(10, 31, 68, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
}

.highlight-item:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 15px 35px rgba(10, 31, 68, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
}

.highlight-item h3 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 0.5rem;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 200, 150, 0.03) 0%, transparent 50%);
    opacity: 0.6;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.about-text h3 {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 600;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 100%;
}

.vision-mission {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border-left: 5px solid var(--secondary);
    box-shadow: 
        0 8px 25px rgba(0, 123, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-mission:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 15px 35px rgba(10, 31, 68, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.vision h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vision h4::before {
    content: '🎯';
    font-size: 1.2rem;
}

.about-features {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    height: 100%;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(10, 31, 68, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.feature-item:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 15px 35px rgba(10, 31, 68, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-item:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4);
}

.feature-item h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

/* Solutions Section */
.solutions {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 200, 150, 0.03) 0%, transparent 50%);
    opacity: 0.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 8px 25px rgba(10, 31, 68, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solution-card::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 0.6s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 15px 35px rgba(10, 31, 68, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.25);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.35);
}

.solution-card h3 {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.solution-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.solution-card ul {
    list-style: none;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.solution-card li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.solution-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

.strengths-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 250, 251, 0.8));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 
        0 8px 25px rgba(10, 31, 68, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
    z-index: 2;
}

.strengths-section h3 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 3rem;
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
}

.strengths-section h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.strength-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 20px rgba(10, 31, 68, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.strength-item::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 0.6s ease;
}

.strength-item:hover::before {
    left: 100%;
}

.strength-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 35px rgba(10, 31, 68, 0.2);
    border-color: rgba(0, 123, 255, 0.3);
}

.strength-item h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.strength-item p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.strength-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 20px rgba(10, 31, 68, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.strength-item:hover .strength-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(10, 31, 68, 0.4);
}

/* Bio-Security Section */
.biosecurity {
    background: var(--white);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.biosecurity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 200, 150, 0.03) 0%, transparent 50%);
    opacity: 0.6;
}

.biosecurity .section-header h2,
.biosecurity .section-header p {
    color: var(--primary);
}

.biosecurity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.biosecurity-text {
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.biosecurity-text h3 {
    color: var(--primary);
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.biosecurity-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.additional-info {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.additional-info h4 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.additional-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-section {
    margin-top: 2.5rem;
}

.cta-section .btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    box-shadow: 0 8px 25px rgba(10, 31, 68, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(10, 31, 68, 0.3);
}

.risks-section {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.risks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: stretch;
    height: 100%;
}

.risk-item {
    text-align: center;
    padding: 1.2rem 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(10, 31, 68, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.risk-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.risk-item:hover::before {
    left: 100%;
}

.risk-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(10, 31, 68, 0.12);
    border-color: rgba(0, 123, 255, 0.2);
}

.risk-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 2;
}

.risk-item h4 {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

/* Industries Section */
.industries {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 200, 150, 0.03) 0%, transparent 50%);
    opacity: 0.6;
}

.industries .section-header h2,
.industries .section-header p {
    color: var(--primary);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.industry-card {
    text-align: center;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(10, 31, 68, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.industry-card:hover::before {
    left: 100%;
}

.industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(10, 31, 68, 0.12);
    border-color: rgba(0, 123, 255, 0.2);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.25);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(10, 31, 68, 0.35);
}

.industry-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.industry-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

/* Contact Section */
.contact {
    background: var(--background);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(10, 31, 68, 0.08);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 300px;
    height: 280px;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 35px rgba(10, 31, 68, 0.12);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(10, 31, 68, 0.25);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(10, 31, 68, 0.35);
}

.contact-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.95rem;
}



/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, #1a365d 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 200, 150, 0.05) 0%, transparent 50%);
    opacity: 0.8;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 2px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-image {
    width: 120px;
    height: 80px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-image:hover {
    transform: scale(1.05);
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 300px;
}

.footer-social h4 {
    margin-top: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.footer-links ul,
.footer-solutions ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-solutions li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-solutions a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before,
.footer-solutions a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-solutions a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a:hover::before,
.footer-solutions a:hover::before {
    width: 100%;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item-footer i {
    width: 20px;
    color: var(--secondary);
    font-size: 16px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(10, 31, 68, 0.08);
        box-shadow: 0 10px 30px rgba(10, 31, 68, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 16px;
        border-bottom: 1px solid rgba(10, 31, 68, 0.05);
        margin: 0;
        border-radius: 0;
    }
    
    .nav-menu a:hover {
        background: rgba(10, 31, 68, 0.02);
        transform: none;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 25px 30px;
        margin: 0 15px;
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .about-content,
    .biosecurity-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-text {
        padding-right: 0;
        min-height: auto;
        text-align: center;
    }
    
    .about-features {
        padding-left: 0;
        min-height: auto;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text p {
        margin: 0 auto 2rem;
    }
    
    .vision-mission {
        padding: 2rem;
        max-width: 500px;
        margin: 2.5rem auto 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        margin: 0 auto 3rem;
    }
    
    .solution-card {
        padding: 2.5rem 2rem;
        height: auto;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .strength-item {
        padding: 2rem 1.5rem;
        height: auto;
    }
    
    .strength-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 1.5rem;
    }
    
    .biosecurity-text {
        padding-right: 0;
        min-height: auto;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .risks-section {
        padding-left: 0;
        min-height: auto;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .risks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }
    
    .risk-item {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .industry-card {
        padding: 2.5rem 2rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .contact-item {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-description {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    

    
    .risks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .risk-item {
        padding: 1.5rem;
    }
    
    .about-text {
        padding-right: 0;
        min-height: auto;
        text-align: center;
    }
    
    .about-features {
        padding-left: 0;
        min-height: auto;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-text p {
        margin: 0 auto 2rem;
    }
    
    .vision-mission {
        padding: 2rem;
        max-width: 500px;
        margin: 2.5rem auto 0;
    }
    
    .feature-item {
        padding: 2rem 1.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        margin: 0 auto 3rem;
    }
    
    .solution-card {
        padding: 2.5rem 2rem;
        height: auto;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .strength-item {
        padding: 2rem 1.5rem;
        height: auto;
    }
    
    .strength-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 1.5rem;
    }
    
    .strengths-grid {
        grid-template-columns: 1fr;
    }
    
    .risks-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .industry-card {
        padding: 2.5rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights {
        margin-top: 0;
        border-radius: 0;
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 20px 30px;
        margin: 0 15px;
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .solutions-grid {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .solution-card {
        padding: 2rem 1.5rem;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Enhanced Header Aesthetics */
.nav-logo:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(10, 31, 68, 0.25));
}

.nav-logo:hover .logo-text h2 {
    color: var(--secondary);
}

/* Header Animation on Page Load */
@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    animation: headerSlideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Logo Animation on Page Load */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.logo-image {
    animation: logoFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}



/* Mobile Navigation Enhancements */
@media (max-width: 768px) {
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    section {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        padding: 80px 0;
    }
    
    .nav-logo {
        padding: 0.3rem;
    }
    
    .logo-image {
        width: 70px;
        height: 70px;
    }
    
    .hero {
        padding-top: 100px;
        width: 100%;
        overflow: hidden;
    }
    
    .hero-background::before,
    .hero-background .aura-layer,
    .hero-background::after,
    .tech-pattern {
        top: -25px;
        left: -25px;
        width: calc(100% + 50px);
        height: calc(100% + 50px);
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    .btn {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .section-header {
        margin-bottom: 3rem;
        width: 100%;
    }
    
    .about-content,
    .biosecurity-content {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        gap: 2rem;
    }
    
    .biosecurity-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .additional-info {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 2rem;
        box-sizing: border-box;
    }
    
    .vision-mission {
        margin: 2rem auto 0;
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .strengths-section {
        padding: 2.5rem 1.5rem;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .solution-card,
    .strength-item,
    .industry-card {
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-item {
        height: auto;
        min-height: 200px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer {
        padding: 4rem 0 2rem;
        width: 100%;
    }
    
    .footer-content {
        gap: 1.5rem;
        width: 100%;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .footer-contact-info {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }
    
    .contact-item-footer {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        width: 100%;
    }
    
    .footer-legal {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    /* Additional Bio-Security Mobile Fixes */
    .biosecurity-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .biosecurity-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .additional-info {
        margin: 1.5rem auto 2rem;
        padding: 1.2rem;
    }
    
    .additional-info h4 {
        font-size: 1.1rem;
    }
    
    .additional-info p {
        font-size: 0.95rem;
    }
    
    .cta-section {
        margin-top: 2rem;
    }
    
    .cta-section .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .risks-grid {
        gap: 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        padding: 0;
    }
    
    .risk-item {
        padding: 1.2rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        height: auto;
        min-height: auto;
    }
    
    .risk-number {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .risk-item h4 {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    /* Ensure risk cards don't overflow on mobile */
    .risks-section {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
    }
    
    section {
        padding: 60px 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        padding: 20px 25px;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .about-text h3,
    .biosecurity-text h3 {
        font-size: 1.6rem;
    }
    
    /* Risk Cards Mobile Optimization */
    .risks-grid {
        gap: 1rem;
        margin: 0;
        padding: 0;
    }
    
    .risk-item {
        padding: 1rem;
        margin: 0;
        height: auto;
        min-height: auto;
    }
    
    .risk-number {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .risk-item h4 {
        font-size: 0.85rem;
        line-height: 1.2;
    }
    
    .risks-section {
        padding: 0;
        margin: 0;
    }
    
    .solutions-grid,
    .strengths-grid,
    .industries-grid {
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .solution-card,
    .strength-item,
    .industry-card {
        padding: 2rem 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-item {
        padding: 1.5rem;
        min-height: 180px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
        width: 100%;
    }
    
    .footer-content {
        gap: 1.5rem;
        width: 100%;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-legal {
        gap: 0.8rem;
    }
    
    .footer-legal a {
        font-size: 0.85rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 20px 30px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-content,
    .biosecurity-content {
        gap: 2rem;
    }
    
    .solutions-grid,
    .strengths-grid {
        gap: 1.5rem;
    }
}
