:root {
    --primary-color: #005f73;
    --primary-color: #0081a7;
    /* Brighter Teal */
    --secondary-color: #00afb9;
    /* Vivid Cyan */
    --accent-color: #f07167;
    /* Soft Coral for CTAs */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f4f6f8;
    --white: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
    --shadow-soft: 0 10px 30px -10px rgba(0, 129, 167, 0.15);
    --shadow-hover: 0 20px 40px -10px rgba(0, 129, 167, 0.25);
    --dark-bg: #1d3557;
    --light-bg: #f1faee;
    --text-color: #2b2d42;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling for entire page */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f8f9fc;
    /* Subtle cool gray shift */
    overflow-x: hidden;
    /* Page fade-in animation */
    animation: pageLoad 0.6s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Medical Background & Animations --- */

/* Subtle Geometric/Molecule Pattern for Body */
body {
    background-color: var(--bg-light);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(0, 95, 115, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(10, 147, 150, 0.03) 0%, transparent 20%),
        linear-gradient(#e5e5f7 1px, transparent 1px),
        linear-gradient(90deg, #e5e5f7 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    background-position: 0 0, 0 0, 0 0, 0 0;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 147, 150, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(10, 147, 150, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 147, 150, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}

@keyframes rotateBG {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Apply Animations */
.hero h1,
.hero p,
.cta-group {
    animation: fadeIn 1s ease-out forwards;
}

.hero p {
    animation-delay: 0.2s;
    opacity: 0;
}

.cta-group {
    animation-delay: 0.4s;
    opacity: 0;
}

.section-title::after {
    animation: expandWidth 1s ease-out forwards;
}

.feature-card:hover {
    animation: float 3s ease-in-out infinite;
}

.btn-primary:hover {
    animation: pulse-glow 1.5s infinite;
}

/* Animated Background Elements for Hero */
.hero {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotateBG 60s linear infinite;
    z-index: -1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigation --- */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 129, 167, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 129, 167, 0.1);
}

/* Header shrink on scroll effect */
header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 129, 167, 0.15);
}

/* Fade-in animation for scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple effect for buttons */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading state */
body:not(.loaded) {
    overflow: hidden;
}

body.loaded {
    animation: none;
}

/* Smooth transitions for all interactive elements */
a,
button,
input,
select,
textarea {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.bg-shapes-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 100;
    position: relative;
}

.logo img {
    height: 60px;
    /* Adjust based on preference */
    width: auto;
    filter: brightness(1.7) contrast(1.1);
    /* Lighten the logo */
}

.nav-menu {
    display: flex;
    gap: 10px;
    /* Reduced gap for pills */
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(0, 95, 115, 0.05);
    /* Subtle background pill */
}

.nav-link.active {
    color: var(--white);
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 95, 115, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    opacity: 0;
}

.nav-link:hover::after {
    width: 0;
    /* Disabled underline for pill style preferenece, set to 60% if underline desired */
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 9999;
    padding: 8px 0;
    background: transparent;
    border: none;
    color: var(--text-dark);
    transition: transform 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    line-height: 1;
    position: relative;
    pointer-events: auto;
    margin-left: auto;
}

.mobile-toggle:active {
    transform: scale(0.95);
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.mobile-toggle:hover {
    transform: scale(1.1);
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 90vh;
    /* Fill screen height */
    display: flex;
    align-items: center;
}

/* Background Shapes Container */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    opacity: 0.6;
}

/* Individual Shape positioning and animation matching */
.shape-1 {
    top: 15%;
    left: 5%;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    top: 25%;
    right: 15%;
    animation: floatShape 6s ease-in-out infinite 1s;
}

.shape-3 {
    bottom: 20%;
    left: 10%;
    transform: rotate(15deg);
    animation: floatShape 10s ease-in-out infinite 0.5s;
}

.shape-4 {
    top: 10%;
    right: 35%;
    animation: rotateFloat 12s linear infinite;
}

.shape-5 {
    bottom: 15%;
    right: 5%;
    animation: floatShape 9s ease-in-out infinite 2s;
}

@keyframes floatShape {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
        opacity: 0.3;
    }

    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
}

@keyframes rotateFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.4;
    }
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    /* Increased gap */
    width: 95%;
    /* Wider container */
    max-width: 1600px;
    /* Allow it to scale larger */
    position: relative;
    /* Context */
    z-index: 2;
    /* Bring content above shapes */
}

