/* =====================================================
   GLOBAL FONT
===================================================== */

@font-face {
    font-family: "SF Pro";
    src: url("../assets/fonts/SF-Pro.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {
    --primary: #E31E24;
    --primary-dark: #C5161B;
    --text: #111827;
    --muted: #6B7280;
    --bg: #F5F5F5;
    --white: #ffffff;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "SF Pro", -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, sans-serif;
}

body {
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =====================================================
   GLOBAL LAYOUT
===================================================== */

.container {
    width: 94%;
    max-width: 1400px;
    margin: auto;
}

section {
    padding: 80px 0;
}

h1,
h2,
h3 {
    color: var(--text);
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 108px;
}

/* LOGO */

.nav-logo img {
    height: 108px;
    /* border: 1px solid rgba(38, 37, 39, 0.752); */
    /* border-radius: 6px; */
}


/* DESKTOP MENU */

.nav-menu {
    display: flex;
    gap: 36px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text);
    transition: .3s;
}

.nav-menu a:hover {
    color: var(--primary);
}


/* BUTTON */

.nav-btn {
    background: var(--primary);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 500;
    transition: .3s;
}

.nav-btn:hover {
    background: var(--primary-dark);
}


/* RIGHT SIDE */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* MOBILE MENU ICON */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* .mobile-cta {
    display: none;
} */

/* ================= DROPDOWN ================= */

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -120px;

    background: #fff;
    padding: 25px 30px;

    display: flex;
    gap: 60px;

    min-width: 500px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border-radius: 8px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s ease;

    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    min-width: 185px;
}

.dropdown-column h4 {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 600;
}

.dropdown-column a {
    padding: 6px 0px;
    font-size: 14px;
    color: #333;
    transition: .2s;
}

.dropdown-column a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: .3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}



/* =====================================================
   HERO SECTION
===================================================== */

/* ================= HERO ================= */

.hero {
    /* height: 100vh; */
    min-height: 800px;

    display: flex;
    align-items: center;

    padding-top: 84px;
    position: relative;
    overflow: hidden;
    background-attachment: scroll;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transition: background 0.8s ease-in-out;
    /* fixed */
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.88) 40%,
            rgba(255, 255, 255, 0.195) 50%,
            rgba(255, 255, 255, 0.0) 75%);

    z-index: 1;
}

/* ================= HERO CONTENT ================= */

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width:520px; */

    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 100%;
    width: 100%;
}

.hero-text {
    max-width: 920px;
    /* padding: 564px 0px; */
    padding-top: 124px;
    position: relative;
    z-index: 3;
}

.hero-text h1 {
    color: #1a1a1a;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 24px;
    color: #440103;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    max-width: 620px;
}

/* EMBLEM POSITION */
.hero-emblem {
    position: absolute;
    top: 140px;
    left: 3%;
    z-index: 5;
}

/* EMBLEM SIZE */
.hero-emblem img {
    width: clamp(70px, 8vw, 130px);
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

.hero-terms {
    position: absolute;
    padding: 2px 16px;
    border-radius: 999px;
    right: 40px;
    bottom: 25px;
    font-size: 16px;
    background-color: var(--primary);
    /* color: var(--primary-dark); */
    color: #fff;
    font-weight: 500;
    opacity: 0.9;
    z-index: 5;
}

/* Mobile adjustment */
@media (max-width:768px) {
    .hero-terms {
        right: 15px;
        bottom: 36px;
        font-size: 10px;
    }
}



/* ================= BUTTON ================= */

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border: 1px solid white;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: .3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

/* ================= DOTS (FIXED POSITIONING) ================= */

.hero-dots {
    position: absolute;
    bottom: 40px;
    /* FIXED */
    left: 50%;
    transform: translateX(-50%);
}

.hero-dots span {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #cfcfcf;
    display: inline-block;
    margin: 0 6px;
    transition: 0.3s ease;
}

.hero-dots .active {
    background: var(--primary);
}

/* ================= HERO SIDE ARROWS ================= */

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;

    width: 48px;
    height: 48px;

    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);

    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #333;
    font-size: 14px;

    cursor: pointer;
    transition: all 0.3s ease;

    opacity: 0;
}

/* FIXED: matching your HTML classes */
.hero-arrow.prev {
    left: 25px;
}

.hero-arrow.next {
    right: 25px;
}

/* Show on hover */
.hero:hover .hero-arrow {
    opacity: 1;
}

/* Premium hover */
.hero-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   TRUST SECTION
===================================================== */

.trust {
    background: #f7f7f7;
    position: relative;
    text-align: center;
}

