/* CSS Reset & Variables */
:root {
    --primary-blue: #004e92;
    --secondary-blue: #000428;
    --accent-blue: #3a7bd5;
    --light-blue: #ebf4fa;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #555555;
    --gold: #f1c40f;
    --gold-dark: #d4ac0d;

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 24px rgba(0, 0, 0, 0.12);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

.text-gold {
    color: var(--gold) !important;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    /* Explicit base size */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: 48px;
    letter-spacing: -0.02em;
    font-weight: 800;
}

h2 {
    font-size: 36px;
    letter-spacing: -0.01em;
    font-weight: 700;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    /* Slightly larger than base for readability */
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    p {
        font-size: 1rem;
    }
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Helper Classes */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 78, 146, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 78, 146, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 78, 146, 0.2);
}

.btn-text {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text:hover {
    gap: 12px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(241, 196, 15, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
}

/* Navbar */
.top-bar {
    background-color: #020b1c;
    /* Even darker blue for top bar */
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-bar-contact i {
    color: var(--white);
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    color: var(--white);
    transition: color 0.3s;
}

.top-bar-social a:hover {
    color: var(--gold);
}

.navbar {
    position: fixed;
    top: 40px;
    /* Offset for top bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(90deg, #021129 0%, #07386e 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.btn-dark {
    background-color: #0B1F3A;
    color: #fff !important;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid #0B1F3A;
}

.btn-dark:hover {
    background-color: #1a3a66;
    border-color: #1a3a66;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(11, 31, 58, 0.3);
}

.navbar.scrolled {
    background: linear-gradient(90deg, #021129 0%, #07386e 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
    /* Slightly compact on scroll */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    /* Increased height for better visibility */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 50px;
    /* Slightly smaller on scroll */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--gold);
}

.nav-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #1e88e5 0%, #1565c0 100%) !important;
    border-radius: 6px;
    color: var(--white) !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.3);
    border: none;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .hero-slider .slide,
    .slide {
        padding-top: 80px;
    }
}

/* Hero Slider */
/* Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    padding-top: 0;
    /* Nav overlap handled by absolute positioning? No, sticky nav usually implies top padding on body or logic. Sticky nav here is fixed. */
}

.hero-slider.page-header-hero {
    height: 60vh;
    min-height: 450px;
}

@media (max-width: 768px) {
    .hero-slider.page-header-hero {
        height: 50vh;
        min-height: 350px;
    }
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
    /* Offset for fixed nav + top bar */
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Animations for Slide Content */
.slide .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s;
    /* Delay to wait for background fade */
}

.slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduced opacity to make background image more visible */
    background: linear-gradient(90deg, rgba(2, 17, 41, 0.95) 0%, rgba(2, 17, 41, 0.75) 50%, rgba(2, 17, 41, 0.1) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 25px;
    color: var(--white);
    max-width: 900px;
    line-height: 1.1;
    font-weight: 700;
}

.hero-content h1 .highlight {
    color: var(--gold);
    display: block;
    /* Make it stack if needed, or just emphasize */
}

.hero-sub {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    max-width: 750px;
    font-weight: 500;
    line-height: 1.4;
}

.hero-support {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 45px;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-overview {
    background: #fdfdfd;
    position: relative;
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-label {
    color: #0B1F3A;
    /* Dark Navy */
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
    border-left: 4px solid var(--gold);
    padding-left: 15px;
    display: inline-block;
    line-height: 1;
}

.section-title {
    font-size: 42px;
    margin-bottom: 25px;
    color: #0B1F3A;
    /* Dark Navy to match header */
    font-weight: 700;
    line-height: 1.2;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 16px;
}

/* Better frame matching screenshot: Gold rounded border outside image */
/* Conflict removed - see Detailed Design section */

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.img-wrapper:hover img {
    transform: scale(1.03);
}

/* Products Section */
.products-section {
    background-color: #f8fbff;
    position: relative;
    padding: 100px 0 50px 0;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.products-section {
    background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 100%);
    padding: 80px 0;
}

.products-section .section-desc {
    color: #333;
    /* Darker text for better readability */
    font-weight: 500;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-img-wrapper {
    background: #fff;
    border: 1.5px solid #efefef;
    border-radius: 18px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-bottom: 20px;
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-info {
    text-align: left;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.product-rating .stars {
    color: #FFC107;
    font-size: 0.9rem;
}

.product-rating .rating-value {
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 600;
}

.product-rating .review-count {
    color: #888;
    font-weight: 400;
}

.stock-status {
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.price-container {
    display: flex;
    flex-direction: column;
}

.curr-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
}

.old-price {
    font-size: 1rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
}

.cart-btn {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 78, 146, 0.3);
}

.cart-btn:hover {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 16px rgba(0, 78, 146, 0.4);
}

/* Why Choose Us Redesign */
.why-choose-section {
    background: linear-gradient(90deg, #021129 0%, #07386e 100%) !important;
    position: relative;
    padding: 120px 0;
}

.section-header .section-desc {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: var(--text-gray);
    /* Revert to dark gray/default */
}

/* Specific overrides for Why Choose section header since it's now dark */
.why-choose-section .section-title {
    color: var(--white);
}

.why-choose-section .section-desc {
    color: rgba(255, 255, 255, 0.8);
}



.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    /* Dark Glass */
    border-radius: 30px;
    padding: 45px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--gold);
    /* Gold border on hover */
    background: rgba(255, 255, 255, 0.05);
}

.feature-card-inner {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 28px;
    color: var(--gold);
    /* Gold Icons */
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon i {
    color: #020b1c;
    /* Dark icon on gold bg */
}

.feature-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    /* White Title */
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    /* White/Gray Text */
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 35px 25px;
    }
}


/* CTA Banner */
/* CTA Banner Premium */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: url('../images/hero_slide_3.png') center/cover no-repeat fixed;
    text-align: left;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Deep premium gradient overlay */
    background: linear-gradient(90deg, rgba(0, 4, 40, 0.95) 0%, rgba(0, 78, 146, 0.85) 100%);
    z-index: 1;
}

/* Optional: Decorative circle pattern */
.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
    max-width: 600px;
}

/* Button Large for CTA */
.btn-lg {
    padding: 18px 40px;
    font-size: 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.3);
}

@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text p {
        margin: 0 auto 30px;
    }
}


/* Mobile Responsiveness */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #020b1c;
        /* Match top bar / dark theme */
        padding: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        gap: 0;
    }

    .nav-links.active li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active li a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .about-overview {
        padding: 60px 0;
    }

    .about-section {
        padding: 40px 0;
    }
}

