/* Muvomed Pharmacal - Custom Styles */

:root {
    /* Logo Color Palette */
    --primary-color: #4463A5;        /* Medium Blue - Main Color */
    --secondary-color: #2ABCCF;      /* Light Teal/Cyan - Secondary */
    --accent-color: #533173;         /* Deep Purple/Violet - Accent */
    --primary-light: #5A7BB8;        /* Lighter shade of blue */
    --primary-dark: #36518A;          /* Darker shade of blue */
    --text-dark: #212529;
    --text-light: #6c757d;
    
    /* Page Specific Colors */
    --career-color: #FF6B6B;         /* Red/Coral for Career */
    --quality-color: #4ECDC4;        /* Teal for Quality Assurance */
    --order-color: #FFD93D;          /* Yellow/Gold for Request Order */
    --contact-color: #95E1D3;        /* Light Green/Teal for Contact */
    
    /* Legacy variable names for compatibility */
    --pharma-green: #4463A5;
    --pharma-green-dark: #533173;
    --pharma-green-light: #5A7BB8;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--primary-color) !important;
}

.navbar-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.navbar-brand i {
    font-size: 1.8rem;
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    margin: 0 0.25rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.6rem 1.2rem !important;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
    text-transform: capitalize;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: transparent !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
    background-color: transparent !important;
}

.navbar-toggler {
    border: none;
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2868, 99, 165, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Primary Color Override */
.bg-primary {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Button Styles - Consistent Design Across All Pages */
.btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
    border-width: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68, 99, 165, 0.3);
}