.trust::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 30%, rgba(227, 30, 36, 0.06), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(227, 30, 36, 0.05), transparent 45%);

    pointer-events: none;
}

.section-title {
    font-size: 56px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-desc {
    max-width: 720px;
    margin: 0 auto 55px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 220px;
}

.trust-item p {
    line-height: 1.4;
    max-width: 180px;
}

.trust-number {
    font-size: 48px;
    color: var(--primary);
    font-weight: 700;
}

.trust-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 12px;
}

.trust-divider {
    width: 1px;
    height: 75px;
    background: #e5e7eb;
}


/*======================================================
    Animation
===================================================== */

/* ===================================
   TRUSTED CLIENTS — INFINITE LOOP
=================================== */

.trusted-logos {
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
}

.logo-row {
    overflow: hidden;
    width: 100%;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
}

/* logo styling */
.logo-track img {
    height: 60px;
    object-fit: contain;
    opacity: 0.75;
    transition: all .3s ease;
}

.logo-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}


/* ================= ANIMATION ================= */

/* Top row → LEFT */
.logo-row-top .logo-track {
    animation: trustedScrollLeft 55s linear infinite;
}

/* Bottom row → RIGHT */
.logo-row-bottom .logo-track {
    animation: trustedScrollRight 55s linear infinite;
}


/* smooth seamless motion */
@keyframes trustedScrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes trustedScrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* =====================================================
   PRODUCTS
===================================================== */

.products {
    background: #fff;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 30px 20px;
    transition: .3s;
}

.product-card img {
    height: 140px;
    margin: auto;
    object-fit: contain;
}

.product-card h4 {
    margin-top: 18px;
    font-weight: 500;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.center {
    margin-top: 40px;
}

.btn-outline {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    transition: .3s;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.product-enquire-btn {
    margin-top: 16px;
    text-align: center;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s ease;
}

.product-enquire-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}



/* =====================================================
   CERTIFICATIONS SECTION
===================================================== */

.certifications {
    background: #ffffff;
    position: relative;
    text-align: center;
}

.certifications::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 30%, rgba(221, 178, 179, 0.06), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(225, 183, 184, 0.05), transparent 45%);

    pointer-events: none;
}


/* subtitle */
.section-subtitle {
    color: var(--muted);
    margin-top: 10px;
    margin-bottom: 50px;
    font-size: 16px;
}

/* grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* card */
.cert-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;

    border: 1px solid rgba(255, 255, 255, .6);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .06),
        inset 0 1px 0 rgba(255, 255, 255, .6);

    transition: .35s ease;
}

/* icon */
.cert-card img {
    height: 120px;
    display: block;
    /* VERY IMPORTANT */
    margin: 0 auto;
    /* centers horizontally */
    width: auto;
    object-fit: contain;
}

/* title */
.cert-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* description */
.cert-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

/* hover effect (subtle corporate feel) */
.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

/* certification icons */

.cert-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

/* optional soft badge feel */
.cert-card:hover .cert-icon {
    transform: scale(1.08);
    transition: .3s ease;
}

.cert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.cert-icon svg {
    width: 56px;
    height: 56px;
}



/* =====================================================
   TRUSTED LOGOS
===================================================== */

.trusted-wrapper {
    margin-top: 70px;
    text-align: center;
}

.trusted-label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.trusted-label span {
    background: var(--primary);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.trusted-ribbon {
    position: relative;
    width: fit-content;
    margin: 0 auto -18px;

    padding: 10px 38px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;

    background: linear-gradient(135deg,
            #ff2a2f,
            #e31e24 45%,
            #c5161b);

    /* trapezium shape */
    clip-path: polygon(8% 0,
            92% 0,
            100% 100%,
            0% 100%);

    box-shadow:
        0 6px 14px rgba(227, 30, 36, .35);

    overflow: hidden;
    z-index: 2;
}

.trusted-ribbon::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(120deg,
            rgba(255, 255, 255, .6) 0%,
            rgba(255, 255, 255, .25) 20%,
            transparent 45%);

    opacity: .5;
    pointer-events: none;
}

.trusted-ribbon::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .8) 1.5px, transparent 2px),
        radial-gradient(circle, rgba(255, 255, 255, .6) 1px, transparent 2px);

    background-size: 40px 40px, 70px 70px;
    background-position: 10px 6px, 30px 20px;

    opacity: .35;
    pointer-events: none;
}

.trusted-ribbon span {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .25);
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2px 36px;
}

.trusted-logos img {
    height: 164px;
    object-fit: contain;

    /* filter: grayscale(100%); */
    opacity: 0.8;

    transition: .3s ease;
}

