/* ============================================
   Mcronus Lifescience - Modern One-Page Design
   Custom Theme Colors with Green Odd Sections
   ============================================ */

/* CSS Variables for Theme */
:root {
    /* Color Palette - New Theme Colors */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #DEF8FD;
    --color-bg-tertiary: #f1f5f9;

    /* New Theme Colors */
    --color-primary: #C6EDE6;
    --color-primary-light: #C6EDE6;
    --color-secondary: #4ABB6F;
    --color-accent: #DEF8FD;

    /* Green for Odd Sections */
    --color-green-bg: rgba(74, 187, 111, 0.15);
    --color-green-light: rgba(74, 187, 111, 0.25);

    /* Glassmorphism for Light Theme */
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(76, 182, 221, 0.25);
    --glass-shadow: rgba(76, 182, 221, 0.15);

    /* Gradients with New Colors */
    --gradient-primary: #4ABB6F;
    --gradient-secondary: linear-gradient(135deg, #DEF8FD 0%, rgba(222, 248, 253, 0.5) 100%);
    --gradient-green: linear-gradient(135deg, rgba(74, 187, 111, 0.2) 0%, rgba(222, 248, 253, 0.3) 100%);
    --gradient-bg-light: linear-gradient(135deg, rgba(76, 182, 221, 0.1) 0%, rgba(74, 187, 111, 0.08) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;

    /* Effects */
    --blur-sm: blur(10px);
    --blur-md: blur(20px);
    --blur-lg: blur(40px);
    --shadow-glow: 0 4px 20px rgba(76, 182, 221, 0.2);
    --shadow-glow-strong: 0 8px 30px rgba(76, 182, 221, 0.3);
    --shadow-glow-green: 0 4px 20px rgba(74, 187, 111, 0.25);

    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg-secondary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Subtle Grain Texture Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

/* Modern Navbar with Glass Morphism */
.navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-main.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a5f;
    background: rgba(76, 182, 221, 0.12);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* Dropdown Styles */
.dropdown-container {
    position: relative;
}

.dropdown-container:hover .dropdown-menu,
.dropdown-container.js-dropdown-active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-container:hover .dropdown-arrow,
.dropdown-container.js-dropdown-active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 320px; /* Increased for longer names */
    padding: 1.25rem 0;
    list-style: none;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(76, 182, 221, 0.1);
    opacity: 0;
    visibility: hidden;
    display: block !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 9999;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dropdown-item {
    display: block;
    padding: 0.85rem 2.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    white-space: nowrap; /* Prevent wrapping on desktop */
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(76, 182, 221, 0.08) 0%, rgba(74, 187, 111, 0.05) 100%);
    color: #1e3a5f;
    padding-left: 2.75rem;
    border-left-color: var(--color-secondary);
    transform: translateX(3px);
}

/* Mobile Dropdown Adjustments */
/* Consolidated into the main mobile media query below */

@media (max-width: 992px) {
    .navbar-main {
        padding: 0.75rem 0;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 35px;
        height: 35px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .navbar-nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 1rem 0;
        border-bottom: 3px solid var(--color-primary);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: calc(100vh - 80px); /* Keep it within screen height */
        overflow-y: auto; /* Enable scrolling for long menus */
        align-items: stretch; /* Ensure links take full width for centering */
    }

    .navbar-nav-list.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        width: 100%;
        border-radius: 0;
        font-size: 1.1rem;
        color: #1e3a5f;
        text-align: center;
        border-bottom: 1px solid #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: transparent;
    }

    .nav-link:hover,
    .nav-link.active,
    .js-dropdown-active > .nav-link {
        background: #f8fbff;
        color: var(--color-secondary) !important;
    }

    .nav-link::after {
        display: none !important;
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .js-dropdown-active .dropdown-arrow {
        transform: rotate(180deg);
        color: var(--color-secondary);
    }

    .dropdown-container {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100% !important;
        display: none !important;
        padding: 0;
        background: #fdfdfd;
        margin: 0;
        box-shadow: inset 0 2px 10px rgba(0,0,0,0.03);
        border: none;
        white-space: normal !important;
        transform: none !important;
        min-width: 0 !important;
    }

    .dropdown-container.js-dropdown-active .dropdown-menu {
        display: block !important;
    }

    .dropdown-item {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        color: #1e3a5f;
        display: block !important;
        text-align: center;
        background: transparent !important;
        white-space: normal !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        border-bottom: 1px solid rgba(0,0,0,0.03);
        width: 100%;
        line-height: 1.4;
    }

    .dropdown-item:hover {
        color: var(--color-secondary);
        background: rgba(74, 187, 111, 0.05) !important;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 998;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #1e3a5f;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ================================================
   MODERN HERO CAROUSEL
   ================================================ */

/* Main Container */
.modern-hero-section {
    position: relative;
    width: 100%;
    min-height: 750px;
    overflow: hidden;
}

.modern-hero-carousel {
    /* position: relative; */
    width: 100%;
    height: 750px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .modern-hero-section, 
    .modern-hero-carousel {
        height: 600px;
        min-height: 600px;
    }
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Background Image with Ken Burns Effect and Blur */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-out, filter 1.2s ease;
    filter: blur(3px);
}

.hero-slide.active .slide-background {
    transform: scale(1.08);
    filter: blur(2px);
}

/* Overlay - Medical Theme with Soft Gradient */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(30, 58, 95, 0.75) 0%,
            rgba(76, 182, 221, 0.65) 50%,
            rgba(74, 187, 111, 0.70) 100%);
    z-index: 1;
}

/* Content Container */
.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0 2rem;
}

.content-wrapper {
    max-width: 1000px;
    text-align: center;
}

/* Animated Content Elements */
.slide-subtitle {
    display: block;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800; /* Made Bold */
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.slide-title-large {
    font-size: clamp(3rem, 7vw, 5.5rem);
}

.slide-description {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    color: #1e293b;
    font-weight: 700; /* Made Bold */
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.7s, transform 0.8s ease 0.7s;
}

/* Animate content when slide is active */
.hero-slide.active .slide-subtitle,
.hero-slide.active .slide-title,
.hero-slide.active .slide-description,
.hero-slide.active .hero-cta-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.9s, transform 0.8s ease 0.9s;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-primary);
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: #4ABB6F;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(76, 182, 221, 0.4);
    border: none;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(76, 182, 221, 0.5);
}

.btn-hero-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.carousel-nav:hover {
    background: rgba(76, 182, 221, 0.3);
    border-color: rgba(76, 182, 221, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(76, 182, 221, 0.3);
}

.carousel-nav:hover svg {
    transform: scale(1.2);
}

.carousel-nav-prev {
    left: 40px;
}

.carousel-nav-next {
    right: 40px;
}

/* Modern Indicator Dots */
.carousel-indicators-modern {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
    outline: none;
}

.indicator-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.indicator-dot:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.6);
}

.indicator-dot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(76, 182, 221, 0.6);
    transform: scale(1.3);
}

