/* =====================================================
   ROOT
===================================================== */

:root {
    --primary: #08a4ef;
    --primary-dark: #078bd0;
    --dark: #071827;
    --text: #243746;
    --muted: #6c7a86;
    --light: #f5faff;
    --white: #ffffff;

    --heading-font: "Poppins", sans-serif;
    --body-font: "Inter", sans-serif;
    --number-font: "Outfit", sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: var(--body-font);
    color: var(--text);
    overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}


a {
    text-decoration: none;
}



/* =====================================================
   NAVBAR
===================================================== */

.slc-navbar {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(8, 164, 239, 0.08);
    transition: all .35s ease;
}


.slc-logo {
    width: 145px;
    height: auto;
}


.nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 11px !important;
    transition: .3s ease;
}


.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}


.slc-call-btn {
    background: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 10px 18px;
    font-weight: 600;
}


.slc-call-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}



/* =====================================================
   HERO
===================================================== */

.slc-hero {
    position: relative;
    min-height: 100vh;
    margin-top: 72px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}


.slc-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slc-hero-video-mobile {
    display: none;
}


.slc-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(3, 20, 34, .93) 0%,
            rgba(3, 20, 34, .76) 48%,
            rgba(3, 20, 34, .38) 100%);
}


.slc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}


.slc-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 50px;
    color: var(--primary);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    font-size: 13px;
    font-weight: 600;
}


.slc-hero-title {
    color: var(--white);
    font-size: clamp(42px, 4vw, 72px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -2px;
}


.slc-hero-title span {
    display: block;
    color: var(--primary);
}


.slc-hero-text {
    max-width: 650px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.8;
    margin-top: 22px;
}



/* =====================================================
   TRUST ITEMS
===================================================== */

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}


.trust-item i {
    color: var(--primary);
    font-size: 18px;
}



/* =====================================================
   BUTTONS
===================================================== */

.slc-btn-primary,
.slc-submit-btn {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    border-radius: 50px;
    padding: 13px 23px;
    font-weight: 600;
    transition: .35s ease;
}


.slc-btn-primary:hover,
.slc-submit-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(8, 164, 239, .25);
}


.slc-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50px;
    padding: 13px 23px;
    font-weight: 600;
    transition: .35s ease;
}


.slc-btn-outline:hover {
    color: var(--dark);
    background: #fff;
}



/* =====================================================
   LEAD FORM
===================================================== */

.slc-lead-card {
    position: relative;
    z-index: 2;
    max-width: 400px;
    margin-left: auto;
    padding: 30px;
    border-radius: 25px;

    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
}


.lead-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 22px;
    margin-bottom: 18px;
}


.slc-lead-card h3 {
    color: #fff;
    font-size: 24px;
}


.slc-lead-card p {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
    line-height: 1.6;
}


.slc-lead-card .form-control,
.slc-lead-card .form-select {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-radius: 12px;
}


.slc-lead-card .form-control::placeholder {
    color: rgba(255, 255, 255, .65);
}


.slc-lead-card .form-select option {
    color: #222;
}



/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .6);
    font-size: 11px;
}


.scroll-indicator i {
    color: var(--primary);
    animation: scrollDown 1.5s infinite;
}


@keyframes scrollDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .slc-navbar {
        background: #fff;
    }

    .slc-hero {
        min-height: auto;
        padding: 130px 0 80px;
    }

    .slc-hero-title {
        font-size: clamp(38px, 8vw, 58px);
    }

    .slc-lead-card {
        margin: 30px auto 0;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .slc-hero-video-desktop {
        display: none;
    }

    .slc-hero-video-mobile {
        display: block;
    }
}

@media (max-width: 575px) {

    .slc-logo {
        width: 125px;
    }

    .slc-hero {
        padding-top: 110px;
    }

    .slc-hero-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .slc-hero-text {
        font-size: 15px;
    }

    .slc-lead-card {
        padding: 23px;
        border-radius: 20px;
    }

}

/* =====================================================
   COMMON SECTION
===================================================== */

.slc-section {
    padding: 60px 0;
}

.slc-section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.slc-section-title {
    color: var(--dark);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 18px;
}

.slc-section-title span {
    color: var(--primary);
}

.slc-section-text {
    color: var(--muted);
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 0;
}


/* =====================================================
   TRUST COUNTER
===================================================== */

.slc-trust-section {
    position: relative;
    padding: 0 0 20px;
    margin-top: 20px;
    z-index: 5;
}

.slc-trust-box {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(7, 24, 39, .12);
}

.slc-counter {
    position: relative;
    padding: 30px 20px;
    text-align: center;
    border-right: 1px solid #e8eef2;
}

.slc-counter:last-child {
    border-right: 0;
}

.counter-number,
.counter-plus {
    color: var(--primary);
    font-family: var(--number-font);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    line-height: 1;
}

.counter-plus {
    font-size: 28px;
}

.slc-counter p {
    color: var(--muted);
    font-size: 13px;
    margin: 8px 0 0;
}


/* =====================================================
   WHY CHOOSE
===================================================== */

.slc-why-section {
    background: #f7fbfe;
}

.slc-feature-card {
    position: relative;
    height: 100%;
    padding: 32px;
    background: #fff;
    border: 1px solid #e8f0f5;
    border-radius: 22px;
    overflow: hidden;
    transition: .4s ease;
}

.slc-feature-card::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: rgba(8, 164, 239, .07);
    transition: .4s ease;
}

.slc-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 164, 239, .25);
    box-shadow: 0 20px 50px rgba(7, 24, 39, .08);
}

.slc-feature-card:hover::before {
    transform: scale(2.5);
}

.feature-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(8, 164, 239, .1);
    color: var(--primary);
    font-size: 25px;
    margin-bottom: 25px;
    transition: .4s ease;
}

.slc-feature-card:hover .feature-icon {
    color: #fff;
    background: var(--primary);
    transform: rotate(-5deg) scale(1.05);
}

.slc-feature-card h3 {
    color: var(--dark);
    font-size: 20px;
    margin-bottom: 12px;
}

.slc-feature-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
}

.feature-arrow {
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    color: var(--primary);
    border: 1px solid #dcecf4;
    border-radius: 50%;
    transition: .3s ease;
}

.slc-feature-card:hover .feature-arrow {
    color: #fff;
    background: var(--primary);
    transform: rotate(45deg);
}


/* =====================================================
   SERVICES
===================================================== */

.slc-services-section {
    background: #fff;
}

.slc-outline-dark-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border: 1px solid #d8e3e9;
    border-radius: 50px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    transition: .35s ease;
}

.slc-outline-dark-btn:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.slc-service-card {
    position: relative;
    height: 100%;
    padding: 35px;
    border-radius: 25px;
    background: linear-gradient(145deg, #ffffff, #f5faff);
    border: 1px solid #e4edf2;
    overflow: hidden;
    transition: .45s ease;
}

.slc-service-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(8, 164, 239, .06);
    transition: .5s ease;
}

.slc-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(8, 164, 239, .3);
    box-shadow: 0 25px 60px rgba(7, 24, 39, .1);
}

.slc-service-card:hover::after {
    transform: scale(1.5);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.service-number {
    color: #b7c7d1;
    font-family: var(--number-font);
    font-size: 18px;
    font-weight: 700;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--primary);
    border-radius: 17px;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(8, 164, 239, .2);
}

.slc-service-card h3 {
    position: relative;
    z-index: 1;
    color: var(--dark);
    font-size: 23px;
    margin-bottom: 15px;
}

.slc-service-card p {
    position: relative;
    z-index: 1;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.service-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.service-link:hover {
    gap: 15px;
    color: var(--primary-dark);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .slc-section {
        padding: 40px 0;
    }

    .slc-trust-section {
        margin-top: 0;
        padding-top: 20px;
    }

    .slc-counter {
        border-bottom: 1px solid #e8eef2;
    }

    .slc-counter:nth-child(2) {
        border-right: 0;
    }

    .slc-counter:nth-child(3),
    .slc-counter:nth-child(4) {
        border-bottom: 0;
    }

}

@media (max-width: 575px) {

    .slc-section {
        padding: 20px 0;
    }

    .slc-trust-box {
        border-radius: 16px;
    }

    .slc-counter {
        padding: 22px 10px;
    }

    .counter-number {
        font-size: 30px;
    }

    .counter-plus {
        font-size: 20px;
    }

    .slc-counter p {
        font-size: 11px;
    }

    .slc-feature-card,
    .slc-service-card {
        padding: 25px;
    }

}

/* =====================================================
   MANUFACTURING PROCESS
===================================================== */

.slc-process-section {
    background: #f7fbfe;
}

.slc-process-image,
.slc-partner-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.slc-process-image img,
.slc-partner-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    transition: transform .8s ease;
}

.slc-process-image:hover img,
.slc-partner-image:hover img {
    transform: scale(1.04);
}

.process-image-badge,
.partner-floating-card {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.process-image-badge>i,
.partner-floating-card>i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
}

.process-image-badge strong,
.partner-floating-card strong {
    display: block;
    color: var(--dark);
    font-size: 13px;
}

.process-image-badge span,
.partner-floating-card span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    margin-top: 3px;
}


/* Timeline */

.slc-process-timeline {
    position: relative;
    padding-left: 15px;
}

.slc-process-timeline::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 15px;
    bottom: 15px;
    width: 1px;
    background: #d8e8ef;
}

.process-step {
    position: relative;
    display: flex;
    gap: 20px;
    padding-bottom: 22px;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step-number {
    position: relative;
    z-index: 2;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #d9e9f0;
    color: var(--primary);
    font-family: var(--number-font);
    font-weight: 700;
    font-size: 13px;
    transition: .35s ease;
}

.process-step:hover .process-step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.process-step-content h4 {
    color: var(--dark);
    font-size: 17px;
    margin: 5px 0 5px;
}

.process-step-content p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}


/* =====================================================
   MISSION / VISION / COMMITMENT
===================================================== */

.slc-mvc-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(8, 164, 239, .15), transparent 30%),
        #071827;
}

.slc-mvc-section .slc-section-title {
    color: #fff;
}

