/* ==================================================
   SRUJAN PHARMA
   GLOBAL STYLES
   Version: 1.0
================================================== */

/* ==========================================
   GOOGLE FONTS
========================================== */

:root {

    /* Brand Colors */

    --primary-color: #0B2D4A;
    --primary-dark: #071F33;

    --secondary-color: #69B000;
    --secondary-dark: #568F00;

    /* Typography */

    --heading-color: #0B2D4A;
    --text-color: #5C6670;

    /* Background */

    --white-color: #ffffff;
    --bg-light: #F5F8FB;
    --bg-soft-green: #F7FAF2;

    /* Border */

    --border-color: #E4EAF0;

    /* Radius */

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Shadow */

    --shadow-sm: 0 4px 20px rgba(11, 45, 74, 0.06);
    --shadow-md: 0 10px 35px rgba(11, 45, 74, 0.10);

    /* Animation */

    --transition: all .3s ease;
}

/* ==========================================
   RESET
========================================== */
*,
*::before,
*::after {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;

}

@supports not (overflow: clip) {

    html {

        overflow-x: hidden;

    }

}

body {

    width: 100%;
    max-width: 100%;

    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-color);
    background: #fff;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

}

img,
svg,
video,
iframe {

    max-width: 100%;
    height: auto;
    display: block;

}

[class*="col-"] {

    min-width: 0;

}

@media (max-width: 767.98px) {

    .container {

        padding-left: 16px;
        padding-right: 16px;

    }

}

/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f3f5f7;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ==========================================
   SELECTION
========================================== */

::selection {
    background: var(--secondary-color);
    color: #fff;
}

/* ==========================================
   IMAGES
========================================== */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   LINKS
========================================== */

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ==========================================
   LISTS
========================================== */

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ==========================================
   TYPOGRAPHY
========================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--heading-color);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0;
}

h1 {
    font-size: clamp(42px, 6vw, 72px);
}

h2 {
    font-size: clamp(32px, 4vw, 54px);
}

h3 {
    font-size: clamp(24px, 3vw, 36px);
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

p {
    margin-bottom: 0;
}

/* ==========================================
   FORM ELEMENTS
========================================== */

button,
input,
textarea,
select {
    font-family: inherit;
    outline: none;
    border: none;
}

textarea {
    resize: none;
}

/* ==========================================
   SECTION SPACING
========================================== */

.section-padding {
    padding: 120px 0;
}

.section-padding-sm {
    padding: 80px 0;
}

/* ==========================================
   SECTION TITLE
========================================== */

.section-title {
    margin-bottom: 60px;
}

.section-title .subtitle {

    display: inline-block;

    color: var(--secondary-color);

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2px;

    margin-bottom: 15px;
}

.section-title h2 {
    margin-bottom: 20px;
}

.section-title p {
    max-width: 700px;
}

/* ==========================================
   BUTTONS
========================================== */

.btn-primary-custom {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 56px;

    padding: 0 32px;

    border-radius: 50px;

    background: var(--primary-color);

    color: #fff;

    font-weight: 600;

    transition: var(--transition);
}

.btn-primary-custom:hover {

    background: var(--secondary-color);

    color: #fff;

    transform: translateY(-2px);
}

.btn-outline-custom {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;

    padding: 0 32px;

    border-radius: 50px;

    border: 2px solid var(--primary-color);

    color: var(--primary-color);

    font-weight: 600;

    transition: var(--transition);
}

.btn-outline-custom:hover {

    background: var(--primary-color);

    color: #fff;
}

/* ==========================================
   CARDS
========================================== */

.custom-card {

    background: #fff;

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.custom-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

/* ==========================================
   BACKGROUNDS
========================================== */

.bg-light-custom {
    background: var(--bg-light);
}

.bg-soft-green {
    background: var(--bg-soft-green);
}

/* ==========================================
   BOOTSTRAP CONTAINER OVERRIDE
========================================== */

.container {
    max-width: 1320px;
}

/* ==========================================
   AOS FIX
========================================== */

[data-aos] {
    overflow-anchor: none;
}

/* ==========================================
   HEADER
========================================== */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 999;

    transition:
        background .4s ease,
        backdrop-filter .4s ease,
        box-shadow .4s ease;
}

.site-header.scrolled {

    background: rgba(255, 255, 255, 0.68);

    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);

    border-bottom: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        0 10px 40px rgba(11, 45, 74, 0.08);

}

/* ==========================================
   NAVBAR
========================================== */

.navbar {

    min-height: 90px;

    padding: 0;
}

.navbar-brand img {

    height: 60px;
    width: auto;
}

/* ==========================================
   MENU
========================================== */

.navbar-nav {

    gap: 10px;
}

.nav-link {

    position: relative;

    color: var(--heading-color);

    font-size: 15px;

    font-weight: 600;

    padding: 10px 18px !important;

    transition: .3s;
}

.nav-link:hover,
.nav-link.active {

    color: var(--secondary-color);
}