/* Sticky Contact Bar */
.sticky-contact-bar {
    position: fixed;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.contact-icon:hover {
    width: 60px;
    color: #fff;
}

.call-icon {
    background-color: #007bff;
    /* Blue */
}

.whatsapp-icon {
    background-color: #25d366;
    /* Green */
}

.email-icon {
    background-color: #dc3545;
    /* Red */
}

/* Top Bar */
.top-bar {
    background-color: var(--secondary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact a {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.top-bar-contact a:hover {
    color: var(--white);
    opacity: 1;
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* Adjust Navbar to account for Top Bar */
.navbar {
    top: 40px;
    /* Adjusting for top bar height */
}



.slide {
    padding-top: 110px;
    /* Increased from 80px */
}

/* Mobile Responsiveness for Top Bar */
@media (max-width: 768px) {
    .top-bar {
        display: none;
        /* Often hidden on mobile to save space */
    }

    .navbar {
        top: 0;
    }

    .slide {
        padding-top: 80px;
    }
}

/* Scrolling Ticker */
.scrolling-ticker {
    width: 100%;
    height: 50px;
    background-color: var(--light-blue);
    /* Light blue background */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    animation: scroll-left 40s linear infinite;
    /* Slow loop */
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-blue);
    padding: 0 10px;
}

.ticker-separator {
    color: var(--gold);
    font-size: 8px;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the width (since we duplicated content) */
    }
}

/* About Page Specific Styles */
/* About Page Specific Styles */
.page-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    margin-top: 0;
    /* Nav overlap handled by absolute header or padding */
    padding-top: 100px;
}

/* Specific stronger overlay for page headers to ensure text readability */
.page-header .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 78, 146, 0.85) 0%, rgba(0, 4, 40, 0.7) 100%);
    opacity: 0.9;
    /* High opacity to cover the light image */
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.about-text {
    padding-right: 40px;
}

.about-img-container {
    position: relative;
}

.rounded-img {
    border-radius: var(--radius-lg);
    width: 100%;
    display: block;
}

.vision-mission-section {
    padding: 80px 0;
    background-color: var(--light-blue);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: #e6f0fa;
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.vm-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.vm-card ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-gray);
}

.vm-card ul li {
    margin-bottom: 10px;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.strength-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.strength-item i {
    font-size: 20px;
    color: var(--primary-blue);
}

.strength-item span {
    font-weight: 500;
    font-size: 16px;
}

.therapeutic-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.therapeutic-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-weight: 500;
}

.therapeutic-list li i {
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .page-header {
        height: 300px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .therapeutic-list {
        grid-template-columns: 1fr;
    }
}

/* Strengths Section List */
.strengths-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.strength-item-row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.strength-item-row i {
    font-size: 20px;
    color: var(--primary-blue);
    margin-top: 3px;
    background: #e6f0fa;
    padding: 10px;
    border-radius: 50%;
}

.strength-item-row h5 {
    margin-bottom: 2px;
    font-size: 17px;
    color: var(--secondary-blue);
}

.text-sm {
    font-size: 14px;
}

/* Approach Features Grid within Text Side */
.approach-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.app-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
}

.app-feat-item i {
    color: var(--gold-dark);
    font-size: 18px;
}

/* Therapeutic Grid Box */
.therapeutic-grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.thera-item {
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--secondary-blue);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.thera-item:hover {
    transform: translateX(5px);
    border-left: 3px solid var(--primary-blue);
}

.thera-item i {
    color: var(--accent-blue);
}

/* Missing Utility Classes */
.bg-light-blue {
    background-color: var(--light-blue);
}

.text-gray {
    color: var(--text-gray);
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Future Section */
.future-section {
    background: var(--white);
    padding: 100px 0;
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

.closing-statement h3 {
    font-size: 28px;
    color: var(--primary-blue);
    font-style: italic;
    margin-top: 40px;
    position: relative;
    display: inline-block;
}

.closing-statement h3::before,
.closing-statement h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 10px auto;
}

/* Quality Section Enhancements */
.quality-section {
    position: relative;
    overflow: hidden;
    background: url('../images/pharmaceutical_manufacturing_hero.png') center/cover no-repeat fixed;
    padding: 100px 0;
}

.quality-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 11, 28, 0.9) 0%, rgba(7, 56, 110, 0.85) 100%);
    z-index: 1;
}

.quality-section .container {
    position: relative;
    z-index: 2;
}

.quality-text {
    padding-right: 50px;
}

.quality-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Layout Adjustments */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-image .img-wrapper,
.strengths-image .img-wrapper {
    height: 100%;
    min-height: 400px;
}

.approach-image img,
.strengths-image img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .quality-text {
        padding-right: 0;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
        /* Text first, image second on mobile if desired, or verify flow */
    }

    .approach-image .img-wrapper,
    .strengths-image .img-wrapper {
        min-height: 300px;
    }
}

/* Comprehensive Mobile Responsiveness Details */
@media (max-width: 768px) {

    /* General Layout */
    .section {
        padding: 50px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* About Grid Stacking */
    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .about-grid.reverse-mobile {
        flex-direction: column-reverse;
    }

    /* Approach Section */
    .approach-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Images */
    .approach-image .img-wrapper,
    .strengths-image .img-wrapper,
    .img-wrapper {
        min-height: 250px;
        height: auto;
    }

    .quality-image .img-wrapper {
        max-width: 100% !important;
        transform: none !important;
        border-width: 3px !important;
    }

    /* Typography */
    .section-title {
        font-size: 28px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 16px;
        padding: 0 10px;
    }

    /* Therapeutic Grid */
    .therapeutic-grid-box {
        grid-template-columns: 1fr;
    }

    /* Future Section */
    .future-section {
        padding: 60px 0;
    }

    .closing-statement h3 {
        font-size: 20px;
    }
}

/* Custom Bullet List for Strengths */
.custom-bullet-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.custom-bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--text-gray);
    font-size: 16px;
    font-weight: 500;
}

.custom-bullet-list li::before {
    content: 'â€¢';
    color: var(--primary-blue);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
    line-height: normal;
}

/* Improved People & Therapeutic Section */
.improved-people-section {
    background-image: linear-gradient(to right, #ecf5fb 0%, #f4f9fd 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Subtle pattern */
.improved-people-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#dbeaf7 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

/* Section Headings Hierarchy */
.people-heading {
    font-weight: 700;
    font-size: 32px;
    color: var(--secondary-blue);
}

.therapeutic-heading {
    font-weight: 600;
    font-size: 28px;
    color: var(--secondary-blue);
    opacity: 0.9;
}

/* People Column */
.people-col p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 95%;
}

.people-img {
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 300px;
    /* Slight reduction as requested */
    width: 100%;
}

.people-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Better crop adjustment */
}

/* Therapeutic Cards Improved */
.therapeutic-grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.thera-item {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    /* Increased gap */
    border: 1px solid rgba(0, 0, 0, 0.01);
}

.thera-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
    border-left: none;
    /* Reset overlap from previous style */
}