.slc-mvc-section .slc-section-tag {
    color: var(--primary);
}

.slc-mvc-intro {
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
}

.slc-mvc-card {
    height: 100%;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .045);
    border-radius: 22px;
    transition: .4s ease;
}

.slc-mvc-card:hover,
.slc-mvc-card.active {
    background: rgba(8, 164, 239, .1);
    border-color: rgba(8, 164, 239, .4);
    transform: translateY(-8px);
}

.mvc-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: rgba(8, 164, 239, .15);
    color: var(--primary);
    border-radius: 16px;
    font-size: 25px;
    margin-bottom: 25px;
}

.slc-mvc-card>span {
    color: rgba(255, 255, 255, .35);
    font-family: var(--number-font);
    font-size: 13px;
}

.slc-mvc-card h3 {
    color: #fff;
    margin: 10px 0 15px;
}

.slc-mvc-card p {
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* =====================================================
   PARTNER
===================================================== */

.slc-partner-section {
    background: #fff;
}

.partner-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.partner-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
}

.partner-check i {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(8, 164, 239, .1);
    color: var(--primary);
    font-size: 13px;
}


/* =====================================================
   CERTIFICATES
===================================================== */

.slc-cert-section {
    background: #f7fbfe;
}

.certificate-card {
    display: block;
    color: inherit;
}

.certificate-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e4edf2;
}

.certificate-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: .5s ease;
}

.certificate-img span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(7, 24, 39, .45);
    opacity: 0;
    transition: .35s ease;
    font-size: 25px;
}

.certificate-card:hover .certificate-img img {
    transform: scale(1.04);
}

.certificate-card:hover .certificate-img span {
    opacity: 1;
}

.certificate-card h4 {
    color: var(--dark);
    font-size: 15px;
    text-align: center;
    margin: 14px 0 0;
}


/* =====================================================
   TESTIMONIAL
===================================================== */

.slc-testimonial-section {
    background: #fff;
}

.testimonial-placeholder {
    padding: 50px 35px;
    text-align: center;
    border-radius: 25px;
    background: #f7fbfe;
    border: 1px dashed #cbdfe8;
}

.testimonial-quote {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-size: 25px;
}

.testimonial-placeholder h3 {
    color: var(--dark);
    font-size: 22px;
}

.testimonial-placeholder p {
    max-width: 550px;
    margin: auto;
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}

.testimonial-line {
    display: block;
    width: 45px;
    height: 3px;
    margin: 25px auto 0;
    background: var(--primary);
    border-radius: 10px;
}


/* =====================================================
   FAQ
===================================================== */

.slc-faq-section {
    background: #f7fbfe;
}

.slc-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.slc-accordion .accordion-item {
    border: 1px solid #e2edf2;
    border-radius: 14px !important;
    overflow: hidden;
    background: #fff;
}

.slc-accordion .accordion-button {
    padding: 20px;
    color: var(--dark);
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
    background: #fff;
    box-shadow: none;
}

.slc-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: #fff;
}

.slc-accordion .accordion-body {
    padding: 0 20px 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   CTA
===================================================== */

.slc-cta-section {
    padding: 90px 0;
    background: #f7fbfe;
}

.slc-cta-box {
    position: relative;
    overflow: hidden;
    padding: 60px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .15), transparent 30%),
        linear-gradient(135deg, #078bd0, #08a4ef);
}

.slc-cta-tag {
    color: rgba(255, 255, 255, .75);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.slc-cta-box h2 {
    max-width: 650px;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    margin: 15px 0;
}

.slc-cta-box h2 span {
    color: #071827;
}

.slc-cta-box>.row>div>p {
    max-width: 600px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.8;
}

.slc-cta-form {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(15px);
}

.slc-cta-form .form-control {
    border: 0;
    border-radius: 10px;
    min-height: 46px;
    background: rgba(255, 255, 255, .95);
}

.slc-cta-btn {
    min-height: 48px;
    border: 0;
    border-radius: 10px;
    background: #071827;
    color: #fff;
    font-weight: 600;
}

.slc-cta-btn:hover {
    color: #fff;
    background: #0b2539;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .slc-process-image img,
    .slc-partner-image img {
        height: 500px;
    }

    .slc-cta-box {
        padding: 40px 25px;
    }

}

@media (max-width: 575px) {

    .slc-process-image img,
    .slc-partner-image img {
        height: 380px;
    }

    .process-image-badge,
    .partner-floating-card {
        left: 15px;
        bottom: 15px;
    }

    .partner-checklist {
        grid-template-columns: 1fr;
    }

    .slc-mvc-card {
        padding: 27px;
    }

    .testimonial-placeholder {
        padding: 35px 20px;
    }

    .slc-cta-section {
        padding: 60px 0;
    }

}

/* =====================================================
   FOOTER
===================================================== */

.slc-footer {
    position: relative;
    background: #061521;
    color: #fff;
    padding-top: 85px;
}


/* Company */

.footer-logo {
    display: inline-block;
    margin-bottom: 10px;
}

.footer-logo img {
    width: 170px;
    height: auto;
}

.footer-company p {
    max-width: 390px;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
    line-height: 1.9;
}


/* Social */

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 25px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: .35s ease;
}

.footer-social a:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
}


/* Columns */

.footer-column h4 {
    position: relative;
    color: #fff;
    font-size: 17px;
    margin-bottom: 25px;
}

.footer-column h4::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    margin-top: 10px;
    background: var(--primary);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column li a {
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    transition: .3s ease;
}

.footer-column li a:hover {
    color: var(--primary);
    padding-left: 5px;
}


/* Contact */

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(8, 164, 239, .1);
    color: var(--primary);
}

.footer-contact-item strong {
    display: block;
    color: #fff;
    font-size: 12px;
    margin-bottom: 5px;
}

.footer-contact-item p,
.footer-contact-item a {
    display: block;
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

.footer-contact-item a:hover {
    color: var(--primary);
}




/* Bottom */

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
    background: rgba(0, 0, 0, .12);
}

.footer-bottom p {
    color: rgba(255, 255, 255, .45);
    font-size: 11px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .45);
    font-size: 11px;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}


/* =====================================================
   FLOATING ACTIONS
===================================================== */

.slc-floating-actions {
    position: fixed;
    right: 20px;
    bottom: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.floating-action {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
    transition: .35s ease;
}

.floating-action span {
    position: absolute;
    right: 58px;
    padding: 6px 10px;
    border-radius: 6px;
    color: #fff;
    background: #071827;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: .3s ease;
}

.floating-action:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
}

.floating-action:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-enquiry {
    background: var(--primary);
}

.floating-whatsapp {
    background: #25D366;
}

.floating-call {
    background: #071827;
}


/* Back To Top */

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 195px;
    z-index: 999;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .35s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}


/* =====================================================
   FOOTER RESPONSIVE
===================================================== */

@media (max-width: 767px) {

    .slc-footer {
        padding-top: 60px;
    }

    .footer-newsletter {
        padding: 25px;
    }

    .footer-map-section {
        padding-bottom: 50px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .slc-floating-actions {
        right: 12px;
        bottom: 15px;
    }

    .floating-action {
        width: 44px;
        height: 44px;
    }

    .back-to-top {
        right: 12px;
        bottom: 205px;
    }

}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* =====================================================
   INNER PAGE HERO
===================================================== */

.slc-inner-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
    background: #071827;
}

.slc-inner-hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(4, 24, 39, .80),
            rgba(4, 24, 39, .45)),
        url("../img/3.jpg") center/cover no-repeat;

    transform: scale(1.02);
}

.slc-inner-hero .container {
    position: relative;
    z-index: 2;
}

.slc-inner-hero h1 {
    max-width: 800px;
    color: #fff;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.1;
    margin: 25px 0 18px;
}

.slc-inner-hero h1 span {
    color: var(--primary);
}

.slc-inner-hero p {
    max-width: 650px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.8;
    font-size: 16px;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
}

.about-breadcrumb a {
    color: var(--primary);
}

.about-breadcrumb i {
    font-size: 10px;
}


/* =====================================================
   ABOUT OVERVIEW
===================================================== */

.slc-about-overview {
    background: #fff;
}

.about-main-image {
    position: relative;
    padding-right: 25px;
    padding-bottom: 25px;
}

.about-main-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 75%;
    height: 75%;
    border-radius: 25px;
    background: rgba(8, 164, 239, .1);
    z-index: 0;
}

.about-main-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 25px;
}

.about-year-card {
    position: absolute;
    z-index: 2;
    left: -15px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    padding: 18px 22px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(7, 24, 39, .14);
}

.about-year-card strong {
    color: var(--primary);
    font-family: var(--number-font);
    font-size: 32px;
    line-height: 1;
}

.about-year-card span {
    color: var(--muted);
    font-size: 11px;
    margin-top: 5px;
}

.about-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-info-row>div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

.about-info-row i {
    color: var(--primary);
    font-size: 19px;
}


/* =====================================================
   STORY
===================================================== */

.slc-story-section {
    background: #f7fbfe;
}

.story-founder {
    display: flex;
    align-items: center;
    gap: 13px;
}

.story-founder-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(8, 164, 239, .1);
    color: var(--primary);
    font-size: 21px;
}

.story-founder span {
    display: block;
    color: var(--muted);
    font-size: 11px;
}

.story-founder strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
    margin-top: 3px;
}

.story-image-grid {
    position: relative;
    min-height: 530px;
}

.story-image-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 76%;
    height: 440px;
    overflow: hidden;
    border-radius: 25px;
}

.story-image-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 260px;
    overflow: hidden;
    border: 10px solid #f7fbfe;
    border-radius: 25px;
}

.story-image-large img,
.story-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s ease;
}

.story-image-large:hover img,
.story-image-small:hover img {
    transform: scale(1.06);
}


/* =====================================================
   FACILITY
===================================================== */

.slc-about-facility {
    background: #fff;
}

.facility-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.facility-image img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    transition: .7s ease;
}

.facility-image:hover img {
    transform: scale(1.04);
}

.facility-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(12px);
}

.facility-badge>i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
}

.facility-badge strong,
.facility-badge span {
    display: block;
}