.trusted-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}


/* =========================================
   TRUSTED SECTION BACKGROUND
========================================= */

.trusted-section {
    position: relative;
    padding: 80px 0;

    /* background image */
    background-image: url("../assets/img/trusted-desktop.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.trusted-box {
    position: relative;

    /* glass background */
    background: rgba(255, 255, 255, 0.65);

    border-radius: 14px;
    padding: 16px 24px;

    /* glass blur */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    /* soft glass border */
    border: 1px solid rgba(255, 255, 255, 0.5);

    /* depth shadow */
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* ---------TESTIMONIALS--------- */
.testimonials {
    padding: 90px 0;
    background:
        url("../assets/img/backgrounds/testimonial-bg.png") center/cover no-repeat;
    text-align: center;
}

.section-title span {
    color: var(--primary);
    position: relative;
}

.section-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.testimonial-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    border-radius: 16px;

    padding: 28px;
    width: 480px;
    text-align: left;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .08);

    transition: .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.testimonial-header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}

.user-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.location {
    font-size: 13px;
    color: var(--muted);
}

.stars {
    color: #ffb400;
    font-size: 14px;
    margin-top: 4px;
}

.review-text {
    font-size: 16px;
    margin: 16px 0;
    line-height: 1.6;
}

.review-text .highlight {
    color: var(--primary);
    font-weight: 600;
}

.review-images {
    display: flex;
    gap: 10px;
}

.review-images img {
    width: 48%;
    border-radius: 8px;
    object-fit: cover;
}

.testimonial-dots {
    margin: 28px 0;
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    background: #cfcfcf;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}

.testimonial-dots .active {
    background: var(--primary);
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    position: relative;
    color: #fff;

    background:
        url("../assets/img/footer-desktop.svg") center top / cover no-repeat;

    padding: 60px 0 0;
    /* smaller top spacing */
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 30%,
            rgba(5, 8, 20, .85) 60%,
            rgba(5, 8, 20, .96) 85%);

    pointer-events: none;
}

.site-footer>* {
    position: relative;
    z-index: 2;
}

.footer-cta {
    /* max-width: 520px; */
    padding-bottom: 40px;
}

.footer-cta h2 {
    font-size: 38px;
    /* reduced from 48 */
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-cta p {
    font-size: 15px;
    opacity: .9;
    margin-bottom: 32px;
}

/* ================= CTA BUTTON ================= */

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #111;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 600;
    transition: all .3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
}

/* arrow animation base */
.cta-arrow {
    transition: transform .3s ease;
}

/* HOVER EFFECT */
.cta-btn:hover {
    transform: translateY(-0.5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
}

/* arrow slide */
.cta-btn:hover .cta-arrow {
    transform: translateX(6px);
}

.footer-logo {
    height: 84px;
}

.footer-features {
    /* background: rgba(0, 0, 0, .45); */
    backdrop-filter: blur(8px);

    border-top: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);

    padding: 12px 0;
    /* smaller height */
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: .95;
}

.footer-main {
    padding: 60px 0 50px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-main h4 {
    font-size: 16px;
    margin-bottom: 14px;
    font-weight: 600;
}

.footer-main a,
.footer-main li,
.footer-main p {
    font-size: 14px;
    opacity: .85;
    line-height: 1.7;
}

.footer-main a:hover {
    color: var(--primary);
}

.footer-main ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-main li {
    margin-bottom: 6px;
}


/* =====================================================
   FOOTER COPYRIGHT BAR
===================================================== */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    background: rgba(5, 8, 20, 0.85);
    backdrop-filter: blur(6px);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
}

/* LINKS */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    color: rgba(255, 255, 255, .75);
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

/* ================================
   FOOTER MAP
================================ */

.footer-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 12px;
}

/* glass container look */
.map-wrapper {
    overflow: hidden;
    border-radius: 12px;

    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, .15);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .35);
}

/* =====================================
   FLOATING SOCIAL STATUS BAR
===================================== */

.social-bar {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 9999;
}

/* =====================================
   HIDE SOCIAL BAR WHEN MOBILE MENU OPENS
   (Does NOT affect desktop layout)
===================================== */

@media (max-width: 992px) {

    body.menu-open .social-bar {
        opacity: 0;
        pointer-events: none;
        transform: translateY(-50%) scale(0.95);
        transition: all .3s ease;
    }

}

/* ICON BASE */
.social-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    color: #fff;
    font-size: 18px;

    text-decoration: none;

    backdrop-filter: blur(10px);
    box-shadow:
        0 6px 18px rgba(0, 0, 0, .15);

    transition: all .35s ease;
}