.hero-content {
    flex: 1;
    padding-left: 20px;
}

.hero-image {
    flex: 1.2;
    /* Give image slightly more space */
    display: flex;
    justify-content: center;
    position: relative;
}

/* Floating animation for product image */
.hero-image img {
    max-width: 100%;
    max-height: 65vh;
    /* Larger image relative to viewport */
    width: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}

/* Ensure background animation stays behind (Updated above) */

.hero h1 {
    color: var(--dark-bg);
    font-size: 3.5rem;
    /* Larger Title */
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    /* Larger Text */
    max-width: 90%;
    margin: 0 0 3rem 0;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-group {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
}

/* Responsive adjust for hero */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 100px 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        width: 100%;
        gap: 40px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero p {
        margin: 0 auto 2.5rem;
        max-width: 100%;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-image img {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }

    .cta-group {
        justify-content: center;
    }
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    /* Larger buttons */
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

/* Ripple effect on buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 129, 167, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 129, 167, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 129, 167, 0.25);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 129, 167, 0.25);
}

.btn-lg {
    padding: 18px 50px;
    font-size: 1.05rem;
    border-radius: 10px;
}

/* --- Sections Common --- */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Ultra Modern Background Variations */
.bg-white {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.bg-light {
    background: linear-gradient(135deg, #f4f6f8 0%, #e8ecf1 50%, #f4f6f8 100%);
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 129, 167, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 175, 185, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.bg-soft-blue {
    background: linear-gradient(135deg,
            rgba(0, 129, 167, 0.05) 0%,
            rgba(0, 175, 185, 0.08) 50%,
            rgba(0, 129, 167, 0.05) 100%);
    position: relative;
}

.bg-soft-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230081a7' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

/* SVG Wave Dividers */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.section-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.section-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    animation: titleUnderline 2s ease-in-out infinite;
}

@keyframes titleUnderline {

    0%,
    100% {
        width: 80px;
    }

    50% {
        width: 120px;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-white {
    color: var(--white);
}

.text-white.section-title::after {
    background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0.7));
}

/* --- Features / Value Prop (Modern Refreshed) --- */
.features-section {
    position: relative;
    z-index: 10;
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.three-col-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .three-col-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .three-col-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Manufacturing Grid with Hover Reveal --- */
.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mfg-item {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 18px;
    border-left: 5px solid var(--secondary-color);
    /* Cyan accent */
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.mfg-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.4s ease;
    z-index: 0;
}

.mfg-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 129, 167, 0.12);
}

.mfg-item:hover::before {
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mfg-item:hover h4,
.mfg-item:hover p {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.mfg-item h4 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: color 0.3s;
}

.mfg-item p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #555;
    transition: color 0.3s;
    margin: 0;
}

/* --- Features / Value Prop (Modern Glass/Neumorphic) --- */
.modern-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 50px 35px;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
    /* Glass Shadow */
    text-align: center;
    /* Center alignment for professional look */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: var(--glass-border);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 320px;
    /* Consistent card height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.modern-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 129, 167, 0.18);
    border-color: var(--secondary-color);
}

/* Gradient Glow Effect on Hover */
.modern-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 175, 185, 0.12) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
    z-index: -1;
}

.modern-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.icon-wrapper {
    width: 80px;
    /* Standard professional size */
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.12), rgba(0, 175, 185, 0.12));
    border-radius: 20px;
    /* Softer sqircle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    /* Center horizontally with bottom margin */
    transition: all 0.4s ease;
    color: var(--primary-color);
    flex-shrink: 0;
}

.modern-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: rotate(8deg) scale(1.1);
    box-shadow: 0 12px 24px rgba(0, 129, 167, 0.35);
}

.icon-wrapper svg,
.feature-icon {
    width: 44px;
    /* Standard icon size */
    height: 44px;
}

.modern-card h3 {
    font-size: 1.4rem;
    /* Larger, more prominent title */
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.modern-card p {
    font-size: 1.02rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

/* Subtle accent line on top */
.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.modern-card:hover::before {
    transform: scaleX(1);
}

/* --- Product Preview --- */
.product-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 129, 167, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 129, 167, 0.08);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 129, 167, 0.15);
    border-color: var(--secondary-color);
}

.product-content {
    padding: 35px 30px;
}