.facility-badge strong {
    color: var(--dark);
    font-size: 14px;
}

.facility-badge span {
    color: var(--muted);
    font-size: 11px;
    margin-top: 2px;
}

.facility-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.facility-points div {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 50px;
    background: #f3f9fc;
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
}

.facility-points i {
    color: var(--primary);
}


/* =====================================================
   QUALITY
===================================================== */

.slc-quality-section {
    background: #f7fbfe;
}

.quality-card {
    height: 100%;
    padding: 32px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e4edf2;
    transition: .4s ease;
}

.quality-card:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 164, 239, .3);
    box-shadow: 0 20px 50px rgba(7, 24, 39, .08);
}

.quality-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(8, 164, 239, .1);
    font-size: 24px;
}

.quality-card h3 {
    color: var(--dark);
    font-size: 19px;
    margin-bottom: 12px;
}

.quality-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}


/* =====================================================
   INFRASTRUCTURE
===================================================== */

.slc-infrastructure-section {
    background: #fff;
}

.infra-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 22px;
}

.infra-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s ease;
}

.infra-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,
            rgba(3, 20, 34, .85),
            transparent 65%);
}

.infra-card:hover img {
    transform: scale(1.07);
}

.infra-overlay {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px;
}

.infra-overlay span {
    color: var(--primary);
    font-family: var(--number-font);
    font-size: 12px;
}

.infra-overlay h3 {
    color: #fff;
    font-size: 20px;
    margin: 5px 0 0;
}


/* =====================================================
   STRENGTH
===================================================== */

.slc-strength-section {
    background: #f7fbfe;
}

.strength-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.strength-item {
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e4edf2;
    transition: .4s ease;
}

.strength-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(7, 24, 39, .07);
}

.strength-item i {
    display: block;
    color: var(--primary);
    font-size: 26px;
    margin-bottom: 18px;
}

.strength-item strong {
    display: block;
    color: var(--dark);
    font-size: 16px;
}

.strength-item span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
    margin-top: 5px;
}


/* =====================================================
   VALUES
===================================================== */

.slc-values-section {
    background: #fff;
}

.value-card {
    position: relative;
    height: 100%;
    padding: 30px;
    overflow: hidden;
    border-radius: 22px;
    background: #f7fbfe;
    border: 1px solid #e4edf2;
    transition: .4s ease;
}

.value-card:hover {
    color: #fff;
    background: var(--dark);
    transform: translateY(-8px);
}

.value-card>span {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #b8c9d3;
    font-family: var(--number-font);
    font-size: 12px;
}

.value-card i {
    display: block;
    color: var(--primary);
    font-size: 25px;
    margin-bottom: 22px;
}

.value-card h3 {
    color: var(--dark);
    font-size: 18px;
}

.value-card:hover h3 {
    color: #fff;
}

.value-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
    margin: 10px 0 0;
}

.value-card:hover p {
    color: rgba(255, 255, 255, .62);
}


/* =====================================================
   RESPONSIBILITY
===================================================== */

.slc-responsibility-section {
    background: #f7fbfe;
}

.responsibility-image {
    overflow: hidden;
    border-radius: 26px;
}

.responsibility-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: .7s ease;
}

.responsibility-image:hover img {
    transform: scale(1.05);
}


/* =====================================================
   ABOUT RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .slc-inner-hero {
        min-height: 430px;
    }

    .about-main-image img {
        height: 480px;
    }

    .story-image-grid {
        min-height: 480px;
    }

    .story-image-large {
        height: 390px;
    }

    .facility-image img {
        height: 480px;
    }

}

@media (max-width: 767px) {

    .slc-inner-hero {
        min-height: 430px;
        padding-top: 100px;
    }

    .slc-inner-hero h1 {
        font-size: 40px;
    }

    .about-main-image {
        padding-right: 12px;
        padding-bottom: 15px;
    }

    .about-main-image img {
        height: 400px;
    }

    .about-year-card {
        left: 5px;
        bottom: 25px;
    }

    .story-image-grid {
        min-height: 390px;
    }

    .story-image-large {
        width: 82%;
        height: 330px;
    }

    .story-image-small {
        width: 48%;
        height: 190px;
        border-width: 7px;
    }

    .facility-image img {
        height: 390px;
    }

    .strength-grid {
        grid-template-columns: 1fr;
    }

    .responsibility-image img {
        height: 380px;
    }

}

@media (max-width: 575px) {

    .slc-inner-hero h1 {
        font-size: 34px;
    }

    .slc-inner-hero p {
        font-size: 14px;
    }

    .about-info-row {
        flex-direction: column;
        gap: 12px;
    }

    .story-image-grid {
        min-height: 320px;
    }

    .story-image-large {
        height: 270px;
    }

    .story-image-small {
        height: 150px;
    }

    .facility-points {
        gap: 8px;
    }

    .facility-points div {
        font-size: 11px;
    }

    .infra-card {
        height: 250px;
    }

}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* =====================================================
   PCD HERO
===================================================== */

.pcd-hero {
    min-height: 650px;
}

.pcd-hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(3, 20, 34, .80),
            rgba(3, 20, 34, .45)),
        url("../img/16.jpg") center/cover no-repeat;
}

.pcd-hero h1 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.08;
    margin: 25px 0 20px;
}

.pcd-hero h1 span {
    color: var(--primary);
}

.pcd-hero p {
    max-width: 650px;
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
}

.pcd-hero-card {
    padding: 32px;
    border-radius: 25px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(20px);
}

.pcd-hero-card>span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pcd-hero-card h3 {
    color: #fff;
    font-size: 27px;
    line-height: 1.3;
    margin: 12px 0 25px;
}

.pcd-mini-points {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.pcd-mini-points>div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
}

.pcd-mini-points i {
    color: var(--primary);
    font-size: 18px;
}

.pcd-mini-points span {
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
}


/* =====================================================
   PCD INTRO
===================================================== */

.pcd-intro-section {
    background: #fff;
}

.pcd-intro-image {
    position: relative;
    padding: 0 25px 25px 0;
}

.pcd-intro-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 530px;
    object-fit: cover;
    border-radius: 25px;
}

.pcd-intro-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 70%;
    background: rgba(8, 164, 239, .1);
    border-radius: 25px;
}

.pcd-established-card {
    position: absolute;
    z-index: 2;
    left: -15px;
    bottom: 45px;
    display: flex;
    flex-direction: column;
    padding: 18px 22px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(7, 24, 39, .14);
}

.pcd-established-card strong {
    color: var(--primary);
    font-family: var(--number-font);
    font-size: 30px;
}

.pcd-established-card span {
    color: var(--muted);
    font-size: 11px;
}


/* =====================================================
   PCD WHY
===================================================== */

.pcd-why-section {
    background: #f7fbfe;
}

.pcd-benefit-card {
    position: relative;
    height: 100%;
    padding: 30px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e4edf2;
    transition: .4s ease;
}

.pcd-benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 164, 239, .3);
    box-shadow: 0 20px 50px rgba(7, 24, 39, .08);
}

.pcd-benefit-card>span {
    position: absolute;
    top: 20px;
    right: 22px;
    color: #c1d0d8;
    font-family: var(--number-font);
    font-size: 13px;
}

.pcd-benefit-icon {
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(8, 164, 239, .1);
    font-size: 24px;
    transition: .35s ease;
}

.pcd-benefit-card:hover .pcd-benefit-icon {
    color: #fff;
    background: var(--primary);
    transform: rotate(-5deg);
}

.pcd-benefit-card h3 {
    color: var(--dark);
    font-size: 19px;
    margin-bottom: 12px;
}

.pcd-benefit-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}


/* =====================================================
   PCD BENEFITS IMAGE
===================================================== */

.pcd-benefits-section {
    background: #fff;
}

.pcd-benefits-image {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.pcd-benefits-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: .7s ease;
}

.pcd-benefits-image:hover img {
    transform: scale(1.05);
}

.pcd-image-tag {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 17px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(12px);
}

.pcd-image-tag i {
    color: var(--primary);
}

.pcd-image-tag span {
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
}

.pcd-check-list {
    display: grid;
    gap: 13px;
}

.pcd-check-list>div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

.pcd-check-list i {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex: 0 0 24px;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(8, 164, 239, .1);
}


/* =====================================================
   PCD PROCESS
===================================================== */

.pcd-process-section {
    background: #f7fbfe;
}

.pcd-process-step {
    position: relative;
    height: 100%;
    padding: 28px 22px;
    text-align: center;
    background: #fff;
    border: 1px solid #e4edf2;
    border-radius: 20px;
    transition: .4s ease;
}

.pcd-process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(7, 24, 39, .08);
}

.pcd-process-step>span {
    position: absolute;
    top: 15px;
    right: 17px;
    color: #c1d0d8;
    font-family: var(--number-font);
    font-size: 12px;
}

.pcd-process-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 16px;
    color: #fff;
    background: var(--primary);
    font-size: 23px;
}

.pcd-process-step h3 {
    color: var(--dark);
    font-size: 17px;
}

.pcd-process-step p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
    margin: 8px 0 0;
}


/* =====================================================
   MARKETING
===================================================== */

.pcd-marketing-section {
    background: #fff;
}

.marketing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.marketing-grid>div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
    border-radius: 12px;
    background: #f5faff;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

.marketing-grid i {
    color: var(--primary);
    font-size: 19px;
}

.marketing-image {
    overflow: hidden;
    border-radius: 27px;
}

.marketing-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: .7s ease;
}

.marketing-image:hover img {
    transform: scale(1.05);
}


/* =====================================================
   BUSINESS BENEFITS
===================================================== */

.pcd-business-section {
    background: #f7fbfe;
}

.business-benefit {
    height: 100%;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e4edf2;
    transition: .4s ease;
}

.business-benefit:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(7, 24, 39, .07);
}

.business-benefit i {
    color: var(--primary);
    font-size: 26px;
}

.business-benefit h3 {
    color: var(--dark);
    font-size: 18px;
    margin: 18px 0 10px;
}

.business-benefit p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
    margin: 0;
}


/* =====================================================
   PAN INDIA
===================================================== */

