/* Custom Styles */
:root {
    --primary-color: #1560c1;
    --secondary-color: #ff8a00;
    --success-color: #198754;
    --light-bg: #f8f9fa;
    --dark-text: #212529;
    --gray-text: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}


/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.9rem;
    padding: 8px 0;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 40px;
    transition: transform 0.3s;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--secondary-color);
    transition: all 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
    left: 10%;
}

.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-scrolled {
    padding-top: 5px;
    padding-bottom: 5px;
}

.partner-btn {
    background-color: transparent !important;
    border: 2px solid #ff8a00 !important;
    color: #ff8a00 !important;
    transition: all 0.3s ease;
}

.partner-btn:hover {
    background-color: #ff8a00 !important;
    color: #fff !important;
    border-color: #ff8a00 !important;
}


.partner-btn:hover,
.partner-btn:focus {
    background: #ff8a00 !important;
    color: #fff !important;
    border-color: #ff8a00;
}


.small-font {
    font-size: 2.25rem;
    line-height: 1.2;
}

.gradient-text {
    background-image: linear-gradient(to right,
            #f9941f,
            #1560c1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-top {
    background: linear-gradient(135deg, #f9941f, #ffb83d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(253, 126, 20, 0.1) 100%);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.05) 0%, rgba(13, 110, 253, 0.05) 100%);
    border-radius: 0 100% 0 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: #f988061a;
    border: 1px solid rgba(21, 96, 193, 0.2);
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out both;
}

.text-heading {
    color: var(--secondary-color);
    ;
}

.gradient-blue {
    background: linear-gradient(90deg, #1e3a8a, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.gradient-brown {
    background: linear-gradient(90deg, #8b6b4f, #c7a17a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #22c55e;
    animation: pulseColor 2.5s ease-in-out infinite;
}

@keyframes pulseColor {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }
}




.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}


.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--gray-text);
}

.hero-small-subtitle {
    margin-bottom: 30px;
    color: var(--gray-text);
}

.hero-buttons .btn {
    margin-right: 15px;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s;
}

.hero-buttons .btn-warning {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-bg);
}

.hero-buttons .btn-warning:hover {
    background-color: #f98806;
    border-color: #f98806;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.3);
}

.hero-buttons .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.arrow-icon {
    font-size: 0.75rem;
    color: #fff;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.25s ease;
}

.hero-buttons .btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Badge Styling */
.badge {
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 30px;
}

/* Card Hover Effect */
.card {
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Icon Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-warning {
    color: var(--secondary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), #0a58ca) !important;
}

/* default card */
.card {

    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid rgb(232, 232, 232);
    border-radius: 14px;
}

/* icon box default */
.icon-box {
    width: 56px;
    height: 56px;
    background-color: #1560c11a;
    border-radius: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.icon-box i {
    font-size: 22px;
    color: #1560c1;
    /* primary blue */
    transition: color 0.3s ease;
}

/* 🔥 CARD HOVER EFFECT */
.card:hover {
    border-color: #95bcf0;
    box-shadow: 0 8px 20px rgba(21, 96, 193, 0.15);
    transform: translateY(-4px);
}


/* icon bg change on card hover */
.card:hover .icon-box {
    background-color: rgba(255, 159, 28, 0.12);
}

/* icon color change on card hover */
.card:hover .icon-box i {
    color: #f98806;
}

.card:active {
    transform: translateY(-2px);
}

.evolution-section {
    background-color: #ffffff;
}

.evolution-box {
    border-radius: 24px;
    background: linear-gradient(135deg,
            #eef5fb 0%,
            #faf6f0 50%,
            #eef8f2 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.evolution-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #f9941f;
}

.evolution-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
}

.evolution-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 1.25rem;
}

section {
    padding: 80px 0;
}

/* Stat Cards */
.stat-card {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.stat-card .stat-label {
    color: var(--gray-text);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Product Category Cards */
.product-category {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s;
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-category i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.capability-card {
    border-radius: 16px;
    border: 1px solid #d1d5db;
    background-color: #fff;
    box-shadow: 0 6px 14px rgba(21, 96, 193, 0.12);
    transition: all 0.3s ease;
}

/* icon box */
.icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-wrap i {
    font-size: 22px;
}

/* icon background + color */
.icon-primary {
    background-color: rgba(21, 96, 193, 0.08);
    color: #1560c1;
}

.icon-warning {
    background-color: rgba(255, 159, 28, 0.12);
    color: #f98806;
}

.icon-success {
    background-color: rgba(25, 135, 84, 0.12);
    color: #198754;
}

/* 🔥 hover effect */
.capability-card:hover {
    transform: translateY(-4px);
    border: 1px solid #1560c1;
    box-shadow: 0 12px 26px rgba(21, 96, 193, 0.25);
}

/* 🎯 hover border color as per card type */
.capability-card.border-primary:hover {
    border-color: #1560c1;
}

.capability-card.border-warning:hover {
    border-color: #f9941f;
}

.capability-card.border-success:hover {
    border-color: #198754;
}



/* Therapeutic Areas */
.therapeutic-badge {
    display: inline-block;
    padding: 12px 24px;
    margin: 8px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: default;
}

.therapeutic-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.3);
}

/* Partnership Model Cards */
.partnership-model-card {
    height: 100%;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.partnership-model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}

.partnership-model-card .card-body {
    display: flex;
    flex-direction: column;

}

.partnership-model-card .card-text {
    flex-grow: 1;
}

/* Supply Model Steps */
.supply-step {
    text-align: center;
}

.supply-step .step-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #0a58ca);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
    transition: all 0.3s;
}

.supply-step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.supply-step .step-arrow {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0 15px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
}

footer a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.8;
}

footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

footer .social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-warning {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-warning:hover {
    background-color: #f98806;
    border-color: #f98806;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background-color: #0a58ca;
    transform: translateY(-5px);
}

/* Loading Spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.spinner-overlay.hide {
    opacity: 0;
    pointer-events: none;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 100px;
    right: -400px;
    background-color: var(--success-color);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: right 0.5s;
    z-index: 1000;
}

.success-message.show {
    right: 30px;
}

.product-card {
    border: 1.5px solid #e6edf5;
    border-radius: 16px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card ul {
    margin-top: auto;
}


.product-card:hover {
    transform: translateY(-6px);
}

/* Typography */
.product-card h5 {
    font-weight: 600;
    margin: 18px 0 12px;
}

.product-card ul {
    padding-left: 18px;
    margin: 0;
}

.product-card ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #6b7280;
}

/* Icon Box */
.icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* ICON COLORS */
.icon-box.primary {
    background: #eaf2ff;
    color: #2563eb;
}

.icon-box.warning {
    background: #fff3e6;
    color: #f97316;
}

.icon-box.success {
    background: #e9f9ef;
    color: #16a34a;
}

.bg-grey {
    background-color: rgb(233, 232, 232);
}

/* HOVER BORDER + SHADOW (IMPORTANT PART) */

/* PRIMARY */
.card-primary:hover {
    border-color: #2563eb;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.18);
}

/* WARNING */
.card-warning:hover {
    border-color: #f97316;
    box-shadow: 0 14px 34px rgba(249, 115, 22, 0.18);
}

/* SUCCESS */
.card-success:hover {
    border-color: #16a34a;
    box-shadow: 0 14px 34px rgba(22, 163, 74, 0.18);
}

.therapeutic-wrapper {
    background: #f0f2f580;
    border: 1px solid #dbe4f0;
    border-radius: 24px;
}

.therapy-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgb(235, 235, 235);
    color: #0f172a;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
    color: #1f2c3d;
}

/* orange dot */
.therapy-item .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f97316;
    flex-shrink: 0;
}

.text-gradient {
    background: linear-gradient(90deg, #f98806, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-bottom {
    background-color: #f0f2f580;
}

.info-gradient-box {
    background: linear-gradient(90deg, #eef5ff, #f3fbf6);
    border-radius: 22px;
    border: 1px solid #e2e8f0;
}

.info-text {
    font-size: 18px;
    line-height: 1.8;
    color: #0f172a;
    max-width: 900px;
    margin: 0 auto;
}

.small-title {
    color: #2563eb;
    letter-spacing: 1.5px;
}

.main-title {
    font-weight: 700;
    font-size: 40px;
    color: #0f172a;
}

.subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
}

/* Card */
.capability-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 22px;
    padding: 28px;
    text-align: left;
    transition: all 0.3s ease;
}

.capability-card h5 {
    margin-top: 20px;
    font-weight: 600;
    font-size: 18px;
}

.capability-card p {
    margin-top: 10px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}


/* Icon box */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.icon-box.blue {
    background: #eaf2ff;
    color: #2563eb;
}

.icon-box.orange {
    background: #fff3e6;
    color: #f97316;
}



.approach-tag {
    color: #1bb55c;
    font-weight: 600;
    letter-spacing: 1px;
}

.approach-title {
    font-size: 42px;
    font-weight: 700;
    color: #0b1f33;
}



.approach-subtitle {
    max-width: 600px;
    margin: auto;
    color: #6b7280;
    font-size: 16px;
}

.approach-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    height: 100%;
    border: 1px solid #e5edf5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-8px);
    border: 1px solid #1560c1;
    box-shadow: 0 12px 26px rgba(21, 96, 193, 0.25);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #ecf7f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-circle i {
    font-size: 26px;
    color: #2563eb;
}


.approach-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.approach-card p {
    font-size: 14px;
    color: #6b7280;
}

/* Outer box */
.supply-wrapper {
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 22px;
    padding: 60px 30px;
}