.product-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.product-desc {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.product-features li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    color: #555;
    font-size: 1rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.product-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-top: auto;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

/* --- Intro Section --- */
.intro-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 50%, #f8f9fc 100%);
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(0, 129, 167, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(0, 175, 185, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.intro-section .container {
    position: relative;
    z-index: 1;
}

.section-lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* --- Pipeline Items --- */
.pipeline-item {
    background: rgba(0, 129, 167, 0.05);
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 14px;
    border-left: 3px solid var(--secondary-color);
    font-size: 1.02rem;
    line-height: 1.6;
}

.pipeline-item strong {
    color: var(--primary-color);
    font-weight: 700;
}

.highlight-card {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(0, 175, 185, 0.03), rgba(0, 129, 167, 0.03));
}

/* --- Partner Section --- */
.partner-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d4d 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.partner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.partner-box {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.partner-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

.partner-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 35px 0;
    list-style: none;
    padding: 0;
}

.partner-benefits li {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.partner-benefits li:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.justify-center {
    justify-content: center;
}

/* --- Biotech Background Pattern --- */
.biotech-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 129, 167, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 175, 185, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.product-section {
    position: relative;
    z-index: 1;
}

/* Button Variants */
.btn-outline,
.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover,
.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.95rem;
}

.mt-50 {
    margin-top: 50px;
}

/* --- Certifications Strip --- */
.certifications {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.cert-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- Footer --- */
footer {
    background-color: #1a252f;
    color: #b0b8c1;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* Interactive Elements Polish */
.btn-primary:hover {
    animation: pulse-glow 1.5s infinite;
}

.media-small-hide {
    display: block;
}

@media (max-width: 768px) {
    .media-small-hide {
        display: none;
    }
    
    /* Fix card alignment on mobile - center properly */
    .product-preview-grid,
    .press-grid,
    .purpose-grid,
    .quality-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Scroll Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   ABOUT US PAGE ENHANCED STYLES
   ============================================= */

/* Differentiation Cards */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.diff-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-left: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.diff-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 129, 167, 0.12);
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 175, 185, 0.1), transparent);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.diff-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.diff-card h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.diff-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Impact Stats Section */
.impact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d4d 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: pulseGradient 15s ease-in-out infinite;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Roadmap Timeline */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 50px auto 0;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 45px;
    padding-left: 30px;
}

.timeline-dot {
    position: absolute;
    left: -28px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0, 175, 185, 0.2);
    transition: all 0.3s;
}

.timeline-item:hover .timeline-dot {
    background: var(--secondary-color);
    transform: scale(1.3);
}

.timeline-year {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.timeline-content {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 10px 30px rgba(0, 129, 167, 0.1);
    transform: translateX(5px);
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Partner CTA Strip */
.partner-cta-strip {
    background: linear-gradient(135deg, #0081a7 0%, #1d3557 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.partner-cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text-side {
    flex: 2;
}

.cta-text-side h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-text-side p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-btn-side {
    flex: 1;
    text-align: right;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color) !important;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-flex {
        flex-direction: column;
        text-align: center;
    }

    .cta-text-side,
    .cta-btn-side {
        text-align: center;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-item {
        padding-left: 20px;
    }

    .timeline-dot {
        left: -21px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* =============================================
   PRODUCTS PAGE STYLES
   ============================================= */

/* Product Hero */
.product-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.product-hero .hero-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: none;
    opacity: 1;
}

.product-hero .hero-subtitle {
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.8;
}

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border-top: 4px solid var(--primary-color);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 129, 167, 0.12);
}

.cat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.category-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Product Detail Cards */
.product-detail-card {
    display: flex;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    border-left: 5px solid var(--secondary-color);
}

.product-detail-card:hover {
    box-shadow: 0 15px 50px rgba(0, 129, 167, 0.1);
    transform: translateY(-5px);
}

.product-image-side {
    flex: 0 0 250px;
}

.product-img-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #999;
}

.product-info-side {
    flex: 1;
}

.product-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 800;
}

.product-type {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.product-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.product-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.meta-badge {
    background: rgba(0, 129, 167, 0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.meta-badge.sugar-free {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.product-section {
    margin-bottom: 15px;
    background: #f8f9fc;
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--secondary-color);
}

.product-section h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.composition-list,
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.composition-list li,
.benefit-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
}

.composition-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.benefit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.benefit-tag {
    background: linear-gradient(135deg, rgba(0, 175, 185, 0.1), rgba(0, 129, 167, 0.1));
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 129, 167, 0.2);
}

.product-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    margin: 20px 0;
}