.nav-link::after {

    content: '';

    position: absolute;

    left: 18px;
    bottom: 4px;

    width: 0;

    height: 2px;

    background: var(--secondary-color);

    transition: .3s;
}

.nav-link:hover::after,
.nav-link.active::after {

    width: calc(100% - 36px);
}

/* CTA MENU BUTTON */

.nav-cta {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: var(--secondary-color);

    color: #fff !important;

    border-radius: 999px;

    padding: 12px 24px !important;

    box-shadow:
        0 10px 25px rgba(105, 176, 0, .20);

    transition: .3s;
}

.nav-cta:hover {

    background: var(--primary-color);

    color: #fff !important;

    transform: translateY(-3px);
}

.nav-cta::after {
    display: none;
}

/* ==========================================
   TOGGLER
========================================== */

.navbar-toggler {

    border: 0;

    padding: 0;

    width: 48px;
    height: 48px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 6px;
}

.navbar-toggler:focus {

    box-shadow: none;
}

.navbar-toggler span {

    width: 28px;
    height: 2px;

    margin: 0 auto;

    background: var(--primary-color);

    transition: .3s;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:991px) {

    .navbar {

        min-height: 80px;
    }

    .navbar-collapse {

        margin-top: 20px;

        background: #fff;

        border-radius: 24px;

        padding: 25px;

        box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    }

    .navbar-nav {

        gap: 0;
    }

    .nav-link {

        padding: 14px 0 !important;
    }

    .nav-link::after {

        display: none;
    }

    .nav-cta {

        width: fit-content;

        margin-top: 10px;

        padding: 12px 22px !important;

        display: inline-flex;

        align-items: center;

        justify-content: center;
    }

}

/* ==========================================
   HERO
========================================== */

.hero-section {

    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background:
        url('../images/hero/hero-bg.avif') center center / cover no-repeat;
}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(255, 255, 255, 0.562);

    backdrop-filter: blur(2px);
}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: auto;
}

.hero-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 999px;

    background: rgba(255, 255, 255, .9);

    border: 1px solid rgba(0, 0, 0, .05);

    color: var(--primary-color);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 30px;

    text-transform: uppercase;
}

.hero-content h1 {
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-content h1 span {

    display: block;

    color: var(--secondary-color);
}

.hero-content p {

    max-width: 760px;

    margin: 0 auto;

    font-size: 22px;

    line-height: 1.8;

    margin-bottom: 45px;
}

/* Buttons */

.hero-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.hero-btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;    

    height: 64px;

    border-radius: 999px;

    background: var(--secondary-color);

    color: #fff;

    font-weight: 700;

    padding: 15px 30px;

    box-shadow:
        0 15px 35px rgba(105, 176, 0, .25);
}

.hero-btn-primary:hover {

    background: var(--primary-color);

    color: #fff;
}

.hero-btn-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;    

    height: 64px;

    border-radius: 999px;

    background: #fff;

    color: var(--heading-color);

    border: 1px solid var(--border-color);

    font-weight: 700;

    padding: 15px 30px;
}

/* ==========================================
   PRODUCT CATEGORIES
========================================== */

.product-categories {

    position: relative;

    padding-top: 0;
}

.section-header {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 30px;

    margin-bottom: 60px;
}

.section-tag {

    display: inline-block;

    color: var(--secondary-color);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.section-header h2 {

    max-width: 700px;

    margin-bottom: 20px;
}

.section-header p {

    max-width: 700px;
}

.view-all-link {

    color: var(--primary-color);

    font-weight: 700;

    display: flex;

    align-items: center;

    gap: 10px;
}

/* Card */

.category-card {

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    height: 100%;

    text-decoration: none;

    color: inherit;

    border-top: 4px solid transparent;
    padding: 15px;
    min-height: 340px;

}


.category-card:hover {

    transform: translateY(-10px);

    background: #fff;

    border-color: rgba(105, 176, 0, .2);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);
    border-top-color: var(--secondary-color);
}

.category-card .card-footer i {

    transition: .3s ease;
}

.category-card:hover .card-footer i {

    transform: translateX(5px);
}

.category-badge {

    display: inline-block;

    padding: 8px 14px;

    border-radius: 999px;

    background: #eef7df;

    color: var(--secondary-color);

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 25px;
}

.category-card h3 {

    font-size: 28px;

    margin-bottom: 15px;
}

.category-card p {

    margin-bottom: 40px;
}

.card-footer {

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.card-footer i {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #f5f5f5;
}

/* ==========================================
   ABOUT
========================================== */

.about-section {

    background: #fff;
}

.about-section h2 {

    margin-bottom: 25px;
}

.about-section p {

    font-size: 18px;

    line-height: 1.8;
}

.about-highlights {

    margin-top: 35px;

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.highlight-item {

    display: flex;

    align-items: flex-start;

    gap: 16px;
}

.highlight-icon {

    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    background: rgba(105, 176, 0, .12);

    color: var(--secondary-color);

    font-size: 22px;
}

.highlight-item h5 {

    margin-bottom: 5px;

    font-size: 18px;

    font-weight: 700;
}

.highlight-item p {

    margin: 0;

    font-size: 15px;

    line-height: 1.6;
}

/* Image */

.about-image-wrapper {

    position: relative;
}

.about-image-wrapper img {

    width: 100%;

    border-radius: 32px;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .08);
}

/* Floating Card */

.experience-card {

    position: absolute;

    bottom: 30px;
    left: -30px;

    background: #fff;

    padding: 30px;

    border-radius: 24px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);

    text-align: center;
}