/* Title */
.supply-title {
    font-size: 25px;
    font-weight: 700;
    color: #0b1f33;
}

/* Steps */
.step-item {
    text-align: center;
}

.step-text {
    margin-top: 12px;
    font-weight: 600;
    color: #0b1f33;
}

/* Gradient Circle */
.circle-gradient {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Arrow */
.step-arrow {
    font-size: 28px;
    color: #94a3b8;
}

/* Description */
.supply-desc {
    max-width: 800px;
    margin: auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}


/* Common Card */
.info-card {
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 24px;
    padding: 32px;
    height: 100%;
}

/* Gradient Card */
.card-gradient {
    background: linear-gradient(135deg, #fff4e6, #f3f8ef);
    border-color: #f3d5a5;
}

/* Icon Box */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.icon-box.blue {
    background: #e8f1ff;
    color: #2563eb;
}

.icon-box.orange {
    background: #ffe6cc;
    color: #ff8a00;
}

/* Text */
.card-tag {
    font-size: 12px;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 4px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #0b1f33;
}

.card-text {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

/* List Box */
.list-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    font-weight: 500;
}

.list-box i {
    color: #ff8a00;
}

/* Rating */
.rating {
    margin-top: 24px;
    font-weight: 500;
    color: #475569;
}

.stars i {
    color: #ff8a00;
    font-size: 18px;
}

.stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

/* Icon */
.stat-card i {
    font-size: 32px;
    color: #0d6efd;
    margin-bottom: 12px;
}

/* Number */
.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #0b1f33;
}

/* Label */
.stat-label {
    font-size: 14px;
    color: #6b7280;
}

/* Hover Effect */
.stat-card:hover {
    border: 1px solid #0d6efd;
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.25);
    transform: translateY(-6px);
}

.strategic-section {
    background: #f8fbfd;
}

.strategic-card {
    background: linear-gradient(180deg, #f1f7fa, #f6fbfd);
    border-radius: 20px;
}

.strategic-badge {
    background: #e7f4ff;
    color: #1e73be;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.strategic-title {
    font-size: 28px;
    font-weight: 700;
    color: #0b1f33;
}

.strategic-desc {
    color: #5f748a;
    font-size: 15px;
    max-width: 520px;
}

.feature-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #2b3d52;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-choose-section {
    background: #f8fbfd;
}

.why-choose-wrapper {
    background: #f4f9fc;
    border-radius: 22px;
}

.why-badge {
    background: #e6f4ff;
    color: #1e73be;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
}

.why-title {
    font-size: 40px;
    font-weight: 700;
    color: #0b1f33;
}



.why-desc {
    color: #5f748a;
    font-size: 15px;
    max-width: 520px;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #2b3d52;
    font-size: 14px;
}

.why-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #35bfa3;
    font-weight: 600;
}

.info-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    height: 100%;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 38px;
    height: 38px;
    background: #eaf4fb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.info-card h6 {
    font-weight: 600;
    margin-bottom: 6px;
    color: #0b1f33;
}

.info-card p {
    font-size: 13px;
    color: #5f748a;
    margin: 0;
}

#contact {
    background: #fdfaf6;
}

#contact .text-warning {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #2f6fd6 !important;
}

#contact h2 {
    color: #1f2937;
}


/* DESCRIPTION */
#contact .lead {
    font-size: 15px;
    color: #7a6f65;
}

/* LEFT CARD */
#contact .card {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* LEFT CARD ICONS ONLY (EXCEPT BUTTON ICON) */
#contact .card i:not(.fa-paper-plane) {
    background: #fff3e6;
    color: #ff8a00 !important;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* LEFT TEXT */
#contact .card p {
    color: #6b7280;
    font-size: 14px;
}

/* RIGHT FORM CARD */
#contact .card-title {
    color: #1f2937;
}

/* FORM INPUTS */
#contact .form-control {
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid #eee;
    padding: 10px 12px;
}

#contact .form-control:focus {
    border-color: #2f6fd6;
    box-shadow: none;
}

/* FORM LABEL */
#contact .form-label {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

/* SEND BUTTON SAME AS SS */
.send-btn {
    background: #2f5fb8 !important;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: #244da0 !important;
    transform: translateY(-2px);
}

.send-btn {
    background: #2f5fb8 !important;
    border: none !important;
    border-radius: 10px;
    color: #fff !important;
    font-weight: 500;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* BUTTON ICON */
.send-btn i {
    background: none !important;
    width: auto !important;
    height: auto !important;
    color: #fff !important;
    display: inline !important;
    position: static !important;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 60px 0;
    }

    .stat-card {
        margin-bottom: 20px;
    }

    .therapeutic-badge {
        font-size: 0.9rem;
        padding: 10px 18px;
        margin: 5px;
    }

    .supply-step .step-circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .supply-step .step-arrow {
        font-size: 1.5rem;
        margin: 0 10px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }

    .top-bar {
        display: none;
    }
}