.product-actions {
    margin-top: 25px;
}

/* Product Gallery Strip */
.product-gallery-strip {
    background: linear-gradient(135deg, var(--primary-color), #003d4d);
    padding: 50px 0;
    overflow: hidden;
}

.gallery-title {
    color: var(--white);
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.gallery-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.trust-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 129, 167, 0.1);
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.trust-card h4 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.trust-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Product CTA Section */
.product-cta-section {
    background: linear-gradient(135deg, #0081a7 0%, #1d3557 100%);
    padding: 80px 0;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Products */
@media (max-width: 768px) {
    .product-detail-card {
        flex-direction: column;
    }

    .product-image-side {
        flex: 1;
    }

    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-hero .hero-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* =============================================
   END PRODUCTS PAGE STYLES
   ============================================= */


/* =============================================
   R&D & INNOVATION PAGE STYLES
   ============================================= */

/* R&D Hero - Scientific Theme */
.rd-hero {
    background: linear-gradient(135deg, #0081a7 0%, #003d4d 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.molecular-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: networkPulse 20s ease-in-out infinite;
}

@keyframes networkPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.rd-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.rd-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.rd-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.rd-hero-visual svg {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Philosophy Section */
.rd-philosophy-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.philosophy-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.philosophy-subtitle {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin: 25px 0 15px;
    font-weight: 700;
}

.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.philosophy-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: #666;
    font-size: 0.95rem;
}

.philosophy-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.philosophy-note {
    background: rgba(0, 129, 167, 0.05);
    padding: 15px 20px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: #555;
    font-style: italic;
}

.lab-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.1), rgba(0, 175, 185, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* Framework Cards */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.framework-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.framework-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.framework-card:hover::before {
    transform: scaleX(1);
}

.framework-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 129, 167, 0.12);
}

.framework-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 129, 167, 0.08);
    line-height: 1;
}

.framework-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.framework-card:hover .framework-icon {
    transform: scale(1.2) rotate(5deg);
}

.framework-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.framework-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Focus Areas Grid */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.focus-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.focus-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 129, 167, 0.1);
}

.focus-card.highlight-focus {
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.05), rgba(0, 175, 185, 0.08));
    border-color: var(--secondary-color);
}

.focus-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.focus-card h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.focus-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.upcoming-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Technology Section */
.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center;
}

.tech-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.1), rgba(0, 175, 185, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.tech-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.capabilities-list {
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 129, 167, 0.1);
}

.cap-icon {
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
}

.tech-note {
    background: rgba(0, 129, 167, 0.05);
    padding: 15px 20px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: #555;
}

/* Pipeline Timeline */
.pipeline-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    padding-left: 40px;
}

.pipeline-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.pipeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.pipeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0, 175, 185, 0.15);
    transition: all 0.3s ease;
}

.pipeline-item:hover::before {
    background: var(--secondary-color);
    transform: scale(1.3);
}

.pipeline-year {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.pipeline-content {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.pipeline-item:hover .pipeline-content {
    box-shadow: 0 10px 30px rgba(0, 129, 167, 0.1);
    transform: translateX(5px);
}

.pipeline-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.pipeline-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Compliance Grid */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.compliance-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 129, 167, 0.1);
}

.compliance-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.compliance-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

/* R&D CTA Section */
.rd-cta-section {
    background: linear-gradient(135deg, #0081a7 0%, #1d3557 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.rd-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: floatSlow 25s ease-in-out infinite;
}

.rd-cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rd-cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Responsive R&D */
@media (max-width: 768px) {

    .rd-hero-content,
    .rd-philosophy-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .rd-hero-title {
        font-size: 2rem;
    }

    .pipeline-timeline {
        padding-left: 30px;
    }

    .pipeline-item {
        padding-left: 20px;
    }

    .pipeline-item::before {
        left: -21px;
    }
}

/* =============================================
   END R&D PAGE STYLES
   ============================================= */

/* =============================================
   INVESTOR RELATIONS PAGE STYLES
   ============================================= */

/* Investor Hero */
.investor-hero {
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.05) 0%, rgba(0, 175, 185, 0.08) 100%);
    padding: 70px 0;
}

.investor-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.investor-hero-title {
    font-size: 2.3rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.investor-hero-subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Positioning Section */
.investor-positioning-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.positioning-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.positioning-stats {
    display: grid;
    gap: 15px;
}

.stat-card-investor {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.stat-card-investor:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 129, 167, 0.1);
}