.thera-item i {
    font-size: 22px;
    color: var(--primary-blue);
    background: #eef6fc;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thera-item span {
    font-weight: 600;
    color: var(--secondary-blue);
    font-size: 15px;
    line-height: 1.4;
}

/* Better vertical balance */
.people-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Mobile Fixes for Logic */
@media (max-width: 768px) {
    .improved-people-section {
        padding: 50px 0;
    }

    .people-heading {
        font-size: 26px;
    }

    .therapeutic-heading {
        font-size: 24px;
        margin-top: 40px;
    }

    .people-img {
        height: 220px;
        margin-top: 20px;
        order: 3;
        /* Ensure explicit ordering if flex container */
    }

    /* Ensure Left column elements stack effectively */
    .people-col {
        display: contents;
        /* Flattens children to the grid if parent is grid, checking parent */
    }

    /* Since parent is .about-grid which is flex column on mobile */
    .about-grid {
        display: flex;
        flex-direction: column;
    }

    .people-col {
        display: flex;
        /* Reset contents */
        flex-direction: column;
    }

    /* User wants: Heading, Text, Theresa Cards, Image Last. 
       This structure (Col1: H, T, I; Col2: H, C) naturally renders:
       People H, People T, People I, Thera H, Thera C.
       To move Image to the very end is complex without changing HTML structure to single level.
       Current best compromise: People Img is at bottom of People Col. */
}

/* Ensure text is white in dark sections regardless of global overrides */
.quality-section p,
.text-white p {
    color: var(--white) !important;
}

.quality-text h2 {
    color: var(--white) !important;
}

/* Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for list items if needed */
.strengths-section .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
}

/* Styled List with Icons and Borders */
.strengths-styled-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.strengths-styled-list li {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 78, 146, 0.15);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: all 0.3s ease;
}

.strengths-styled-list li:hover {
    border-color: var(--primary-blue);
    background-color: #f8fbff;
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.strengths-styled-list li i {
    font-size: 20px;
    color: var(--primary-blue);
    margin-right: 18px;
    min-width: 25px;
    text-align: center;
    background: rgba(0, 78, 146, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.strengths-styled-list li span {
    font-weight: 600;
    color: var(--secondary-blue);
    font-size: 16px;
}

/* Enhanced Section Text */
.text-highlight-premium {
    font-size: 18px;
    color: #2c3e50;
    /* Darker slate blue for better readability */
    line-height: 1.8;
    font-weight: 500;
}

/* Mobile Responsive Improvements for People & Therapeutic Section */
@media (max-width: 768px) {
    .bg-light-blue .about-grid {
        flex-direction: column;
        gap: 40px;
    }

    .therapeutic-grid-box {
        grid-template-columns: 1fr;
        /* Stack items vertically */
        gap: 12px;
    }

    .thera-item {
        font-size: 15px;
        padding: 12px 15px;
        border-left: 3px solid var(--primary-blue);
        /* Visual indicator */
    }

    .text-highlight-premium {
        font-size: 16px;
        /* Slightly smaller for mobile */
        line-height: 1.6;
    }

    .bg-light-blue .img-wrapper {
        height: auto !important;
        /* Allow image to scale naturally */
        max-height: 250px;
    }
}

/* Enhanced Vision & Mission Section */
.vision-mission-section {
    background: linear-gradient(to bottom, #f8fbff, #edf2f7);
    padding: 100px 0;
}

.vm-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 78, 146, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-top: 4px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 78, 146, 0.1);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: var(--primary-blue);
    font-size: 28px;
    margin-bottom: 25px;
    /* Reset existing flex centering if needed, but flex centering is good */
}

/* Add a subtle background watermark icon */
.vm-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 150px;
    color: rgba(0, 78, 146, 0.03);
    z-index: 0;
    pointer-events: none;
}

.vm-card:first-child::after {
    content: '\f06e';
    /* Eye icon */
}

.vm-card:last-child::after {
    content: '\f140';
    /* Bullseye icon */
}

.vm-card h3 {
    font-size: 30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.vm-card p,
.vm-card ul {
    position: relative;
    z-index: 1;
    color: #4a5568;
}

.vm-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vm-card ul li::before {
    content: 'â€¢';
    color: var(--primary-blue);
    font-size: 20px;
    line-height: 1;
}

/* Remove Card Style for Vision & Mission */
.vision-mission-clean .vm-card {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-bottom: 40px;
}

.vision-mission-clean .vm-card:hover {
    transform: none;
    box-shadow: none;
}

.vision-mission-clean .vm-card::after {
    display: none;
    /* Remove watermark */
}

/* Add a separator line between them on mobile if needed, or spacing */
@media (min-width: 769px) {
    .vision-mission-clean .vision-mission-grid {
        gap: 80px;
        /* Increase gap since cards are gone */
    }
}

/* Background Styling for Vision & Mission */
.vision-mission-section {
    background-color: #f4f9fd;
    /* Crisp light blue */
    background-image:
        radial-gradient(circle at 0% 0%, rgba(0, 78, 146, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(0, 4, 40, 0.05) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

/* Subtle Geometric Pattern Overlay */
.vision-mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#004e92 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.03;
    pointer-events: none;
}

/* Decorative Divider Line for Desktop */
@media (min-width: 992px) {
    .vision-mission-grid {
        position: relative;
    }

    .vision-mission-grid::after {
        content: '';
        position: absolute;
        top: 20%;
        bottom: 20%;
        left: 50%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(0, 78, 146, 0.2), transparent);
    }
}

/* Vision & Mission Home Specifics */
.vision-mission-home .vm-card {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

.vision-mission-home .vm-icon {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.vision-mission-home p {
    color: rgba(255, 255, 255, 0.9);
}

.mission-list-home {
    /* Reset default padding/margin if needed */
    padding-left: 0;
}

.mission-list-home li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.mission-list-home li::before {
    content: 'â€¢';
    color: var(--gold);
    /* Gold bullets on dark background */
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -5px;
    line-height: 1;
}

/* Ensure opacity helper works if not defined elsewhere */
.opacity-90 {
    opacity: 0.9;
}

/* Professional Footer Redesign */
.footer {
    background: #000428;
    /* Deep dark blue */
    color: #ffffff;
    padding: 70px 0 30px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

/* Subtle decoration */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue), var(--white))
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-blue);
    /* accent color */
}

.footer-brand p {
    color: #b0c4de;
    line-height: 1.8;
    max-width: 300px;
    margin-bottom: 20px;
}

/* Footer Links */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #d1e3f6;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links ul li a::before {
    content: '\f105';
    /* Chevron right in FA */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 12px;
    color: var(--primary-blue);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info in Footer */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #d1e3f6;
}

.footer-contact-item i {
    width: 25px;
    color: var(--accent-blue);
    margin-top: 4px;
}

/* Social Icons in Footer (if added) */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #8fa6c1;
    font-size: 14px;
    margin: 0;
}