.btn-light {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-outline-light {
    border-color: #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
    border-color: #5a6268;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Button Sizes */
.btn-sm {
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 0.7rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-lg:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    color: white;
    padding: 100px 0 80px;
    margin-top: -76px;
}

/* Page Header Banner */
.page-header-banner {
    margin-top: 76px;
    position: relative;
}

.page-banner-image {
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-banner-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-image: inherit;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(1.5px);
    z-index: 0;
}

.page-banner-image > * {
    position: relative;
    z-index: 2;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 80px 0;
}

.page-banner-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-banner-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .page-header-banner {
        margin-top: 0;
    }
    
    .page-banner-image {
        min-height: 300px;
    }
    
    .page-banner-title {
        font-size: 2rem;
    }
    
    .page-banner-subtitle {
        font-size: 1.1rem;
    }
    
    .page-banner-content {
        padding: 60px 0;
    }
    
    .page-banner-content .banner-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .page-banner-content .banner-actions .btn {
        min-width: 140px;
        padding: 12px 20px;
        font-size: 0.95rem;
        flex: 0 1 auto;
        margin-bottom: 0;
    }
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Carousel Section */
.carousel-section {
    margin-top: 76px;
    position: relative;
}

@media (max-width: 991px) {
    .carousel-section {
        margin-top: 0;
    }
}

#homeCarousel {
    position: relative;
    overflow: visible;
}

.carousel-item {
    min-height: 600px;
    overflow: hidden;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    margin-bottom: 30px;
    z-index: 3;
}

.carousel-indicators button {
    width: 40px;
    height: 3px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.carousel-indicators button:hover {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.6);
}

.carousel-indicators button.active {
    background-color: white;
    width: 40px;
    height: 3px;
    border-radius: 2px;
    opacity: 1;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

/* Banner Content */
.banner-content-wrapper {
    animation: fadeInUp 0.8s ease-out;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.banner-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    font-weight: 400;
}

.banner-actions {
    margin-top: 2rem;
}

.banner-actions .btn {
    min-width: 180px;
    font-weight: 600;
    padding: 0.7rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-width: 2px;
}

.banner-actions .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.banner-actions .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.banner-actions .btn-outline-light {
    border-width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border-color: #ffffff;
}

.banner-actions .btn-outline-light:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 auto 3rem auto;
    text-align: center;
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.welcome-content .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.welcome-content .section-title::after {
    left: 0;
    transform: translateX(0);
    width: 60px;
    height: 3px;
}

/* Product Cards */
.product-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(42, 188, 207, 0.2);
    border-color: var(--primary-color);
}

.product-card .card-header {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

/* Category Badge */
.category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Feature Box */
.feature-box {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(68, 99, 165, 0.25);
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(68, 99, 165, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Contact Form Styles */
.contact-form-card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    height: auto;
}

.contact-form .form-control:hover,
.contact-form .form-select:hover {
    border-color: var(--primary-color);
}

.contact-form .form-control-lg {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    height: auto;
}

/* Reduce height for all form controls */
.form-control,
.form-select {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.form-control-lg,
.form-select-lg {
    padding: 0.6rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
}

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

/* Contact Links */
.contact-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-link:hover {
    background-color: rgba(68, 99, 165, 0.1);
    color: var(--primary-color);
    padding-left: 1.5rem;
    transform: translateX(5px);
}

.contact-link i {
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(3px);
}

/* Contact Information Cards */
.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: none;
    margin-bottom: 1.5rem;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(68, 99, 165, 0.15);
}

.contact-info-content {
    width: 100%;
}

.contact-info-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.contact-info-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-phone-link {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-phone-link:hover {
    color: var(--accent-color);
    transform: scale(1.05);
}

.contact-phone-link i {
    transition: transform 0.3s ease;
}

.contact-phone-link:hover i {
    transform: rotate(15deg);
}

/* Button Styles */
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Value Card */
.value-card {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 5px;
}

.value-card h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Alert Styles */
.alert-success {
    background-color: #d4edda;
    border-color: var(--primary-color);
    color: #155724;
}

/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer-banner {
    margin-bottom: 0 !important;
}

.footer-banner .page-header-banner {
    margin-bottom: 0;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

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

.footer-about-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: 15px;
    margin-bottom: 0;
}

.footer-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-text {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '\f138';
    font-family: 'bootstrap-icons';
    margin-right: 8px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.footer-links a:hover::before {
    transform: translateX(3px);
}

/* Footer Link Specific Colors - Only for Quick Links column */
.footer-links a[href*="career"]:not(.footer-services-links a),
.footer-links a[href*="quality-assurance"]:not(.footer-services-links a),
.footer-links a[href*="request-order"]:not(.footer-services-links a),
.footer-links a[href*="contact"]:not(.footer-services-links a) {
    color: var(--career-color);
}

.footer-links a[href*="career"]:not(.footer-services-links a)::before,
.footer-links a[href*="quality-assurance"]:not(.footer-services-links a)::before,
.footer-links a[href*="request-order"]:not(.footer-services-links a)::before,
.footer-links a[href*="contact"]:not(.footer-services-links a)::before {
    color: var(--career-color);
}

.footer-links a[href*="career"]:not(.footer-services-links a):hover,
.footer-links a[href*="quality-assurance"]:not(.footer-services-links a):hover,
.footer-links a[href*="request-order"]:not(.footer-services-links a):hover,
.footer-links a[href*="contact"]:not(.footer-services-links a):hover {
    color: var(--career-color);
    filter: brightness(1.2);
}

/* Services column links use normal colors */
.footer-services-links a {
    color: #cccccc !important;
}

.footer-services-links a::before {
    color: var(--primary-color) !important;
}

.footer-services-links a:hover {
    color: var(--primary-color) !important;
    filter: none !important;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-contact-info {
    margin-top: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social .social-icon:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(68, 99, 165, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 30px;
}

.footer-copyright {
    color: #999999;
    font-size: 0.9rem;
}

.footer-credit {
    color: #999999;
    font-size: 0.9rem;
    display: block;
    visibility: visible;
    opacity: 1;
}

.footer-credit-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-credit-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-credit {
        font-size: 0.85rem;
        text-align: center;
        margin-top: 10px;
    }
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-light) !important;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .footer-bottom .row > div {
        margin-bottom: 15px;
    }
    
    .footer-bottom .text-md-end {
        text-align: center !important;
    }
    
    .footer-bottom .text-md-start {
        text-align: center !important;
    }
}

@media (max-width: 991px) {
    body {
        padding-bottom: 0;
    }
    
    .site-footer {
        margin-bottom: 43px;
    }
}

/* Mobile Call & WhatsApp Buttons */
.mobile-contact-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-call-btn,
.mobile-whatsapp-btn {
    flex: 1;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: none;
}

.mobile-call-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.mobile-call-btn:hover,
.mobile-call-btn:active {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: #ffffff;
    transform: scale(0.98);
}

.mobile-whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.mobile-whatsapp-btn:hover,
.mobile-whatsapp-btn:active {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: #ffffff;
    transform: scale(0.98);
}

.mobile-call-btn i,
.mobile-whatsapp-btn i {
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .mobile-contact-buttons {
        display: none;
    }
}

/* Desktop WhatsApp Button */
.desktop-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 991px) {
    .desktop-whatsapp-btn {
        display: none;
    }
}

/* Quality Assurance Page Specific Styles */
.quality-card-left {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.quality-card-left:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(68, 99, 165, 0.15);
}

.quality-card-right {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border-right: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.quality-card-right:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 20px rgba(83, 49, 115, 0.15);
}

.quality-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(68, 99, 165, 0.3);
}

.quality-icon-wrapper i {
    font-size: 2rem;
    color: #ffffff;
}

.quality-content {
    flex: 1;
}

.quality-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(68, 99, 165, 0.4);
    flex-shrink: 0;
}

.process-content {
    flex: 1;
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    transition: all 0.3s ease;
}

.process-step:nth-child(odd) .process-content {
    margin-left: 2rem;
    margin-right: 0;
}

.process-step:nth-child(even) .process-content {
    margin-right: 2rem;
    margin-left: 0;
}

.process-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.process-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.process-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Commitment Card */
.commitment-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(68, 99, 165, 0.1);
}

.commitment-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(68, 99, 165, 0.3);
}