.indicator-dot.active::before {
    width: 100%;
    height: 100%;
}

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

    .modern-hero-section,
    .modern-hero-carousel {
        min-height: 600px;
        height: 600px;
    }

    .slide-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .carousel-nav {
        width: 50px;
        height: 50px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .carousel-nav-prev {
        left: 25px;
    }

    .carousel-nav-next {
        right: 25px;
    }

    .carousel-indicators-modern {
        bottom: 30px;
    }

    .hero-cta-buttons {
        gap: 1rem;
        margin-top: 2rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {

    .modern-hero-section,
    .modern-hero-carousel {
        min-height: 550px;
        height: 550px;
    }

    .slide-content {
        padding: 0 1.5rem;
    }

    .slide-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .slide-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .slide-description {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
        line-height: 1.6;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
    }

    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }

    .carousel-nav-prev {
        left: 15px;
    }

    .carousel-nav-next {
        right: 15px;
    }

    .carousel-indicators-modern {
        bottom: 20px;
        gap: 10px;
    }

    .indicator-dot {
        width: 10px;
        height: 10px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.875rem;
        margin-top: 1.75rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 13px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {

    .modern-hero-section,
    .modern-hero-carousel {
        min-height: 500px;
        height: 500px;
    }

    .slide-content {
        padding: 0 1rem;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-nav svg {
        width: 16px;
        height: 16px;
    }

    .carousel-nav-prev {
        left: 10px;
    }

    .carousel-nav-next {
        right: 10px;
    }

    .carousel-indicators-modern {
        bottom: 15px;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    .hero-slide,
    .slide-background,
    .slide-subtitle,
    .slide-title,
    .slide-description,
    .carousel-nav,
    .indicator-dot {
        transition-duration: 0.01ms !important;
    }

    .hero-slide.active .slide-background {
        transform: scale(1);
    }
}

.grain-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 100px 0 0;
    width: 100%;
    max-width: 100%;
}

.hero-container .container {
    max-width: 100%;
    padding: 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo-container {
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.logo-glass {
    display: inline-block;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.hero-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(76, 182, 221, 0.3));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {

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

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

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(76, 182, 221, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 5s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.03);
    }
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

/* Buttons */
.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    outline: none;
}

.btn-hero:focus,
.btn-hero:active {
    outline: none;
}

.btn-primary-glow {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

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

.btn-secondary-glow:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s ease, height 0.6s ease;
}

.ripple-btn:active .btn-glow {
    width: 300px;
    height: 300px;
}

/* Scroll indicators removed */

/* Glass Card Component */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px var(--glass-shadow);
}

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

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

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 182, 221, 0.4);
    box-shadow: var(--shadow-glow);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 182, 221, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.glass-card:hover .card-glow {
    opacity: 1;
}

.card-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

.glass-card:hover .card-reflection {
    opacity: 1;
}

/* Center only the form */
#contactus .row {
    justify-content: center;
}

#contactus .col-lg-7 {
    margin: 0 auto;
}

/* Hide left info section */
#contactus .col-lg-5 {
    display: none;
}

/* Section Styles */
section {
    position: relative;
    padding: var(--spacing-sm) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: #1e3a5f;
}