.developer-credit {
    margin-left: auto;
    /* Push to right */
    color: #8fa6c1;
    font-size: 14px;
}

.developer-credit a {
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.developer-credit a:hover {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
}

/* Mobile Responsive Fixes for Footer */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 45px;
        text-align: left;
        /* Explicitly ensure left alignment */
    }

    .footer-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Stack content to the left */
    }

    .footer-col h3 {
        margin-bottom: 20px;
        width: 100%;
        text-align: left;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .footer-links ul li {
        margin-bottom: 0px;
        /* Tighter spacing */
    }

    .footer-links ul li a {
        padding: 5px 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-top: 30px;
    }

    .developer-credit {
        margin: 0 auto;
        text-align: center;
    }
}

/* Detailed Design for About Image (Home) */
.about-image {
    position: relative;
    z-index: 1;
    margin: 30px 20px 50px 20px;
    /* Margins to allow for offsets */
}

/* 1. Back Shape (Light Blue Background) */
.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background-color: #ecf2f9;
    /* Light premium blue-gray */
    border-radius: 30px;
    z-index: -1;
    border: none;
}

/* 2. Dots Decoration (Bottom Right) */
.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 100px;
    background-image: radial-gradient(#94a3b8 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: -2;
}

/* 3. Image Wrapper (White Card Frame) */
.about-image .img-wrapper {
    position: relative;
    background: #ffffff;
    padding: 15px;
    /* The white border effect */
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 78, 146, 0.08);
    /* Soft blue-tinted shadow */
    z-index: 2;
    overflow: hidden;
}

.about-image .img-wrapper img {
    border-radius: 16px;
    display: block;
    width: 100%;
    height: auto;
}

/* Mobile Responsiveness for About Image */
@media (max-width: 992px) {
    .about-image {
        margin: 40px 10px;
    }

    .about-image::before {
        top: -15px;
        left: -15px;
    }
}

@media (max-width: 768px) {
    .about-image {
        margin: 30px 0;
        width: 100%;
        padding-right: 0;
    }

    .about-image::before {
        width: 100%;
        height: 100%;
        top: 15px;
        /* Simple offset on mobile */
        left: 15px;
        border-radius: 20px;
    }

    .about-image::after {
        display: none;
        /* Hide dots on small screens */
    }

    .about-image .img-wrapper {
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

/* Generalized Premium Landscape Image Style (Scape Style) */
.premium-img-scape {
    position: relative;
    z-index: 1;
    /* Create breathing room for the background elements */
    margin: 20px 0 20px 30px;
}

/* Offset Frame background */
.premium-img-scape::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -30px;
    /* Shifts frame left relative to container */
    width: 90%;
    height: 90%;
    background-color: rgba(0, 78, 146, 0.08);
    /* Light blue tint */
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* Scientific Dots Pattern */
.premium-img-scape::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background-image: radial-gradient(var(--primary-blue) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.25;
    z-index: -2;
}

/* Image Wrapper Card Look */
.premium-img-scape .img-wrapper {
    background: var(--white);
    padding: 12px;
    /* White border effect */
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 78, 146, 0.15);
    position: relative;
    overflow: hidden;
}

.premium-img-scape img {
    border-radius: calc(var(--radius-lg) - 4px);
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.premium-img-scape:hover img {
    transform: scale(1.02);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .premium-img-scape {
        margin: 20px;
    }

    .premium-img-scape::before {
        top: -15px;
        left: -15px;
    }
}

/* =========================================
   Contact Us Page Styling
   ========================================= */

.contact-page-section {
    background-color: var(--light-blue);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Contact Info Column */
.contact-card-list {
    margin-top: 40px;
}

.contact-card-item {
    display: flex;
    align-items: flex-start;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-card-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-blue);
}

.contact-card-item .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(0, 78, 146, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-card-item .text-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 8px;
}

.contact-card-item .text-box p {
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 5px;
    line-height: 1.6;
}

.contact-card-item .text-box p a {
    color: var(--text-dark);
    font-weight: 500;
}

.contact-card-item .text-box p a:hover {
    color: var(--primary-blue);
}

/* Contact Form Column */
.form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
}

.form-wrapper h3 {
    font-size: 24px;
    color: var(--secondary-blue);
    margin-bottom: 30px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    transition: color 0.3s ease;
}

.input-with-icon.textarea-icon i {
    top: 20px;
    transform: none;
}

.input-with-icon input,
.input-with-icon textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    /* Space for icon */
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: #f8fafc;
}

.input-with-icon input:focus,
.input-with-icon textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 78, 146, 0.1);
}

.input-with-icon input:focus+i,
.input-with-icon input:focus~i,
.input-with-icon textarea:focus~i {
    color: var(--primary-blue);
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/* Map Section */
.map-container {
    width: 100%;
    height: 450px;
    background: #e2e8f0;
    position: relative;
}

.map-container iframe {
    filter: grayscale(100%);
    /* Stylish gray map */
    transition: filter 0.5s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Responsive Contact Page */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-page-section {
        padding: 50px 0;
    }
}

/* ENSURE Page Header Text is White */
.page-header h1,
.page-header p {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* improved readability */
}

/* Page Header Hero Specifics */
.page-header-hero {
    height: 450px !important;
    /* Slightly smaller than home hero, but substantial */
}

/* Ensure single slide behaves like active slide */
.page-header-hero .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    /* Always visible */
    transform: translateY(0);
}

.page-header-hero .hero-content {
    padding-top: 80px;
    /* Offset for navbar */
    opacity: 1;
    transform: translateY(0);
}

/* Product Page Styles (rle20) */
.product-page-hero {
    padding: 180px 0 100px;
    /* Account for fixed header */
    background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-hero-text h1 {
    font-size: 64px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    line-height: 1;
}

.product-generic-name {
    font-size: 24px;
    color: var(--secondary-blue);
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.product-tagline {
    font-size: 20px;
    color: var(--text-gray);
    font-style: italic;
    border-left: 4px solid var(--gold);
    padding-left: 15px;
    margin-bottom: 30px;
}

.product-hero-img {
    position: relative;
    z-index: 1;
}

.product-hero-img img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.product-badge {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.product-detail-section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8fbff;
}

.content-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-blue);
}

/* Ensure section-label and detail-title are not triplicated if already existing */
/* But since they might differ slightly or be safe to redefine for scoping if we used specificity, here we just append. */
/* Just in case they are already defined, we check. Ideally we'd deduplicate but for now we append as requested to "move" them. */

.section-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.detail-title {
    font-size: 32px;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 20px;
    flex-shrink: 0;
}

/* Indications */
.indications-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.indications-list li {
    position: relative;
    padding-left: 35px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.indications-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--gold);
}