.experience-card h3 {

    font-size: 54px;

    color: var(--secondary-color);

    margin-bottom: 5px;
}

.experience-card span {

    font-weight: 600;
}

/* ==========================================
   OPERATIONAL VERIFICATION
========================================== */

.verification-section {

    background: #f8faf8;
}

.verification-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.verification-card {

    background: #fff;

    padding: 35px;

    border-radius: 24px;

    border: 1px solid #edf2ed;

    transition: .3s ease;
}

.verification-card:last-child {

    grid-column: span 2;
}

.verification-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .06);
}

.verification-card h4 {

    margin-bottom: 12px;
}

.classification-section {

    background: #fff;

    text-align: center;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 767.98px) {

    .verification-grid {

        grid-template-columns: 1fr;

        gap: 20px;
    }

    .verification-card {

        padding: 25px;
    }

    .verification-card:last-child {

        grid-column: auto;
    }

    .verification-card h4 {

        font-size: 24px;
    }

    .verification-card p {

        margin-bottom: 0;
    }

}

/* ==========================================
   CLASSIFICATION CARDS
========================================== */

.product-classification-cards {

    background: #f8faf8;
}

.classification-card {

    height: 100%;

    display: flex;

    flex-direction: column;

    background: #fff;

    padding: 40px;

    border-radius: 30px;

    border: 1px solid #edf2ed;

    transition: .4s ease;
}

.classification-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .06);
}

.card-label {

    display: inline-block;

    margin-bottom: 20px;

    color: var(--secondary-color);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;
}

.classification-card h3 {

    margin-bottom: 20px;
}

.classification-card ul {

    list-style: none;

    padding: 0;

    margin: 25px 0;
}

.classification-card li {

    margin-bottom: 12px;
}

.classification-card .hero-btn-primary {

    margin-top: auto;
}

.classification-card ul {

    list-style: none;

    padding: 0;

    margin: 25px 0 30px;
}

/* ==========================================
   FOOTER
========================================== */

.site-footer {

    background: #0b2d4a;

    color: rgba(255, 255, 255, .75);

    padding-top: 90px;
}

.footer-top {

    padding-bottom: 60px;
}

.footer-logo img {

    max-height: 60px;

    margin-bottom: 25px;
}

.footer-desc {

    max-width: 350px;

    line-height: 1.8;

    margin-bottom: 30px;
}

/* Social */

.footer-social {

    display: flex;

    gap: 12px;
}

.footer-social a {

    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, .08);

    color: #fff;

    transition: .3s ease;
}

.footer-social a:hover {

    background: var(--secondary-color);

    transform: translateY(-3px);
}

/* Titles */

.site-footer h5 {

    color: #fff;

    margin-bottom: 25px;

    font-size: 20px;
}

/* Lists */

.site-footer ul {

    padding: 0;

    margin-top: 20px;

    list-style: none;
}

.site-footer ul li {

    margin-bottom: 14px;
}

.site-footer ul li a {

    color: rgba(255, 255, 255, .75);

    transition: .3s;
}

.site-footer ul li a:hover {

    color: var(--secondary-color);

    padding-left: 5px;
}

/* Contact */

.footer-contact li {

    display: flex;

    gap: 12px;

    align-items: flex-start;
}

.footer-contact i {

    color: var(--secondary-color);

    margin-top: 4px;
}

/* Bottom */

.footer-bottom {

    border-top:
        1px solid rgba(255, 255, 255, .1);

    padding: 25px 0;
}

.footer-bottom p {

    margin: 0;
}

/* ==========================================
   PRODUCTS HERO
========================================== */

.products-hero {

    position: relative;

    padding: 220px 0 120px;

    background:
        linear-gradient(
            rgba(248, 250, 248, 0.9),
            rgba(238, 245, 239, 0.7)
        ),
        url('../images/hero/product-banner.avif') center center / cover no-repeat;

    overflow: hidden;
}

.products-hero::before {

    content: '';

    position: absolute;

    top: -100px;
    right: -100px;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background:
        rgba(105, 176, 0, .08);
}

.products-hero-content {    

    margin: 0 auto;

    text-align: center;

    position: relative;

    z-index: 2;
}

.products-hero h1 {

    font-size: clamp(48px, 6vw, 72px);

    margin-bottom: 25px;
}

.products-hero h4 {

    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: normal;
}

.products-hero p {

    max-width: 750px;

    margin: 0 auto;

    font-size: 20px;

    line-height: 1.8;
}

/* ==========================================
   PRODUCT NAVIGATION
========================================== */