.pcd-pan-section {
    background: #fff;
}

.pcd-pan-box {
    overflow: hidden;
    padding: 65px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 10%,
            rgba(8, 164, 239, .18),
            transparent 30%),
        #071827;
}

.pcd-pan-tag {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pcd-pan-box h2 {
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    margin: 15px 0;
}

.pcd-pan-box h2 span {
    color: var(--primary);
}

.pcd-pan-box p {
    max-width: 600px;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    line-height: 1.8;
}

.pan-points {
    display: grid;
    gap: 11px;
    margin-top: 25px;
}

.pan-points div {
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
}

.pan-points i {
    color: var(--primary);
    margin-right: 8px;
}

.pan-visual {
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: auto;
    border-radius: 50%;
    color: #fff;
    background: rgba(8, 164, 239, .08);
    border: 1px solid rgba(8, 164, 239, .25);
    box-shadow: 0 0 0 25px rgba(8, 164, 239, .025);
}

.pan-visual i {
    color: var(--primary);
    font-size: 65px;
}

.pan-visual span {
    margin-top: 10px;
    font-family: var(--number-font);
    font-size: 21px;
    font-weight: 700;
}

.pan-visual small {
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
    margin-top: 3px;
}


/* =====================================================
   PCD FAQ
===================================================== */

.pcd-faq-section {
    background: #f7fbfe;
}


/* =====================================================
   PCD ENQUIRY
===================================================== */

.pcd-enquiry-section {
    background: #fff;
}

.pcd-enquiry-box {
    overflow: hidden;
    padding: 55px;
    border-radius: 30px;
    background:
        linear-gradient(135deg,
            #071827,
            #0b2b40);
}

.pcd-enquiry-box .slc-section-title {
    margin-top: 12px;
}

.pcd-enquiry-text {
    max-width: 430px;
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    line-height: 1.8;
}

.enquiry-contact-list {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}

.enquiry-contact-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.enquiry-contact-list i {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--primary);
    background: rgba(8, 164, 239, .1);
}

.enquiry-contact-list a:hover {
    color: var(--primary);
}

.pcd-enquiry-form {
    padding: 28px;
    border-radius: 20px;
    background: #fff;
}

.pcd-enquiry-form label {
    display: block;
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
}

.pcd-enquiry-form .form-control,
.pcd-enquiry-form .form-select {
    min-height: 48px;
    border-color: #e1ebef;
    border-radius: 10px;
    box-shadow: none;
    font-size: 13px;
}

.pcd-enquiry-form textarea.form-control {
    min-height: 110px;
}

.pcd-enquiry-form .form-control:focus,
.pcd-enquiry-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(8, 164, 239, .08);
}

.pcd-submit-btn {
    min-height: 50px;
    padding: 12px 25px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: var(--primary);
    font-weight: 600;
    transition: .35s ease;
}

.pcd-submit-btn:hover {
    color: #fff;
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* =====================================================
   PCD RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .pcd-hero {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .pcd-hero-card {
        max-width: 500px;
    }

    .pcd-intro-image img {
        height: 470px;
    }

    .pcd-benefits-image img,
    .marketing-image img {
        height: 450px;
    }

    .pcd-pan-box,
    .pcd-enquiry-box {
        padding: 40px 30px;
    }

}

@media (max-width: 767px) {

    .pcd-hero h1 {
        font-size: 40px;
    }

    .pcd-intro-image img {
        height: 400px;
    }

    .pcd-benefits-image img,
    .marketing-image img {
        height: 380px;
    }

    .marketing-grid {
        grid-template-columns: 1fr;
    }

    .pan-visual {
        width: 220px;
        height: 220px;
    }

}

@media (max-width: 575px) {

    .pcd-hero h1 {
        font-size: 34px;
    }

    .pcd-hero p {
        font-size: 14px;
    }

    .pcd-intro-image {
        padding-right: 12px;
        padding-bottom: 15px;
    }

    .pcd-established-card {
        left: 5px;
        bottom: 30px;
    }

    .pcd-benefit-card,
    .business-benefit {
        padding: 25px;
    }

    .pcd-pan-box,
    .pcd-enquiry-box {
        padding: 35px 20px;
        border-radius: 22px;
    }

    .pcd-enquiry-form {
        padding: 20px;
    }

}

/* =====================================================
   THIRD PARTY HERO
===================================================== */

.tpm-hero {
    min-height: 650px;
}

.tpm-hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(3, 20, 34, .80),
            rgba(3, 20, 34, .45)),
        url("../img/19.jpg") center/cover no-repeat;
}

.tpm-hero h1 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.08;
    margin: 25px 0 20px;
}

.tpm-hero h1 span {
    color: var(--primary);
}

.tpm-hero p {
    max-width: 650px;
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
}

.tpm-hero-glass {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(18px);
}

.tpm-hero-glass-content {
    width: 72%;
    padding: 30px;
    text-align: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.tpm-hero-glass-content span {
    display: block;
    color: var(--primary);
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.tpm-hero-glass-content strong {
    display: block;
    color: #fff;
    font-family: var(--number-font);
    font-size: 55px;
    margin: 10px 0;
}

.tpm-hero-glass-content p {
    color: rgba(255, 255, 255, .58);
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}

.tpm-floating-icon {
    position: absolute;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--primary);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    font-size: 25px;
}

.tpm-icon-one {
    top: 45px;
    left: 40px;
}

.tpm-icon-two {
    top: 100px;
    right: 35px;
}

.tpm-icon-three {
    bottom: 45px;
    left: 65px;
}


/* =====================================================
   TPM INTRO
===================================================== */

.tpm-intro {
    background: #fff;
}

.tpm-intro-image {
    position: relative;
    padding-right: 25px;
    padding-bottom: 25px;
}

.tpm-intro-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
    height: 70%;
    border-radius: 25px;
    background: rgba(8, 164, 239, .1);
}

.tpm-intro-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 25px;
}

.tpm-experience-card {
    position: absolute;
    z-index: 2;
    left: -15px;
    bottom: 45px;
    display: flex;
    flex-direction: column;
    padding: 18px 22px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(7, 24, 39, .14);
}

.tpm-experience-card strong {
    color: var(--primary);
    font-family: var(--number-font);
    font-size: 30px;
}

.tpm-experience-card span {
    color: var(--muted);
    font-size: 11px;
}

.tpm-intro-points {
    display: grid;
    gap: 12px;
}

.tpm-intro-points div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

.tpm-intro-points i {
    color: var(--primary);
}


/* =====================================================
   TPM BENEFITS
===================================================== */

.tpm-why-section {
    background: #f7fbfe;
}

.tpm-benefit-card {
    position: relative;
    height: 100%;
    padding: 30px;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e4edf2;
    transition: .4s ease;
}

.tpm-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(7, 24, 39, .08);
    border-color: rgba(8, 164, 239, .3);
}

.tpm-benefit-card>span {
    position: absolute;
    top: 18px;
    right: 20px;
    color: #c4d1d8;
    font-family: var(--number-font);
    font-size: 12px;
}

.tpm-benefit-icon {
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 15px;
    color: var(--primary);
    background: rgba(8, 164, 239, .1);
    font-size: 24px;
    transition: .35s ease;
}

.tpm-benefit-card:hover .tpm-benefit-icon {
    color: #fff;
    background: var(--primary);
    transform: rotate(-5deg) scale(1.05);
}

.tpm-benefit-card h3 {
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 12px;
}

.tpm-benefit-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
    margin: 0;
}


/* =====================================================
   CAPABILITIES
===================================================== */

.tpm-capabilities-section {
    background: #fff;
}

.dosage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.dosage-card {
    position: relative;
    min-height: 210px;
    padding: 27px;
    overflow: hidden;
    border-radius: 20px;
    background: #f7fbfe;
    border: 1px solid #e4edf2;
    transition: .4s ease;
}

.dosage-card:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 18px 45px rgba(7, 24, 39, .08);
}

.dosage-number {
    position: absolute;
    top: 15px;
    right: 18px;
    color: #c4d1d8;
    font-family: var(--number-font);
    font-size: 11px;
}

.dosage-card i {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 20px;
}

.dosage-card h3 {
    color: var(--dark);
    font-size: 18px;
}

.dosage-card span {
    color: var(--muted);
    font-size: 10px;
}

.dosage-featured {
    background: var(--dark);
}

.dosage-featured h3 {
    color: #fff;
}

.dosage-featured span {
    color: rgba(255, 255, 255, .5);
}

.dosage-image-card {
    padding: 0;
}

.dosage-image-card img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    transition: .7s ease;
}

.dosage-image-card:hover img {
    transform: scale(1.07);
}

.dosage-image-overlay {
    position: absolute;
    inset: auto 20px 18px;
    z-index: 2;
}

.dosage-image-overlay strong,
.dosage-image-overlay span {
    display: block;
    color: #fff;
}

.dosage-image-overlay strong {
    font-size: 16px;
}

.dosage-image-overlay span {
    margin-top: 3px;
    font-size: 10px;
}


/* =====================================================
   FACILITY
===================================================== */

.tpm-facility-section {
    background: #f7fbfe;
}

.tpm-facility-image {
    position: relative;
    overflow: hidden;
    border-radius: 27px;
}

.tpm-facility-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: .7s ease;
}

.tpm-facility-image:hover img {
    transform: scale(1.05);
}

.facility-floating-info {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
}

.facility-floating-info>i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: var(--primary);
}

.facility-floating-info strong,
.facility-floating-info span {
    display: block;
}

.facility-floating-info strong {
    color: var(--dark);
    font-size: 14px;
}

.facility-floating-info span {
    color: var(--muted);
    font-size: 10px;
}

.infrastructure-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.infrastructure-list div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px;
    border-radius: 11px;
    color: var(--dark);
    background: #fff;
    border: 1px solid #e4edf2;
    font-size: 11px;
    font-weight: 600;
    transition: .3s ease;
}

.infrastructure-list div:hover {
    transform: translateX(4px);
    border-color: rgba(8, 164, 239, .3);
}

.infrastructure-list i {
    color: var(--primary);
    font-size: 17px;
}