.stat-icon-investor {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-card-investor h4 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-card-investor p {
    color: #777;
    font-size: 0.85rem;
    margin: 0;
}

/* Why Invest Grid */
.why-invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.invest-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.invest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.invest-card:hover::before {
    transform: scaleX(1);
}

.invest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 129, 167, 0.1);
}

.invest-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(0, 129, 167, 0.08);
    line-height: 1;
}

.invest-card h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.invest-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Traction Timeline */
.traction-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.traction-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #ddd;
    transition: all 0.3s ease;
}

.traction-item.current {
    border-left-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(240, 113, 103, 0.03), rgba(240, 113, 103, 0.05));
}

.traction-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 129, 167, 0.1);
}

.traction-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.current-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 10px;
    text-transform: uppercase;
}

.traction-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.traction-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.95rem;
}

.traction-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* Market Opportunity */
.market-opportunity-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d4d 100%);
    padding: 70px 0;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.market-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.market-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.market-stat {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.market-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.market-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Funding Outlook */
.funding-outlook {
    max-width: 900px;
    margin: 0 auto;
}

.funding-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.funding-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.funding-goals {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.funding-goal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.funding-goal-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 129, 167, 0.1);
}

.goal-icon {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.funding-note {
    background: rgba(0, 129, 167, 0.05);
    padding: 20px 25px;
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: #555;
}

/* Growth Roadmap */
.growth-roadmap {
    display: grid;
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.roadmap-phase {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border-left: 5px solid #ddd;
    transition: all 0.3s ease;
}

.roadmap-phase:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 129, 167, 0.1);
}

.roadmap-phase.completed {
    border-left-color: #4caf50;
}

.roadmap-phase.ongoing {
    border-left-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(240, 113, 103, 0.02), rgba(240, 113, 103, 0.04));
}

.roadmap-phase.upcoming,
.roadmap-phase.future {
    border-left-color: var(--secondary-color);
}

.phase-status {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.roadmap-phase h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.roadmap-phase p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 129, 167, 0.03);
}

.faq-question h4 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin: 0;
    font-weight: 700;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 25px 20px;
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer ul {
    list-style: none;
    padding-left: 45px;
}

.faq-answer ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.faq-answer ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Investor CTA */
.investor-cta-section {
    background: linear-gradient(135deg, #0081a7 0%, #1d3557 100%);
    padding: 70px 0;
}

.investor-cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Responsive Investor */
@media (max-width: 768px) {

    .investor-hero-grid,
    .investor-positioning-grid {
        grid-template-columns: 1fr;
    }

    .investor-hero-title {
        font-size: 1.9rem;
    }

    .traction-timeline {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   END INVESTOR PAGE STYLES
   ============================================= */

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.03) 0%, rgba(0, 175, 185, 0.06) 100%);
    padding: 60px 0;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-hero-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

/* Quick Contact Cards */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.contact-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 129, 167, 0.1);
}

.contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-detail {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-detail a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--primary-color);
}

.contact-note {
    color: #999;
    font-size: 0.85rem;
    margin-top: 10px;
    font-style: italic;
}

/* Contact Form Section */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.form-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 175, 185, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Map Placeholder */
.map-section {
    position: sticky;
    top: 100px;
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.08), rgba(0, 175, 185, 0.12));
    border-radius: 16px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.map-placeholder p {
    color: var(--primary-color);
    font-weight: 600;
}

/* Partnership Section */
.partnership-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.partnership-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.partnership-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partnership-benefits li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: #666;
    font-size: 0.95rem;
}

.partnership-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.partnership-cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.partnership-cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.partnership-cta-card p {
    margin-bottom: 25px;
    opacity: 0.95;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.support-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 129, 167, 0.1);
}

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.support-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.support-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-card a:hover {
    color: var(--primary-color);
}

/* Map Embed */
.map-embed {
    margin-top: 40px;
}