/* Hover animation */
.social-icon:hover {
    transform: translateX(-6px) scale(1.08);
}

/* BRAND COLORS */
.instagram {
    background: linear-gradient(45deg, #fd5949, #d6249f, #285AEB);
}

.facebook {
    background: #1877f2;
}

.youtube {
    background: #ff0000;
}

.whatsapp {
    background: #25d366;
}

.phone {
    background: #111;
}

/* Glow on hover */
.social-icon:hover {
    box-shadow:
        0 10px 28px rgba(0, 0, 0, .25);
}


.view-all {
    margin-top: 8px;
    font-weight: 600;
    color: var(--primary);
    display: inline-block;
}

.view-all:hover {
    text-decoration: underline;
}

/* MOBILE MENU PANEL */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.35s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    right: 0;
}

body.menu-open {
    overflow: hidden;
}

/* MOBILE DROPDOWN */
.mobile-dropdown-menu {
    display: none;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    display: block;
}



/* -----------------------RESPONSIVE NAVBAR--------------------- */
/* ===============================
   MOBILE MENU DRAWER
================================ */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;

    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);

    z-index: 9999;

    transition: right 0.35s ease;
    overflow-y: auto;
    padding: 90px 24px 30px;
}

.mobile-nav-prod {
    display: flex;
    flex-direction: row;
    gap: 164px;
}

/* OPEN STATE */
.mobile-menu.active {
    right: 0;
}

/* Prevent body scroll */
body.menu-open {
    overflow: hidden;
}

.mobile-nav a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    color: #222;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.mobile-nav a:hover {
    color: #e31e24;
}

/* ================= MOBILE DROPDOWN IMPROVED ================= */

.mobile-dropdown {
    border-top: 1px solid #e5e7eb;
    padding: 8px 0;
}

.mobile-nav-prod {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    cursor: pointer;
}

.mobile-nav-prod a {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: transform .25s ease;
}

/* Rotate arrow when open */
.mobile-dropdown.open .mobile-dropdown-toggle {
    transform: rotate(180deg);
}

/* DROPDOWN MENU CONTAINER */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    padding-left: 10px;
}

/* Open state */
.mobile-dropdown.open .mobile-dropdown-menu {
    max-height: 1000px;
    /* large enough */
    padding-bottom: 10px;
}

/* CATEGORY HEADINGS */
.mobile-dropdown-menu h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 16px 0 8px;
    color: #6B7280;
}

/* PRODUCT LINKS */
.mobile-dropdown-menu a {
    display: block;
    padding: 10px 0 10px 10px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid #f1f2f4;
}

.mobile-dropdown-menu a:hover {
    color: var(--primary);
}

/* VIEW ALL STYLE */
.mobile-dropdown-menu .view-all {
    font-weight: 600;
    color: var(--primary);
    border-bottom: none;
}