/* Why Choose */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-blue);
}

.why-item p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Mechanism */
.mechanism-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.mechanism-text {
    flex: 1;
}

/* Closing Banner */
.closing-banner {
    background: var(--primary-blue);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.closing-banner h2 {
    font-size: 36px;
    margin-bottom: 0;
}

@media (max-width: 992px) {

    .product-hero-grid,
    .mechanism-content {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .product-tagline {
        border-left: none;
        border-bottom: 4px solid var(--gold);
        padding-left: 0;
        padding-bottom: 15px;
        display: inline-block;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .product-hero-text h1 {
        font-size: 48px;
    }
}

/* =========================================
   Product Specific Styles - RLE20
   Added by Agent on Request
   ========================================= */

/* RLE20 Hero Section */
.rle-hero {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f7 100%);
    padding: 150px 0 80px;
    /* Adjusted top padding for fixed navbar */
    text-align: left;
    position: relative;
    overflow: hidden;
}

.rle-hero .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.rle-hero .hero-content h1 {
    font-size: 3.5rem;
    color: #2c5f2d;
    margin-bottom: 10px;
    font-weight: 800;
}

.rle-hero .hero-content h1 span {
    color: #4a90e2;
}

.rle-hero .hero-content .generic-name {
    font-size: 1.5rem;
    /* Increased for better visibility */
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
}

.rle-hero .hero-content .tagline {
    font-size: 2rem;
    color: #1a3a52;
    font-weight: 700;
    line-height: 1.3;
}

.rle-hero .hero-image {
    text-align: center;
}

.rle-hero .hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.rle-hero .hero-image img:hover {
    transform: scale(1.02);
}

/* General Content Sections */
.section {
    padding: 80px 0;
    position: relative;
    /* For absolute positioning of background elements if needed */
}

/* Specific background animation for Product Overview */
.section-overview-bg {
    background: linear-gradient(-45deg, #f8fbff, #eef2f5, #f0f4f8, #ffffff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.section-alt {
    background-color: #f9fafb;
}

.section-heading {
    font-size: 2.2rem;
    color: var(--secondary-blue);
    /* Using variable for consistency */
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #4a90e2;
    /* Keeping the product specific blue accent */
    border-radius: 2px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    /* Using variable */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Specific styling for Product Overview content boxes */
.section-overview-bg .content-box {
    border-radius: 0;
    position: relative;
    border-top: 4px solid #1a3a52;
    /* Dark theme color */
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.content-box h3 {
    font-size: 1.5rem;
    color: var(--secondary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.content-box p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Benefits List with Custom Checkmarks */
.benefits-list {
    list-style: none;
    margin-top: 20px;
}

.benefits-list li {
    padding: 15px 0;
    padding-left: 50px;
    position: relative;
    color: #444;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    top: 12px;
    width: 32px;
    height: 32px;
    background: #4a90e2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

/* Clinical Benefits Layout */
.benefits-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.doctor-image {
    text-align: center;
}

.doctor-image img {
    width: 80%;
    margin: 0 auto;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.doctor-image:hover img {
    transform: scale(1.03);
}

/* Indications & Why Grid */
.indications-why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.indication-column,
.why-column {
    background: white;
    padding: 50px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Enhanced shadow */
    border: 1px solid rgba(0, 0, 0, 0.02);
    border-top: 4px solid #1a3a52;
    /* Consistent dark theme accent */
    position: relative;
}

/* Dosage Section - Premium Card */
.dosage-section {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f2d 100%);
    color: white;
    padding: 60px 50px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 40px rgba(26, 58, 82, 0.2);
    position: relative;
    overflow: hidden;
}

.dosage-section::after {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.dosage-icon {
    font-size: 4.5rem;
    opacity: 0.9;
    color: var(--gold);
}

.dosage-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.dosage-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

/* Product Highlight / Bottom CTA */
.product-highlight {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.product-highlight h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.product-showcase {
    max-width: 600px;
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
}

.product-showcase img {
    max-width: 100%;
    width: 60%;
    /* Smaller width as implied by "remove img style" usually wanting less prominence */
    height: auto;
    display: block;
    margin: 0 auto;
    mix-blend-mode: multiply;
    /* Blends white background with blue section */
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive Adjustments for Product Pages */
@media (max-width: 992px) {

    .rle-hero .hero-container,
    .two-column,
    .benefits-with-image,
    .indications-why {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dosage-section {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        gap: 20px;
    }

    .dosage-icon {
        margin: 0 auto;
    }

    .rle-hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .rle-hero .hero-image {
        margin-top: 30px;
        order: -1;
        /* Image on top for mobile/tablet usually looks better, or keep bottom. Let's keep standard stack */
        order: 0;
    }
}

@media (max-width: 768px) {
    .rle-hero .hero-content h1 {
        font-size: 2.5rem;
    }

    .rle-hero .hero-content .tagline {
        font-size: 1.5rem;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    /* Allow grids to go smaller than 320px */
    .product-grid {
        grid-template-columns: 1fr !important;
    }

    .formula-card,
    .variant-card {
        padding: 25px;
    }

    /* Penadox SP Medical Guidance Mobile */
    .dosage-section-detailed {
        border-left: none;
        border-top: 5px solid #3a7bd5;
        border-radius: 20px;
        padding: 30px 20px;
    }

    .dosage-grid {
        grid-template-columns: 1fr;
    }

    .product-highlight h2 {
        font-size: 1.8rem;
    }
}


/* =========================================
   Updated Clinical Benefits Styles
   (Overrides for RLE20 Page)
   ========================================= */

/* Use grid for list items to allow better spacing and animation */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-blue);
    padding: 15px 20px 15px 60px;
    /* Left padding for absolute icon placement */
    border-radius: 4px;
    /* Slight rounding on right */
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    opacity: 0;
    animation: slideInRight 0.5s forwards;
    /* Removed display: flex to prevent weird wrapping of strong tags. Block layout works with absolute icon. */
}

/* Removal of old ::before pseudo-element checkmark since we added real icons */
.benefits-list li::before {
    display: none;
}

/* Staggered Animation Delays */
.benefits-list li:nth-child(1) {
    animation-delay: 0.1s;
}

.benefits-list li:nth-child(2) {
    animation-delay: 0.2s;
}

.benefits-list li:nth-child(3) {
    animation-delay: 0.3s;
}

.benefits-list li:nth-child(4) {
    animation-delay: 0.4s;
}

.benefits-list li:nth-child(5) {
    animation-delay: 0.5s;
}

.benefits-list li:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

/* Hover Effect */
.benefits-list li:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 78, 146, 0.15);
    border-left-color: var(--gold);
}

/* Styling the Icons inside li */
.benefits-list li i {
    position: absolute;
    left: 20px;
    top: 18px;
    /* Align with top text line */
    width: 30px;
    height: 30px;
    background: rgba(74, 144, 226, 0.1);
    /* Light blue bg */
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .benefits-list li {
        padding: 15px 15px 15px 55px;
        /* Slightly less padding on mobile */
    }

    .benefits-list li i {
        left: 15px;
    }
}

.benefits-list li:hover i {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-50%) rotate(360deg);
    /* Icon spin on hover */
}

/* Premium Benefits Card List (New Design) */
.benefits-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-card-list li {
    display: flex;
    align-items: center;
    /* Center vertically */
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    gap: 20px;
    transition: transform 0.3s ease;
}

.benefits-card-list li:hover {
    transform: translateY(-5px);
}

.benefits-card-list li i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef5fc;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.benefits-card-list .benefit-text {
    flex: 1;
}

.benefits-card-list strong {
    display: block;
    font-size: 1.15rem;
    color: var(--secondary-blue);
    margin-bottom: 6px;
    font-weight: 800;
}

.benefits-card-list p {
    margin: 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-card-list li {
        padding: 20px;
        align-items: flex-start;
        /* Better for long text on mobile */
    }

    .benefits-card-list li i {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-top: 5px;
    }
}


/* =========================================
   Reduce Gaps for RLE20 Clinical Benefits
   ========================================= */

/* Target the specific section using its parent class or structure for specificity */
.section-alt .section-heading {
    margin-bottom: 25px;
    /* Reduced from 40px */
}

/* Also ensure the benefits list itself doesn't add extra top margin if any */
.benefits-list {
    margin-top: 10px;
    /* Reduced from potential 20px default */
}


/* Mobile Responsive Fixes for Benefits List */
@media (max-width: 480px) {
    .benefits-list li {
        padding: 15px 15px 15px 50px;
        /* Ensure enough left padding for absolute icon */
        font-size: 0.95rem;
        /* Slightly smaller text for mobile */
        min-height: 50px;
        /* Ensure minimum height for icon */
        display: flex;
        align-items: center;
        /* Center text vertically if short, or allow wrap */
    }

    .benefits-list li i {
        left: 10px;
        /* slight adjustment */
    }
}

/* Scroll Reveal Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modern Split Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 4, 40, 0.85);
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    width: 90%;
    max-width: 950px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-side-img {
    flex: 1;
    background: url('../images/medical-banner-with-doctor-wearing-goggles.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
}

.modal-side-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 78, 146, 0.4), rgba(0, 4, 40, 0.7));
}

.modal-form-container {
    flex: 1.2;
    padding: 40px;
    background: #fff;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 38px;
    height: 38px;
    background: #f8f9fa;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.close-modal:hover {
    background: #004e92;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
    border-color: #004e92;
    box-shadow: 0 4px 12px rgba(0, 78, 146, 0.2);
}

.modal-header-text {
    margin-bottom: 25px;
}

.modal-header-text h2 {
    font-size: 28px;
    margin-bottom: 8px;
    color: #111;
}

.modal-header-text p {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.modal-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.modal-form .form-group {
    flex: 1;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #eaeaea;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    background: #fafafa;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(58, 123, 213, 0.1);
}

.phone-input-wrapper {
    display: flex;
    gap: 8px;
}

.country-code {
    width: 80px !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-footer-info {
    font-size: 12px;
    color: #888;
    margin-top: 15px;
}

.btn-callback {
    width: 100%;
    background: linear-gradient(135deg, #0076cc 0%, #0099cc 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(0, 118, 204, 0.2);
    transition: all 0.3s;
}

.btn-callback:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0, 118, 204, 0.3);
}

@media (max-width: 900px) {
    .modal-side-img {
        display: none;
    }

    .modal-content {
        max-width: 500px;
    }
}

@media (max-width: 600px) {
    .modal-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .modal-form .form-row .form-group {
        margin-bottom: 15px;
    }

    .modal-form-container {
        padding: 30px 20px;
    }

    .modal-header-text h2 {
        font-size: 24px;
    }
}

.btn-block {
    width: 100%;
    display: block;
}

/* Simplified About Us Content Styling */
.about-content-simple {
    text-align: left;
    margin-top: 30px;
}

.lead-para {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--secondary-blue);
    font-weight: 500;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-blue);
    padding-left: 30px;
}

.content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.content-col p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.vision-highlight {
    background: #f8fbff;
    padding: 40px;
    border-radius: 20px;
    border: 1px dashed var(--primary-blue);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--secondary-blue);
    font-weight: 500;
    text-align: center;
}

@media (max-width: 992px) {
    .content-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lead-para {
        font-size: 1.1rem;
        padding-left: 20px;
    }
}

/* Strengths Pills UI */
.strengths-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.strength-pill {
    background: #f8fbff;
    border: 1.5px solid #000;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--secondary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.strength-pill i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.strength-pill:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 78, 146, 0.1);
    border-color: var(--primary-blue);
}

.strength-pill:hover i {
    color: #fff;
}

@media (min-width: 992px) {
    .text-center-desktop {
        text-align: center;
    }
}

/* Product Portfolio Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.category-card {
    background: var(--white);
    padding: 45px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 78, 146, 0.1);
}



.category-card .btn-text {
    margin-top: auto;
    padding-top: 20px;
}

.category-icon-box {
    width: 55px;
    height: 55px;
    background: #ebf4fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon-box {
    background: var(--primary-blue);
    color: var(--white);
}

.category-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-blue);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.category-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 0;
}

.category-card .btn-text {
    margin-top: auto;
    padding-top: 20px;
}

/* Founder's Message Section Redesign */
/* Founder's Message Section Redesign */
.founder-section {
    padding: 80px 0;
    background: linear-gradient(rgba(2, 17, 41, 0.92), rgba(2, 17, 41, 0.92)), url('../images/pharmaceutical_manufacturing_hero.png') center/cover no-repeat fixed;
    position: relative;
    color: var(--white);
}

.founder-section .section-title {
    color: var(--white);
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.founder-image-col .image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.founder-image-col img {
    width: 100%;
    display: block;
}

.founder-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.founder-quote {
    border-left: 5px solid var(--gold);
    /* Changed to gold for contrast */
    padding-left: 25px;
    margin-bottom: 30px;
}

.founder-quote p {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.6;
}

.founder-body p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.founder-details-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 50px;
}

.founder-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
    text-transform: capitalize;
}

.founder-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.btn-founder {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    /* Boxy button */
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
}

.btn-founder:hover {
    background-color: var(--secondary-blue);
    color: #fff;
    transform: translateY(-2px);
}

.founder-signature {
    text-align: right;
}

.signature-text {
    font-family: 'Brush Script MT', ' cursive', sans-serif;
    font-size: 3rem;
    color: var(--secondary-blue);
    transform: rotate(-5deg);
    margin-bottom: 0px;
    opacity: 0.8;
}


@media (max-width: 992px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .founder-headline {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 60px 0;
    }

    .founder-details-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .founder-signature {
        align-self: flex-start;
    }
}

/* Vision & Mission Premium UI */
.vision-mission-home {
    padding: 100px 0;
    background: radial-gradient(circle at center, #051636 0%, #020b1c 100%) !important;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Vision & Mission Redesign (Clean & Modern) */
.vision-mission-clean {
    padding: 80px 0;
    background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 100%);
}

.vm-clean-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.vm-clean-row:last-child {
    margin-bottom: 0;
}

/* Reverse layout for Vision */
.vm-clean-row.reverse {
    flex-direction: row-reverse;
}

/* Content Column */
.vm-text-col {
    flex: 1;
}

.vm-text-col h3 {
    font-size: 2.5rem;
    color: var(--secondary-blue);
    margin-bottom: 25px;
    font-weight: 800;
}

.vm-text-col p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Images Column */
.vm-images-col {
    flex: 1;
    position: relative;
    padding-bottom: 40px;
    /* Space for the floating image */
    max-width: 480px;
    /* Constrain width to balance with text */
    margin: 0 auto;
    /* Center if it wraps or in mobile */
}

/* Main Image (Back) */
.vm-img-main {
    width: 90%;
    border-radius: 30px 0 30px 30px;
    /* Custom rounded corners */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vm-img-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.vm-images-col:hover .vm-img-main img {
    transform: scale(1.05);
}

/* Floating Image (Front) */
.vm-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    /* Default: Overlay on bottom right */
    width: 50%;
    border: 8px solid #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Specific layout for Vision Section (Reverse Row) 
   Matches the uploaded reference: Float on Left, Main on Right (visually)
*/
.vm-clean-row.reverse .vm-img-main {
    margin-left: auto;
    /* Push main image to right */
    border-radius: 30px 30px 30px 0;
    /* Rounded top-left/right/bottom-left? No, match reference: Top-Left rounded, Bottom-Right square? Let's keep it simple or invert. */
    /* Let's invert the border radius for variety */
    border-radius: 30px 30px 0 30px;
}

.vm-clean-row.reverse .vm-img-float {
    right: auto;
    left: 0;
    /* Float on bottom left */
}

.vm-img-float img {
    width: 100%;
    display: block;
}

/* List Styles */
.vm-list-clean {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vm-list-clean li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #444;
    font-size: 1rem;
    font-weight: 500;
}

.vm-list-clean li i {
    color: var(--primary-blue);
    /* Brand color */
    font-size: 1.1rem;
    margin-top: 3px;
}

/* Responsive */
@media (max-width: 992px) {

    .vm-clean-row,
    .vm-clean-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .vm-images-col {
        width: 100%;
        padding-bottom: 20px;
    }

    .vm-img-main {
        width: 100%;
    }

    .vm-img-float {
        width: 45%;
        bottom: -20px;
        right: 10px;
    }

    .vision-mission-clean {
        padding: 40px 0;
    }
}



.vm-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.vm-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Subtle border initially */
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.btn-premium-outline:hover {
    background: var(--white);
    color: #020b1c;
    border-color: var(--white);
    transform: translateX(5px);
}

.btn-premium-outline i {
    font-size: 14px;
}

.mission-list-premium {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mission-list-premium li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
}

.mission-list-premium li i {
    color: var(--gold);
    font-size: 1.2rem;
    /* Slightly larger checkmarks */
    margin-top: 3px;
}

@media (max-width: 992px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .vm-card-glass {
        padding: 40px;
    }

    .vm-text h3 {
        font-size: 1.8rem;
    }
}

/* People & Partnerships Redesign */
.people-partnerships-section {
    position: relative;
    padding: 120px 0;
    background-color: #fcfdfe;
    overflow: hidden;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.premium-info-card {
    background: var(--white);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 78, 146, 0.05);
    border: 1px solid rgba(0, 78, 146, 0.03);
    position: relative;
    z-index: 1;
}

.card-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--light-blue);
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
}

.premium-info-card .section-title {
    font-size: 2.222rem;
    margin-bottom: 30px;
    color: var(--secondary-blue);
    line-height: 1.1;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.card-body-text .lead-text {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Why Choose Us Redesign (Collage + Dark Card) */
.wcu-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fbff 0%, var(--light-blue) 100%);
}

.wcu-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

/* Image Collage (Left) */
.wcu-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 15px;
}

.wcu-img-1 {
    grid-row: 1 / span 2;
    grid-column: 1;
    overflow: hidden;
    border-radius: 20px;
}

.wcu-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcu-img-2 {
    grid-column: 2;
    grid-row: 1;
    overflow: hidden;
    border-radius: 20px;
}

.wcu-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wcu-img-3 {
    grid-column: 2;
    grid-row: 2;
    overflow: hidden;
    border-radius: 100px 100px 20px 20px;
    /* Arch shape */
    background: #e1f5fe;
    /* Fallback or bg color if image is transparent */
}

.wcu-img-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Card (Right) */
.wcu-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Remove gap for seamless quadrant look */
    border-radius: 30px;
    overflow: hidden;
    /* Ensure corners are clipped */
}

/* Feature Item Styling - simulating the quadrant look */
.wcu-feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    /* Add internal padding */
    transition: background 0.3s ease;
}

/* Specific Colors for Quadrants - slightly differentiating dark tones */
/* Top Left */
.wcu-feature-item:nth-child(1) {
    background: #021129;
    /* Darkest Navy (Nav Start) */
    /* Base Dark Blue */
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Top Right */
.wcu-feature-item:nth-child(2) {
    background: #07386e;
    /* Lighter Navy (Nav End) */
    /* Slightly darker/different shade */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Bottom Left */
.wcu-feature-item:nth-child(3) {
    background: #07386e;
    /* Lighter Navy */
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* Bottom Right */
.wcu-feature-item:nth-child(4) {
    background: #021129;
    /* Darkest Navy */
}

/* Update Container to remove its own bg/padding since items have it now */
.wcu-card {
    background: transparent;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}



.wcu-icon-box {
    width: 50px;
    height: 50px;
    background: #a3d9ff;
    /* Light accent */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #020b1c;
    font-size: 1.2rem;
}

.wcu-feature-item h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.wcu-feature-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .wcu-grid {
        grid-template-columns: 1fr;
    }

    .wcu-collage {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .wcu-features-grid {
        grid-template-columns: 1fr;
    }

    .wcu-feature-item h4 {
        font-weight: 800;
        font-size: 1.35rem;
    }

    .wcu-feature-item p {
        font-weight: 500;
        color: rgba(255, 255, 255, 0.95);
        font-size: 1.05rem;
    }

    .wcu-section .section-title {
        font-weight: 800;
    }

    .wcu-card {
        padding: 0;
    }
}

.card-body-text p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.expertise-item {
    background: #f8fbff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 78, 146, 0.02);
}

.expertise-item:hover {
    background: var(--white);
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 78, 146, 0.08);
    border-color: var(--primary-blue);
}

.exp-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.expertise-item:hover .exp-icon {
    background: var(--primary-blue);
    color: var(--white);
}

.expertise-item span {
    font-weight: 700;
    color: var(--secondary-blue);
    font-size: 15px;
}

@media (max-width: 992px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .premium-info-card {
        padding: 40px;
    }

    .card-tag {
        font-size: 11px;
    }

    .premium-info-card .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .founder-card {
        padding: 40px;
        border-radius: 30px;
    }

    .founder-card-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .founder-image-col {
        max-width: 400px;
        margin: 0 auto;
    }

    .card-nav {
        display: none;
    }

    .hdr-small,
    .hdr-main {
        font-size: 1.8rem;
    }

    .founder-message-body p {
        text-align: justify;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay classes if needed or used via inline styles */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    outline: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary-blue);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        /* Above the sticky contact bar on mobile */
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Scrolling Ticker Bar */
.scrolling-ticker {
    background: #eef2f6;
    padding: 18px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    position: relative;
    z-index: 10;
}

.ticker-content {
    display: inline-flex;
    align-items: center;
    animation: scroll 35s linear infinite;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    color: #021129;
    font-weight: 600;
    font-size: 16px;
    padding: 0 10px;
    font-family: var(--font-heading);
}

.ticker-separator {
    color: #f1c40f;
    font-size: 8px;
    padding: 0 30px;
    display: flex;
    align-items: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .scrolling-ticker {
        padding: 12px 0;
    }

    .ticker-item {
        font-size: 14px;
    }
}

/* People & Partnerships Premium Redesign */
.pp-section {
    padding: 100px 0;
    background: #F8FBFF;
}

.pp-content-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    /* Text narrower than cards */
    gap: 60px;
    align-items: start;
}

.pp-text-col {
    padding-left: 20px;
    border-left: 5px solid var(--gold);
    /* Explicit Gold Border */
}

.pp-text-inner .section-title {
    color: #020b1c;
    margin-bottom: 25px;
    font-size: 2.4rem;
    line-height: 1.2;
}

.pp-desc {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pp-cards-col {
    background: transparent;
}

.section-subtitle {
    font-size: 1.8rem;
    color: #020b1c;
    font-family: var(--font-heading);
    margin-bottom: 30px;
    font-weight: 700;
}

.thera-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for cards */
    gap: 20px;
}

.thera-card-premium {
    background: var(--white);
    border-radius: 15px;
    /* Slightly smaller radius */
    padding: 15px 15px;
    /* Reduced padding */
    display: flex;
    align-items: center;
    gap: 12px;
    /* Reduced gap */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #000;
}

/* Golden Corner Accent */
/* Golden Corner Accent */
.thera-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    /* Smaller width */
    height: 40px;
    /* Smaller height */
    background: linear-gradient(45deg, transparent 50%, var(--gold) 50%);
    opacity: 0.4;
    border-bottom-left-radius: 30px;
}

.thera-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 78, 146, 0.1);
}

