:root {
    /* ── BRAND COLORS extracted from Millennial Pharmaceuticals logo ── */
    --navy: #1a3d7c;
    /* Primary deep navy blue  – logo letterform  */
    --navy-mid: #1e4d9c;
    /* Mid navy                – icon accent       */
    --navy-deep: #0f2554;
    /* Darkest navy            – navbar/footer     */
    --navy-bg: #081840;
    /* Near-black navy         – dark sections     */

    --gold: #c4900a;
    /* Primary golden amber    – logo swoosh       */
    --gold-mid: #d0a020;
    /* Core gold               – main accent       */
    --gold-light: #e8b82a;
    /* Bright gold             – highlights        */
    --gold-pale: #f5e099;
    /* Pale gold               – tint/badge bg     */

    --cream: #f7f4ed;
    /* Off-white cream         – section bg        */
    --bg-soft: #eef2fa;
    /* Soft blue tint          – card bg           */
    --muted: #5a6783;
    /* Muted blue-gray         – body text         */
    --border: #d6dff0;
    /* Soft navy-tinted border                     */

    --ff-d: 'Cormorant Garamond', serif;
    --ff-b: 'Plus Jakarta Sans', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--ff-b);
    color: var(--navy);
    background: #fff;
    overflow-x: hidden
}

/* ── LOGO IMAGES ── */
.brand-icon-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: contain;
    background: #fff;
    padding: 3px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}

.brand-logo-full {
    height: 46px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* white version on dark navbar */
}

@media(max-width:400px) {
    .brand-logo-full {
        height: 36px
    }
}


/* ── NAVBAR ── */
#mainNav {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px);
    transition: all .35s;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

#mainNav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, .4)
}

.nav-logo{
    width: 100px;
    height: auto;
}

.nav-link {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: var(--navy) !important;
    letter-spacing: .4px;
    padding: 22px 16px !important;
    position: relative;
    transition: color .3s !important
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold-mid);
    transform: scaleX(0);
    transition: transform .3s
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-mid) !important
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1)
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-mid)) !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 10px 26px !important;
    margin-left: 6px;
    font-weight: 600 !important
}

.nav-cta::after {
    display: none !important
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .25) !important
}

.navbar-toggler-icon {
    filter: invert(1)
}

/* ── HERO ── */
#home {
    margin-top: 65px
}

.hero-slide {
    height: 92vh;
    min-height: 580px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 7s ease
}

.owl-item.active .hero-bg {
    transform: scale(1)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(6, 15, 32, .93) 0%, rgba(15, 37, 84, .75) 55%, transparent 100%)
}

.hero-content {
    position: relative;
    z-index: 2
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 144, 10, .18);
    border: 1px solid rgba(208, 160, 32, .5);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
    opacity: 0
}

.slide-h1 {
    font-family: var(--ff-d);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0
}

.slide-p {
    font-size: clamp(.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 34px;
    opacity: 0
}

.slide-btns {
    opacity: 0
}

.owl-item.active .slide-badge {
    animation: fadeUp .6s .25s forwards
}

.owl-item.active .slide-h1 {
    animation: fadeUp .7s .45s forwards
}

.owl-item.active .slide-p {
    animation: fadeUp .7s .65s forwards
}

.owl-item.active .slide-btns {
    animation: fadeUp .7s .82s forwards
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.btn-hp {
    background: linear-gradient(135deg, var(--gold), var(--gold-mid));
    border: none;
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--ff-b);
    box-shadow: 0 8px 28px rgba(196, 144, 10, .45);
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-hp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(196, 144, 10, .6);
    color: #fff
}

.btn-ho {
    border: 2px solid rgba(255, 255, 255, .42);
    color: #fff;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    background: transparent;
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-ho:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff
}

/* owl controls */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, .12) !important;
    border: 1px solid rgba(255, 255, 255, .22) !important;
    color: #fff !important;
    font-size: 18px !important;
    backdrop-filter: blur(6px);
    transition: all .3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important
}

.owl-nav button:hover {
    background: var(--navy) !important;
    border-color: var(--navy) !important
}

.owl-prev {
    left: 20px !important
}

.owl-next {
    right: 20px !important
}

.owl-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10
}

.owl-dot span {
    width: 32px !important;
    height: 3px !important;
    border-radius: 2px !important;
    background: rgba(255, 255, 255, .3) !important;
    transition: all .3s !important;
    margin: 4px !important
}

.owl-dot.active span {
    background: var(--gold-light) !important;
    width: 52px !important
}

/* ── STATS BAR (ODOMETER) ── */
.stats-bar {
    background: var(--navy);
    padding: 46px 0;
    position: relative;
    overflow: hidden
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--gold), var(--gold-light))
}

.stat-block {
    text-align: center;
    padding: 10px 16px
}

.stat-divider {
    border-left: 1px solid rgba(255, 255, 255, .1)
}

.stat-icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(26, 61, 124, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold-mid);
    margin: 0 auto 14px;
    font-size: 40px;
}

.odometer {
    
    font-size: 2.6rem !important;
    font-weight: 700 !important;
    color: var(--gold-mid) !important;
    line-height: 1 !important
}

.stat-suffix {
    font-family: var(--ff-d);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-mid)
}

.stat-label {
    font-size: 11.5px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-top: 6px;
    font-weight: 600;
}

/* ── SECTION LABELS ── */
.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-mid);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px
}

.sec-tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--navy-mid);
    display: inline-block
}

.sec-title {
    font-family: var(--ff-d);
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy)
}

.sec-desc {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8
}

/* ── ABOUT ── */
#about {
    background: var(--cream);
    padding: 90px 0
}

.founder-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 40px rgba(11, 30, 61, .09);
    transition: transform .4s, box-shadow .4s;
    height: 100%
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(11, 30, 61, .16)
}