.commitment-icon-large i {
    font-size: 4rem;
    color: #ffffff;
}

.commitment-card h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.commitment-point {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(68, 99, 165, 0.05);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.commitment-point i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 25px;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 3rem;
    }
    
    .process-step:nth-child(odd) .process-content,
    .process-step:nth-child(even) .process-content {
        margin-left: 0;
        margin-right: 0;
    }
    
    .quality-card-left,
    .quality-card-right {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-card {
        padding: 2rem;
    }
    
    .commitment-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .commitment-icon-large i {
        font-size: 3rem;
    }
}

/* Products Page Category Styles */
.product-category-section {
    margin-bottom: 4rem;
}

.category-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    gap: 1.5rem;
}

.category-title-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    max-width: 200px;
}

.category-title-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 1rem;
    text-align: center;
}

.category-title-text i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.category-title-break {
    display: inline-block;
}

@media (max-width: 768px) {
    .category-title-text {
        font-size: 1.6rem;
    }
    
    .category-title-text i {
        font-size: 1.5rem;
    }
    
    .category-title-break {
        line-height: 1.3;
    }
}

/* About Page Specific Styles */
.mission-vision-heading {
    margin-bottom: 2rem;
    display: inline-block;
    position: relative;
    padding-bottom: 1rem;
}

.mission-vision-heading::before {
    display: none;
}

.mission-vision-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

.mission-vision-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Left-aligned section titles */
.section-title.text-start {
    text-align: left;
}

.section-title.text-start::after {
    left: 0;
    transform: translateX(0);
}

.mission-content,
.vision-content {
    text-shadow: none;
}

.mission-content .mission-text,
.vision-content .vision-text {
    text-align: left;
}

.mission-text,
.vision-text,
.overview-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.mission-text:last-child,
.vision-text:last-child,
.overview-text:last-child {
    margin-bottom: 0;
}

.mission-image-wrapper,
.vision-image-wrapper,
.welcome-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    clear: both;
}

.welcome-image-wrapper {
    max-width: 100%;
}

.mission-image-wrapper:hover,
.vision-image-wrapper:hover,
.welcome-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.mission-image,
.vision-image,
.welcome-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    max-height: 400px;
}

.welcome-image {
    max-height: 500px;
}

@media (max-width: 768px) {
    .mission-vision-heading h2 {
        font-size: 1.75rem;
    }
    
    .mission-text,
    .vision-text {
        font-size: 1rem;
    }
}

.overview-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}

.overview-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.overview-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Director Image Styling */
.director-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}

.director-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.director-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.director-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    padding: 1.5rem 1rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.director-label i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.overview-content {
    text-shadow: none;
}

/* Company Overview Card */
.overview-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(68, 99, 165, 0.1);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(68, 99, 165, 0.15);
    border-color: rgba(68, 99, 165, 0.2);
}

.overview-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(68, 99, 165, 0.3);
}

.overview-icon-wrapper i {
    font-size: 2.5rem;
    color: #ffffff;
}

.overview-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    text-align: center;
}

.overview-card-content {
    margin-top: 2rem;
}

