:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2d6fa3;
    --accent-color: #5a9fd4;
    --dark-color: #0f2942;
    --light-color: #f8f9fa;
    --text-color: #1a1f2e;
     --text-light: #6c757d;

    --white: #ffffff;
    --border-color: #e0e6ed;
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Body with Sky Blue Background */
body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: white;
    overflow-x: hidden;
    line-height: 1.6;
    
}

/* Molecular Canvas Background with Sky Blue */
#moleculeCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
   
    opacity: 1;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

/* Logo Image Styling */
.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo-image {
    height: 50px;
}
.logo-image:hover {
    transform: scale(1.05);
}




.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    font-weight: 400;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
/* ============================================
   DNA HELIX HERO SECTION ANIMATION
   Add this to your existing style.css file
   ============================================ */

/* Hero Section Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.hero-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 600px;
}

/* DNA Container */
.dna-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* DNA Helix SVG */
.dna-helix {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.dna-strand-1,
.dna-strand-2 {
    stroke: var(--primary-color);
    stroke-width: 3;
    fill: none;
    opacity: 0.8;
}

.dna-strand-2 {
    stroke: var(--accent-color);
}

.dna-base {
    stroke: var(--secondary-color);
    stroke-width: 2;
    opacity: 0.6;
    animation: fadeInOut 3s ease-in-out infinite;
}

.dna-node {
    fill: var(--accent-color);
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
}

.dna-node:nth-child(odd) {
    fill: var(--primary-color);
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-color);
    opacity: 0.7;
    animation: floatParticle 8s ease-in-out infinite;
}

.particle-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.particle-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle-3 {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.particle-4 {
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 6.5s;
}

.particle-5 {
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 7.5s;
}

.particle-6 {
    top: 40%;
    right: 5%;
    animation-delay: 5s;
    animation-duration: 8.5s;
}

/* Pulsing Rings */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    opacity: 0;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: pulseRing 4s ease-out infinite;
    animation-delay: 0s;
}

.ring-2 {
    width: 300px;
    height: 300px;
    animation: pulseRing 4s ease-out infinite;
    animation-delay: 1.3s;
}

.ring-3 {
    width: 400px;
    height: 400px;
    animation: pulseRing 4s ease-out infinite;
    animation-delay: 2.6s;
}

/* Orbiting Service Icons */
.orbit-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    animation: rotateOrbit 20s linear infinite;
}

.orbit-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(26, 77, 122, 0.3);
    animation: counterRotate 20s linear infinite;
    border: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.orbit-item:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 35px rgba(90, 159, 212, 0.5);
    border-color: var(--primary-color);
}

.orbit-icon {
    font-size: 28px;
    filter: grayscale(0);
}

.orbit-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.orbit-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Animations */
@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-15px, -50px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.9;
    }
}