.map-placeholder-large {
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.05), rgba(0, 175, 185, 0.08));
    border-radius: 16px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.map-icon-large {
    font-size: 5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.map-placeholder-large h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.map-placeholder-large p {
    color: #666;
    font-size: 1rem;
}

/* Contact Final CTA */
.contact-final-cta {
    background: linear-gradient(135deg, #0081a7 0%, #1d3557 100%);
    padding: 70px 0;
}

/* Responsive Contact */
@media (max-width: 768px) {

    .contact-hero-grid,
    .contact-form-grid,
    .partnership-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-title {
        font-size: 1.8rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-section {
        position: static;
    }

    .map-placeholder {
        height: 300px;
    }
}

/* =============================================
   END CONTACT PAGE STYLES
   ============================================= */

/* =============================================
   MEDIA & PRESS PAGE STYLES
   ============================================= */

/* Media Hero */
.media-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 70px 0;
}

.media-hero-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.hero-icon {
    font-size: 3rem;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

.hero-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-icon:nth-child(3) {
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.media-hero-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 20px;
}

.media-hero-subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Press Overview */
.press-overview {
    max-width: 900px;
    margin: 0 auto;
}

.press-summary {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.press-note {
    background: rgba(0, 129, 167, 0.05);
    padding: 12px 20px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Press Releases */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.press-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border-top: 4px solid #ddd;
    position: relative;
}

.press-card.current {
    border-top-color: var(--accent-color);
}

.press-card.upcoming {
    border-top-color: var(--secondary-color);
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 129, 167, 0.1);
}

.press-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.press-card.current .press-badge {
    background: var(--accent-color);
}

.press-card.upcoming .press-badge {
    background: var(--secondary-color);
}

.press-card h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.press-date {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.press-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Media Kit Section */
.media-kit-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.media-kit-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.includes-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #666;
    font-size: 0.95rem;
}

.includes-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.media-kit-downloads {
    display: grid;
    gap: 20px;
}

.download-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 129, 167, 0.1);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.download-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.download-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Logo Grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.logo-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 129, 167, 0.1);
}

.logo-preview {
    height: 180px;
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.08), rgba(0, 175, 185, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.logo-preview.dark {
    background: #333;
    color: var(--white);
}

.logo-preview.white-bg {
    background: var(--primary-color);
    color: var(--white);
}

.logo-preview.transparent {
    background:
        linear-gradient(45deg, #ddd 25%, transparent 25%),
        linear-gradient(-45deg, #ddd 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #ddd 75%),
        linear-gradient(-45deg, transparent 75%, #ddd 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.logo-card p {
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* Product Gallery */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    text-align: center;
}

.gallery-image {
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.08), rgba(0, 175, 185, 0.12));
    height: 220px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 129, 167, 0.15);
}

.gallery-item p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Video Placeholder */
.video-placeholder {
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.05), rgba(0, 175, 185, 0.08));
    border-radius: 16px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
}

.video-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.video-placeholder h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-placeholder p {
    color: #666;
    font-size: 1rem;
}

/* Media Highlights */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.highlight-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 129, 167, 0.1);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.highlight-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.4;
}

.highlight-source {
    color: #999;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Press Contact Section */
.press-contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d4d 100%);
    padding: 70px 0;
}

.press-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.press-contact-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.press-contact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* Responsive Media */
@media (max-width: 768px) {
    .media-hero-title {
        font-size: 2rem;
    }

    .media-kit-section,
    .press-contact-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .gallery-image {
        height: 180px;
    }
}

/* =============================================
   END MEDIA PAGE STYLES
   ============================================= */

/* =============================================
   CAREERS PAGE STYLES
   ============================================= */

/* Careers Hero */
.careers-hero {
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.05) 0%, rgba(0, 175, 185, 0.08) 100%);
    padding: 70px 0;
}

.careers-hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.careers-hero-title {
    font-size: 2.3rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.careers-hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.careers-intro {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.team-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.1), rgba(0, 175, 185, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 129, 167, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Culture Section */
.culture-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.values-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.value-icon {
    font-size: 2.5rem;
}

.value-item span:last-child {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Career Paths */
.career-paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.path-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.path-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 129, 167, 0.1);
}

.path-card h4 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.path-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.development-note {
    background: rgba(0, 129, 167, 0.05);
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
}

.development-note h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.development-note p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Job Filters */
.job-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* Jobs List */
.jobs-list {
    display: grid;
    gap: 25px;
}

.job-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 10px 30px rgba(0, 129, 167, 0.1);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.job-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.job-badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.job-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.job-location,
.job-experience {
    color: #666;
    font-size: 0.9rem;
}

.job-summary {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.job-details-btn {
    margin-bottom: 15px;
}

.job-details {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
    margin-top: 20px;
}

.job-details h4 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin: 20px 0 10px;
    font-weight: 700;
}

.job-details h4:first-child {
    margin-top: 0;
}

.job-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.job-details ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
}