.thera-icon-box {
    width: 50px;
    /* Reduced size */
    height: 50px;
    /* Reduced size */
    background: #f4f8fc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thera-icon-box i {
    font-size: 24px;
    color: #b8860b;
    /* Bronze Gold Icon */
}

.thera-card-premium span {
    font-weight: 700;
    color: #020b1c;
    font-size: 0.9rem;
    /* Slightly smaller text */
    line-height: 1.3;
    padding-right: 15px;
}

@media (max-width: 992px) {
    .pp-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pp-text-col {
        border-left: 5px solid var(--gold);
        padding-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .thera-card-grid {
        grid-template-columns: 1fr;
        /* Stack cards on mobile */
    }
}

/* Footer Premium Redesign */
.footer {
    background: #021129 !important;
    color: var(--white);
}

.footer-col h3 {
    color: var(--white);
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-item i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.6);
}

/* Reduce Gap for About Page Approach Section */
.about-overview {
    padding-bottom: 30px !important;
}

.approach-section {
    padding-top: 30px !important;
}

/* Reduce Gap for About Page Strengths and Future Sections */
.strengths-section {
    padding-bottom: 30px !important;
}

.future-section {
    padding-top: 30px !important;
}

/* =========================================
   Geniadex Product Variant Styles
   ========================================= */