/* ADMIN BUTTON */
.mobile-admin-btn {
    display: block;
    margin-top: 25px;
    background: var(--primary);
    color: #fff !important;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}


/* =====================================================
   RESPONSIVE BASE
===================================================== */

@media (max-width:1460px) {

    /* HERO TEXT */

    .hero-text {
        max-width: 560px;
        padding-top: clamp(120px, 14vh, 160px);
        left: 4%;
        position: relative;
        z-index: 3;
    }

    .hero-text h1 {
        font-size: clamp(44px, 4vw, 58px);
    }

    .hero-text p {
        font-size: 20px;
        max-width: 540px;
    }

    /* EMBLEM */

    .hero-emblem {
        top: 135px;
        left: 3%;
    }

    .hero-emblem img {
        width: 110px;
    }

}

@media (max-width:1024px) {

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-btn {
        display: none;
    }

    .container {
        width: 92%;
    }

    section {
        padding: 60px 0;
    }

    /* HERO */

    .hero {
        min-height: 620px;
        /* background: url("../assets/img/hero-tab.png") center/cover no-repeat; */
        background-position: right center;
        padding-top: 108px;
    }

    .hero::before {
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.88) 0%,
                rgba(255, 255, 255, 0.75) 35%,
                rgba(255, 255, 255, 0.30) 65%,
                rgba(255, 255, 255, 0) 100%);
    }

    /* STACK HERO */
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    /* HERO TEXT */

    .hero-text {
        max-width: 520px;
        padding-top: 180px;
    }

    .hero-text h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 18px;
    }

    /* EMBLEM */

    .hero-emblem {
        top: 120px;
        left: 5%;
    }

    .hero-emblem img {
        width: 120px;
    }

    /* DOTS */

    .hero-dots {
        bottom: 25px;
    }

    /* ARROWS */

    .hero-arrow {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    /* TRUST */

    .section-title {
        font-size: 36px;
    }

    .section-desc {
        font-size: 15px;
        margin-bottom: 45px;
    }

    .trust-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .trust-item {
        width: 45%;
    }

    .trust-divider {
        display: none;
    }

    /* PRODUCTS */

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CERTIFICATES */

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* FOOTER */

    .footer-cta {
        text-align: center;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

}




@media (max-width: 768px) {

    .testimonial-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 100%;
    }

    .social-bar {
        right: 10px;
        gap: 10px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

}







@media (max-width:576px) {

    /* ================= MOBILE NAVBAR ================= */

    .navbar {
        height: 70px;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    }

    /* FLEX LAYOUT */
    .nav-container {
        display: flex;
        align-items: center;
        height: 70px;
        padding: 0;
    }

    /* LOGO */
    .nav-logo {
        padding-left: 14px;

    }

    .nav-logo img {
        height: 64px;
        /* border-radius: 2px; */
    }

    /* PUSH RIGHT SIDE */
    .nav-actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        height: 70px;
        gap: 0;
    }

    /* BOOK NOW BLOCK */
    .mobile-cta {
        display: flex;
        align-items: center;
        justify-content: center;

        background: #111;
        color: #fff;

        height: 70px;
        padding: 0 20px;

        font-size: 14px;
        font-weight: 500;

        border-radius: 0;
    }

    /* MENU BUTTON */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 70px;
        height: 70px;

        /* color: #000; */
        background: #fff;
        border-left: 1px solid #eee;

        font-size: 20px;
        cursor: pointer;
    }

    /* .nav-btn {
        display: none;
    } */

    .mobile-cta {
        display: flex;
    }

    .mobile-cta:hover {
        background: #000;
    }

    .hero {
        min-height: 620px;
        padding-top: 70px;
        padding-bottom: 40px;

        background-size: cover;
        background-position: right center;
    }

    .hero::before {
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.868) 0%,
                rgba(255, 255, 255, 0.79) 35%,
                /* rgba(255, 255, 255, 0.75) 45%, */
                rgba(255, 255, 255, 0.30) 65%,
                rgba(255, 255, 255, 0) 100%);
    }

    /* TEXT AREA */
    .hero-text {
        max-width: 300px;
        padding: 0px 0 0;
    }

    /* HEADLINE */
    .hero-text h1 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
        color: #1a1a1a;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }



    /* DESCRIPTION */
    .hero-text p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 18px;
        color: #c5161b;
    }

    /* BUTTON */
    .btn-primary {
        padding: 10px 22px;
        font-size: 14px;
    }

    /* DOTS */
    .hero-dots {
        position: absolute;
        bottom: 8px;
        left: 50%;
        /* transform: translateX(-50%); */
    }

    .hero-emblem {
        top: 90px;
        left: 32px;
    }

    .hero-emblem img {
        width: 70px;
    }

    .hero-arrow {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    /* ----------TRUST---------- */

    .trust {
        padding: 60px 0;
    }

    .section-title {
        font-size: 22px;
        line-height: 1.3;
        padding: 0 10px;
    }

    .section-desc {
        font-size: 14px;
        margin-bottom: 35px;
        padding: 0 18px;
    }

    .trust-grid {
        gap: 18px;
    }

    .trust-item {
        /* display: flex;
        flex-direction: column; */
        width: auto;
    }

    .trust-number {
        font-size: 26px;
    }

    .trust-icon {
        font-size: 24px;
    }

    .trust-divider {
        height: 40px;
    }

    /* ----------PRODUCTS---------- */
    .section-title {
        font-size: 24px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 22px;
    }

    /* -----------CERTIFICATE-------------- */
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cert-card {
        padding: 30px 20px;
    }

    .cert-card img {
        height: 50px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 35px;
    }

    .cert-icon {
        font-size: 36px;
    }

    .cert-icon svg {
        width: 44px;
        height: 44px;
    }

    /* --------TRUSTED LOGOS--------- */
    .trusted-section {
        background: url("../assets/img/trusted-mobile.svg") center/cover no-repeat;
    }

    .trusted-box {
        padding: 12px 16px;
    }

    .trusted-logos {
        gap: 18px 22px;
    }

    .trusted-logos img {
        height: 64px;
    }

    .trusted-ribbon {
        font-size: 12px;
        padding: 6px 24px;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    /* ----------FOOTER------------ */
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}