.job-details ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.job-details p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Internship Section */
.internship-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.internship-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.internship-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.internship-cta h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Hiring Process */
.hiring-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 15px;
}

.process-step h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
}

.timeline-note {
    text-align: center;
    margin-top: 30px;
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

/* Perks Grid */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.perk-item {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
}

.perk-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 129, 167, 0.1);
}

.perk-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.perk-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Ethics Section */
.ethics-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

.policy-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.policy-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.policy-link:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-quote {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
}

/* Application Form */
.application-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.application-form {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
}

.form-note {
    color: #999;
    font-size: 0.85rem;
    margin-top: 15px;
    font-style: italic;
}

.application-checklist {
    background: rgba(0, 129, 167, 0.05);
    padding: 30px 25px;
    border-radius: 16px;
    border-left: 4px solid var(--secondary-color);
}

.application-checklist h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.application-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.application-checklist ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: #666;
    font-size: 0.95rem;
}

.application-checklist ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* General Application */
.general-app-text {
    font-size: 1.05rem;
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
}

.general-app-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.general-app-text a:hover {
    color: var(--primary-color);
}

/* HR Contact */
.hr-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hr-contact-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.hr-contact-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hr-contact-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.hr-contact-card a:not(.btn) {
    color: var(--secondary-color);
    text-decoration: none;
}

.hr-contact-card a:not(.btn):hover {
    color: var(--primary-color);
}

/* Privacy Note */
.privacy-note {
    color: #666;
    font-size: 0.9rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-note a {
    color: var(--secondary-color);
    text-decoration: none;
}

.privacy-note a:hover {
    color: var(--primary-color);
}

/* Responsive Careers */
@media (max-width: 768px) {

    .careers-hero-grid,
    .internship-grid,
    .application-grid,
    .hr-contact-grid {
        grid-template-columns: 1fr;
    }

    .careers-hero-title {
        font-size: 1.9rem;
    }

    .careers-hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .hero-cta-buttons .btn {
        width: 100%;
    }

    .team-placeholder {
        height: 250px;
    }

    .values-strip {
        gap: 20px;
    }

    .job-header {
        flex-direction: column;
        gap: 10px;
    }

    .hiring-process {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   END CAREERS PAGE STYLES
   ============================================= */

/* --- Responsive --- */
@media (max-width: 768px) {
    nav {
        position: static;
        order: 3;
    }
    
    .logo {
        order: 1;
    }
    
    .mobile-toggle {
        order: 2;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-soft);
        z-index: 998;
        border-top: 1px solid #e0e0e0;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-group {
        flex-direction: column;
    }

    /* Modern cards responsive */
    .modern-card {
        padding: 40px 25px;
        min-height: auto;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper svg,
    .feature-icon {
        width: 38px;
        height: 38px;
    }

    .modern-card h3 {
        font-size: 1.25rem;
    }

    .modern-card p {
        font-size: 0.98rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle,
    .section-lead {
        font-size: 1.05rem;
    }

    .partner-benefits {
        gap: 12px;
    }

    .partner-benefits li {
        font-size: 0.95rem;
        padding: 10px 18px;
    }
}
/* Updated Footer Bottom Styles */
.footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    flex-wrap: wrap;
    text-align: left !important;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #b0b8c1;
}

.designer p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        justify-content: center !important;
        text-align: center !important;
    }
}


/* =============================================
   ABOUT US PAGE ENHANCED STYLES (ADDED)
   ============================================= */

/* --- 1. About Hero Section --- */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d3557 100%);
    color: var(--white);
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    opacity: 0.6;
    animation: pulse-glow 10s infinite alternate;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(to right, #ffffff, #e0f7fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-visual {
    display: none; /* Hidden for centered layouts focusing on text */
}

/* --- 2. Purpose Cards (Glassmorphism) --- */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: -60px; /* Overlap with hero */
    position: relative;
    z-index: 3;
}

.purpose-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.purpose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 129, 167, 0.15);
}

.vision-card { border-top: 5px solid var(--primary-color); }
.mission-card { border-top: 5px solid var(--secondary-color); }
.values-card { border-top: 5px solid var(--accent-color); }

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(0, 129, 167, 0.1), rgba(0, 175, 185, 0.1));
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purpose-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.purpose-list, .values-list {
    text-align: left;
    margin-top: 15px;
    padding-left: 0;
}