.product-nav {

    position: sticky;

    top: 91px;

    z-index: 100;

    background: rgba(255, 255, 255, .9);

    backdrop-filter: blur(20px);

    -webkit-backdrop-filter: blur(20px);

    border-top: 1px solid rgba(0, 0, 0, .05);

    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.product-nav-wrapper {

    display: flex;

    align-items: center;

    gap: 12px;

    overflow-x: auto;

    padding: 18px 0;

    scrollbar-width: none;
}

.product-nav-wrapper a.active {

    background: var(--secondary-color);

    border-color: var(--secondary-color);

    color: #fff;

    box-shadow:
        0 8px 20px rgba(105, 176, 0, .25);
}

.product-nav-wrapper::-webkit-scrollbar {

    display: none;
}

.product-nav-wrapper a {

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;

    white-space: nowrap;

    padding: 12px 22px;

    border-radius: 999px;

    background: #fff;

    border: 1px solid #e8ecef;

    color: var(--heading-color);

    font-size: 14px;

    font-weight: 600;

    transition: .3s ease;
}

.product-nav-wrapper a:hover {

    background: var(--secondary-color);

    border-color: var(--secondary-color);

    color: #fff;
}

/* ==========================================
   PRODUCTS INTRODUCTION
========================================== */

.products-intro-section {

    background: #fff;

    position: relative;
}

.products-intro-section::after {

    content: '';

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: #edf2ed;
}

.products-intro-section h2 {

    margin-bottom: 0;
}

.products-intro-content {

    position: relative;

    padding-left: 40px;
}

.products-intro-content::before {

    content: '';

    position: absolute;

    left: 0;
    top: 5px;

    width: 4px;
    height: calc(100% - 10px);

    border-radius: 10px;

    background: var(--secondary-color);
}

.products-intro-content p {

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 20px;
}

.products-intro-content p:last-child {

    margin-bottom: 0;
}

@media (max-width: 991px) {

    .products-intro-content {

        padding-left: 25px;
    }

    .products-intro-content p {

        font-size: 16px;
    }

}

/* ==========================================
   INGREDIENT PORTFOLIO
========================================== */

.ingredient-portfolio-section {

    background: #f8faf8;
}

.ingredient-card {

    height: 100%;

    display: flex;

    flex-direction: column;

    padding: 35px;

    border-radius: 28px;

    background: #fff;

    border: 1px solid #edf2ed;

    transition: .35s ease;
}

.ingredient-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.06);
}

.ingredient-card h3 {

    margin-bottom: 15px;

    font-size: 24px;
}

.ingredient-card p {

    margin-bottom: 25px;
}

.ingredient-card ul {

    padding: 0;

    margin: 0 0 30px;

    list-style: none;
}

.ingredient-card li {

    position: relative;

    padding-left: 24px;

    margin-bottom: 10px;
}

.ingredient-card li::before {

    content: '✓';

    position: absolute;

    left: 0;

    color: var(--secondary-color);

    font-weight: 700;
}

.ingredient-btn {

    margin-top: auto;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 24px;

    border-radius: 999px;

    background: var(--secondary-color);

    color: #fff;

    font-weight: 600;
}

/* ==========================================
   QUALITY ASSURANCE
========================================== */

.quality-assurance-section {

    background: #fff;
}

.quality-documents-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;
}

.document-item {

    padding: 20px 24px;

    border-radius: 16px;

    background: #f8faf8;

    border: 1px solid #edf2ed;

    position: relative;

    padding-left: 50px;
}

.document-item::before {

    content: '✓';

    position: absolute;

    left: 20px;

    color: var(--secondary-color);

    font-weight: 700;
}

.industries-served-section {

    background: #f8faf8;
}

/* ==========================================
   PROCUREMENT ADVANTAGES
========================================== */

.procurement-advantages-section {

    background: #fff;
}

.advantage-card {

    height: 100%;

    padding: 35px;

    border-radius: 24px;

    background: #fff;

    border: 1px solid #edf2ed;

    transition: .3s ease;
}

.advantage-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.06);
}

.advantage-card h4 {

    margin-bottom: 15px;
}

/* ==========================================
   PRODUCTS CTA
========================================== */

.products-cta-section {

    padding: 120px 0;

    background: #f8faf8;
}

.products-cta-wrapper {

    text-align: center;

    max-width: 1000px;

    margin: 0 auto;

    padding: 80px 50px;

    border-radius: 40px;

    background:
        linear-gradient(
            135deg,
            #0b2d4a,
            #143c5e
        );
}

.products-cta-wrapper h2 {

    color: #fff;

    margin-bottom: 20px;
}

.products-cta-wrapper p {

    color: rgba(255,255,255,.85);

    max-width: 700px;

    margin: 0 auto 35px;
}

.products-cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

/* ==========================================
   PRODUCT CATEGORY
========================================== */

.product-category {
    scroll-margin-top: 80px;
    padding: 60px 0;
}

.product-category:nth-child(even) {

    background: #f8faf8;
}

.category-image {

    position: relative;
}