.fcard-top {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 100%);
    padding: 36px 32px;
    display: flex;
    align-items: flex-end;
    gap: 22px
}

.f-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-d);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    border: 4px solid rgba(255, 255, 255, .2);
    flex-shrink: 0;
    overflow: hidden;
}

.f-title-block {
    padding-bottom: 22px
}

.f-name {
    font-family: var(--ff-d);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15
}

.f-role {
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold-mid);
    margin-top: 5px
}

.fcard-body {
    padding: 28px 32px 32px
}

.qual-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-soft);
    color: var(--navy-mid);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 18px
}

.f-bio {
    font-size: 14px;
    line-height: 1.9;
    color: #4b5563;
    margin-bottom: 20px
}

.exp-list {
    list-style: none;
    padding: 0
}

.exp-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #374151;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6
}

.exp-list li:last-child {
    border-bottom: none
}

.exp-list li .fa-circle-arrow-right {
    color: var(--gold-mid);
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 13px
}

.assoc-title {
    font-size: 10.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin: 18px 0 10px
}

.assoc-chip {
    display: inline-block;
    background: var(--navy-mid);
    color: #fff;
    font-size: 12px;
    padding: 4px 13px;
    border-radius: 12px;
    margin: 3px 3px 3px 0
}

/* ── PRODUCTS ── */
#products {
    padding: 90px 0;
    background: #fff
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.pill-btn {
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s;
    font-family: var(--ff-b)
}

.pill-btn:hover,
.pill-btn.active {
    background: var(--navy-mid);
    color: #fff;
    border-color: var(--navy-mid)
}

.search-wrap {
    position: relative;
    max-width: 280px;
    width: 100%
}

.search-wrap .fa-magnifying-glass {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--navy);
    font-size: 14px
}

.search-wrap input {
    width: 100%;
    padding: 10px 16px 10px 38px;
    border: 1.5px solid var(--border);
    border-radius: 30px;
    font-size: 14px;
    font-family: var(--ff-b);
    outline: none;
    transition: border-color .3s
}

.search-wrap input:focus {
    border-color: var(--navy-mid);
    box-shadow: 0 0 0 3px rgba(26, 61, 124, .1)
}

.product-card {
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 22px 22px 18px;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    height: 100%;
    display: flex;
    flex-direction: column
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--navy), var(--gold-light))
}

.product-card:hover {
    border-color: var(--navy-mid);
    box-shadow: 0 14px 48px rgba(26, 61, 124, .12);
    transform: translateY(-4px)
}

.prod-sr {
    font-size: 10.5px;
    color: var(--gold-mid);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px
}

.prod-name {
    font-family: var(--ff-d);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 9px
}

.prod-mol {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 14px
}

.prod-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9
}

.prod-pack {
    font-size: 12px;
    background: var(--bg-soft);
    color: var(--navy-mid);
    padding: 4px 12px;
    border-radius: 10px
}

.prod-mrp {
    font-weight: 700;
    color: var(--navy-mid);
    font-size: 1.1rem
}

.prod-mrp small {
    font-size: 11px;
    font-weight: 400;
    color: var(--muted)
}

.btn-show-more {
    border: 2px solid var(--navy-mid);
    color: var(--navy-mid);
    background: transparent;
    padding: 13px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    font-family: var(--ff-b);
    transition: all .3s
}

.btn-show-more:hover {
    background: var(--navy-mid);
    color: #fff
}

/* ── CONTACT ── */
#contact {
    background: var(--navy-bg);
    padding: 90px 0
}

.c-tag {
    color: var(--gold-light)
}

.c-tag::before {
    background: var(--gold-light)
}

.c-title {
    color: #fff
}

.c-desc {
    color: rgba(255, 255, 255, .6)
}

.c-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px
}

.c-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    background: rgba(26, 61, 124, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold-light)
}

.c-item h5 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 3px
}

.c-item p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .55);
    margin: 0
}

.form-card {
    background: #fff;
    border-radius: 22px;
    padding: 44px 42px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, .3)
}

.form-card-title {
    font-family: var(--ff-d);
    font-size: 1.7rem;
    color: var(--navy);
    margin-bottom: 28px
}

.form-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px
}

.form-control,
.form-select {
    border: 1.5px solid var(--border) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-family: var(--ff-b) !important;
    color: var(--navy) !important
}

.form-control:focus,
.form-select:focus {
    border-color: var(--navy-mid) !important;
    box-shadow: 0 0 0 3px rgba(26, 61, 124, .1) !important
}

textarea.form-control {
    min-height: 120px;
    resize: vertical
}

.btn-submit {
    background: linear-gradient(135deg, var(--navy), var(--navy));
    color: #fff;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--ff-b);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .3s
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26, 61, 124, .35)
}

.form-success-msg {
    display: none;
    background: #d1fae5;
    border: 1px solid #34d399;
    border-radius: 10px;
    padding: 13px 18px;
    color: #065f46;
    font-size: 14px;
    text-align: center;
    margin-top: 12px;
    font-weight: 500
}

/* ── FOOTER ── */
footer {
    background: var(--navy-deep);
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.foot-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, .4)
}

.foot-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    margin-left: 24px;
    transition: color .3s
}

.foot-links a:hover {
    color: var(--gold-light)
}

/* ── SCROLL TOP ── */
#goTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--gold-light));
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 6px 22px rgba(200, 144, 10, .38);
    transition: all .3s
}

#goTop.show {
    display: flex
}

#goTop:hover {
    transform: translateY(-3px)
}

@media(max-width:767px) {
    .fcard-top {
        flex-direction: column;
        align-items: flex-start
    }

    .form-card {
        padding: 30px 22px
    }

    .stat-divider {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }
}