/* CSS Reset and Variables */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #0A192F;
    --secondary-blue: #172A45;
    --accent-teal: #00A896;
    --accent-teal-hover: #00C2A8;
    --text-dark: #1E293B;
    --text-light: #F8FAFC;
    --text-muted: #64748B;
    --bg-white: #FFFFFF;
    --bg-gray: #F1F5F9;
    --border-color: #E2E8F0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    /* Prevent link dragging */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Prevent image dragging and saving */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-teal);
    border-radius: 2px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-teal);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--accent-teal-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-teal);
    border-color: var(--accent-teal);
}

.btn-outline:hover {
    background-color: var(--accent-teal);
    color: var(--bg-white);
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

header.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition);
    position: relative;
    z-index: 3;
}

header.scrolled .navbar {
    /* Keep navbar height at 80px without shrinking */
    height: 80px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--accent-teal);
}

.logo-img {
    height: 74px;
    width: auto;
    transition: var(--transition);
    display: block;
}

header.scrolled .logo-img {
    /* Keep logo height at 74px without shrinking */
    height: 74px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-teal);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-teal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: calc(100vh - 80px);
    min-height: 600px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 20% 50%, rgba(0, 242, 254, 0.15) 0%, rgba(0, 168, 150, 0.05) 30%, rgba(10, 25, 47, 0) 70%), var(--primary-blue);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

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

.hero-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-graphic {
    flex: 0 0 310px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-eye {
    width: 100%;
    max-width: 310px;
    max-height: 310px;
    object-fit: contain;
    height: auto;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out;
}


.hero-content {
    flex: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 span {
    background: linear-gradient(135deg, #00C2A8 0%, #00A896 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 168, 150, 0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #CBD5E1;
    animation: fadeInUp 1s ease-out;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero .btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero .btn-outline:hover {
    background-color: #FFFFFF;
    color: var(--primary-blue);
    border-color: #FFFFFF;
}

/* Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-teal);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col:nth-child(2) {
    justify-self: center;
}

.footer-col h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-teal);
}

.footer-col p {
    color: #CBD5E1;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #CBD5E1;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-teal);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
}

/* ── Component Classes (replaces per-page inline styles) ── */

/* Header spacer — pushes page content below fixed header */
.header-spacer {
    height: 80px;
}

/* Page hero banner (non-homepage) */
.page-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #06314d 65%, var(--accent-teal) 140%);
    text-align: center;
    padding: 5rem 0;
    color: white;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-banner .section-title {
    margin-bottom: 1.2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-banner .section-title::after {
    display: none !important;
}

.page-banner p {
    max-width: 750px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Footer logo column */
.footer-col-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-wrap {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.footer-logo-img {
    height: 140px;
    width: auto;
    max-width: 100%;
}

/* Footer contact icon */
.footer-icon {
    margin-right: 10px;
    color: var(--accent-teal);
}

/* About page — overview row */
.about-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
}

.about-overview-text {
    flex: 1.2;
    min-width: 300px;
}

.about-overview-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    position: relative;
}

.about-overview-text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.mission-vision-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* About mission/vision card */
.mission-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-teal);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mission-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.mission-card h3 i {
    color: var(--accent-teal);
    margin-right: 10px;
}

.mission-card p {
    margin-bottom: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Leadership page — leader row */
.leader-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.leader-photo {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}

.leader-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.leader-bio {
    flex: 1;
    min-width: 300px;
}

.leader-bio h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.leader-bio .leader-title {
    color: var(--accent-teal);
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.leader-bio p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.leader-social {
    display: flex;
    gap: 1rem;
}

.leader-social a {
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: var(--transition);
}

.leader-social a:hover {
    color: var(--accent-teal);
}

/* Product "View Details" trigger button */
.btn-details {
    margin-top: 0.75rem;
    width: 100%;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

/* Product hover-tile "Send Inquiry" button */
.btn-inquiry {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
}

/* Veg indicator badge */
.veg-badge {
    color: #4CAF50;
}

/* Contact page layout */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-form-col {
    flex: 1;
    min-width: 300px;
}

.contact-form-col h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.contact-details-col {
    flex: 1;
    min-width: 300px;
}

.contact-details-panel {
    background: var(--primary-blue);
    padding: 3rem;
    border-radius: 8px;
    color: white;
    height: 100%;
}

.contact-details-panel h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--bg-white);
}

.contact-detail-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-detail-item>i {
    font-size: 1.5rem;
    color: var(--accent-teal);
    margin-top: 5px;
}

.contact-detail-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--bg-white);
}

.contact-detail-item p {
    color: #CBD5E1;
}

/* FAQ accordion (contact page) */
.faq-question {
    background: var(--bg-white);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.faq-question:hover {
    border-color: var(--accent-teal);
}

.faq-answer {
    background: var(--bg-gray);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    display: none;
    color: var(--text-dark);
}

/* Products page — featured section background */
.section-gray {
    background-color: var(--bg-gray);
}

/* Products page — "View all" CTA row */
.catalogue-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .logo {
        font-size: 1.25rem;
        white-space: nowrap;
        word-spacing: normal;
        gap: 0.4rem;
        margin-left: 0.5rem;
        /* Shift slightly right */
    }

    .logo img {
        height: 60px !important;
    }

    /* Remove positioning parent on nav to let absolute menu anchor to header */
    nav {
        position: static;
    }

    .nav-underline {
        display: none !important;
        /* hide sliding underline on mobile vertical links */
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        /* matches header height */
        left: 0;
        width: 100vw;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 0;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        gap: 1.8rem;
        border-bottom: 1px solid rgba(0, 168, 150, 0.15);
        z-index: 999;

        /* Smooth Entrance */
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: inline-block;
        width: auto;
        padding: 0.5rem 0.2rem;
        font-size: 1.3rem;
        color: var(--text-dark);
        letter-spacing: 0.5px;
    }

    .nav-links a.active {
        color: var(--accent-teal);
        font-weight: 600;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: auto;
        /* Pushes hamburger button to the far right! */
        margin-right: 0.5rem;
        /* Shift slightly left */
        z-index: 1001;
        /* keep button accessible */
    }

    /* Optimize Hero for mobile viewports */
    .hero {
        height: auto;
        min-height: auto;
        padding: 5rem 1rem 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-grid {
        flex-direction: column;
        gap: 1.25rem;
    }

    .hero-graphic {
        flex: 0 0 auto;
        width: 100%;
        max-width: 180px;
    }

    .hero-bg {
        object-position: 30% center;
        /* shift glowing medical network lines behind text */
        opacity: 0.35;
    }

    .hero-content {
        margin-left: 0;
        margin-top: 0;
        text-align: center;
        width: 100%;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.3rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .footer-col:nth-child(2) {
        justify-self: start;
    }

    /* Fix leadership page overflow on mobile */
    .leader-row {
        gap: 1.5rem;
    }

    .leader-photo,
    .leader-bio {
        min-width: 100%;
        max-width: 100%;
    }

    .card {
        padding: 1.25rem;
        /* reduce padding slightly on mobile to prevent squishing */
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-load {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.6);
    /* elegant light glassmorphism */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(0, 168, 150, 0.15), 0 0 0 3px rgba(0, 168, 150, 0.2);
}

/* Product Catalogue */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-teal);
    color: var(--bg-white);
    border-color: var(--accent-teal);
}

.product-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover,
.product-card.touch-active {
    transform: translateY(-5px);
    border-color: rgba(0, 168, 150, 0.3);
    box-shadow: 0 12px 30px rgba(0, 168, 150, 0.15);
}

.product-img {
    height: 250px;
    background: var(--bg-gray);
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.85rem;
    background-color: var(--bg-gray);
    transition: var(--transition);
}

.product-card:hover .product-img img,
.product-card.touch-active .product-img img {
    transform: scale(1.05);
}

.product-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-blue);
    color: var(--bg-white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-size: 1.25rem;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Certifications */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.cert-item {
    padding: 2rem;
    background: var(--bg-gray);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.cert-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-teal);
}

.cert-icon {
    font-size: 3rem;
    color: var(--accent-teal);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-teal);
    opacity: 0.2;
    font-family: serif;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-gray);
}

/* Product Hover Tile */
.product-card.has-hover-tile {
    position: relative;
    overflow: hidden;
}

.product-hover-tile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.88);
    /* premium semi-transparent dark blue */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1.5px solid rgba(0, 168, 150, 0.2);
    /* subtle glowing teal border */
    color: var(--bg-white);
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* ultra-smooth bezier curve */
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
}