.category-image img {

    width: 100%;

    aspect-ratio: 4/5;
    object-fit: cover;

    border-radius: 32px;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .08);

    transition: .4s ease;
}

.category-image:hover img {

    transform: scale(1.03);
}

.product-category h2 {

    margin-bottom: 20px;
}

.product-category p {

    margin-bottom: 35px;

    font-size: 18px;

    line-height: 1.8;
}

/* ==========================================
   PRODUCT LIST
========================================== */

.product-list {

    border-top:
        1px solid #e8ecef;
}

.product-item {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 18px 0;

    border-bottom:
        1px solid #e8ecef;

    transition: .3s ease;
}

.product-item:hover {

    padding-left: 12px;
}

.product-item span {

    font-size: 17px;

    font-weight: 600;

    color: var(--heading-color);
}

.product-item small {

    font-size: 14px;

    font-weight: 700;

    color: var(--secondary-color);
}

#nutrition .product-list {
    columns: 2;
    column-gap: 40px;
}

#nutrition .product-item {
    break-inside: avoid;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .products-hero {

        padding: 180px 0 80px;
    }

    .product-category {

        padding: 80px 0;
    }

    .category-image {

        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {

    .products-hero h1 {

        font-size: 42px;
    }

    .products-hero p {

        font-size: 18px;
    }

    .product-item {

        flex-direction: column;

        align-items: flex-start;

        gap: 6px;
    }

    .product-nav {

        top: 72px;
    }
}

/* ==========================================
   PRODUCT NAV MOBILE
========================================== */

@media (max-width: 767px) {

    .product-nav {

        top: 72px;
        /* header height ke hisab se adjust kar lena */
    }

    .product-nav-wrapper {

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;

        scroll-snap-type: x proximity;

        padding: 14px 0;

        gap: 10px;
    }

    .product-nav-wrapper a {

        flex-shrink: 0;

        scroll-snap-align: start;

        padding: 10px 18px;

        font-size: 13px;
    }

}

/* Right fade indicator */

.product-nav {

    position: sticky;
}

.product-nav::after {

    content: '';

    position: absolute;

    top: 0;
    right: 0;

    width: 40px;
    height: 100%;

    pointer-events: none;

    background:
        linear-gradient(to left,
            rgba(255, 255, 255, 1),
            rgba(255, 255, 255, 0));
}

/* ==========================================
   ABOUT HERO
========================================== */

.about-hero {

    padding: 220px 0 120px;

    background:
        linear-gradient(
            rgba(248, 250, 248, 0.85),
            rgba(238, 245, 239, 0.85)
        ),
        url('../images/hero/about-banner.avif') center center / cover no-repeat;

    position: relative;

    overflow: hidden;
}

.about-hero::before {

    content: '';

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        rgba(105, 176, 0, .08);

    top: -200px;
    right: -150px;
}

.about-hero-content {

    max-width: 900px;

    margin: 0 auto;

    text-align: center;

    position: relative;

    z-index: 2;
}

.about-hero h1 {

    font-size: clamp(48px, 6vw, 72px);

    margin-bottom: 25px;
}

.about-hero h4 {

    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: normal;
}

.about-hero p {

    max-width: 750px;

    margin: 0 auto;

    font-size: 20px;

    line-height: 1.8;
}

/* ==========================================
   ABOUT INTRO
========================================== */

.about-intro {

    background: #fff;
}

.about-image img {

    width: 100%;

    border-radius: 32px;

    aspect-ratio: 4/5;

    object-fit: cover;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .08);
}

.about-intro h2 {

    margin-bottom: 25px;
}

.about-intro p {

    margin-bottom: 20px;

    font-size: 18px;

    line-height: 1.8;
}

/* ==========================================
   MISSION
========================================== */

.mission-section {

    background: #f8faf8;
}

.mission-card {

    background: #fff;

    padding: 50px 40px;

    border-radius: 30px;

    height: 100%;

    border: 1px solid #edf2ed;

    transition: .3s ease;
}

.mission-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .06);
}

.mission-card i {

    width: 70px;
    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background:
        rgba(105, 176, 0, .12);

    color: var(--secondary-color);

    font-size: 28px;

    margin-bottom: 25px;
}

.mission-card h3 {

    margin-bottom: 15px;
}

.mission-card p {

    margin: 0;
}

/* ==========================================
   COMPANY STATS
========================================== */

.company-stats-section {

    background: #f8faf8;
}

.company-stat-card {

    height: 100%;

    background: #fff;

    padding: 40px 25px;

    text-align: center;

    border-radius: 30px;

    border: 1px solid #edf2ed;

    transition: .3s ease;
}

.company-stat-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.06);
}

.stat-icon {

    width: 80px;
    height: 80px;

    margin: 0 auto 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background:
        rgba(105,176,0,.12);

    color: var(--secondary-color);

    font-size: 30px;
}

.company-stat-card h3 {

    font-size: 52px;

    color: var(--primary-color);

    margin-bottom: 10px;

    font-weight: 700;
}