@keyframes pulseRing {
    0% {
        width: 100px;
        height: 100px;
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes pulse {
    0%, 100% {
        r: 8;
        opacity: 0.8;
    }
    50% {
        r: 10;
        opacity: 1;
    }
}

/* DNA Helix Animation */
@keyframes dnaFlow {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -1000;
    }
}

.dna-strand-1,
.dna-strand-2 {
    stroke-dasharray: 10 5;
    animation: dnaFlow 20s linear infinite;
}

.dna-strand-2 {
    animation-direction: reverse;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-wrapper {
        gap: 3rem;
    }

    .dna-container {
        height: 500px;
        max-width: 400px;
    }

    .orbit-container {
        width: 380px;
        height: 380px;
    }

    .orbit-item {
        width: 50px;
        height: 50px;
    }

    .orbit-icon {
        font-size: 24px;
    }
}

@media (max-width: 968px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .dna-container {
        height: 450px;
        max-width: 350px;
    }

    .orbit-container {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 8rem 1.5rem 3rem;
    }

    .dna-container {
        height: 400px;
        max-width: 300px;
    }

    .orbit-container {
        width: 280px;
        height: 280px;
    }

    .orbit-item {
        width: 45px;
        height: 45px;
    }

    .orbit-icon {
        font-size: 20px;
    }

    .pulse-ring {
        display: none; /* Hide on mobile for performance */
    }
}

@media (max-width: 480px) {
    .dna-container {
        height: 350px;
        max-width: 250px;
    }

    .orbit-container {
        width: 240px;
        height: 240px;
    }

    .orbit-item {
        width: 40px;
        height: 40px;
    }

    .orbit-icon {
        font-size: 18px;
    }

    .particle {
        width: 6px;
        height: 6px;
    }
}

/* ============================================
   PROFESSIONAL ERLENMEYER FLASK
   Clean Design - No Measurements
   Pink/Magenta Liquid with Bubbles
   ============================================ */

/* Flask Container - EXACT SAME SIZE */
.flask-container {
    position: absolute !important;
    bottom: 20px;
    right: 20px;
    width: 210px;
    height: 300px;
    z-index: 25;
    pointer-events: auto;
    filter: drop-shadow(0 20px 50px rgba(220, 53, 69, 0.5));
    transition: all 0.3s ease;
}

/* Erlenmeyer Flask SVG */
.erlenmeyer-flask {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Flask Neck - Narrow cylinder */
.flask-neck {
    fill: rgba(255, 255, 255, 0.08);
    stroke: #1a4d7a;
    stroke-width: 3.5;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Flask Rim/Opening */
.flask-rim {
    fill: rgba(255, 255, 255, 0.15);
    stroke: #1a4d7a;
    stroke-width: 3;
}

.flask-rim-inner {
    fill: rgba(26, 77, 122, 0.1);
    stroke: #1a4d7a;
    stroke-width: 1.5;
}

/* Erlenmeyer Conical Body - Professional */
.flask-body {
    fill: url(#glassGradient);
    stroke: #1a4d7a;
    stroke-width: 3.5;
    opacity: 0.95;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* PINK/MAGENTA Liquid - Gradient */
.flask-liquid {
    fill: url(#liquidGradient);
    opacity: 0.9;
    animation: liquidBubble 4s ease-in-out infinite;
    filter: drop-shadow(0 -5px 15px rgba(255, 20, 147, 0.4));
}

@keyframes liquidBubble {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.95;
    }
}

/* Liquid surface wave */
.liquid-surface {
    animation: surfaceWave 3s ease-in-out infinite;
}

@keyframes surfaceWave {
    0%, 100% {
        d: path("M 78 185 Q 85 183, 92 184 Q 100 185, 108 184 Q 115 183, 122 185");
    }
    50% {
        d: path("M 78 185 Q 85 187, 92 186 Q 100 185, 108 186 Q 115 187, 122 185");
    }
}

/* Glass Highlights - Professional shine */
.flask-highlight-left,
.flask-highlight-right,
.neck-highlight {
    pointer-events: none;
}

/* ============================================
   PINK/MAGENTA BUBBLES INSIDE FLASK
   More bubbles for realistic effect
   ============================================ */

.bubble-in-flask {
    fill: rgba(255, 20, 147, 0.85);
    stroke: rgba(255, 105, 180, 0.5);
    stroke-width: 1;
    opacity: 0;
    filter: drop-shadow(0 0 2px rgba(255, 20, 147, 0.5));
}

/* Bubble 1 */
.bubble-1 {
    animation: riseInFlask1 3.5s ease-in-out infinite;
}

@keyframes riseInFlask1 {
    0% { cy: 240; cx: 65; opacity: 0; r: 3; }
    10% { opacity: 1; }
    50% { cy: 200; cx: 68; opacity: 0.9; }
    90% { opacity: 0.4; }
    100% { cy: 185; cx: 65; opacity: 0; r: 2; }
}

/* Bubble 2 */
.bubble-2 {
    animation: riseInFlask2 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes riseInFlask2 {
    0% { cy: 240; cx: 80; opacity: 0; r: 5; }
    10% { opacity: 1; }
    50% { cy: 195; cx: 78; opacity: 0.9; }
    90% { opacity: 0.4; }
    100% { cy: 185; cx: 80; opacity: 0; r: 3; }
}

/* Bubble 3 */
.bubble-3 {
    animation: riseInFlask3 3.2s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes riseInFlask3 {
    0% { cy: 240; cx: 95; opacity: 0; r: 2.5; }
    10% { opacity: 1; }
    50% { cy: 205; cx: 97; opacity: 0.9; }
    90% { opacity: 0.4; }
    100% { cy: 186; cx: 95; opacity: 0; r: 1.5; }
}

/* Bubble 4 */
.bubble-4 {
    animation: riseInFlask4 3.8s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes riseInFlask4 {
    0% { cy: 240; cx: 110; opacity: 0; r: 4; }
    10% { opacity: 1; }
    50% { cy: 198; cx: 108; opacity: 0.9; }
    90% { opacity: 0.4; }
    100% { cy: 185; cx: 110; opacity: 0; r: 2.5; }
}

/* Bubble 5 */
.bubble-5 {
    animation: riseInFlask5 3.6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes riseInFlask5 {
    0% { cy: 240; cx: 125; opacity: 0; r: 3.5; }
    10% { opacity: 1; }
    50% { cy: 202; cx: 122; opacity: 0.9; }
    90% { opacity: 0.4; }
    100% { cy: 186; cx: 125; opacity: 0; r: 2; }
}

/* Bubble 6 */
.bubble-6 {
    animation: riseInFlask6 3s ease-in-out infinite;
    animation-delay: 2.5s;
}

@keyframes riseInFlask6 {
    0% { cy: 240; cx: 140; opacity: 0; r: 2; }
    10% { opacity: 1; }
    50% { cy: 208; cx: 138; opacity: 0.9; }
    90% { opacity: 0.4; }
    100% { cy: 187; cx: 140; opacity: 0; r: 1.5; }
}

/* Bubble 7 */
.bubble-7 {
    animation: riseInFlask7 3.9s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes riseInFlask7 {
    0% { cy: 240; cx: 70; opacity: 0; r: 4.5; }
    10% { opacity: 1; }
    50% { cy: 196; cx: 73; opacity: 0.9; }
    90% { opacity: 0.4; }
    100% { cy: 184; cx: 70; opacity: 0; r: 2.5; }
}

/* Bubble 8 */
.bubble-8 {
    animation: riseInFlask8 3.4s ease-in-out infinite;
    animation-delay: 1.8s;
}

@keyframes riseInFlask8 {
    0% { cy: 240; cx: 100; opacity: 0; r: 3; }
    10% { opacity: 1; }
    50% { cy: 201; cx: 102; opacity: 0.9; }
    90% { opacity: 0.4; }
    100% { cy: 185; cx: 100; opacity: 0; r: 2; }
}

/* Bubble 9 */
.bubble-9 {
    animation: riseInFlask9 3.7s ease-in-out infinite;
    animation-delay: 0.3s;
}

@keyframes riseInFlask9 {
    0% { cy: 240; cx: 55; opacity: 0; r: 2.5; }
    10% { opacity: 1; }
    50% { cy: 207; cx: 57; opacity: 0.9; }
    90% { opacity: 0.4; }
    100% { cy: 188; cx: 55; opacity: 0; r: 1.5; }
}

/* Bubble 10 */
.bubble-10 {
    animation: riseInFlask10 3.3s ease-in-out infinite;
    animation-delay: 1.2s;
}

@keyframes riseInFlask10 {
    0% { cy: 240; cx: 115; opacity: 0; r: 3.5; }
    10% { opacity: 1; }
    50% { cy: 203; cx: 117; opacity: 0.9; }
    90% { opacity: 0.4; }
    100% { cy: 186; cx: 115; opacity: 0; r: 2; }
}

/* Bubble 11 */
.bubble-11 {
    animation: riseInFlask11 3.1s ease-in-out infinite;
    animation-delay: 2.3s;
}

@keyframes riseInFlask11 {
    0% { cy: 240; cx: 85; opacity: 0; r: 2; }
    10% { opacity: 1; }
    50% { cy: 210; cx: 87; opacity: 0.9; }
    90% { opacity: 0.4; }
    100% { cy: 189; cx: 85; opacity: 0; r: 1.5; }
}

/* Bubble 12 */
.bubble-12 {
    animation: riseInFlask12 3.5s ease-in-out infinite;
    animation-delay: 1.6s;
}

@keyframes riseInFlask12 {
    0% { cy: 240; cx: 130; opacity: 0; r: 4; }
    10% { opacity: 1; }
    50% { cy: 199; cx: 128; opacity: 0.9; }
    90% { opacity: 0.4; }
    100% { cy: 185; cx: 130; opacity: 0; r: 2.5; }
}

/* ============================================
   SURFACE BUBBLES (Foam at top) - MORE REALISTIC
   ============================================ */

.surface-bubble {
    fill: rgba(255, 255, 255, 0.95);
    stroke: rgba(255, 20, 147, 0.5);
    stroke-width: 1.5;
    animation: surfacePop 2.5s ease-in-out infinite;
}

.sb-1 { cx: 70; cy: 185; animation-delay: 0s; }
.sb-2 { cx: 85; cy: 186; animation-delay: 0.4s; }
.sb-3 { cx: 100; cy: 185; animation-delay: 0.8s; }
.sb-4 { cx: 115; cy: 186; animation-delay: 1.2s; }
.sb-5 { cx: 130; cy: 185; animation-delay: 1.6s; }
.sb-6 { cx: 78; cy: 186; animation-delay: 0.2s; }
.sb-7 { cx: 122; cy: 186; animation-delay: 1s; }

@keyframes surfacePop {
    0%, 100% { r: 2; opacity: 0.7; }
    50% { r: 3.5; opacity: 1; }
}

/* ============================================
   PINK/MAGENTA BUBBLES ESCAPING
   ============================================ */

.escaped-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, 
        rgba(255, 255, 255, 0.95), 
        rgba(255, 20, 147, 0.8),
        rgba(199, 21, 133, 0.6));
    box-shadow: 
        inset -3px -3px 8px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(255, 20, 147, 0.6),
        0 0 20px rgba(255, 20, 147, 0.3);
    opacity: 0;
}

.escaped-1 { width: 14px; height: 14px; left: 44%; animation: escapeFloat1 4.5s ease-out infinite; }
.escaped-2 { width: 18px; height: 18px; left: 49%; animation: escapeFloat2 5s ease-out infinite; animation-delay: 0.5s; }
.escaped-3 { width: 11px; height: 11px; left: 54%; animation: escapeFloat3 4.2s ease-out infinite; animation-delay: 1s; }
.escaped-4 { width: 16px; height: 16px; left: 47%; animation: escapeFloat4 4.8s ease-out infinite; animation-delay: 1.5s; }
.escaped-5 { width: 12px; height: 12px; left: 51%; animation: escapeFloat5 4s ease-out infinite; animation-delay: 2s; }
.escaped-6 { width: 15px; height: 15px; left: 45%; animation: escapeFloat6 5.2s ease-out infinite; animation-delay: 2.5s; }
.escaped-7 { width: 13px; height: 13px; left: 52%; animation: escapeFloat7 4.4s ease-out infinite; animation-delay: 0.8s; }
.escaped-8 { width: 17px; height: 17px; left: 48%; animation: escapeFloat8 4.9s ease-out infinite; animation-delay: 1.8s; }

/* Escape animations with more variation */
@keyframes escapeFloat1 {
    0% { bottom: 180px; opacity: 0; transform: translateX(0) scale(1) rotate(0deg); }
    10% { opacity: 1; }
    50% { opacity: 0.85; transform: translateX(18px) scale(1.15) rotate(180deg); }
    100% { bottom: 320px; opacity: 0; transform: translateX(-12px) scale(0.3) rotate(360deg); }
}

@keyframes escapeFloat2 {
    0% { bottom: 180px; opacity: 0; transform: translateX(0) scale(1) rotate(0deg); }
    10% { opacity: 1; }
    50% { opacity: 0.85; transform: translateX(-20px) scale(1.2) rotate(-180deg); }
    100% { bottom: 320px; opacity: 0; transform: translateX(15px) scale(0.3) rotate(-360deg); }
}

@keyframes escapeFloat3 {
    0% { bottom: 180px; opacity: 0; transform: translateX(0) scale(1) rotate(0deg); }
    10% { opacity: 1; }
    50% { opacity: 0.85; transform: translateX(22px) scale(1.08) rotate(180deg); }
    100% { bottom: 320px; opacity: 0; transform: translateX(-15px) scale(0.3) rotate(360deg); }
}

@keyframes escapeFloat4 {
    0% { bottom: 180px; opacity: 0; transform: translateX(0) scale(1) rotate(0deg); }
    10% { opacity: 1; }
    50% { opacity: 0.85; transform: translateX(-14px) scale(1.18) rotate(-180deg); }
    100% { bottom: 320px; opacity: 0; transform: translateX(20px) scale(0.3) rotate(-360deg); }
}

@keyframes escapeFloat5 {
    0% { bottom: 180px; opacity: 0; transform: translateX(0) scale(1) rotate(0deg); }
    10% { opacity: 1; }
    50% { opacity: 0.85; transform: translateX(19px) scale(1.12) rotate(180deg); }
    100% { bottom: 320px; opacity: 0; transform: translateX(-10px) scale(0.3) rotate(360deg); }
}

@keyframes escapeFloat6 {
    0% { bottom: 180px; opacity: 0; transform: translateX(0) scale(1) rotate(0deg); }
    10% { opacity: 1; }
    50% { opacity: 0.85; transform: translateX(-18px) scale(1.15) rotate(-180deg); }
    100% { bottom: 320px; opacity: 0; transform: translateX(17px) scale(0.3) rotate(-360deg); }
}

@keyframes escapeFloat7 {
    0% { bottom: 180px; opacity: 0; transform: translateX(0) scale(1) rotate(0deg); }
    10% { opacity: 1; }
    50% { opacity: 0.85; transform: translateX(25px) scale(1.1) rotate(180deg); }
    100% { bottom: 320px; opacity: 0; transform: translateX(-22px) scale(0.3) rotate(360deg); }
}

@keyframes escapeFloat8 {
    0% { bottom: 180px; opacity: 0; transform: translateX(0) scale(1) rotate(0deg); }
    10% { opacity: 1; }
    50% { opacity: 0.85; transform: translateX(-22px) scale(1.17) rotate(-180deg); }
    100% { bottom: 320px; opacity: 0; transform: translateX(18px) scale(0.3) rotate(-360deg); }
}

/* ============================================
   PINK/MAGENTA STEAM - ENHANCED
   ============================================ */

.steam {
    position: absolute;
    top: 0;
    left: 50%;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(255, 20, 147, 0.4) 0%, 
        rgba(199, 21, 133, 0.2) 40%,
        transparent 70%);
    opacity: 0;
}

.steam-1 {
    animation: steamRise 5.5s ease-out infinite;
}

.steam-2 {
    animation: steamRise 6s ease-out infinite;
    animation-delay: 1.8s;
}

.steam-3 {
    animation: steamRise 5.2s ease-out infinite;
    animation-delay: 3.5s;
}

@keyframes steamRise {
    0% {
        bottom: 180px;
        opacity: 0;
        transform: translateX(-50%) scale(0.5) rotate(0deg);
    }
    20% {
        opacity: 0.7;
    }
    100% {
        bottom: 340px;
        opacity: 0;
        transform: translateX(-50%) scale(2.5) rotate(180deg);
    }
}

/* ============================================
   HOVER EFFECTS - PROFESSIONAL
   ============================================ */

.flask-container:hover {
    filter: drop-shadow(0 25px 60px rgba(255, 20, 147, 0.6));
    transform: translateY(-5px);
}

.flask-container:hover .erlenmeyer-flask {
    transform: scale(1.03);
    transition: transform 0.3s ease;
}

.flask-container:hover .flask-liquid {
    animation-duration: 2.5s;
}

.flask-container:hover .bubble-in-flask {
    animation-duration: 2.2s !important;
}

/* ============================================
   GLOW EFFECT - ENHANCED
   ============================================ */

@keyframes liquidGlow {
    0%, 100% {
        filter: drop-shadow(0 -5px 15px rgba(255, 20, 147, 0.4));
    }
    50% {
        filter: drop-shadow(0 -8px 25px rgba(255, 20, 147, 0.7));
    }
}

.flask-liquid {
    animation: liquidBubble 4s ease-in-out infinite, 
               liquidGlow 3s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE - EXACT SAME SIZE RATIOS
   ============================================ */

@media (max-width: 1200px) {
    .flask-container {
        width: 150px;
        height: 230px;
        bottom: 40px;
        left: 280px;
    }
}

@media (max-width: 968px) {
    .flask-container {
        width: 120px;
        height: 180px;
        bottom: 30px;
        left: 220px;
    }
}

@media (max-width: 768px) {
    .flask-container {
        width: 100px;
        height: 150px;
        bottom: 20px;
        right: 20px;
        left: auto;
    }
    
    .escaped-bubble {
        display: none;
    }
}

@media (max-width: 480px) {
    .flask-container {
        width: 80px;
        height: 120px;
        bottom: 15px;
        right: 15px;
        left: auto;
    }
    
    .steam {
        display: none;
    }
}

/* END OF PROFESSIONAL FLASK CSS */
/* Additional Hero Text Styling */
.title-thin {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.title-bold {
    display: block;
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    font-weight: 500;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .title-bold {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .title-bold {
        font-size: 2.2rem;
    }

    .title-thin {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 77, 122, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.scroll-indicator span {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styling */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.section-body{
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--accent-color);
    line-height: 1.8;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
}

/* About Preview Section */
.about-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
     font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
}

.lead-text p {
    padding-right: 2rem;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    text-align: justify;
}

.text-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}



.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: left;
    text-justify: inter-word;

    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    letter-spacing: normal;
    word-spacing: -1px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);

}

.service-link:hover {
    color: var(--accent-color);
}

.service-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 18px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}


/* Core Values Section */


.values-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
}

.values-section .section-label {
    color: var(--accent-color);
}

.values-section .section-title {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    text-align: left;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.value-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 300;
}

.value-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    /* Explicitly set to left to avoid inherited justified spacing */
    text-align: left;
;
    /* Ensures letters don't spread out */
    letter-spacing: normal; 
    word-spacing: 1px;
}


/* Initiatives Section */
.initiatives-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.initiatives-list {
    list-style: none;
    margin-top: 2rem;
}

.initiatives-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    border-left: 3px solid var(--accent-color);
    margin-bottom: 1rem;
    position: relative;
    transition: var(--transition);
}

.initiatives-list li::before {
    content: '→';
    position: absolute;
    left: 0.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.initiatives-list li:hover {
    border-left-color: var(--primary-color);
    padding-left: 2.5rem;
}

/* Right Side - Arrows Image Container */
.initiatives-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrows-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

/* Three Arrows Image */
.arrows-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(26, 77, 122, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arrows-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(26, 77, 122, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Future Plan Text Below Image */
.future-plan-text {
    margin-top: 2.5rem;
    text-align: center;
    padding: 0 1rem;
}

.future-plan-heading {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.future-plan-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto;
}

/* Decorative Elements */
.arrows-image-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(135deg, 
        rgba(74, 144, 226, 0.1), 
        rgba(231, 76, 60, 0.1), 
        rgba(247, 220, 111, 0.1));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .initiatives-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .initiatives-text {
        padding-right: 0;
        text-align: center;
    }

    .initiatives-list {
        text-align: left;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .arrows-image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .future-plan-heading {
        font-size: 2rem;
    }

    .future-plan-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .initiatives-section {
        padding: 4rem 0;
    }

    .arrows-image-container {
        max-width: 350px;
    }

    .future-plan-heading {
        font-size: 1.8rem;
    }

    .future-plan-subtitle {
        font-size: 0.95rem;
    }

    .initiatives-list li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .initiatives-section {
        padding: 3rem 0;
    }

    .arrows-image-container {
        max-width: 280px;
    }

    .future-plan-heading {
        font-size: 1.5rem;
    }

    .future-plan-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .future-plan-text {
        margin-top: 1.5rem;
    }

    .arrows-image {
        border-radius: 15px;
    }
}

/* Remove any remaining arrow animation classes */
.three-arrows-container,
.arrow-3d,
.arrow-particle,
.arrow-glow,
.convergence-point {
    display: none !important;
}
/* CTA Section */
.cta-section {
     background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    padding: 5rem 0;
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-color);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--primary-color);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}




.footer-desc {
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(22, 21, 21, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-address {
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);

}

/* Footer Logo Styles */
/* Footer Logo Styles - Original Colors */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    /* No filter - keeps original logo colors */
}



/* Responsive adjustments for footer logo */
@media (max-width: 768px) {
    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-logo-image {
        height: 40px;
    }
    
    .footer-logo .logo-main {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .footer-logo-image {
        height: 35px;
    }
    
    .footer-logo .logo-main {
        font-size: 1.2rem;
    }
    
    .footer-logo .logo-sub {
        font-size: 0.65rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        r: 12;
        opacity: 1;
    }
    50% {
        r: 14;
        opacity: 0.8;
    }
}

/* AOS Animation Triggers */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* Page Header Styles */
.page-header {
    padding: 10rem 0 5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.03), rgba(90, 159, 212, 0.03));
}

.page-title {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
}

/* About Page Styles */
.company-overview {
    padding: 6rem 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.visual-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 3rem;
    border-radius: 20px;
    color: var(--white);
    text-align: center;
}

.visual-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.visual-icon svg {
    width: 100%;
    height: 100%;
}

.visual-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.mission-vision {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--white);
}

.mv-icon svg {
    width: 30px;
    height: 30px;
}

.mv-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.competencies-section {
    padding: 6rem 0;
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.competency-item {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.competency-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.competency-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent-color);
    font-weight: 300;
    margin-bottom: 1rem;
}

.competency-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.leadership-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
}

.leadership-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.leader-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    text-align: center;
}

.leader-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.leader-contact p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    line-height: 1.8;
}