/* =====================================================
   QUALITY
===================================================== */

.tpm-quality-section {
    background: #fff;
}

.quality-process-card {
    height: 100%;
    padding: 28px;
    border-radius: 20px;
    background: #f7fbfe;
    border: 1px solid #e4edf2;
    transition: .4s ease;
}

.quality-process-card:hover {
    transform: translateY(-7px);
    background: #fff;
    box-shadow: 0 18px 45px rgba(7, 24, 39, .07);
}

.quality-process-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(8, 164, 239, .1);
    font-size: 22px;
}

.quality-process-card h3 {
    color: var(--dark);
    font-size: 17px;
}

.quality-process-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
    margin: 9px 0 0;
}

.tpm-quality-bottom {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tpm-quality-bottom div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    border-radius: 50px;
    background: #f3f9fc;
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
}

.tpm-quality-bottom i {
    color: var(--primary);
}


/* =====================================================
   PROCESS TIMELINE
===================================================== */

.tpm-process-section {
    background: #f7fbfe;
}

.tpm-timeline {
    position: relative;
    max-width: 950px;
    margin: auto;
}

.tpm-timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #dce9ef;
    transform: translateX(-50%);
}

.tpm-timeline-item {
    position: relative;
    width: 50%;
    padding: 0 45px 55px;
}

.tpm-timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
}

.tpm-timeline-item:nth-child(even) {
    margin-left: 50%;
}

.tpm-timeline-dot {
    position: absolute;
    top: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    border: 5px solid #f7fbfe;
    box-shadow: 0 0 0 1px rgba(8, 164, 239, .25);
    z-index: 2;
}

.tpm-timeline-item:nth-child(odd) .tpm-timeline-dot {
    right: -24px;
}

.tpm-timeline-item:nth-child(even) .tpm-timeline-dot {
    left: -24px;
}

.tpm-timeline-content {
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e4edf2;
    transition: .4s ease;
}

.tpm-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(7, 24, 39, .07);
}

.tpm-timeline-content>span {
    color: var(--primary);
    font-family: var(--number-font);
    font-size: 11px;
}

.tpm-timeline-content h3 {
    color: var(--dark);
    font-size: 17px;
    margin: 8px 0;
}

.tpm-timeline-content p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}


/* =====================================================
   PACKAGING
===================================================== */

.tpm-packaging-section {
    background: #fff;
}

.tpm-packaging-image {
    position: relative;
    overflow: hidden;
    border-radius: 27px;
}

.tpm-packaging-image img {
    width: 100%;
    height: 490px;
    object-fit: cover;
    transition: .7s ease;
}

.tpm-packaging-image:hover img {
    transform: scale(1.05);
}

.packaging-glass {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
}

.packaging-glass>i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: var(--primary);
}

.packaging-glass strong,
.packaging-glass span {
    display: block;
}

.packaging-glass strong {
    color: var(--dark);
    font-size: 13px;
}

.packaging-glass span {
    color: var(--muted);
    font-size: 10px;
}

.packaging-points {
    display: grid;
    gap: 12px;
}

.packaging-points div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
}

.packaging-points i {
    color: var(--primary);
}


/* =====================================================
   LOGISTICS
===================================================== */

.tpm-logistics-section {
    padding: 0 0 100px;
    background: #fff;
}

.tpm-logistics-box {
    overflow: hidden;
    padding: 60px;
    border-radius: 30px;
    background: #071827;
}

.tpm-logistics-box>.row>div:first-child>span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.tpm-logistics-box h2 {
    max-width: 600px;
    color: #fff;
    font-size: clamp(30px, 4vw, 47px);
    line-height: 1.15;
    margin: 15px 0;
}

.tpm-logistics-box h2 strong {
    color: var(--primary);
}

.tpm-logistics-box p {
    max-width: 580px;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    line-height: 1.8;
}

.logistics-points {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.logistics-points div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border-radius: 50px;
    color: rgba(255, 255, 255, .8);
    background: rgba(255, 255, 255, .06);
    font-size: 11px;
}

.logistics-points i {
    color: var(--primary);
}

.logistics-visual {
    position: relative;
    height: 280px;
}

.logistics-circle {
    position: absolute;
    top: 40px;
    left: 30%;
    width: 150px;
    height: 150px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(8, 164, 239, .1);
    border: 1px solid rgba(8, 164, 239, .25);
    font-size: 55px;
    animation: tpmFloat 4s ease-in-out infinite;
}

.small-circle {
    top: 150px;
    left: 58%;
    width: 85px;
    height: 85px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .15);
    font-size: 28px;
    animation-delay: -1.5s;
}

.logistics-road {
    position: absolute;
    left: 15%;
    right: 5%;
    bottom: 35px;
    height: 2px;
    background: rgba(255, 255, 255, .12);
}


/* =====================================================
   TRUST
===================================================== */

.tpm-trust-section {
    background: #f7fbfe;
}

.tpm-trust-card {
    height: 100%;
    padding: 30px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e4edf2;
    transition: .4s ease;
}

.tpm-trust-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(7, 24, 39, .07);
}

.tpm-trust-card>i {
    color: var(--primary);
    font-size: 28px;
}

.tpm-trust-card h3 {
    color: var(--dark);
    font-size: 18px;
    margin: 17px 0 10px;
}

.tpm-trust-card p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
    margin: 0;
}


/* =====================================================
   ENQUIRY
===================================================== */

.tpm-enquiry-section {
    background: #fff;
}

.tpm-enquiry-box {
    padding: 55px;
    overflow: hidden;
    border-radius: 30px;
    background:
        linear-gradient(135deg,
            #071827,
            #0b2c40);
}

.tpm-enquiry-text {
    max-width: 450px;
    color: rgba(255, 255, 255, .58);
    font-size: 13px;
    line-height: 1.8;
}

.tpm-contact-list {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}

.tpm-contact-list a {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
}

.tpm-contact-list i {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: var(--primary);
    background: rgba(8, 164, 239, .1);
}

.tpm-contact-list a:hover {
    color: var(--primary);
}

.tpm-enquiry-form {
    padding: 28px;
    border-radius: 20px;
    background: #fff;
}

.tpm-enquiry-form label {
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
}

.tpm-enquiry-form .form-control,
.tpm-enquiry-form .form-select {
    min-height: 48px;
    border-radius: 10px;
    border-color: #e1ebef;
    box-shadow: none;
    font-size: 13px;
}

.tpm-enquiry-form textarea.form-control {
    min-height: 120px;
}

.tpm-enquiry-form .form-control:focus,
.tpm-enquiry-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(8, 164, 239, .08);
}

.tpm-submit-btn {
    min-height: 50px;
    padding: 12px 23px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: var(--primary);
    font-size: 13px;
    font-weight: 600;
    transition: .35s ease;
}

.tpm-submit-btn:hover {
    color: #fff;
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* =====================================================
   TPM FLOAT
===================================================== */

@keyframes tpmFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-13px);
    }

}


/* =====================================================
   TPM RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .tpm-hero {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .tpm-hero-glass {
        max-width: 500px;
        min-height: 330px;
    }

    .tpm-intro-image img {
        height: 470px;
    }

    .tpm-facility-image img {
        height: 470px;
    }

    .tpm-enquiry-box,
    .tpm-logistics-box {
        padding: 40px 30px;
    }

}


@media (max-width: 767px) {

    .tpm-hero h1 {
        font-size: 40px;
    }

    .tpm-hero-glass {
        width: 100%;
        max-width: 420px;
        min-height: 290px;
        margin: 0 auto;
    }

    .tpm-hero-glass-content {
        width: 68%;
        max-width: 260px;
        padding: 20px 16px;
    }

    .tpm-floating-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .tpm-icon-one {
        top: 20px;
        left: 20px;
    }

    .tpm-icon-two {
        top: 30px;
        right: 20px;
    }

    .tpm-icon-three {
        bottom: 18px;
        left: 26px;
    }

    .tpm-intro-image img {
        height: 400px;
    }

    .tpm-facility-image img {
        height: 390px;
    }

    .dosage-grid {
        grid-template-columns: 1fr;
    }

    .infrastructure-list {
        grid-template-columns: 1fr;
    }

    .tpm-timeline-line {
        left: 24px;
    }

    .tpm-timeline-item,
    .tpm-timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
    }

    .tpm-timeline-item:nth-child(odd) .tpm-timeline-dot,
    .tpm-timeline-item:nth-child(even) .tpm-timeline-dot {
        left: 0;
        right: auto;
    }

    .tpm-packaging-image img {
        height: 380px;
    }

    .logistics-visual {
        height: 240px;
    }

}


@media (max-width: 575px) {

    .tpm-hero h1 {
        font-size: 34px;
    }

    .tpm-hero p {
        font-size: 14px;
    }

    .tpm-intro-image {
        padding-right: 12px;
        padding-bottom: 15px;
    }

    .tpm-experience-card {
        left: 5px;
        bottom: 30px;
    }

    .tpm-hero-glass-content {
        width: 78%;
        padding: 22px;
    }

    .tpm-hero-glass-content strong {
        font-size: 42px;
    }

    .tpm-floating-icon {
        width: 45px;
        height: 45px;
        font-size: 19px;
    }

    .tpm-icon-one {
        left: 20px;
    }

    .tpm-icon-two {
        right: 20px;
    }

    .tpm-icon-three {
        left: 30px;
    }

    .tpm-quality-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .tpm-quality-bottom div {
        justify-content: center;
    }

    .tpm-enquiry-box,
    .tpm-logistics-box {
        padding: 32px 20px;
        border-radius: 22px;
    }

    .tpm-enquiry-form {
        padding: 20px;
    }

}

/* =====================================================
   CONTACT HERO
===================================================== */

.contact-hero {
    min-height: 590px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            #061725,
            #0a3045);
}

.contact-hero::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    top: -220px;
    right: -100px;

    border-radius: 50%;

    background: rgba(8, 164, 239, .12);

    filter: blur(5px);
}

.contact-hero::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    bottom: -180px;
    left: -100px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .08);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 70% 40%,
            rgba(8, 164, 239, .14),
            transparent 35%);
}