.company-stat-card p {

    margin: 0;

    font-size: 16px;

    line-height: 1.6;
}

.global-presence-card {

    margin-top: 50px;

    text-align: center;

    background: #fff;

    padding: 40px;

    border-radius: 30px;

    border: 1px solid #edf2ed;

    max-width: 700px;

    margin-left: auto;
    margin-right: auto;

    transition: .3s ease;
}

.global-presence-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.06);
}

.global-icon {

    width: 90px;
    height: 90px;

    margin: 0 auto 20px;

    border-radius: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(105,176,0,.12);

    color: var(--secondary-color);

    font-size: 34px;
}

.global-presence-card h4 {

    margin-bottom: 10px;
}

.global-presence-card p {

    margin: 0;

    font-size: 18px;
}

.supply-section {
    background: #fff;
}

.supply-card {
    height: 100%;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid #edf2ed;
    background: #fff;
    transition: .3s ease;
}

.supply-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.06);
}

.supply-card h4 {
    margin-bottom: 15px;
}

/* ==========================================
   WHY SRUJAN PHARMA
========================================== */

.why-srujan-section {

    background: #f8faf8;
}

.why-srujan-card {

    height: 100%;

    padding: 35px;

    background: #fff;

    border-radius: 28px;

    border: 1px solid #edf2ed;

    transition: .35s ease;
}

.why-srujan-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.06);
}

.why-icon {

    width: 72px;
    height: 72px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background:
        rgba(105,176,0,.12);

    color: var(--secondary-color);

    font-size: 28px;
}

.why-srujan-card h4 {

    margin-bottom: 15px;

    font-size: 22px;
}

.why-srujan-card p {

    margin: 0;

    line-height: 1.8;
}

/* ==========================================
   QUALITY & COMPLIANCE
========================================== */

.compliance-section {

    background: #fff;
}

.compliance-section h2 {

    margin-bottom: 20px;
}

.compliance-list {

    margin-top: 35px;

    display: grid;

    gap: 18px;
}

.compliance-item {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 20px;

    background: #f8faf8;

    border-radius: 16px;

    border: 1px solid #edf2ed;

    transition: .3s ease;
}

.compliance-item:hover {

    transform: translateX(8px);

    border-color: var(--secondary-color);
}

.compliance-item i {

    color: var(--secondary-color);

    font-size: 18px;
}

.compliance-item span {

    font-weight: 500;
}

.compliance-image {

    position: relative;
}

.compliance-image img {

    width: 100%;

    border-radius: 32px;

    aspect-ratio: 4/5;

    object-fit: cover;

    box-shadow:
        0 25px 50px rgba(0,0,0,.08);
}

@media (max-width: 991px) {

    .compliance-image {

        margin-top: 20px;
    }

    .compliance-image img {

        aspect-ratio: 16/10;
    }

}

/* ==========================================
   INDUSTRIES WE SUPPORT
========================================== */

.industries-support-section {

    background: #f8faf8;
}

.industry-support-card {

    height: 100%;

    text-align: center;

    padding: 35px 25px;

    background: #fff;

    border-radius: 24px;

    border: 1px solid #edf2ed;

    transition: .35s ease;
}

.industry-support-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.06);
}

.industry-support-card i {

    width: 80px;
    height: 80px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background:
        rgba(105,176,0,.12);

    color: var(--secondary-color);

    font-size: 32px;
}

.industry-support-card h4 {

    margin: 0;

    font-size: 18px;

    line-height: 1.5;
}

/* ==========================================
   GLOBAL REACH
========================================== */

.global-reach-section {

    background: #fff;
}

.global-map {

    position: relative;
}

.global-map img {

    width: 100%;

    border-radius: 30px;

    box-shadow:
        0 25px 50px rgba(0,0,0,.08);
}

.global-reach-section h2 {

    margin-bottom: 20px;
}

.global-regions {

    margin-top: 35px;

    display: flex;

    flex-wrap: wrap;

    gap: 15px;
}

.region-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 20px;

    border-radius: 999px;

    background: #f8faf8;

    border: 1px solid #edf2ed;

    transition: .3s ease;
}

.region-item:hover {

    background: var(--secondary-color);

    border-color: var(--secondary-color);

    color: #fff;
}

.region-item i {

    color: var(--secondary-color);
}

.region-item:hover i {

    color: #fff;
}

/* ==========================================
   ABOUT CTA
========================================== */

.about-cta-section {

    padding: 120px 0;

    background: #f8faf8;
}

.about-cta-wrapper {

    max-width: 1100px;

    margin: 0 auto;

    text-align: center;

    padding: 90px 60px;

    border-radius: 40px;

    background:
        linear-gradient(
            135deg,
            #0b2d4a,
            #143c5e
        );

    position: relative;

    overflow: hidden;
}

.about-cta-wrapper::before {

    content: '';

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        rgba(105,176,0,.12);

    top: -150px;
    right: -100px;
}

.about-cta-wrapper::after {

    content: '';

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.05);

    bottom: -120px;
    left: -80px;
}