.title-accent {
    color: #1e3a5f;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: #C7EEE7;
    margin: var(--spacing-sm) auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Shared Background for Products and Contact Sections */
.section-with-bg {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1584308666744-24d5c474f2ae?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

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

/* Products Section */
.section-products {
    background: var(--color-primary);
    padding: var(--spacing-xl) 0;
}

.section-products .section-overlay {
    background: rgba(198, 237, 230, 0.7);
}

.products-content {
    max-width: 900px;
    margin: 0 auto;
}

.products-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    text-align: center;
    margin: 0;
}

.products-main-image {
    padding-left: 1rem;
}

.products-main-image img {
    width: 600px;
    height: 210px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ================================================
   MODERN MEDICINE PRODUCTS CAROUSEL
   ================================================ */

/* Section Container */
.modern-medicine-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.modern-medicine-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 182, 221, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.modern-medicine-section .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Carousel Container */
.modern-medicine-carousel {
    position: relative;
    margin-top: 3rem;
    padding: 0 60px;
}

/* Slides */
.medicine-slide {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.medicine-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Product Grid */
.medicine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 1rem 0;
}

.centered-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

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

@media (max-width: 576px) {
    .centered-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Product Cards */
.medicine-product-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.medicine-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.medicine-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 35px rgba(76, 182, 221, 0.25);
}

.medicine-product-card:hover::before {
    opacity: 1;
}

/* Product Image Wrapper */
.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; /* Reduced width to Create whitespace */
    height: 80%; /* Reduced height to Create whitespace */
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.medicine-product-card:hover .product-image {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(76, 182, 221, 0.95) 0%, rgba(74, 187, 111, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.medicine-product-card:hover .product-overlay {
    height: 100%;
}

.view-details {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.medicine-product-card:hover .view-details {
    opacity: 1;
    transform: translateY(0);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #3da1c7 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(76, 182, 221, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

.product-badge.badge-green {
    background: linear-gradient(135deg, #4ABB6F 0%, #3da858 100%);
    box-shadow: 0 4px 12px rgba(74, 187, 111, 0.4);
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Navigation Buttons */
.medicine-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(76, 182, 221, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    outline: none;
}

.medicine-nav svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.medicine-nav:hover {
    background: #4ABB6F;
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(76, 182, 221, 0.35);
}

.medicine-nav:hover svg {
    color: #ffffff;
    transform: scale(1.2);
}

.medicine-nav-prev {
    left: 0;
}

.medicine-nav-next {
    right: 0;
}

/* Slide Indicators */
.medicine-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 3rem;
}

.medicine-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(76, 182, 221, 0.3);
    border: 2px solid rgba(76, 182, 221, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    outline: none;
    position: relative;
}

.medicine-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.medicine-dot:hover {
    background: rgba(76, 182, 221, 0.5);
    transform: scale(1.3);
}

.medicine-dot.active {
    background: #4ABB6F;
    border-color: var(--color-primary);
    transform: scale(1.4);
    box-shadow: 0 0 15px rgba(76, 182, 221, 0.5);
}

.medicine-dot.active::after {
    transform: translate(-50%, -50%) scale(1);
}

/* CTA Section */
.medicine-cta-section {
    text-align: center;
    margin-top: 3.5rem;
}

.btn-modern-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.2rem 3rem;
    background: #4ABB6F;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(76, 182, 221, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-modern-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-modern-cta:hover::before {
    width: 400px;
    height: 400px;
}

.btn-modern-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-modern-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(76, 182, 221, 0.45);
    color: #ffffff;
}

.btn-modern-cta:hover svg {
    transform: translateX(5px);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .modern-medicine-carousel {
        padding: 0 50px;
    }

    .medicine-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .medicine-nav {
        width: 45px;
        height: 45px;
    }

    .medicine-nav svg {
        width: 18px;
        height: 18px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .modern-medicine-section::before {
        width: 400px;
        height: 400px;
        top: -30%;
        right: -30%;
    }

    .modern-medicine-carousel {
        padding: 0 40px;
    }

    .medicine-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .medicine-nav {
        width: 40px;
        height: 40px;
    }

    .medicine-nav svg {
        width: 16px;
        height: 16px;
    }

    .medicine-nav-prev {
        left: -5px;
    }

    .medicine-nav-next {
        right: -5px;
    }

    .medicine-indicators {
        margin-top: 2rem;
        gap: 10px;
    }

    .medicine-dot {
        width: 10px;
        height: 10px;
    }

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

    .btn-modern-cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .product-badge {
        top: 10px;
        right: 10px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }
}

/* Responsive - Extra Small */
@media (max-width: 576px) {
    .modern-medicine-carousel {
        padding: 0 30px;
    }

    .medicine-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .medicine-nav {
        width: 35px;
        height: 35px;
    }

    .medicine-nav svg {
        width: 14px;
        height: 14px;
    }

    .btn-modern-cta {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

/* Animation for cards appearing */
.medicine-slide.active .medicine-product-card {
    animation: cardFadeIn 0.6s ease forwards;
}

.medicine-slide.active .medicine-product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.medicine-slide.active .medicine-product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.medicine-slide.active .medicine-product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.medicine-slide.active .medicine-product-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem;
}

.product-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.75rem;
    color: var(--color-primary);
    filter: drop-shadow(0 2px 8px rgba(76, 182, 221, 0.2));
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-card:hover .product-icon {
    color: var(--color-secondary);
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e3a5f;
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.95rem;
    padding: 0 1.5rem;
}

/* .product-hover-effect removed */


/* About Section */
.section-about {
    background: var(--color-bg-primary);
    padding: 3.5rem 0;
    position: relative;
}

.section-about .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* About Text Content (Left Column) */
.about-text-content {
    padding-right: 2rem;
}

.about-intro-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.about-intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 0;
    font-weight: 400;
    text-align: justify;
}

/* About Image (Right Column) */
.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(76, 182, 221, 0.2);
    transition: all 0.4s ease;
}

.about-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(76, 182, 221, 0.3);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .about-text-content {
        padding-right: 1rem;
        margin-bottom: 2rem;
    }

    .about-intro-title {
        font-size: 1.6rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .about-text-content {
        padding-right: 0;
        margin-bottom: 2.5rem;
    }

    .about-intro-title {
        font-size: 1.4rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-image-wrapper {
        margin-top: 1rem;
    }
}

/* Vision & Mission Cards */
.vision-mission-row {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.vision-mission-card {
    height: 100%;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    min-height: 280px;
    justify-content: center;
}

.vision-card {
    background: linear-gradient(135deg, rgba(76, 182, 221, 0.15) 0%, rgba(76, 182, 221, 0.08) 100%);
}

.mission-card {
    background: linear-gradient(135deg, rgba(74, 187, 111, 0.15) 0%, rgba(222, 248, 253, 0.1) 100%);
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow-strong);
}

.vm-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
    filter: drop-shadow(0 2px 8px rgba(76, 182, 221, 0.2));
    transition: all 0.3s ease;
}

.vision-mission-card:hover .vm-icon {
    transform: scale(1.15);
    color: var(--color-secondary);
}

.vm-icon svg {
    width: 100%;
    height: 100%;
}

.vm-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1e3a5f;
    line-height: 1.3;
}

.vm-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    flex-grow: 1;
    margin: 0;
}

/* Gallery Section */
.section-gallery {
    background: var(--color-green-bg);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-green);
    opacity: 0.4;
    z-index: 0;
}

.section-gallery .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 1;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Section scroll indicators removed */

/* Contact Section */
.section-contact {
  
    padding: var(--spacing-xl) 0;
    margin-bottom: 0;
}

.section-contact .section-overlay {
    background: rgba(255, 255, 255, 0.85);
}

.contact-info-wrapper {
    padding: 2rem 0;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(76, 182, 221, 0.2);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(76, 182, 221, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.contact-info-text a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.contact-intro {
    text-align: left;
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(76, 182, 221, 0.2);
}

.contact-wrapper {
    height: 100%;
}

.contact-info {
    padding: var(--spacing-lg);
    height: 100%;
}

.contact-info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(76, 182, 221, 0.2), rgba(74, 187, 111, 0.2));
    border: 2px solid rgba(76, 182, 221, 0.3);
    border-radius: 14px;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(76, 182, 221, 0.3), rgba(74, 187, 111, 0.3));
    border-color: rgba(76, 182, 221, 0.5);
    transform: scale(1.05);
}

.contact-icon svg {
    width: 26px;
    height: 26px;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    color: var(--text-primary);
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(76, 182, 221, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form:hover,
.contact-info:hover {
    transform: none;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(76, 182, 221, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    background: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(76, 182, 221, 0.1);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    outline: none;
}

.btn-submit:hover,
.btn-submit:focus,
.btn-submit:active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
    outline: none;
}

/* Footer */
.footer-social-inline {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
    justify-content: flex-start;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    /* margin-top: 1rem; */
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact-row a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.footer-contact-row a:hover {
    color: var(--color-primary);
}

.footer-contact-icon svg,
.social-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    stroke: #ffffff;
}

.social-icon {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile fix */
@media (max-width: 768px) {
    .footer-content {
        text-align: left !important;
    }

    .footer-col {
        align-items: flex-start !important;
    }

    .footer-col-1,
    .footer-col-2,
    .footer-col-3 {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .footer-social-inline {
        justify-content: flex-start !important;
    }

    .footer-contact-row {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .footer-bottom {
        text-align: left !important;
    }
}

@media (max-width: 992px) {
    .footer-social-inline {
        justify-content: left !important;
    }

    .footer-contact-row {
        justify-content: left !important;
        text-align: left !important;
    }

    .footer-bottom {
        text-align: left !important;
    }
}

.main-footer {
    background: linear-gradient(135deg, #82c8e7 0%, #399dc1 100%);
    ;
    border-top: 2px solid rgba(76, 182, 221, 0.3);
    padding: 3.5rem 0 2rem;
    margin-top: 0;
    position: relative;
    z-index: 10;
    clear: both;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
    padding: 2.5rem 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-1 {
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-col-2 {
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-col-3 {
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-address {
    color: rgba(255, 255, 255, 0.85);
    line-height: 2;
    font-size: 0.95rem;
}

.footer-address p {
    margin-bottom: 0.75rem;
}

.footer-address strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-address a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-address a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.footer-contact-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    /* border-top: 1px solid rgba(255, 255, 255, 0.15); */
    line-height: 1.8;
}

.footer-address a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-address a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Footer Social Media */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;

    /* border-top: 1px solid rgba(255, 255, 255, 0.15); */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.15); */
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    outline: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(76, 182, 221, 0.4);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(76, 182, 221, 0.5));
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Removed scroll animations - keeping only hover effects */

/* Responsive Design */
@media (max-width: 992px) {
    .navbar-nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: var(--blur-md);
        flex-direction: column;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
        border-top: 1px solid var(--glass-border);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .navbar-nav-list.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-col-1,
    .footer-col-2,
    .footer-col-3 {
        align-items: center;
    }

    .footer-social {
        margin: 1.5rem 0;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 3 / 2;
    }

    .gallery-title {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 450px;
    }

    .hero-carousel {
        height: 450px;
    }

    .hero-carousel .carousel-inner {
        height: 450px;
    }


    .carousel-content {
        height: 450px;
        padding: 1rem;
    }

    .carousel-heading {
        font-size: 1.5rem;
    }

    .carousel-paragraph {
        font-size: 0.95rem;
    }

    .about-content {
        padding: 1.25rem;
    }

    .about-text {
        font-size: 1rem;
        text-align: justify;
    }

    .vision-mission-row {
        margin-top: 2rem;
    }

    .vision-mission-card {
        padding: 1.5rem;
        min-height: 220px;
        margin-bottom: 1rem;
    }

    .vm-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .vm-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .vm-text {
        font-size: 0.95rem;
    }

    .section-medicine-carousel {
        padding: 2rem 0;
    }

    .contact-info-wrapper {
        padding: 1rem 0 2rem;
    }

    .contact-info-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        text-align: center;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-intro {
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .navbar-content {
        padding: 0 var(--spacing-sm);
    }

    .hero-logo {
        max-width: 200px;
    }

    .product-card {
        min-height: 300px;
        padding: var(--spacing-md);
    }

    .contact-item {
        flex-direction: column;
        gap: var(--spacing-xs);
    }

    .medicine-carousel-wrapper {
        padding: 1rem 0.5rem 3rem;
        border-radius: 10px;
    }

    .medicine-images-row {
        gap: 0.5rem;
        padding: 0.75rem 0;
        min-height: 120px;
    }

    .medicine-image-item {
        width: 120px;
        height: 100px;
    }

    .medicine-carousel-control {
        width: 35px;
        height: 35px;
        bottom: 8px;
    }

    .medicine-arrow {
        font-size: 1.5rem;
    }

    .medicine-carousel-control-prev {
        left: 5px;
    }

    .medicine-carousel-control-next {
        right: 5px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: none;
}

button:focus,
a:focus {
    outline: none;
    box-shadow: none;
}

button,
a,
input,
textarea {
    outline: none;
}

button:active,
button:focus,
a:active,
a:focus {
    outline: none !important;
}

/* Distribution Network Section */
.section-distribution-network {
    background: var(--color-bg-secondary);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-distribution-network .section-title {
    margin-bottom: 20px;
}

.distribution-network-content {
    text-align: center;
    font-size: 18px;
    color: #333;
}

/* ============================================
   ABOUT PAGE STYLES
   Following Design Guidelines
   ============================================ */

/* About Hero Section */
.about-hero-section {
    padding: 140px 0 60px;
    background: #C6EDE6;
    position: relative;
    overflow: hidden;
}

.about-hero-section .section-overlay {
    background: rgba(198, 237, 230, 0.7);
}

.about-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1e3a5f;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Company Story Section */
.section-company-story {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-primary);
}

.story-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(76, 182, 221, 0.2);
}

.story-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.story-image-wrapper:hover .story-image {
    transform: scale(1.05);
}

.image-overlay-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-content {
    padding-left: 2rem;
}

.story-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    flex: 1;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vision & Mission Section */
.section-vision-mission {
    padding: var(--spacing-xl) 0;
    background: #C6EDE6;
}

.section-vision-mission .section-overlay {
    background: rgba(198, 237, 230, 0.7);
}

.large-vm-card {
    padding: 3rem;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.large-vm-card .vm-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.large-vm-card .vm-icon svg {
    width: 45px;
    height: 45px;
    stroke: #ffffff;
}

.large-vm-card .vm-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.large-vm-card .vm-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Core Values Section */
.section-values {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-primary);
}

.value-card {
    padding: 2.5rem 2rem;
    text-align: center;
    min-height: 320px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon svg {
    width: 35px;
    height: 35px;
    stroke: #ffffff;
    stroke-width: 2;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* What We Do Section */
.section-what-we-do {
    padding: var(--spacing-xl) 0;
    background: #C6EDE6;
}

.section-what-we-do .section-overlay {
    background: rgba(198, 237, 230, 0.7);
}

.what-we-do-content {
    padding-right: 2rem;
}

.content-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.content-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
    text-align: justify;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    padding: 0.5rem 0;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    stroke: var(--color-secondary);
    stroke-width: 3;
}

.what-we-do-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(76, 182, 221, 0.2);
    height: 100%;
    min-height: 400px;
}

.what-we-do-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.what-we-do-image-wrapper:hover .what-we-do-image {
    transform: scale(1.05);
}

/* Commitment Section */
.section-commitment {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-primary);
}

.commitment-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.commitment-card {
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    min-height: 250px;
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

/* Gallery Header with Breadcrumb */
.gallery-header-section {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #C6EDE6 0%, #DEF8FD 100%);
    position: relative;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    background: transparent;
}

.breadcrumb li {
    font-size: 1rem;
    color: var(--text-secondary);
}

.breadcrumb li + li:before {
    content: "/";
    padding: 0 0.75rem;
    color: var(--color-primary);
}

.breadcrumb a {
    color: #4ABB6F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.breadcrumb .active {
    color: #94a3b8;
    font-weight: 600;
}

/* Gallery Hero Carousel Section */
.gallery-hero-carousel-section {
    position: relative;
    background: #000;
}

.gallery-hero-carousel-section .carousel {
    height: 600px;
}

.gallery-hero-carousel-section .carousel-inner {
    height: 600px;
}

.gallery-hero-carousel-section .carousel-item {
    height: 600px;
}

.gallery-hero-carousel-section .carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(76, 182, 221, 0.7) 100%);
    z-index: 1;
}

.gallery-hero-carousel-section .carousel-content {
    position: relative;
    z-index: 2;
    padding-top: 180px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
}

.content-badge svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-accent);
}

.content-badge span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-hero-carousel-section .carousel-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gallery-hero-carousel-section .carousel-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Carousel Indicators */
.gallery-hero-carousel-section .carousel-indicators {
    bottom: 30px;
    z-index: 3;
}

.gallery-hero-carousel-section .carousel-indicators button {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.gallery-hero-carousel-section .carousel-indicators button.active {
    background: var(--color-primary);
    width: 60px;
}

/* Enhanced Filter Buttons with Icons */
.gallery-filters .filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
}

.gallery-filters .filter-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
    transition: stroke 0.3s ease;
}

.gallery-filters .filter-btn:hover svg,
.gallery-filters .filter-btn.active svg {
    stroke: #ffffff;
}

/* Responsive - Gallery */
@media (max-width: 992px) {
    .gallery-header-section {
        padding: 120px 0 50px;
    }

    .gallery-hero-carousel-section .carousel,
    .gallery-hero-carousel-section .carousel-inner,
    .gallery-hero-carousel-section .carousel-item {
        height: 500px;
    }

    .gallery-hero-carousel-section .carousel-content {
        padding-top: 140px;
    }
}

@media (max-width: 768px) {
    .gallery-header-section {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 2rem;
    }

    .breadcrumb li {
        font-size: 0.9rem;
    }

    .gallery-hero-carousel-section .carousel,
    .gallery-hero-carousel-section .carousel-inner,
    .gallery-hero-carousel-section .carousel-item {
        height: 450px;
    }

    .gallery-hero-carousel-section .carousel-content {
        padding-top: 120px;
    }

    .gallery-hero-carousel-section .carousel-heading {
        font-size: 2rem;
    }

    .gallery-hero-carousel-section .carousel-description {
        font-size: 1rem;
    }

    .content-badge {
        padding: 0.6rem 1.2rem;
    }

    .filter-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.85rem;
    }

    .filter-btn svg {
        width: 18px;
        height: 18px;
    }
}


.commitment-card:hover {
    transform: translateY(-8px);
}

.commitment-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.3;
    line-height: 1;
}

.commitment-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
    padding-right: 3rem;
}

.commitment-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* CTA Section */
.section-about-cta {
    padding: 100px 0;
    background: #C6EDE6;
}

.section-about-cta .section-overlay {
    background: rgba(198, 237, 230, 0.7);
}

.cta-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-submit {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    background: var(--gradient-primary);
    color: #ffffff;
    outline: none;
    box-shadow: 0 4px 15px rgba(76, 182, 221, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 182, 221, 0.4);
    outline: none;
}

.btn-secondary-outline {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(76, 182, 221, 0.4);
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    background: rgba(76, 182, 221, 0.15);
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary-outline:hover {
    background: var(--gradient-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 182, 221, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN - ABOUT PAGE
   ============================================ */

/* Tablet (≤992px) */
@media (max-width: 992px) {
    .about-hero-section {
        padding: 120px 0 80px;
    }

    .story-content {
        padding-left: 0;
        margin-top: 2rem;
    }

    .story-stats {
        flex-direction: row;
        justify-content: space-between;
    }

    .large-vm-card {
        min-height: 300px;
        padding: 2.5rem;
    }

    .value-card {
        min-height: 280px;
    }

    .what-we-do-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .commitment-card {
        min-height: 220px;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .story-heading,
    .content-heading {
        font-size: 1.6rem;
    }

    .story-text,
    .content-text {
        font-size: 1rem;
        text-align: left;
    }

    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .image-overlay-badge {
        bottom: 20px;
        right: 20px;
        padding: 1rem;
        min-width: 100px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .large-vm-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .large-vm-card .vm-title {
        font-size: 1.6rem;
    }

    .large-vm-card .vm-text {
        font-size: 1rem;
    }

    .value-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .value-title {
        font-size: 1.3rem;
    }

    .commitment-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .commitment-number {
        font-size: 2rem;
        top: 1rem;
        right: 1rem;
    }

    .commitment-title {
        font-size: 1.4rem;
        padding-right: 2.5rem;
    }

    .commitment-text {
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-submit,
    .btn-secondary-outline {
        width: 100%;
        padding: 0.875rem 2rem;
    }
}

/* ================================================
   MODERN ABOUT US SECTION V2
   User-Friendly Design with Equal Heights & Responsive
   ================================================ */

.section-about-modern-v2 {
    padding: 60px 0 40px;
    background: #C6EDE6;
    position: relative;
}



.section-about-values {
    background: #ffffff;
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-about-modern-v2 .section-header {
    margin-bottom: 2rem; /* Reduced space before the row */
}

/* Two-Column Layout */
.about-two-column {
    margin-bottom: 5rem;
}

/* Text Column - Equal Height */
.about-text-column {
    padding: 3rem;
    background: #ffffff;
    border: 1px solid rgba(76, 182, 221, 0.15);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligned at top */
}

.about-intro-content {
    padding-top: 0 !important;
    margin-top: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-intro-content h3:first-child,
.about-intro-content p:first-child {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.about-section-block:last-child {
    margin-bottom: 0;
}

/* Improved Typography for Section Titles */
.about-section-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 1.25rem;
}

/* Decorative vertical line for the main Introduction heading */
.about-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80%;
    background: var(--gradient-primary);
    border-radius: 4px;
}

/* Specific Style for Company History Heading */
.about-history-section .about-section-title {
    font-size: 1.5rem;
    color: #4ABB6F; /* Medical Green */
    font-weight: 700;
    padding-left: 0; /* Remove the vertical line for the secondary heading */
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.about-history-section .about-section-title::before {
    display: none; /* Hide the line for Company History */
}

/* Improved Typography for Paragraphs */
.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin: 0;
    letter-spacing: 0.2px;
}

/* Company History Stats Grid inside About Box */
.about-history-section {
    margin-top: 2.5rem;
    padding-top: 0;
}

.about-history-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.about-stat-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid rgba(76, 182, 221, 0.08);
    transition: all 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(76, 182, 221, 0.3);
    box-shadow: 0 8px 24px rgba(76, 182, 221, 0.12);
}

.about-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(76, 182, 221, 0.1) 0%, rgba(74, 187, 111, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-stat-icon i {
    font-size: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Compact 2x2 History Grid */
.about-history-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-card-compact {
    background: #ffffff;
    border: 1px solid #DEF8FD;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.stat-card-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(76, 182, 221, 0.1);
    border-color: #B2EBF2;
}

.stat-icon-mini {
    width: 36px;
    height: 36px;
    background: #EBF9F6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-mini svg {
    width: 18px;
    height: 18px;
    color: #4ABB6F;
    stroke-width: 2;
}

.stat-number-compact {
    font-size: 1.25rem;
    font-weight: 800;
    color: #4ABB6F;
    line-height: 1;
    margin: 0;
}

.stat-label-compact {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 2px 0 0 0;
}

@media (max-width: 576px) {
    .about-history-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

/* Image Column - Equal Height, Max 50% Width */
.about-image-column {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(76, 182, 221, 0.15);
    height: 100%;
}

.about-main-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 25% center;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}

.about-image-column:hover .about-main-image {
    transform: scale(1.05);
}

/* Vision & Mission Section */
.vision-mission-section {
    margin-top: 0;
}

/* Modern Vision & Mission Cards - Equal Width */
.vm-modern-card {
    background: #ffffff;
    border: 1px solid rgba(76, 182, 221, 0.15);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Hover Effect - Elevation */
.vm-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(76, 182, 221, 0.2);
    border-color: rgba(76, 182, 221, 0.3);
}

/* Hover Effect - Background Subtle Change */
.vm-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 182, 221, 0.03) 0%, rgba(74, 187, 111, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.vm-modern-card:hover::before {
    opacity: 1;
}

/* Prominent Centered Icon */
.vm-icon-container {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(76, 182, 221, 0.2);
}

.vm-icon-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.vm-modern-card:hover .vm-icon-container {
    transform: scale(1.15);
    box-shadow: 0 15px 35px rgba(76, 182, 221, 0.4);
}

.vm-modern-card:hover .vm-icon-container::before {
    opacity: 1;
}

.vm-svg-icon {
    width: 50px;
    height: 50px;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.vm-modern-card:hover .vm-svg-icon {
    transform: scale(1.1);
}

/* Card Title */
.vm-card-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.vm-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    border-radius: 10px;
    transition: all 0.4s ease;
}

/* Specific Gradient Pattern for Mission */
.col-md-6:first-child .vm-card-title {
    background: linear-gradient(to right, #1e3a5f 20%, #4ABB6F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.col-md-6:first-child .vm-card-title::after {
    background: #4ABB6F;
}

/* Specific Gradient Pattern for Vision */
.col-md-6:last-child .vm-card-title {
    background: linear-gradient(to right, #1e3a5f 20%, var(--color-primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.col-md-6:last-child .vm-card-title::after {
    background: var(--color-primary);
}

.vm-modern-card:hover .vm-card-title::after {
    width: 60px;
}

/* Card Description */
.vm-card-description {
    font-size: 1.075rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Tablet - Landscape */
@media (max-width: 991px) {
    .section-about-modern-v2 {
        padding: 80px 0;
    }

    .about-two-column {
        margin-bottom: 4rem;
    }

    .about-text-column {
        padding: 2rem;
    }

    .about-section-title {
        font-size: 1.6rem;
    }

    .about-paragraph {
        font-size: 1.05rem;
        line-height: 1.85;
    }

    .vm-icon-container {
        width: 90px;
        height: 90px;
    }

    .vm-svg-icon {
        width: 45px;
        height: 45px;
    }

    .vm-card-title {
        font-size: 1.6rem;
    }

    .vm-card-description {
        font-size: 1.05rem;
    }
}

/* Tablet - Portrait & Mobile */
@media (max-width: 767px) {
    .section-about-modern-v2 {
        padding: 60px 0;
    }

    .about-two-column {
        margin-bottom: 3rem;
    }

    /* Stack Content - Text Above Image */
    .about-text-column {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .about-section-block {
        margin-bottom: 2rem;
    }

    .about-section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .about-paragraph {
        font-size: 1rem;
        line-height: 1.8;
        text-align: center;
    }

    /* Image Column */
    .about-image-column {
        min-height: 350px;
    }

    /* Vision & Mission Cards - Stack Vertically with Spacing */
    .vision-mission-section {
        margin-top: 3rem;
    }

    .vm-modern-card {
        padding: 2.5rem 2rem;
        margin-bottom: 1.5rem;
    }

    .vm-icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: 1.75rem;
    }

    .vm-svg-icon {
        width: 42px;
        height: 42px;
    }

    .vm-card-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .vm-card-description {
        font-size: 1rem;
        line-height: 1.75;
    }
}

/* Mobile - Small Screens */
@media (max-width: 576px) {
    .section-about-modern-v2 {
        padding: 50px 0;
    }

    .about-text-column {
        padding: 1.75rem 1.25rem;
    }

    .about-section-block {
        margin-bottom: 1.75rem;
    }

    .about-section-title {
        font-size: 1.35rem;
    }

    .about-paragraph {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .about-image-column {
        min-height: 280px;
    }

    .vm-modern-card {
        padding: 2rem 1.5rem;
    }

    .vm-icon-container {
        width: 75px;
        height: 75px;
    }

    .vm-svg-icon {
        width: 38px;
        height: 38px;
    }

    .vm-card-title {
        font-size: 1.35rem;
    }

    .vm-card-description {
        font-size: 0.95rem;
    }
}

/* ============================================
   MODERN CONTACT US SECTION
   Healthcare/Pharmaceutical Theme
   ============================================ */

.section-contact {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    background: #ffffff;
}

/* Background pattern removed for clean white look */
.section-contact::before {
    display: none;
}

/* Background image removed */
.section-contact .section-bg-image {
    display: none;
}

/* Section overlay removed */
.section-contact .section-overlay {
    display: none;
}

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

/* Section Header */
.section-contact .section-header {
    margin-bottom: 60px;
}

.section-contact .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-contact .title-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-contact .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Contact Form Wrapper - Modern Medical Card */
.contact-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 50px rgba(76, 182, 221, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Subtle gradient overlay on wrapper */
.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0.8;
}

/* Animated background glow */
.contact-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(76, 182, 221, 0.03) 0%, 
        transparent 70%);
    animation: rotateGlow 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-wrapper:hover {
    box-shadow: 
        0 25px 70px rgba(76, 182, 221, 0.2),
        0 0 0 1px rgba(76, 182, 221, 0.2);
    transform: translateY(-5px);
}

/* Form Styling */
.contact-form {
    position: relative;
    z-index: 1;
}

/* Form Groups */
.form-group {
    margin-bottom: 28px;
    position: relative;
}

/* Form Labels */
.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

/* Form Inputs */
.form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(76, 182, 221, 0.2);
    border-radius: 14px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(76, 182, 221, 0.05);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Input Focus State */
.form-input:focus {
    border-color: var(--color-primary);
    background: #ffffff;
    box-shadow: 
        0 4px 16px rgba(76, 182, 221, 0.15),
        0 0 0 4px rgba(76, 182, 221, 0.08);
    transform: translateY(-2px);
}

.form-input:focus + .form-label,
.form-group:focus-within .form-label {
    color: var(--color-primary);
}

/* Textarea Specific */
.form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #ffffff;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(76, 182, 221, 0.3),
        0 4px 12px rgba(74, 187, 111, 0.2);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
}

.btn-submit span {
    position: relative;
    z-index: 2;
}

/* Button Glow Effect */
.btn-submit .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 1;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(76, 182, 221, 0.4),
        0 6px 16px rgba(74, 187, 111, 0.3);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit:active .btn-glow {
    width: 300px;
    height: 300px;
}

/* Ripple Effect on Button */
.ripple-btn {
    position: relative;
    overflow: hidden;
}

.ripple-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.ripple-btn:hover::before {
    width: 100%;
    height: 100%;
}

/* Input Validation States */
.form-input:invalid:not(:placeholder-shown) {
    border-color: rgba(239, 68, 68, 0.5);
}

.form-input:valid:not(:placeholder-shown) {
    border-color: rgba(74, 187, 111, 0.5);
}

/* Responsive Design - Tablet */
@media (max-width: 992px) {
    .section-contact {
        padding: 80px 0;
    }

    .contact-wrapper {
        padding: 40px 35px;
        border-radius: 25px;
    }

    .section-contact .section-header {
        margin-bottom: 50px;
    }

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

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .section-contact {
        padding: 60px 0;
    }

    .contact-wrapper {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .section-contact .section-header {
        margin-bottom: 40px;
    }

    .section-contact .section-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .form-input {
        padding: 14px 18px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .form-textarea {
        min-height: 130px;
    }

    .btn-submit {
        padding: 16px 35px;
        font-size: 1rem;
        letter-spacing: 1.2px;
    }

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

    .form-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .section-contact {
        padding: 50px 0;
    }

    .contact-wrapper {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .section-contact .section-header {
        margin-bottom: 35px;
    }

    .form-input {
        padding: 13px 16px;
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
}

/* Accessibility - Focus Visible */
.form-input:focus-visible,
.btn-submit:focus-visible {
    outline: 3px solid rgba(76, 182, 221, 0.4);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .contact-wrapper,
    .form-input,
    .btn-submit,
    .btn-glow,
    .ripple-btn::before {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }

    .contact-wrapper::after {
        animation: none;
    }
}

/* ============================================
   DISTRIBUTION NETWORK SECTION
   Modern Professional Design
   ============================================ */

.section-distribution-network {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: #C6EDE6;
    border-top: 1px solid rgba(76, 182, 221, 0.1);
    border-bottom: 1px solid rgba(76, 182, 221, 0.1);
}

/* Decorative Elements Removed for Minimal Look */
.section-distribution-network::before,
.section-distribution-network::after {
    display: none;
}

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

/* Section Header */
.section-distribution-network .section-header {
    margin-bottom: 60px;
}

.section-distribution-network .section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-weight: 400;
}

/* Content Wrapper - Professional White Card */
.distribution-content-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    border: 1px solid #f1f5f9;
}

/* Left Column - Text Content */
.distribution-text-content {
    padding-right: 20px;
}

.distribution-heading {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.distribution-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #1e3a5f;
    border-radius: 2px;
}

.distribution-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.25rem;
}

.text-highlight {
    color: #475569;
    font-weight: 700;
}

/* Feature Items with Icons */
.distribution-features {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid rgba(76, 182, 221, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(76, 182, 221, 0.05);
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: rgba(76, 182, 221, 0.3);
    box-shadow: 0 4px 16px rgba(76, 182, 221, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(76, 182, 221, 0.25);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    color: #ffffff;
}

.feature-text {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Right Column - Visual Content */
.distribution-visual-content {
    padding: 20px;
}

/* Map Container */
.distribution-map-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(76, 182, 221, 0.12);
    border: 1px solid rgba(76, 182, 221, 0.15);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.distribution-map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.map-overlay {
    position: relative;
}

.network-illustration {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(76, 182, 221, 0.15));
}

/* Animate network lines */
.network-illustration line {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

/* Statistics Cards */
.distribution-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(76, 182, 221, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(76, 182, 221, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(76, 182, 221, 0.2);
    border-color: rgba(76, 182, 221, 0.3);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: #4ABB6F;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.stat-icon svg {
    width: 26px;
    height: 26px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-icon svg {
    color: #ffffff;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

/* Call to Action */
.distribution-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-distribution-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #ffffff;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(76, 182, 221, 0.3);
}

.btn-distribution-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-distribution-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 182, 221, 0.4);
}

.btn-distribution-cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn-distribution-cta svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-distribution-cta:hover svg {
    transform: translateX(5px);
}

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


    .section-distribution-network .section-header {
        margin-bottom: 50px;
    }

    .distribution-text-content,
    .distribution-visual-content {
        padding: 15px;
    }

    .distribution-heading {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }

    .distribution-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .stat-card {
        padding: 1.25rem 0.75rem;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
    }

    .stat-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {


    .section-distribution-network .section-header {
        margin-bottom: 40px;
    }

    .distribution-content-wrapper {
        padding: 1.5rem;
        margin-bottom: 40px;
    }

    .distribution-text-content,
    .distribution-visual-content {
        padding: 10px;
    }

    .distribution-heading {
        font-size: clamp(1.35rem, 2vw, 1.75rem);
        margin-bottom: 1.25rem;
        padding-bottom: 12px;
    }

    .distribution-heading::after {
        width: 50px;
        height: 3px;
    }

    .distribution-paragraph {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .distribution-features {
        margin-top: 2rem;
        gap: 1.25rem;
    }

    .feature-item {
        padding: 1rem;
        gap: 1rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }

    .distribution-map-container {
        padding: 20px;
        margin-bottom: 1.5rem;
    }

    .distribution-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1.25rem;
    }

    .distribution-cta {
        margin-top: 40px;
    }

    .btn-distribution-cta {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .section-distribution-network {
        padding: 50px 0;
    }

    .section-distribution-network .section-header {
        margin-bottom: 35px;
    }

    .distribution-heading {
        font-size: 1.35rem;
    }

    .distribution-paragraph {
        font-size: 0.95rem;
    }

    .feature-item {
        padding: 0.875rem;
        gap: 0.875rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-title {
        font-size: 0.95rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .distribution-map-container {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .btn-distribution-cta {
        padding: 12px 28px;
        font-size: 0.95rem;
        gap: 10px;
    }

    .btn-distribution-cta svg {
        width: 18px;
        height: 18px;
    }
}

/* Accessibility */
.btn-distribution-cta:focus-visible {
    outline: 3px solid rgba(76, 182, 221, 0.4);
    outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .feature-item,
    .stat-card,
    .btn-distribution-cta,
    .feature-icon,
    .stat-icon {
        transition-duration: 0.01ms !important;
    }

    .network-illustration line {
        animation: none;
    }

    .btn-distribution-cta::before {
        transition: none;
    }
}
/* Gallery Page - Equal Spacing */
.section-main-gallery {
    padding: 60px 0 60px 0;
    background: var(--color-bg-primary);
}

@media (max-width: 768px) {
    .section-main-gallery {
        padding: 40px 0 40px 0;
    }
}

/* Gallery Box Content - White Text */
.gallery-category {
    color: #ffffff !important;
}

.gallery-title {
    color: #ffffff !important;
}

/* Gallery Content Position - Move Down */
.gallery-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}
.contact-detail-row {
    display: flex;
    align-items: flex-start; /* icon ani text top align */
    gap: 12px;
    margin-bottom: 14px;
}
.detail-icon-wrapper {
    width: 22px;
    flex-shrink: 0;
}

.detail-icon-wrapper i {
    color: #28a745;   /* green icon */
    font-size: 16px;
    margin-top: 4px;
}
.company-name {
    font-weight: 700;              /* bold */
    font-size: 22px;
    color: #4ABB6F;
    margin-bottom: 16px;
}
.detail-text-wrapper p {
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
    color: #555;
}
.section-contact-main {
    background-color: #fff;
    padding: 60px 0;
    padding-left: 100px;
    padding-right: 100px;

}

.map-embed-wrapper {
    border: 1px solid #e0e0e0;
    padding: 12px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Footer Styles - Remove border line */
.main-footer {
    background: #ffffff;
    color: #000000;
    padding: 40px 0 30px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 0;
}

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

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000000;
}

.footer-tagline {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #333333;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4ABB6F;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #3a9a5a;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    width: 20px;
    height: 20px;
    color: #4ABB6F;
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: #4ABB6F;
    fill: none;
}

.footer-contact-icon svg[fill="currentColor"] {
    fill: #4ABB6F;
    stroke: none;
}

.footer-address-text,
.footer-contact-row a {
    color: #000000;
    text-decoration: none;
    line-height: 1.6;
}

.footer-contact-row a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Copyright Strip - Separate section below footer */
.copyright-strip {
    background: linear-gradient(135deg, #C6EDE6 0%, #DEF8FD 100%);
    padding: 15px 0;
    text-align: center;
}

.copyright-strip p {
    margin: 0;
    font-size: 0.9rem;
    color: #1e3a5f;
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (max-width: 576px) {
    .copyright-strip {
        padding: 12px 0;
    }
    
    .copyright-strip p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-col {
        min-width: 100%;
    }
}


/* Product Cards - Updated Styling */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 1.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border:1px solid rgba(76, 182, 221, 0.2);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(76, 182, 221, 0.25);
    border-color: rgba(76, 182, 221, 0.4);
}

.product-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(76, 182, 221, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(76, 182, 221, 0.15);
}

.product-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* .product-hover-effect removed */


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

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-icon {
        width: 110px;
        height: 110px;
    }
}





/* Specific fix for Contact Us heading color */
#contactus .section-title,
#contactus .title-accent {
    color: #1e3a5f !important;
    background: none !important;
    -webkit-text-fill-color: #1e3a5f !important;
    opacity: 1 !important;font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}



/* Specific color fix for 2017 text */
.image-overlay-badge .badge-number {
    color: #1e3a5f !important;
}


/* ================================================
   CONTACT FORM SECTION
   ================================================ */

.section-contact-form {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(76, 182, 221, 0.15);
    border: 1px solid rgba(76, 182, 221, 0.2);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-group-col {
    width: 50%;
    padding: 0 15px;
}

.form-group-full {
    width: 100%;
    padding: 0 15px;
}

.contact-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #94a3b8;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(76, 182, 221, 0.1);
}

.contact-form-textarea {
    resize: vertical;
    min-height: 180px;
}

.form-submit-btn {
    width: 100%;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-primary);
    color: #ffffff;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(76, 182, 221, 0.3),
        0 4px 12px rgba(74, 187, 111, 0.2);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(76, 182, 221, 0.4),
        0 6px 16px rgba(74, 187, 111, 0.3);
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

/* Responsive adjustments for form */
@media (max-width: 768px) {
    .form-group-col {
        width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .section-contact-form {
        padding: 60px 0;
    }
}

/* =========================================
   Medical Solutions Section & Grid Layout
   ========================================= */

.medical-solutions-section {
    padding: 100px 0;
    background-color: #f8f9fa; /* Light grey background */
    position: relative;
    overflow: hidden;
}

.medical-solutions-section .section-header {
    margin-bottom: 70px;
    text-align: center;
}

.medical-solutions-section .section-title {
    color: #1b315e; /* Primary Blue */
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.medical-solutions-section .title-underline {
    width: 60px;
    height: 4px;
    background: #bee6e1; /* Accent Gradient */
    margin: 15px auto 0;
    border-radius: 4px;
}

/* Solutions Grid Layout */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.solution-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* .solution-card::before removed to eliminate the color line */


.solution-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: rgba(0, 188, 212, 0.4);
}

/* .solution-card:hover::before removed */


.solution-card-content {
    margin-bottom: 20px;
}

/* Card Text Styling */
.solution-title {
    color: #1b315e; /* Primary Blue */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-title {
    color: #00bcd4; /* Accent Teal */
}

.solution-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Button Styling (Clean Text Link) */
.btn-solution-link {
    display: inline-flex;
    align-items: center;
    color: #00bcd4;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-solution-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-solution-link:hover {
    color: #1b315e;
}

.btn-solution-link:hover i {
    transform: translateX(5px);
}

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

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        padding: 30px 20px;
    }
}

/* Carousel Section Styles (Refined) */
.solutions-carousel-wrapper {
    margin-top: 60px;
    padding: 40px 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.solutions-carousel {
    padding: 0 20px;
}

.carousel-slide {
    padding: 15px;
}

.slide-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.slide-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #00bcd4;
}

.slide-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 188, 212, 0.1); /* Light Teal */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #00bcd4;
    font-size: 32px;
    transition: all 0.3s ease;
}

.slide-card:hover .slide-icon {
    background: #00bcd4;
    color: #fff;
    transform: scale(1.1);
}

.slide-card h4 {
    color: #1b315e;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.slide-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.btn-slide-link {
    color: #00bcd4;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.btn-slide-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #00bcd4;
    transition: width 0.3s ease;
}

.slide-card:hover .btn-slide-link::after {
    width: 100%;
}

/* Slick Customization */
.slick-dots li button:before {
    font-size: 12px;
    color: #1b315e;
    opacity: 0.25;
}

.slick-dots li.slick-active button:before {
    color: #00bcd4;
    opacity: 1;
}

.slick-prev:before, .slick-next:before {
    color: #1b315e;
    font-size: 24px;
}

.slick-prev {
    left: -35px;
}

.slick-next {
    right: -35px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .zig-zag-item, .zig-zag-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .zig-zag-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .zig-zag-content {
        padding: 0;
    }

    .btn-service {
        margin-top: 10px;
    }
    
    .solutions-carousel-wrapper {
        padding: 20px 0;
    }
}

/* Swiper Customization */
.swiper {
    width: 100%;
    padding-bottom: 50px; /* Space for pagination */
}

.swiper-pagination-bullet {
    background: #1b315e;
    opacity: 0.25;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #00bcd4;
    opacity: 1;
    transform: scale(1.2);
}

.swiper-button-next, .swiper-button-prev {
    color: #1b315e;
    transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    color: #00bcd4;
    transform: scale(1.1);
}

.swiper-slide {
    height: auto; /* Ensure equal height */
    display: flex;
}

/* ================================================
   UPDATED GALLERY CARD STYLES
   Leaf Shape: Top-Left & Bottom-Right large radius
   ================================================ */

.section-products .product-card {
    background: #ffffff !important;
    border: none !important;
    border-radius: 50px 10px 50px 10px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important; /* Soft shadow */
    padding: 3rem 2rem !important;
    min-height: 380px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    z-index: 1;
    /* Override glass-card properties if needed */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Remove glass-card pseudo-elements for this section to ensure clean white look */
.section-products .product-card.glass-card::before,
.section-products .product-card.glass-card:hover::before,
.section-products .product-card.glass-card .card-glow,
.section-products .product-card.glass-card .card-reflection {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
}

.section-products .product-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.1) !important;
}

.section-products .product-icon {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 2rem !important;
    filter: none !important; /* Remove drop shadow from icon container to keep it clean */
}

/* Ensure icon images are contained properly */
.section-products .product-icon img {
    border-radius: 0 !important; /* Remove circle if it clashes, or keep if part of icon design */
    object-fit: contain !important;
    width: 100%;
    height: 100%;
}

.section-products .product-title {
    color: #1e3a5f !important; /* Dark Blue */
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    text-transform: capitalize !important; /* Keep it clean */
    margin-top: 1rem !important;
}

.section-products .product-description {
    color: #475569 !important; /* Slate 600 */
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
    max-width: 300px !important;
    margin: 0 auto !important;
}

/* ============================================
   Custom Form Utility Classes (Contact, Home, Career)
   ============================================ */
.required-asterisk {
    color: black;
}

.form-error-msg {
    color: black;
    margin-top: -15px;
    display: block;
}

.home-variant .form-error-msg,
.form-error-msg.home-variant {
    margin-top: -10px;
    margin-bottom: 10px;
}

.form-error-alert {
    margin-bottom: 20px;
}

.form-error-list {
    margin-bottom: 0;
}

.contact-form-wrapper-box {
    padding: 2rem;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-form-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 10px;
}

.career-form-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 15px;
}

.form-input-spacing {
    margin-bottom: 1.5rem;
}

.form-textarea-large {
    min-height: 120px;
    margin-bottom: 1.5rem;
}

.form-input-file {
    padding: 0.75rem 1.25rem;
    line-height: 1.5;
}

.file-upload-help {
    display: block;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
    color: #64748b;
    font-size: 0.85rem;
}

.form-error-msg.file-upload-error {
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}


/* ============================================
   MOBILE RESPONSIVENESS - Global Fixes
   ============================================ */

/* Hide hamburger on desktop, show on mobile */
.mobile-menu-toggle {
    display: none;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 38px;
        height: 38px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 4px;
        z-index: 1100;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 2px;
        background: #1e3a5f;
        border-radius: 2px;
        transition: all 0.3s ease;
        display: block;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ---- Hero Section ---- */
@media (max-width: 576px) {
    .modern-hero-section,
    .modern-hero-carousel {
        height: 70vh !important;
        min-height: 480px !important;
    }

    .slide-title {
        font-size: clamp(1.6rem, 7vw, 2.5rem) !important;
    }

    .slide-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .btn-hero-primary {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .carousel-nav {
        width: 40px !important;
        height: 40px !important;
    }

    .carousel-nav svg {
        width: 18px !important;
        height: 18px !important;
    }

    .carousel-nav-prev { left: 12px !important; }
    .carousel-nav-next { right: 12px !important; }
}

/* ---- About Stats compact grid ---- */
@media (max-width: 480px) {
    .about-history-grid-2x2 {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }

    .stat-card-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .stat-number-compact {
        font-size: 1.1rem;
    }
}

/* ---- Distribution Network Stats ---- */
@media (max-width: 576px) {
    .distribution-stats {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .stat-card {
        width: 100% !important;
        flex-direction: row !important;
        text-align: left !important;
        padding: 1rem 1.25rem !important;
    }

    .stat-icon {
        margin: 0 1rem 0 0 !important;
        flex-shrink: 0;
    }

    .stat-number {
        font-size: 1.5rem !important;
    }
}

/* ---- Products Grid ---- */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .section-products .product-card {
        padding: 2.5rem 1.5rem !important;
        min-height: auto !important;
        border-radius: 40px 10px 40px 10px !important;
    }

    .section-products .product-title {
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
    }

    .section-products .product-description {
        font-size: 1rem !important;
        max-width: 100% !important;
    }
}

/* ---- Medicine / Featured Gallery ---- */
@media (max-width: 576px) {
    .medicine-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

/* ---- Gallery sub-page grids ---- */
@media (max-width: 576px) {
    .Gallery-category-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ---- Distribution Network content ---- */
@media (max-width: 768px) {
    .distribution-map-container {
        max-width: 100% !important;
        margin-bottom: 1.5rem;
    }

    .distribution-features {
        gap: 1rem !important;
    }
}

/* ---- Footer stacking ---- */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 2rem !important;
    }

    .footer-name {
        font-size: 1.4rem !important;
        word-wrap: break-word;
        max-width: 100%;
    }

    .footer-tagline {
        font-size: 0.9rem !important;
        max-width: 100%;
    }

    .footer-col {
        width: 100% !important;
        max-width: 400px;
    }

    .footer-contact-row {
        justify-content: center !important;
    }
}

/* ---- General Section Padding ---- */
@media (max-width: 576px) {
    .section-about-modern-v2,
    .section-distribution-network,
    .section-products,
    .modern-medicine-section,
    .section-contact {
        padding: 48px 0 !important;
    }

    .section-header {
        margin-bottom: 1.5rem !important;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
    }

    .about-text-column {
        padding: 1.5rem 1.25rem !important;
    }
}

/* ---- VM Cards (Mission/Vision) ---- */
@media (max-width: 576px) {
    .vm-modern-card {
        padding: 2rem 1.25rem !important;
    }

    .vm-icon-container {
        width: 70px !important;
        height: 70px !important;
    }

    .vm-svg-icon {
        width: 35px !important;
        height: 35px !important;
    }

    .vm-card-title {
        font-size: 1.3rem !important;
    }
}


/* ---- Page Header (Gallery / Contact / Career sub-pages) ---- */
@media (max-width: 768px) {
    .gallery-header-section {
        padding: 100px 0 40px !important;
    }

    .page-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .gallery-header-section {
        padding: 90px 0 30px !important;
    }

    .page-title {
        font-size: 1.6rem !important;
    }
}
/* ================================================
   GLOBAL GALLERY & SUB-GALLERY STYLES
   ================================================ */

.section-Gallery-list {
    padding: 80px 0;
    background-color: var(--color-bg-secondary);
}

.Gallery-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.Gallery-item-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(76, 182, 221, 0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.Gallery-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(76, 182, 221, 0.15);
}

.Gallery-visual-box {
    background: #f8f9fa;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.Gallery-info-box {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.Gallery-main-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.Gallery-tagline {
    color: #4ABB6F;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    line-height: 1.4;
}

.Gallery-tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
}

.Gallery-composition {
    margin-top: auto;
    background: #f8fbff;
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid var(--color-secondary);
}

.comp-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 5px;
    font-weight: 700;
}

.comp-text {
    color: #1e293b;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

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