.contact-hero h1 {
    color: #fff;

    font-family: var(--heading-font, "Outfit", sans-serif);

    font-size: clamp(44px, 6vw, 72px);

    line-height: 1.05;

    margin: 25px 0 20px;
}

.contact-hero h1 span {
    color: var(--primary);
}

.contact-hero p {
    max-width: 670px;
    margin: auto;

    color: rgba(255, 255, 255, .65);

    font-size: 15px;
    line-height: 1.85;
}

.contact-hero-actions {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.slc-btn-outline-white {
    color: #fff !important;

    border: 1px solid rgba(255, 255, 255, .25) !important;

    background: rgba(255, 255, 255, .05) !important;

    border-radius: 10px;

    padding: 12px 22px;

    font-size: 13px;

    transition: .35s ease;
}

.slc-btn-outline-white:hover {
    background: #fff !important;
    color: #071827 !important;

    transform: translateY(-3px);
}


/* =====================================================
   QUICK CONTACT
===================================================== */

.contact-quick-section {
    position: relative;
    z-index: 5;

    margin-top: -55px;
}

.contact-quick-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.contact-quick-card {
    min-height: 100px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 20px;

    border-radius: 18px;

    background: #fff;

    border: 1px solid #e4edf2;

    box-shadow:
        0 20px 50px rgba(7, 24, 39, .09);

    transition: .4s ease;
}

.contact-quick-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(8, 164, 239, .3);

    box-shadow:
        0 25px 60px rgba(7, 24, 39, .13);
}

.contact-quick-icon {
    flex-shrink: 0;

    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    border-radius: 14px;

    color: var(--primary);

    background:
        rgba(8, 164, 239, .09);

    font-size: 21px;
}

.contact-quick-card span,
.contact-quick-card strong {
    display: block;
}

.contact-quick-card span {
    color: #8b9ba5;

    font-size: 9px;

    letter-spacing: 1.3px;

    font-weight: 700;

    margin-bottom: 5px;
}

.contact-quick-card strong {
    color: var(--dark);

    font-size: 12px;

    line-height: 1.5;

    word-break: break-word;
}

.contact-arrow {
    margin-left: auto;

    color: #aebdc5;

    transition: .3s ease;
}

.contact-quick-card:hover .contact-arrow {
    color: var(--primary);

    transform:
        translate(3px, -3px);
}


/* =====================================================
   CONTACT MAIN
===================================================== */

.contact-main-section {
    background: #fff;
}

.contact-detail-list {
    display: grid;

    gap: 12px;

    margin-top: 30px;
}

.contact-detail-item {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px;

    border-radius: 13px;

    border: 1px solid #e7eef2;

    transition: .35s ease;
}

.contact-detail-item:hover {
    transform: translateX(5px);

    border-color:
        rgba(8, 164, 239, .3);

    box-shadow:
        0 10px 30px rgba(7, 24, 39, .05);
}

.contact-detail-icon {
    flex-shrink: 0;

    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: var(--primary);

    background:
        rgba(8, 164, 239, .08);
}

.contact-detail-item span,
.contact-detail-item strong {
    display: block;
}

.contact-detail-item span {
    color: #8999a2;

    font-size: 9px;

    letter-spacing: .8px;

    text-transform: uppercase;

    margin-bottom: 4px;
}

.contact-detail-item strong {
    color: var(--dark);

    font-size: 12px;
}


/* =====================================================
   DIRECT BOX
===================================================== */

.contact-direct-box {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 22px;

    padding: 15px;

    border-radius: 15px;

    background: #071827;
}

.contact-direct-icon {
    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 11px;

    color: var(--primary);

    background:
        rgba(8, 164, 239, .1);
}

.contact-direct-box strong,
.contact-direct-box span {
    display: block;
}

.contact-direct-box strong {
    color: #fff;

    font-size: 12px;
}

.contact-direct-box span {
    color: rgba(255, 255, 255, .48);

    font-size: 10px;

    margin-top: 3px;
}

.contact-direct-box>a {
    margin-left: auto;

    width: 35px;
    height: 35px;

    display: grid;

    place-items: center;

    border-radius: 9px;

    color: #fff;

    background:
        rgba(255, 255, 255, .08);

    transition: .3s ease;
}

.contact-direct-box>a:hover {
    color: #fff;

    background: var(--primary);

    transform:
        translate(2px, -2px);
}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-wrapper {
    padding: 38px;

    border-radius: 25px;

    background: #f7fbfd;

    border: 1px solid #e3edf2;
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-header>span {
    color: var(--primary);

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: 700;
}

.contact-form-header h3 {
    color: var(--dark);

    font-family:
        var(--heading-font,
            "Outfit",
            sans-serif);

    font-size: 29px;

    margin: 9px 0 7px;
}

.contact-form-header p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;

    margin: 0;
}

.contact-field label {
    display: block;

    color: var(--dark);

    font-size: 11px;

    font-weight: 600;

    margin-bottom: 7px;
}

.contact-input {
    position: relative;
}

.contact-input>i {
    position: absolute;

    top: 50%;
    left: 15px;

    transform:
        translateY(-50%);

    color: #91a4ae;

    font-size: 15px;

    z-index: 2;

    pointer-events: none;
}

.contact-input input,
.contact-input select,
.contact-input textarea {
    width: 100%;

    border: 1px solid #dfe9ee;

    outline: none;

    border-radius: 11px;

    background: #fff;

    color: var(--dark);

    font-size: 12px;

    transition: .3s ease;
}

.contact-input input,
.contact-input select {
    height: 49px;

    padding:
        0 14px 0 43px;
}

.contact-input textarea {
    resize: vertical;

    min-height: 140px;

    padding:
        14px 14px 14px 43px;
}

.contact-input textarea+i {
    top: 19px;

    transform: none;
}

.contact-input input:focus,
.contact-input select:focus,
.contact-input textarea:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(8, 164, 239, .08);
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
    color: #a9b6bd;
}

.contact-input select {
    appearance: auto;
}


/* =====================================================
   SUBMIT
===================================================== */

.contact-submit-btn {
    width: 100%;

    min-height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 11px;

    color: #fff;

    background: var(--primary);

    font-size: 12px;

    font-weight: 600;

    transition: .35s ease;
}

.contact-submit-btn:hover {
    background: var(--primary-dark);

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px rgba(8, 164, 239, .2);
}

.contact-submit-btn i {
    transition: .3s ease;
}

.contact-submit-btn:hover i {
    transform:
        translate(3px, -3px);
}


/* =====================================================
   SUCCESS
===================================================== */

.contact-success-message {
    display: none;

    align-items: center;

    gap: 12px;

    padding: 14px;

    border-radius: 11px;

    background: #eaf9f1;

    border: 1px solid #cceede;
}

.contact-success-message.show {
    display: flex;
}

.contact-success-message>i {
    color: #20a464;

    font-size: 22px;
}

.contact-success-message strong,
.contact-success-message span {
    display: block;
}

.contact-success-message strong {
    color: #176a43;

    font-size: 12px;
}

.contact-success-message span {
    color: #55816d;

    font-size: 10px;

    margin-top: 2px;
}


/* =====================================================
   ADDRESS
===================================================== */

.contact-address-section {
    padding:
        100px 0;

    background: #f7fbfe;
}

.address-card {
    position: relative;

    height: 100%;

    padding: 35px;

    overflow: hidden;

    border-radius: 23px;

    background: #fff;

    border: 1px solid #e2edf2;

    transition: .45s ease;
}

.address-card::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -70px;
    bottom: -80px;

    border-radius: 50%;

    background:
        rgba(8, 164, 239, .05);

    transition: .5s ease;
}

.address-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 55px rgba(7, 24, 39, .08);
}

.address-card:hover::after {
    transform:
        scale(1.4);
}

.address-card-top {
    display: flex;

    align-items: center;

    gap: 12px;
}

.address-card-top>span {
    color: var(--primary);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.4px;
}

.address-icon {
    width: 48px;
    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    color: var(--primary);

    background:
        rgba(8, 164, 239, .09);

    font-size: 20px;
}

.address-card h3 {
    color: var(--dark);

    font-size: 20px;

    margin:
        23px 0 13px;
}

.address-card p {
    max-width: 520px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.9;

    margin: 0;
}

.address-link {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: var(--primary);

    font-size: 11px;

    font-weight: 600;
}

.address-link i {
    transition: .3s ease;
}

.address-link:hover i {
    transform:
        translate(3px, -3px);
}


/* =====================================================
   MAP
===================================================== */

.contact-map-section {
    padding:
        0 0 100px;

    background: #f7fbfe;
}

.contact-map-wrapper {
    position: relative;

    height: 480px;

    overflow: hidden;

    border-radius: 27px;

    border: 8px solid #fff;

    box-shadow:
        0 20px 60px rgba(7, 24, 39, .1);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;

    border: 0;

    filter:
        grayscale(.15) contrast(.95);
}

.map-floating-card {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px 17px;

    border-radius: 14px;

    background:
        rgba(255, 255, 255, .95);

    box-shadow:
        0 15px 40px rgba(7, 24, 39, .13);
}

.map-floating-icon {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    color: #fff;

    background: var(--primary);
}

.map-floating-card strong,
.map-floating-card span {
    display: block;
}

.map-floating-card strong {
    color: var(--dark);

    font-size: 12px;
}

.map-floating-card span {
    color: var(--muted);

    font-size: 9px;

    margin-top: 3px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.contact-final-cta {
    padding:
        0 0 100px;

    background: #f7fbfe;
}

.contact-final-box {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 55px;

    border-radius: 28px;

    background:
        linear-gradient(135deg,
            #071827,
            #0b2e43);

    overflow: hidden;

    position: relative;
}

.contact-final-box::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -180px;
    top: -200px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .08);
}

.contact-final-box>div {
    position: relative;
    z-index: 1;
}