.about-cta-wrapper>* {

    position: relative;

    z-index: 2;
}

.about-cta-wrapper h2 {

    color: #fff;

    margin-bottom: 25px;
}

.about-cta-wrapper p {

    max-width: 800px;

    margin: 0 auto 40px;

    color: rgba(255,255,255,.85);

    font-size: 18px;

    line-height: 1.8;
}

.about-cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

/* ==========================================
   ABOUT RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .about-hero {

        padding: 180px 0 90px;
    }

    .mission-card {

        padding: 40px 30px;
    }

}

@media (max-width: 767px) {

    .about-hero h1 {

        font-size: 42px;
    }

    .about-hero p {

        font-size: 18px;
    }

    .about-image img {

        aspect-ratio: 1/1;
    }

    .mission-card,
    .feature-card {

        padding: 30px 25px;
    }
}

/* ==========================================
   CONTACT HERO
========================================== */

.contact-hero {

    padding: 220px 0 120px;

    background:
        linear-gradient(
            rgba(248, 250, 248, 0.85),
            rgba(238, 245, 239, 0.85)
        ),
        url('../images/hero/contact-banner.avif') center center / cover no-repeat;

    text-align: center;
}

.contact-hero-content {

    max-width: 850px;

    margin: 0 auto;
}

.contact-hero h1 {

    font-size: clamp(48px, 6vw, 72px);

    margin-bottom: 25px;
}

.contact-hero h4 {

    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: normal;
}

.contact-hero p {

    max-width: 700px;

    margin: 0 auto;

    font-size: 20px;
}


/* ==========================================
   CONTACT INFORMATION
========================================== */

.contact-info-section {

    background: #fff;
}

.contact-info-card {

    height: 100%;

    background: #fff;

    padding: 40px 30px;

    text-align: center;

    border-radius: 28px;

    border: 1px solid #edf2ed;

    transition: .3s ease;
}

.contact-info-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.06);
}

.contact-icon {

    width: 80px;
    height: 80px;

    margin: 0 auto 20px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(105,176,0,.12);

    color: var(--secondary-color);

    font-size: 30px;
}

.contact-info-card h4 {

    margin-bottom: 15px;
}

.contact-info-card a {

    color: var(--heading-color);

    font-weight: 600;
}

.contact-extra-info {

    margin-top: 50px;
}

.extra-info-card {

    height: 100%;

    padding: 35px;

    border-radius: 24px;

    background: #f8faf8;

    border: 1px solid #edf2ed;
}

.extra-info-card h4 {

    margin-bottom: 15px;
}

.extra-info-card p:last-child {

    margin-bottom: 0;
}

/* ==========================================
   RFQ FORM
========================================== */

.rfq-section {

    background: #f8faf8;
}

.rfq-form-wrapper {

    background: #fff;

    padding: 50px;

    border-radius: 32px;

    border: 1px solid #edf2ed;
}

.rfq-form-wrapper h2 {

    margin-bottom: 35px;
}

.rfq-form label {

    display: block;

    margin-bottom: 10px;

    font-weight: 600;

    color: var(--heading-color);
}

.rfq-form .form-control {

    height: 58px;

    border-radius: 14px;

    border: 1px solid #dfe6df;

    padding: 0 18px;

    box-shadow: none;
}

.rfq-form textarea.form-control {

    height: auto;

    padding: 16px 18px;
}

.rfq-form .form-control:focus {

    border-color: var(--secondary-color);

    box-shadow: none;
}

.rfq-info-card {

    background:
        linear-gradient(
            135deg,
            #0b2d4a,
            #143c5e
        );

    color: #fff;

    padding: 40px;

    border-radius: 30px;

    position: sticky;

    top: 120px;
}

.rfq-info-card h4 {

    color: #fff;

    margin-bottom: 20px;
}

.rfq-info-card p {

    color: rgba(255,255,255,.85);

    margin-bottom: 30px;
}

.rfq-info-item {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 20px;
}

.rfq-info-item i {

    color: var(--secondary-color);

    font-size: 18px;
}

/* ==========================================
   WHAT WE CAN HELP YOU WITH
========================================== */

.help-section {

    background: #fff;
}

.help-card {

    height: 100%;

    background: #fff;

    padding: 35px;

    border-radius: 28px;

    border: 1px solid #edf2ed;

    transition: .35s ease;
}

.help-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.06);
}

.help-icon {

    width: 72px;
    height: 72px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background:
        rgba(105,176,0,.12);

    color: var(--secondary-color);

    font-size: 28px;
}

.help-card h4 {

    margin-bottom: 15px;

    font-size: 22px;
}

.help-card p {

    margin: 0;

    line-height: 1.8;
}

/* ==========================================
   WHY CONTACT SRUJAN PHARMA
========================================== */

.why-contact-section {

    background: #f8faf8;
}

.why-contact-card {

    height: 100%;

    background: #fff;

    padding: 35px;

    border-radius: 28px;

    border: 1px solid #edf2ed;

    transition: .35s ease;
}

.why-contact-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.06);
}