.product-card.has-hover-tile.touch-active .product-hover-tile {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


.product-hover-tile h4 {
    color: var(--accent-teal);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    border-bottom: 2px solid var(--accent-teal);
    padding-bottom: 0.5rem;
}

.product-hover-tile .hover-details p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    color: #CBD5E1;
}

.product-hover-tile ul {
    list-style: none;
}

.product-hover-tile ul li {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #CBD5E1;
}

.product-hover-tile ul li i {
    color: var(--accent-teal);
}

/* Scroll Animations */
.js-enabled .fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

/* Premium Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-blue);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 168, 150, 0.6);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-teal);
}

/* Sliding Navbar Underline (Desktop Only) */
@media (min-width: 769px) {
    header::before {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        width: 14.5rem;
        height: calc(100% + 2px);
        background-color: var(--accent-teal);
        clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%);
        pointer-events: none;
        z-index: 1;
    }

    header::after {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        width: 12.5rem;
        height: calc(100% + 2px);
        background-color: var(--primary-blue);
        clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%);
        pointer-events: none;
        z-index: 2;
    }

    header .logo {
        margin-left: 12.5rem;
        transition: margin-left 0.3s ease;
    }

    .nav-links {
        position: relative;
        /* relative parent for absolute underline placement */
    }

    .js-enabled .nav-links a::after {
        display: none !important;
        /* deactivate native ::after transition when JS is enabled */
    }

    .nav-underline {
        position: absolute;
        bottom: -4px;
        left: 0;
        height: 2px;
        background-color: var(--accent-teal);
        transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
        /* Apple-grade slider easing */
        pointer-events: none;
        z-index: 1;
    }
}

/* Additional Page Styles (About Us & Inner Pages) */
.about-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
}

.about-overview-text {
    flex: 1.2;
    min-width: 300px;
}

.about-overview-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.about-overview-text p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.mission-vision-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    /* exact homepage card border */
    border-left: 4px solid var(--accent-teal);
    /* keep brand accent bar */
    padding: 2.2rem;
    border-radius: 8px;
    /* exact homepage card border-radius */
    box-shadow: var(--shadow-md);
    /* exact homepage card shadow! */
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    /* exact homepage card hover translation! */
    border-color: var(--accent-teal);
    /* exact hover border-color */
    box-shadow: var(--shadow-lg);
    /* exact homepage card hover shadow! */
}


.mission-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.mission-card h3 i {
    color: var(--accent-teal);
    font-size: 1.20rem;
}

.mission-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}