.why-choose-section {
    padding: 6rem 0;
}

.why-grid {
    display: grid;
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Services Page Styles */
.services-detail-section {
    padding: 6rem 0;
}

.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.service-detail-content {
    padding: 3rem;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 40px;
    height: 40px;
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-detail-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-detail-body {
    padding: 0 1rem;
}

.service-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.service-features,
.service-benefits {
    margin-bottom: 2.5rem;
}

.service-features h3,
.service-benefits h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.7;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features strong {
    color: var(--primary-color);
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.03), rgba(90, 159, 212, 0.03));
    border-radius: 10px;
}

.benefit-icon {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.additional-services {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    padding: 6rem 0;
    color: var(--white);
}

.additional-services .section-label {
    color: var(--accent-color);
}

.additional-services .section-title {
    color: var(--white);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.additional-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.additional-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.additional-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.additional-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.process-section {
    padding: 6rem 0;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--accent-color);
}

/* Infrastructure Page Styles */
.infrastructure-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.facility-section {
    padding: 4rem 0;
}

.facility-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.facility-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.facility-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.facility-icon svg {
    width: 40px;
    height: 40px;
}

.facility-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.facility-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.facility-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.facility-features h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.facility-highlight {
    background: linear-gradient(135deg, rgba(26, 77, 122, 0.05), rgba(90, 159, 212, 0.05));
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2.5rem;
}

.facility-highlight h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.tech-category h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

.tech-category ul {
    list-style: none;
    padding-left: 0;
}

.tech-category li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.tech-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.quality-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quality-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quality-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-main-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-subtitle {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.success-message {
    background: #2ecc71;
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    animation: fadeInUp 0.5s ease;
}

.contact-info-card,
.management-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.management-card {
    margin-top: 2rem;
}

.contact-info-card h3,
.management-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-content a:hover {
    color: var(--primary-color);
}

.manager-info {
    text-align: center;
}

.manager-info h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.manager-title {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.manager-contact p {
    margin-bottom: 0.8rem;
}

.map-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-section-alt {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    padding: 5rem 0;
    color: var(--white);
}

.cta-section-alt .cta-title,
.cta-section-alt .cta-text {
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 6rem 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        align-items: flex-start;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .title-bold {
        font-size: 3rem;
    }
    
    .about-grid,
    .initiatives-content,
    .overview-grid,
    .mv-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .page-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .title-bold {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .values-grid,
    .competencies-grid,
    .additional-grid,
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .facility-header {
        flex-direction: column;
        text-align: center;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-detail {
        flex-direction: column;
        text-align: center;
    }
}