.variant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.variant-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.variant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.variant-img {
    height: 350px;
    /* Big Size Image */
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.variant-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.variant-card:hover .variant-img img {
    transform: scale(1.05);
}

.variant-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* Centered content for cleaner look */
}

.variant-title {
    font-size: 1.5rem;
    /* Larger Title */
    font-weight: 800;
    color: var(--secondary-blue);
    margin-bottom: 5px;
}

.variant-sub {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.variant-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Limit to 3 lines approx */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Hidden detailed features for cleaner view */
.variant-features {
    display: none;
}

/* =========================================
   PENADOX SP & Unified Product Styles
   ========================================= */

/* Formula Card (PENADOX SP Composition) */
.formula-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 78, 146, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.formula-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 78, 146, 0.12);
    border-color: var(--primary-blue);
}

.dosage-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 78, 146, 0.2);
}

.ingredient-title {
    font-size: 1.5rem;
    color: var(--secondary-blue);
    margin-bottom: 15px;
    font-weight: 800;
}

.scientific-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-blue);
    font-weight: 700;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.composition-bg {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
}

.composition-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#004e92 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.03;
    pointer-events: none;
}

/* Center Content Utility (for single column overviews) */
.content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* White Box Card (for Mechanisms, etc.) */
.white-box-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Blur Badge (Hero Section) */
.hero-blur-badge {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.hero-blur-badge p {
    margin: 0;
    color: #004e92;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Detailed Dosage Section (Medical Guidance) */
.dosage-section-detailed {
    border-left: 10px solid #3a7bd5;
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-radius: 0 20px 20px 0;
}

.dosage-section-detailed .dosage-icon {
    color: #3a7bd5;
    border-color: #3a7bd5;
    background: #f0f7ff;
}

.dosage-section-detailed h3 {
    color: #3a7bd5;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.dosage-section-detailed p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.dosage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: left;
    margin-top: 25px;
}

.dosage-box-info {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 78, 146, 0.1);
}

.dosage-box-alert {
    background: #fff5f5;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(211, 47, 47, 0.1);
}

/* Text Colors */
.text-accent-blue {
    color: var(--accent-blue);
}

.bg-accent-blue {
    background: var(--accent-blue);
}

.text-gold {
    color: #d4ac0d;
}

.bg-gold {
    background: #f1c40f;
}

.text-red {
    color: #d32f2f;
}