.overview-card-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .overview-card {
        padding: 2rem 1.5rem;
    }
    
    .overview-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .overview-icon-wrapper i {
        font-size: 2rem;
    }
    
    .overview-card-title {
        font-size: 2rem;
    }
    
    .overview-card-text {
        font-size: 1rem;
        text-align: left;
    }
}

.overview-intro {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(68, 99, 165, 0.2);
    text-shadow: none !important;
}

.overview-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-shadow: none;
}

.commitment-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(68, 99, 165, 0.05) 0%, rgba(83, 49, 115, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(68, 99, 165, 0.1) 0%, transparent 70%);
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.commitment-badge {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(68, 99, 165, 0.4);
    position: relative;
    z-index: 1;
}

.commitment-badge i {
    font-size: 3rem;
    color: #ffffff;
}

.commitment-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
    display: block;
    width: 100%;
}

/* GMP Certification Badge */
.gmp-certification-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, #4463A5 0%, #533173 100%);
    color: #ffffff;
    padding: 20px 40px;
    border-radius: 15px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(68, 99, 165, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gmp-certification-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shine 3s infinite;
}

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

.gmp-certification-badge:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(68, 99, 165, 0.5), 0 0 0 4px rgba(255, 215, 0, 0.2);
}

.gmp-certification-badge i {
    font-size: 2rem;
    color: #FFD700;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.gmp-certification-badge .gmp-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    line-height: 1.5;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.gmp-description {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WHO-GMP Logo */
.who-gmp-logo {
    max-width: 180px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.who-gmp-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .who-gmp-logo {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .gmp-certification-badge {
        padding: 16px 25px;
        gap: 10px;
        flex-wrap: wrap;
        border-radius: 12px;
    }
    
    .gmp-certification-badge i {
        font-size: 1.6rem;
    }
    
    .gmp-certification-badge .gmp-text {
        font-size: 1.1rem;
        font-weight: 900;
        letter-spacing: 0.5px;
        text-align: center;
    }
}

.commitment-text {
    position: relative;
    z-index: 1;
}

.commitment-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-shadow: none;
}

@media (max-width: 768px) {
    .mission-image-wrapper,
    .vision-image-wrapper,
    .overview-image-wrapper,
    .director-image-container,
    .welcome-image-wrapper {
        max-width: 100%;
        margin: 0 auto 0.5rem;
    }
    
    .mission-image,
    .vision-image,
    .overview-image,
    .director-photo,
    .welcome-image {
        max-height: 300px;
        object-fit: cover;
    }
    
    .welcome-content {
        text-align: left;
    }
    
    .director-label {
        font-size: 1rem;
        padding: 1rem 0.8rem 0.8rem;
    }
    
    .mission-section,
    .vision-section,
    .overview-section {
        flex-direction: column;
    }
    
    .mission-content,
    .vision-content,
    .overview-content {
        text-align: left;
    }
    
    .mission-vision-heading {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .mission-vision-heading::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .mission-text,
    .vision-text,
    .overview-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .overview-content {
        padding: 2rem 1.5rem;
    }
    
    .overview-intro {
        font-size: 1.2rem;
    }
    
    .commitment-section {
        padding: 2rem 1.5rem;
    }
    
    .commitment-badge {
        width: 80px;
        height: 80px;
    }
    
    .commitment-badge i {
        font-size: 2.5rem;
    }
    
    .commitment-title {
        font-size: 2rem;
    }
    
    .commitment-text p {
        font-size: 1rem;
    }
}

/* Product Card Enhancements */
.product-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.product-card .card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #ffffff;
    border: none;
    padding: 1.25rem;
}

.product-card .card-header h5 {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

.product-card .card-body {
    padding: 1.5rem;
}

.product-card .card-footer {
    background: #f8f9fa;
    border: none;
    padding: 1rem 1.5rem;
}

@media (max-width: 768px) {
    .category-header {
        padding: 2rem 1.5rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-icon i {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
}

/* Mobile Side Menu */
.offcanvas {
    background-color: #ffffff !important;
    width: 280px !important;
}

.offcanvas-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem;
    background-color: #ffffff;
}

.offcanvas-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.offcanvas-title .navbar-logo {
    height: 51px;
    width: auto;
    object-fit: contain;
}

.offcanvas-title i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.btn-close {
    opacity: 0.7;
}

.btn-close:hover {
    opacity: 1;
}

.offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 80px);
    background-color: #ffffff;
}

.offcanvas-body .navbar-nav {
    flex: 1;
    padding: 0.5rem 0;
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

.offcanvas-body .nav-item {
    text-align: left !important;
    margin: 0;
    width: 100%;
    display: block;
}

.offcanvas-body .nav-link {
    color: var(--primary-color) !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1.1rem;
    border-bottom: none;
    transition: all 0.3s ease;
    text-align: left !important;
    display: block;
    width: 100%;
    justify-content: flex-start !important;
}

.offcanvas-body .nav-link:hover {
    background-color: rgba(68, 99, 165, 0.1);
    color: var(--primary-color) !important;
    padding-left: 2rem;
}

.offcanvas-body .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.mobile-social-icons {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    margin-top: auto;
    background-color: #ffffff;
    text-align: left;
}

.mobile-social-icons h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    display: block;
    text-align: left;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .carousel-section {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-brand i {
        font-size: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 2px;
    }
    
    .mission-vision-heading::after {
        width: 50px;
        height: 2px;
    }
    
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-image {
        min-height: 500px;
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
    }
    
    /* Ensure banner image doesn't get cut on very small screens */
    @media (max-width: 576px) {
        .carousel-image {
            min-height: 450px;
            background-size: cover;
            background-position: center center;
        }
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
    
    .banner-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .banner-actions .btn {
        min-width: 140px;
        padding: 12px 20px;
        font-size: 0.95rem;
        flex: 0 1 auto;
        margin-bottom: 0;
    }
    
    .banner-actions .btn.me-3 {
        margin-right: 0 !important;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-content {
        padding: 60px 0;
    }
}

/* Utility Classes */
.text-pharma-green {
    color: var(--primary-color) !important;
}

.bg-pharma-green {
    background-color: var(--primary-color) !important;
}

/* Product Modal */
.modal-header {
    background-color: var(--primary-color);
    color: white;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Product Modal Image */
.product-modal-image {
    max-width: 100%;
    max-height: 400px;
    height: auto;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    margin-top: 1rem;
    display: block;
}

.modal-body .row {
    align-items: flex-start;
}

@media (max-width: 768px) {
    .product-modal-image {
        max-height: 250px;
        max-width: 100%;
        width: auto;
        margin: 0 auto 1.5rem;
        display: block;
    }
    
    .modal-body .row {
        flex-direction: column-reverse;
    }
    
    .modal-body .col-md-5 {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .modal-body .col-md-7 {
        width: 100%;
    }
    
    .modal-body .col-md-5 {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .product-modal-image {
        max-height: 200px;
        max-width: 90%;
    }
    
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
}

/* Coming Soon Badge for Unlaunched Products */
.coming-soon-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px dashed var(--primary-color);
    margin-top: 1rem;
}

.coming-soon-badge i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.coming-soon-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .coming-soon-badge {
        min-height: 200px;
        padding: 1.5rem;
        margin-top: 0;
        margin-bottom: 1.5rem;
    }
    .coming-soon-badge i {
        font-size: 3rem;
    }
    .coming-soon-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .coming-soon-badge {
        min-height: 150px;
        padding: 1rem;
    }
    .coming-soon-badge i {
        font-size: 2.5rem;
    }
    .coming-soon-text {
        font-size: 1rem;
    }
}

/* Table Styles */
.table-hover tbody tr:hover {
    background-color: rgba(42, 188, 207, 0.1);
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    filter: blur(2px);
}

.cta-content {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn {
    padding: 0.7rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-width: 2px;
}

.cta-section .btn-light {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 2px solid #ffffff;
}

.cta-section .btn-light:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    background-color: transparent;
}

.cta-section .btn-outline-light:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section .lead {
        font-size: 1.1rem;
    }
    
    .cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content .banner-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .cta-section .btn {
        min-width: 140px;
        padding: 12px 20px;
        font-size: 0.95rem;
        margin-bottom: 0;
        flex: 0 1 auto;
    }
}

/* TM Symbol Styling - Red Circle */
sup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.4em;
    height: 1.4em;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    color: #ffffff;
    border-radius: 50%;
    font-size: 0.55em;
    font-weight: 800;
    margin-left: 0.25em;
    vertical-align: super;
    line-height: 1;
    padding: 0;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.4), 0 0 0 1.5px rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transform: translateY(-0.15em);
    transition: all 0.2s ease;
}

sup:hover {
    transform: translateY(-0.15em) scale(1.1);
    box-shadow: 0 3px 8px rgba(220, 53, 69, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.4);
}