.contact-final-box span {
    color: var(--primary);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.contact-final-box h2 {
    max-width: 600px;

    color: #fff;

    font-size: clamp(30px, 4vw, 45px);

    line-height: 1.15;

    margin:
        12px 0;
}

.contact-final-box h2 strong {
    color: var(--primary);
}

.contact-final-box p {
    max-width: 550px;

    color:
        rgba(255, 255, 255, .55);

    font-size: 12px;

    line-height: 1.8;

    margin: 0;
}

.contact-final-buttons {
    display: flex;

    flex-shrink: 0;

    gap: 10px;

    flex-wrap: wrap;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .contact-quick-grid {
        grid-template-columns: 1fr;
    }

    .contact-quick-section {
        margin-top: -30px;
    }

    .contact-final-box {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .contact-hero {
        min-height: 540px;

        padding:
            130px 0 90px;
    }

    .contact-hero h1 {
        font-size: 43px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-address-section {
        padding: 70px 0;
    }

    .contact-map-wrapper {
        height: 390px;

        border-width: 5px;
    }

    .contact-final-box {
        padding: 35px 25px;
    }

}


@media (max-width: 575px) {

    .contact-hero h1 {
        font-size: 37px;
    }

    .contact-hero p {
        font-size: 13px;
    }

    .contact-hero-actions {
        flex-direction: column;
    }

    .contact-hero-actions .btn {
        width: 100%;
    }

    .contact-quick-card {
        padding: 16px;
    }

    .contact-quick-card strong {
        font-size: 11px;
    }

    .contact-detail-item strong {
        font-size: 11px;
    }

    .contact-map-wrapper {
        height: 330px;
    }

    .map-floating-card {
        left: 15px;
        bottom: 15px;
        right: 15px;
    }

    .contact-final-buttons {
        width: 100%;

        flex-direction: column;
    }

    .contact-final-buttons .btn {
        width: 100%;
    }

}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* =====================================================
   PRODUCTS HERO
===================================================== */

.products-hero {
    min-height: 560px;

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;

    background: #071827;
}

.products-hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(4, 20, 32, .97),
            rgba(4, 20, 32, .72),
            rgba(4, 20, 32, .4)),
        url("../img/14.jpg") center/cover no-repeat;
}

.products-hero h1 {
    max-width: 750px;

    color: #fff;

    font-family:
        var(--heading-font,
            "Outfit",
            sans-serif);

    font-size:
        clamp(42px, 5.5vw, 67px);

    line-height: 1.07;

    margin:
        25px 0 20px;
}

.products-hero h1 span {
    display: block;

    color: var(--primary);
}

.products-hero p {
    max-width: 650px;

    color:
        rgba(255, 255, 255, .66);

    font-size: 14px;

    line-height: 1.85;
}

.products-hero-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.products-hero-meta div {
    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        10px 14px;

    border-radius: 50px;

    color:
        rgba(255, 255, 255, .8);

    background:
        rgba(255, 255, 255, .06);

    border:
        1px solid rgba(255, 255, 255, .1);

    backdrop-filter: blur(10px);

    font-size: 10px;
}

.products-hero-meta i {
    color: var(--primary);
}


/* =====================================================
   PRODUCT SECTION
===================================================== */

.products-section {
    background: #fff;
}


/* =====================================================
   CATEGORY TABS
===================================================== */

.product-category-wrap {
    margin-top: 45px;

    overflow-x: auto;

    padding:
        5px 2px 12px;

    scrollbar-width: thin;
}

.product-category-tabs {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    min-width: max-content;
}

.product-category-btn {
    position: relative;

    border: 1px solid #dce8ed;

    background: #fff;

    color: #687b85;

    padding:
        11px 18px;

    border-radius: 50px;

    font-size: 11px;

    font-weight: 600;

    cursor: pointer;

    transition:
        color .3s ease,
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.product-category-btn:hover {
    color: var(--primary);

    border-color:
        rgba(8, 164, 239, .35);

    transform:
        translateY(-2px);
}

.product-category-btn.active {
    color: #fff;

    border-color: var(--primary);

    background: var(--primary);

    box-shadow:
        0 8px 22px rgba(8, 164, 239, .18);
}


/* =====================================================
   TOOLBAR
===================================================== */

.products-toolbar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin:
        30px 0;
}

.products-result-count {
    color: var(--muted);

    font-size: 11px;

    font-weight: 600;
}

.product-search-box {
    position: relative;

    width: 270px;
}

.product-search-box i {
    position: absolute;

    top: 50%;
    left: 15px;

    transform:
        translateY(-50%);

    color: #91a2aa;

    font-size: 14px;
}

.product-search-box input {
    width: 100%;

    height: 45px;

    padding:
        0 15px 0 42px;

    border:
        1px solid #dfe9ee;

    border-radius: 10px;

    outline: none;

    color: var(--dark);

    background: #fff;

    font-size: 11px;

    transition: .3s ease;
}

.product-search-box input:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(8, 164, 239, .07);
}


/* =====================================================
   PRODUCT CARD
===================================================== */

.product-card {
    position: relative;

    height: 100%;

    overflow: hidden;

    border-radius: 19px;

    background: #fff;

    border:
        1px solid #e4edf1;

    cursor: pointer;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}

.product-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(8, 164, 239, .3);

    box-shadow:
        0 22px 50px rgba(7, 24, 39, .1);
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.product-image {
    position: relative;

    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    overflow: hidden;

    background: #f7fafb;
}

.product-image img {
    display: block;

    width: 100%;

    height: auto;

    /*
       IMPORTANT:
       No fixed height.
       No object-fit: cover.
       Image will NOT be cropped.
    */

    transition:
        transform .7s cubic-bezier(.2, .7, .2, 1);
}

.product-card:hover .product-image img {
    transform:
        scale(1.045);
}


/* =====================================================
   PRODUCT IMAGE OVERLAY
===================================================== */

.product-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(3, 18, 30, .74),
            rgba(3, 18, 30, .18),
            rgba(3, 18, 30, .04));

    opacity: .9;

    transition:
        opacity .45s ease;
}

.product-card:hover .product-image::after {
    background:
        linear-gradient(135deg,
            rgba(4, 30, 45, .78),
            rgba(8, 164, 239, .25));

    opacity: 1;
}


/* =====================================================
   PRODUCT NAME
===================================================== */

.product-name {
    position: absolute;

    z-index: 3;

    left: 20px;
    right: 20px;

    bottom: 17px;

    margin: 0;

    color: #fff;

    font-family:
        var(--heading-font,
            "Outfit",
            sans-serif);

    font-size: 16px;

    font-weight: 600;

    line-height: 1.25;

    text-align: center;

    transition:
        bottom .55s cubic-bezier(.2, .7, .2, 1),
        transform .55s cubic-bezier(.2, .7, .2, 1),
        font-size .45s ease;
}


/*
   NORMAL:
   name = bottom

   HOVER:
   name = center
*/

.product-card:hover .product-name {

    bottom: 50%;

    transform:
        translateY(50%);

    font-size: 19px;

}


/* =====================================================
   VIEW PRODUCT
===================================================== */

.product-view-icon {
    position: absolute;

    z-index: 4;

    top: 15px;
    right: 15px;

    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #fff;

    background:
        rgba(7, 24, 39, .55);

    border:
        1px solid rgba(255, 255, 255, .18);

    backdrop-filter:
        blur(8px);

    opacity: 0;

    transform:
        scale(.7) rotate(-15deg);

    transition:
        opacity .35s ease,
        transform .45s ease;
}

.product-card:hover .product-view-icon {
    opacity: 1;

    transform:
        scale(1) rotate(0);
}


/* =====================================================
   PRODUCT META
===================================================== */

.product-card-meta {
    padding:
        13px 17px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    background: #fff;
}

.product-card-category {
    color: var(--primary);

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .5px;
}

.product-card-size {
    color: #8999a2;

    font-size: 9px;

    white-space: nowrap;
}


/* =====================================================
   NO RESULT
===================================================== */

.product-no-result {
    display: none;

    padding:
        80px 20px;

    text-align: center;
}

.product-no-result.show {
    display: block;
}

.product-no-result i {
    color: #c5d4da;

    font-size: 45px;
}

.product-no-result h3 {
    color: var(--dark);

    font-size: 20px;

    margin:
        15px 0 7px;
}

.product-no-result p {
    color: var(--muted);

    font-size: 12px;

    margin: 0;
}


/* =====================================================
   CTA
===================================================== */

.products-cta-section {
    padding:
        0 0 100px;

    background: #fff;
}

.products-cta-box {
    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding:
        55px;

    border-radius: 28px;

    background:
        linear-gradient(135deg,
            #071827,
            #0b3045);
}

.products-cta-box::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -170px;
    top: -180px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, .08);
}

.products-cta-box>div {
    position: relative;

    z-index: 1;
}