.why-contact-icon {

    width: 72px;
    height: 72px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background:
        rgba(105,176,0,.12);

    color: var(--secondary-color);

    font-size: 28px;
}

.why-contact-card h4 {

    margin-bottom: 15px;

    font-size: 22px;
}

.why-contact-card p {

    margin: 0;

    line-height: 1.8;
}

/* ==========================================
   GLOBAL PROCUREMENT SUPPORT
========================================== */

.procurement-support-section {

    background: #fff;
}

.market-list {

    margin-top: 30px;

    display: flex;

    flex-wrap: wrap;

    gap: 15px;
}

.market-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 20px;

    border-radius: 999px;

    background: #f8faf8;

    border: 1px solid #edf2ed;

    transition: .3s ease;
}

.market-item:hover {

    background: var(--secondary-color);

    border-color: var(--secondary-color);

    color: #fff;
}

.market-item i {

    color: var(--secondary-color);
}

.market-item:hover i {

    color: #fff;
}

.procurement-image img {

    width: 100%;

    border-radius: 30px;

    aspect-ratio: 4/3;

    object-fit: cover;

    box-shadow:
        0 25px 50px rgba(0,0,0,.08);
}

/* ==========================================
   GOOGLE MAP SECTION
========================================== */

.office-map-section {

    background: #f8faf8;
}

.office-map-wrapper {

    height: 100%;

    overflow: hidden;

    border-radius: 30px;

    border: 1px solid #edf2ed;
}

.office-map-wrapper iframe {

    width: 100%;

    height: 100%;

    min-height: 500px;

    border: 0;
}

.office-address-card {

    height: 100%;

    background: #fff;

    padding: 40px;

    border-radius: 30px;

    border: 1px solid #edf2ed;

    display: flex;

    flex-direction: column;
}

.office-icon {

    width: 80px;
    height: 80px;

    margin-bottom: 25px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(105,176,0,.12);

    color: var(--secondary-color);

    font-size: 30px;
}

.office-address-card h4 {

    margin-bottom: 20px;
}

.office-address-card p {

    margin-bottom: 30px;

    line-height: 1.8;
}

.office-address-card .hero-btn-primary {

    margin-top: auto;
}

/* ==========================================
   FAQ SECTION
========================================== */

.faq-section {

    background: #fff;
}

.faq-wrapper {

    max-width: 900px;

    margin: 0 auto;
}

.accordion-item {

    border: 1px solid #edf2ed;

    border-radius: 20px !important;

    overflow: hidden;

    margin-bottom: 20px;

    background: #fff;
}

.accordion-button {

    padding: 24px 28px;

    font-size: 18px;

    font-weight: 600;

    color: var(--heading-color);

    background: #fff;

    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {

    background:
        rgba(105,176,0,.08);

    color: var(--heading-color);
}

.accordion-button:focus {

    box-shadow: none;

    border: none;
}

.accordion-body {

    padding: 0 28px 28px;

    line-height: 1.8;

    color: var(--text-color);
}

/* ==========================================
   FINAL CTA
========================================== */

.contact-final-cta {

    padding: 120px 0;

    background: #f8faf8;
}

.contact-final-cta-wrapper {

    max-width: 1100px;

    margin: 0 auto;

    text-align: center;

    padding: 90px 60px;

    border-radius: 40px;

    background:
        linear-gradient(
            135deg,
            #0b2d4a,
            #143c5e
        );

    position: relative;

    overflow: hidden;
}

.contact-final-cta-wrapper::before {

    content: '';

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        rgba(105,176,0,.12);

    top: -150px;
    right: -100px;
}

.contact-final-cta-wrapper::after {

    content: '';

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.05);

    bottom: -120px;
    left: -80px;
}

.contact-final-cta-wrapper>* {

    position: relative;

    z-index: 2;
}

.contact-final-cta-wrapper h2 {

    color: #fff;

    margin-bottom: 25px;
}

.contact-final-cta-wrapper p {

    color: rgba(255,255,255,.85);

    max-width: 850px;

    margin-left: auto;
    margin-right: auto;
}

.contact-cta-buttons {

    margin-top: 40px;

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.hero-btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 28px;

    border-radius: 999px;

    border: 1px solid rgba(255,255,255,.3);

    color: #fff;

    transition: .3s ease;
}

.hero-btn-outline:hover {

    background: #fff;

    color: var(--primary-color);
}

@media (max-width: 767px) {

    .contact-final-cta {

        padding: 80px 0;
    }

    .contact-final-cta-wrapper {

        padding: 60px 30px;
    }

    .contact-cta-buttons {

        flex-direction: column;
    }

    .contact-cta-buttons a {

        width: 100%;

        justify-content: center;
    }

}

.whtsappbtnFixed {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 21px;
    right: 31px;
    z-index: 100;
    color: #fff;
    font-size: 30px;
    background: #4ac659;
    box-shadow: 0 10px 30px rgb(0 0 0 / 20%);
}

.whtsappbtnFixed:hover {
    color: #4ac659;
    background: #fff;
}