.purpose-list li, .values-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.purpose-list li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.values-list li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* --- 3. Company Story --- */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 80px 0;
}

.img-placeholder-biotech {
    height: 400px;
    background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 129, 167, 0.1);
}

.img-placeholder-biotech::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    animation: rotateBG 20s linear infinite;
}

.img-placeholder-biotech span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 2;
    background: rgba(255,255,255,0.8);
    padding: 10px 25px;
    border-radius: 30px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* --- 4. Leadership Section --- */
.text-container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.leadership-quote {
    font-family: 'Georgia', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.6;
    margin-top: 40px;
    position: relative;
    padding: 40px;
    background: rgba(0, 129, 167, 0.03);
    border-radius: 12px;
}

.leadership-quote::before {
    content: '';
    font-size: 6rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: rgba(0, 129, 167, 0.1);
    font-family: sans-serif;
}

/* --- 5. Quality Grid --- */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.quality-item {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    border-bottom: 3px solid transparent;
}

.quality-item:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.q-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.quality-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .purpose-grid {
        grid-template-columns: 1fr;
        margin-top: 40px; /* Remove negative margin on mobile */
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .leadership-quote {
        font-size: 1.25rem;
        padding: 25px;
    }
}



/* ================================
   Social Media Sidebar - Bottom Left
   ================================ */

.social-sidebar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0, 95, 115, 0.3);
    overflow: hidden;
    position: relative;
}

.social-icon svg {
    min-width: 24px;
    width: 24px;
    height: 24px;
    margin-left: 13px;
    z-index: 2;
}

.social-icon span {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    margin-left: 10px;
    z-index: 2;
    transition: opacity 0.3s ease 0.1s;
}

.social-icon:hover {
    width: 160px;
    box-shadow: 0 6px 25px rgba(0, 95, 115, 0.4);
}

.social-icon:hover span {
    opacity: 1;
}

/* Platform-specific colors */
.social-icon.facebook {
    background: #1877f2;
}

.social-icon.facebook:hover {
    background: #145dbf;
    box-shadow: 0 6px 25px rgba(24, 119, 242, 0.4);
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.twitter:hover {
    background: #1a8cd8;
    box-shadow: 0 6px 25px rgba(29, 161, 242, 0.4);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #d8822e 0%, #c75e35 25%, #b5233a 50%, #a61f58 75%, #941577 100%);
    box-shadow: 0 6px 25px rgba(220, 39, 67, 0.4);
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.whatsapp:hover {
    background: #1ebe57;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-sidebar {
        bottom: 10px;
        left: 10px;
        gap: 10px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 22px;
        height: 22px;
        margin-left: 11px;
    }
    
    .social-icon:hover {
        width: 140px;
    }
    
    .social-icon span {
        font-size: 13px;
    }
}



/* ================================
   Social Media Sidebar - Bottom Left
   ================================ */

.social-sidebar {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50px;
    height: 50px;
    background: #005f73;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0, 95, 115, 0.3);
    overflow: hidden;
    position: relative;
}

.social-icon svg {
    min-width: 24px;
    width: 24px;
    height: 24px;
    margin-left: 13px;
    z-index: 2;
}

.social-icon span {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    margin-left: 10px;
    z-index: 2;
    transition: opacity 0.3s ease 0.1s;
}

.social-icon:hover {
    width: 160px;
    box-shadow: 0 6px 25px rgba(0, 95, 115, 0.4);
}

.social-icon:hover span {
    opacity: 1;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.facebook:hover {
    background: #145dbf;
    box-shadow: 0 6px 25px rgba(24, 119, 242, 0.4);
}

.social-icon.twitter {
    background: #1da1f2;
}

.social-icon.twitter:hover {
    background: #1a8cd8;
    box-shadow: 0 6px 25px rgba(29, 161, 242, 0.4);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #d8822e 0%, #c75e35 25%, #b5233a 50%, #a61f58 75%, #941577 100%);
    box-shadow: 0 6px 25px rgba(220, 39, 67, 0.4);
}

.social-icon.whatsapp {
    background: #25d366;
}

.social-icon.whatsapp:hover {
    background: #1ebe57;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .social-sidebar {
        bottom: 10px;
        left: 10px;
        gap: 10px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon svg {
        width: 22px;
        height: 22px;
        margin-left: 11px;
    }
    
    .social-icon:hover {
        width: 140px;
    }
    
    .social-icon span {
        font-size: 13px;
    }
}