.products-cta-box span {
    color: var(--primary);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.products-cta-box h2 {
    color: #fff;

    font-family:
        var(--heading-font,
            "Outfit",
            sans-serif);

    font-size:
        clamp(30px, 4vw, 45px);

    line-height: 1.15;

    margin:
        12px 0;
}

.products-cta-box h2 strong {
    color: var(--primary);
}

.products-cta-box p {
    max-width: 550px;

    color:
        rgba(255, 255, 255, .55);

    font-size: 12px;

    line-height: 1.8;

    margin: 0;
}

.products-cta-buttons {
    display: flex;

    flex-shrink: 0;

    gap: 10px;

    flex-wrap: wrap;
}


/* =====================================================
   PRODUCT RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .product-category-tabs {
        justify-content: flex-start;
    }

    .products-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 40px 30px;
    }

}


@media (max-width: 767px) {

    .products-hero {
        min-height: 530px;

        padding:
            125px 0 80px;
    }

    .products-hero h1 {
        font-size: 42px;
    }

    .products-toolbar {
        align-items: stretch;

        flex-direction: column;
    }

    .product-search-box {
        width: 100%;
    }

    .product-name {
        font-size: 14px;
    }

    .product-card:hover .product-name {
        font-size: 17px;
    }

}


@media (max-width: 575px) {

    .products-hero h1 {
        font-size: 36px;
    }

    .products-hero-meta {
        gap: 7px;
    }

    .products-hero-meta div {
        width: 100%;

        justify-content: center;
    }

    .product-category-wrap {
        margin-top: 30px;
    }

    .product-category-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .product-category-btn {
        flex-shrink: 0;
    }

    .products-cta-box {
        padding:
            32px 22px;
    }

    .products-cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .products-cta-buttons .btn {
        width: 100%;
    }

}


/* =====================================================
   PRODUCT DETAIL HERO
===================================================== */

.product-detail-hero {
    padding-top: 105px;
    padding-bottom: 25px;

    background: #071827;
}

.product-breadcrumb {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    color: rgba(255, 255, 255, .5);

    font-size: 10px;
}

.product-breadcrumb a {
    color: rgba(255, 255, 255, .65);

    transition: .3s ease;
}

.product-breadcrumb a:hover {
    color: var(--primary);
}

.product-breadcrumb i {
    font-size: 8px;

    color: rgba(255, 255, 255, .3);
}

.product-breadcrumb span {
    color: var(--primary);

    max-width: 300px;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =====================================================
   PRODUCT DETAIL
===================================================== */

.product-detail-section {
    padding:
        80px 0 100px;

    background: #fff;
}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.product-detail-image-wrap {
    position: relative;

    padding: 25px;

    border-radius: 27px;

    background:
        linear-gradient(145deg,
            #f8fbfc,
            #eef6f9);

    border:
        1px solid #e2edf1;

    overflow: hidden;
}

.product-detail-image {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    overflow: hidden;

    background: #fff;
}

.product-detail-image img {
    display: block;

    width: 100%;

    height: auto;

    /*
       IMPORTANT:
       No object-fit: cover.
       No fixed height.
       Original ratio preserved.
    */

    transition:
        transform .8s cubic-bezier(.2, .7, .2, 1);
}

.product-detail-image-wrap:hover .product-detail-image img {
    transform:
        scale(1.025);
}


.product-image-badge {
    position: absolute;

    left: 42px;
    bottom: 42px;

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        9px 13px;

    border-radius: 50px;

    color: #fff;

    background:
        rgba(7, 24, 39, .85);

    backdrop-filter:
        blur(10px);

    font-size: 9px;

    font-weight: 600;

    box-shadow:
        0 10px 25px rgba(7, 24, 39, .15);
}

.product-image-badge i {
    color: var(--primary);

    font-size: 13px;
}


/* =====================================================
   PRODUCT CONTENT
===================================================== */

.product-detail-content {
    padding-left: 10px;
}

.product-detail-category {
    display: inline-flex;

    align-items: center;

    padding:
        7px 13px;

    border-radius: 50px;

    color: var(--primary);

    background:
        rgba(8, 164, 239, .08);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.product-detail-content h1 {
    color: var(--dark);

    font-family:
        var(--heading-font,
            "Outfit",
            sans-serif);

    font-size:
        clamp(35px, 4vw, 52px);

    line-height: 1.08;

    margin:
        18px 0 20px;
}

.product-detail-line {
    width: 55px;
    height: 3px;

    border-radius: 5px;

    background: var(--primary);

    margin-bottom: 25px;
}


/* =====================================================
   PRODUCT INFO
===================================================== */

.product-info-box {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px;

    border:
        1px solid #e4edf1;

    border-radius: 13px;

    margin-bottom: 13px;

    background: #fff;

    transition: .35s ease;
}

.product-info-box:hover {
    transform:
        translateX(5px);

    border-color:
        rgba(8, 164, 239, .3);

    box-shadow:
        0 10px 30px rgba(7, 24, 39, .05);
}

.product-info-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 11px;

    color: var(--primary);

    background:
        rgba(8, 164, 239, .08);

    font-size: 18px;
}

.product-info-box span {
    display: block;

    color: #8b9ba4;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 5px;
}

.product-info-box strong {
    display: block;

    color: var(--dark);

    font-size: 12px;

    line-height: 1.5;
}


/* =====================================================
   TECHNICAL
===================================================== */

.product-technical-box {
    padding: 19px;

    border-radius: 15px;

    background: #f6fafc;

    border:
        1px solid #e3edf2;

    margin-bottom: 20px;
}

.product-info-heading {
    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--dark);

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 9px;
}

.product-info-heading i {
    color: var(--primary);

    font-size: 15px;
}

.product-technical-box p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;

    margin: 0;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.product-description h3 {
    color: var(--dark);

    font-family:
        var(--heading-font,
            "Outfit",
            sans-serif);

    font-size: 19px;

    margin-bottom: 9px;
}

.product-description p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.9;

    margin: 0;
}


/* =====================================================
   ACTIONS
===================================================== */

.product-detail-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 28px;
}

.product-enquiry-btn {
    color: #fff !important;

    background: var(--primary) !important;

    border: 0 !important;

    border-radius: 10px;

    padding:
        13px 21px;

    font-size: 11px;

    font-weight: 600;

    transition: .35s ease;
}

.product-enquiry-btn:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px rgba(8, 164, 239, .2);
}

.product-whatsapp-btn {
    color: #fff !important;

    background: #20a464 !important;

    border: 0 !important;

    border-radius: 10px;

    padding:
        13px 21px;

    font-size: 11px;

    font-weight: 600;

    transition: .35s ease;
}

.product-whatsapp-btn:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px rgba(32, 164, 100, .2);
}


/* =====================================================
   CALL LINE
===================================================== */

.product-call-line {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 18px;

    color: #8b9ba4;

    font-size: 10px;
}

.product-call-line i {
    color: var(--primary);

    margin-right: 2px;
}

.product-call-line a {
    color: var(--dark);

    font-weight: 600;
}

.product-call-line a:hover {
    color: var(--primary);
}


/* =====================================================
   LOADING
===================================================== */

.product-detail-loading {
    min-height: 500px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;
}

.product-loader {
    width: 42px;
    height: 42px;

    border:
        3px solid #e5eef2;

    border-top-color:
        var(--primary);

    border-radius: 50%;

    animation:
        productLoaderSpin .8s linear infinite;
}

.product-detail-loading p {
    color: var(--muted);

    font-size: 11px;

    margin-top: 13px;
}

@keyframes productLoaderSpin {

    to {
        transform: rotate(360deg);
    }

}


/* =====================================================
   ERROR
===================================================== */

.product-detail-error {
    min-height: 450px;

    text-align: center;

    padding-top: 80px;
}

.product-detail-error>i {
    color: #cbd8de;

    font-size: 50px;
}

.product-detail-error h2 {
    color: var(--dark);

    font-family:
        var(--heading-font,
            "Outfit",
            sans-serif);

    font-size: 28px;

    margin:
        15px 0 7px;
}

.product-detail-error p {
    color: var(--muted);

    font-size: 12px;

    margin-bottom: 20px;
}


/* =====================================================
   RELATED PRODUCTS
===================================================== */

.related-products-section {
    padding:
        100px 0;

    background: #f7fbfd;
}

.related-product-card {
    position: relative;

    height: 100%;

    overflow: hidden;

    border-radius: 18px;

    background: #fff;

    border:
        1px solid #e2edf1;

    cursor: pointer;

    transition: .4s ease;
}

.related-product-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(8, 164, 239, .3);

    box-shadow:
        0 20px 45px rgba(7, 24, 39, .08);
}

.related-product-image {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background: #f7fafb;
}

.related-product-image img {
    display: block;

    width: 100%;

    height: auto;

    transition:
        transform .6s ease;
}

.related-product-card:hover .related-product-image img {
    transform:
        scale(1.04);
}

.related-product-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(7, 24, 39, .28);

    opacity: 0;

    transition: .35s ease;
}

.related-product-card:hover .related-product-overlay {
    opacity: 1;
}

.related-product-overlay i {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #fff;

    background: var(--primary);
}

.related-product-info {
    padding: 15px;
}

.related-product-info span {
    display: block;

    color: var(--primary);

    font-size: 8px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .6px;

    margin-bottom: 5px;
}

.related-product-info h3 {
    color: var(--dark);

    font-family:
        var(--heading-font,
            "Outfit",
            sans-serif);

    font-size: 15px;

    line-height: 1.3;

    margin: 0;
}


/* =====================================================
   CTA
===================================================== */

.product-detail-cta {
    padding:
        0 0 100px;

    background: #f7fbfd;
}

.product-detail-cta-box {
    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 55px;

    border-radius: 28px;

    background:
        linear-gradient(135deg,
            #071827,
            #0b3045);
}

.product-detail-cta-box::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    right: -170px;
    top: -180px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, .08);
}

.product-detail-cta-box>div {
    position: relative;

    z-index: 1;
}

.product-detail-cta-box span {
    color: var(--primary);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.product-detail-cta-box h2 {
    color: #fff;

    font-family:
        var(--heading-font,
            "Outfit",
            sans-serif);

    font-size:
        clamp(29px, 4vw, 44px);

    line-height: 1.15;

    margin:
        12px 0;
}

.product-detail-cta-box h2 strong {
    color: var(--primary);
}

.product-detail-cta-box p {
    color:
        rgba(255, 255, 255, .55);

    font-size: 12px;

    line-height: 1.8;

    margin: 0;
}

.product-detail-cta-actions {
    display: flex;

    flex-shrink: 0;

    gap: 10px;

    flex-wrap: wrap;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .product-detail-content {
        padding-left: 0;
    }

    .product-detail-cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 40px 30px;
    }

}


@media (max-width: 767px) {

    .product-detail-section {
        padding:
            60px 0 75px;
    }

    .product-detail-image-wrap {
        padding: 15px;

        border-radius: 20px;
    }

    .product-image-badge {
        left: 28px;
        bottom: 28px;
    }

    .product-detail-content h1 {
        font-size: 36px;
    }

    .related-products-section {
        padding:
            75px 0;
    }

}


@media (max-width: 575px) {

    .product-breadcrumb {
        font-size: 9px;
    }

    .product-detail-actions {
        flex-direction: column;
    }

    .product-detail-actions .btn {
        width: 100%;
    }

    .product-detail-cta-box {
        padding:
            32px 22px;
    }

    .product-detail-cta-actions {
        width: 100%;

        flex-direction: column;
    }

    .product-detail-cta-actions .btn {
        width: 100%;
    }

}