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

.navbar-toggler{
	background-color: blue !important;
}

.product-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 40px;
}

.product-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 15px;
}

/* Hide scrollbar */
.product-slider::-webkit-scrollbar {
    display: none;
}

/* Default width: 33.33% (3 cards visible) */
.product-card-modern {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    transition: transform .3s ease;
}

/* Hover effect */
.product-card-modern:hover {
    transform: translateY(-5px);
}

/* Tablet: Show 2 cards */
@media (max-width: 992px) {
    .product-card-modern {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
}

/* Mobile: Show 1 card */
@media (max-width: 576px) {
    .product-card-modern {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 100%;
    }
}

/* Slide buttons */
.slide-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
}

.slide-btn.left { left: 0; }
.slide-btn.right { right: 0; }

.slide-btn i { font-size: 20px; }


:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #10b981;
    --accent: #f59e0b;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

html {
    scroll-behavior: smooth;
}

.section-padding {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--darker);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    position: fixed !important;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .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%280, 0, 0, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    color: var(--black);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--gray-800);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.85));
    z-index: 1;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.badge-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.badge-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px) scale(1.02);
}

.stat-icon {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 3;
}

.scroll-indicator span {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollDot 1.5s infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.3s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes scrollDot {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.products-section {
    background: var(--gray-50);
}

.product-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.product-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.product-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-modern:hover .product-img {
    transform: scale(1.1);
}

.fda-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--secondary), #059669);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.product-body {
    padding: 28px 24px;
}

.product-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--darker);
    margin-bottom: 8px;
}

.generic-name {
    font-size: 14px;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 16px;
}

.dosage-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--gray-700);
}

.dosage-info i {
    color: var(--primary);
    font-size: 18px;
}

.product-use {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 12px;
}

.compliance-note {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
}

.about-section {
    background: var(--white);
}

.about-image-grid {
    position: relative;
    height: 500px;
}

.grid-img-1 {
    position: absolute;
    width: 60%;
    height: 65%;
    object-fit: cover;
    border-radius: 20px;
    top: 0;
    left: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
    transition: transform 0.3s ease;
}

.grid-img-2 {
    position: absolute;
    width: 55%;
    height: 55%;
    object-fit: cover;
    border-radius: 20px;
    bottom: 0;
    right: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 1;
    transition: transform 0.3s ease;
}

.about-image-grid:hover .grid-img-1 {
    transform: translate(-8px, -8px);
}

.about-image-grid:hover .grid-img-2 {
    transform: translate(8px, 8px);
}

.year-badge {
    position: absolute;
    bottom: 40px;
    left: 40%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 20px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
    z-index: 3;
}

.year-badge .year {
    display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
}

.year-badge .label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-stat-inline {
    display: flex;
    align-items: center;
    gap: 124px;
    margin-top: 32px;
    padding: 24px 28px;
    background: var(--gray-50);
    border-radius: 16px;
}

.stat-inline-item h3 {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-inline-item span {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
}

.stat-inline-divider {
    width: 2px;
    height: 50px;
    background: var(--gray-300);
}

.value-box {
    padding: 32px 24px;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.value-box:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.1);
}

.value-icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.4s ease;
}

.value-box:hover .value-icon-circle {
    transform: rotate(360deg);
}

.value-icon-circle i {
    font-size: 32px;
    color: var(--white);
}

.value-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--darker);
    margin-bottom: 12px;
}

.value-box p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.regulatory-section {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.regulatory-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(45deg, var(--primary) 0, var(--primary) 2px, transparent 0, transparent 50%),
        repeating-linear-gradient(-45deg, var(--primary) 0, var(--primary) 2px, transparent 0, transparent 50%);
    background-size: 30px 30px;
}

.compliance-box {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
}

.compliance-box:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.compliance-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.compliance-box:hover .compliance-icon-modern {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.compliance-icon-modern i {
    font-size: 36px;
    color: var(--primary);
    transition: color 0.4s ease;
}

.compliance-box:hover .compliance-icon-modern i {
    color: var(--white);
}

.compliance-box h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--darker);
    margin-bottom: 16px;
}

.compliance-box p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.orange-book-card {
    background: linear-gradient(135deg, #dbeafe, #dcfce7);
    padding: 40px;
    border-radius: 24px;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.orange-book-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

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

.book-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-icon-wrapper i {
    font-size: 40px;
    color: var(--white);
}

.orange-book-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--darker);
    margin-bottom: 16px;
}

.orange-book-card p {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 0;
    line-height: 1.7;
}

.info-panel {
    background: var(--white);
    padding: 36px 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.info-panel h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--darker);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-panel h5 i {
    color: var(--primary);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-700);
}

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

.alert-panel {
    background: linear-gradient(135deg, #fef3c7, #fef08a);
    border: 2px solid var(--accent);
}

.emergency-alert {
    margin-top: 20px;
    padding: 16px;
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.emergency-alert i {
    font-size: 24px;
    color: #ef4444;
    flex-shrink: 0;
}

.contact-section {
    background: var(--white);
}

.contact-card {
    background: var(--gray-50);
    padding: 36px 28px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    height: 100%;
}

.contact-card:hover {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-6px);
}

.contact-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon-modern {
    transform: scale(1.1) rotate(360deg);
}

.contact-icon-modern i {
    font-size: 32px;
    color: var(--white);
}

.contact-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--darker);
    margin-bottom: 16px;
}

.contact-card p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0;
}

.inquiry-box {
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    padding: 40px 36px;
    border-radius: 20px;
    border: 2px solid var(--gray-200);
    transition: all 0.4s ease;
    height: 100%;
}

.inquiry-box:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.1);
}

.inquiry-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.inquiry-header i {
    font-size: 36px;
    color: var(--primary);
}

.inquiry-header h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--darker);
    margin: 0;
}

.inquiry-box p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-modern {
    background: linear-gradient(135deg, var(--darker), var(--dark));
    color: var(--white);
    padding: 80px 0 0;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.8;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--secondary);
}

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-stats-grid {
        margin-top: 40px;
    }

    .about-image-grid {
        height: 400px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 32px;
    }

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

    .hero-title {
        font-size: 36px;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-stat-inline {
        flex-direction: column;
        gap: 16px;
    }

    .stat-inline-divider {
        width: 100%;
        height: 2px;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-legal-links span {
        display: none;
    }
}
