/* =======================================================
   KINDER CREATIVE - GLOBAL BRAND THEME & STYLESHEET
   ======================================================= */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Exact Kinder Creative Logo Brand Colors */
    --kt-red: #FF3B30;
    --kt-yellow: #FFB800;
    --kt-orange: #FF8A00;
    --kt-orange-hover: #E07800;
    --kt-blue: #007AFF;
    --kt-cyan: #00C7FF;
    --kt-purple: #AF52DE;
    --kt-pink: #FF2D55;
    --kt-green: #34C759;
    --kt-navy: #1E293B;
    
    /* Background & Neutrals */
    --kt-bg-light: #FFFDF9;
    --kt-card-bg: #FFFFFF;
    --kt-text-dark: #1E293B;
    --kt-text-muted: #64748B;
    --kt-border: #F1F5F9;

    /* Fonts */
    --font-heading: 'Fredoka', cursive;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Reusable UI Variables */
    --kt-radius-sm: 12px;
    --kt-radius-md: 20px;
    --kt-radius-lg: 30px;
    --kt-radius-pill: 99px;
    --kt-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --kt-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--kt-bg-light);
    color: var(--kt-text-dark);
    line-height: 1.6;
}

/* =========================================================
   HEADINGS COLOR THEME
========================================================= */

h1, h2, h3, h4, h5, h6, .kt-heading {
    font-family: var(--font-heading);
    color: var(--kt-navy);
    font-weight: 600;
    line-height: 1.2;
}

/* Hero & Section Headings Accent Colors */
.hero-title span, 
.section-main-title span {
    color: var(--kt-orange);
}

.hero-subbadge, 
.section-subbadge {
    color: var(--kt-cyan);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 6px;
}

.section-main-title {
    font-size: 36px;
    color: var(--kt-navy);
    font-weight: 700;
    margin-bottom: 8px;
}

.section-desc {
    color: var(--kt-text-muted);
    font-size: 15px;
    margin-bottom: 45px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Helper Container */
.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   BUTTONS SYSTEM & GRADIENTS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--kt-radius-pill);
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Primary Button (Logo Vibrant Orange Gradient) */
.btn-orange, 
.btn-quote {
    background: linear-gradient(135deg, var(--kt-orange) 0%, #FF6B00 100%) !important;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: var(--kt-radius-pill);
    font-size: 14px;
    font-weight: 700;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(255, 138, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.btn-orange:hover, 
.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 138, 0, 0.45);
    background: linear-gradient(135deg, #FF6B00 0%, var(--kt-orange) 100%) !important;
}

.btn-blue {
    background: linear-gradient(135deg, var(--kt-blue), var(--kt-cyan));
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3);
}

.btn-pink {
    background: linear-gradient(135deg, var(--kt-pink), var(--kt-purple));
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 45, 85, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
}

/* =========================================================
   HEADER STYLING
========================================================= */

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.top-bar {
    background-color: var(--kt-navy);
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
    max-height: 50px;
    opacity: 1;
    overflow: hidden;
}

.top-bar-container {
    width: min(1320px, calc(100% - 40px));
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.top-pill {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 5px 16px;
    border-radius: var(--kt-radius-pill);
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-pill:hover {
    background: rgba(255, 255, 255, 0.18);
}

.top-pill i {
    background: var(--kt-orange);
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.main-header {
    padding: 12px 0;
    background-color: transparent;
    transition: all 0.35s ease;
}

.header-container {
    width: min(1320px, calc(100% - 40px));
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo img {
    width: 100px !important;
    height: 94px !important;
    object-fit: contain;
    transition: all 0.3s ease;
}

.floating-nav {
    background: #ffffff;
    padding: 6px 8px 6px 30px;
    border-radius: var(--kt-radius-pill);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.35s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #718096;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a.active, 
.nav-links a:hover {
    color: var(--kt-orange);
}

.dropdown {
    position: relative;
}

.dropdown a i {
    font-size: 11px;
    margin-left: 2px;
}

/* SCROLLED STATE */
.header-wrapper.scrolled {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-wrapper.scrolled .top-bar {
    max-height: 0;
    opacity: 0;
    padding: 0;
}

.header-wrapper.scrolled .main-header {
    padding: 8px 0;
}

.header-wrapper.scrolled .floating-nav {
    box-shadow: none;
    padding: 0;
    background: transparent;
}

.header-wrapper.scrolled .brand-logo img {
    width: 85px !important;
    height: 80px !important;
}

/* =========================================================
   HERO SECTION & FULL WIDTH SLIDER STYLES
========================================================= */

.hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.myHeroSwiper {
    width: 100%;
    height: 88vh;
    min-height: 720px;
}

.myHeroSwiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.myHeroSwiper .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 253, 249, 0.95) 0%, rgba(255, 253, 249, 0.75) 50%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-top: 110px; 
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.15;
    color: var(--kt-navy);
    margin-bottom: 18px;
    font-weight: 700;
}

.hero-description {
    color: var(--kt-text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 550px;
}

.myHeroSwiper .swiper-pagination {
    bottom: 25px !important;
    z-index: 10;
}

.myHeroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--kt-navy);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.myHeroSwiper .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 10px;
    background: var(--kt-orange);
    opacity: 1;
}

/* FLOATING WIDGETS */
.floating-widgets {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.widget-btn:hover {
    transform: scale(1.1);
}

.widget-chat {
    background: var(--kt-orange);
}

.widget-whatsapp {
    background: #25D366;
}

/* =========================================================
   CONTINUOUS CARD SLIDER SECTION
========================================================= */

.continuous-cards-section {
    padding: 60px 0 80px 0;
    background-color: var(--kt-bg-light);
    overflow: hidden;
}

.continuous-cards-section .container-fluid {
    width: 100%;
    padding: 0 20px;
}

.productCardsSwiper {
    padding: 35px 15px !important;
    margin: -35px -15px !important;
    overflow: visible !important;
}

.productCardsSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.tilt-card {
    perspective: 1000px;
    width: 100%;
    cursor: pointer;
}

.tilt-card-inner {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: transparent !important;
    box-shadow: none;
    transition: transform 0.15s ease-out, filter 0.3s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.tilt-card:hover .tilt-card-inner {
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}

.tilt-card-inner img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    display: block;
    pointer-events: none;
    user-select: none;
    border-radius: 20px;
}

/* =========================================================
   OUR PRODUCTS GRID SECTION STYLES
========================================================= */

.products-grid-section {
    background-color: var(--kt-bg-light);
}

.text-center {
    text-align: center;
}

.margin-top-40 {
    margin-top: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-card {
    background: #ffffff;
    border-radius: var(--kt-radius-sm);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--kt-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.product-img-box {
    background: #F8FAFC;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 190px;
}

.product-img-box img {
    max-height: 150px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img-box img {
    transform: scale(1.05);
}

.product-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--kt-navy);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px;
}

.product-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--kt-orange);
    margin-bottom: 12px;
}

.product-price .old-price {
    font-size: 12px;
    color: #94A3B8;
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 500;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

/* Cart Button (Theme Navy) */
.btn-icon-cart {
    width: 38px;
    height: 38px;
    background: var(--kt-navy);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.btn-icon-cart:hover {
    background: var(--kt-orange);
    transform: scale(1.05);
}

/* WhatsApp Action Button */
.btn-whatsapp-enquiry {
    flex-grow: 1;
    height: 38px;
    background: #25D366;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.btn-whatsapp-enquiry i {
    font-size: 14px;
}

.btn-whatsapp-enquiry:hover {
    background: #1EBE57;
    color: #ffffff;
    transform: scale(1.02);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        width: calc(100% - 30px);
    }
    .myHeroSwiper {
        height: 70vh;
        min-height: 500px;
    }
    .hero-content {
        padding-top: 80px;
    }
    .myHeroSwiper .swiper-slide::before {
        background: rgba(255, 253, 249, 0.88);
    }
    .floating-widgets {
        display: none;
    }
    .tilt-card-inner img {
        height: 200px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .product-details {
        padding: 10px;
    }
    .product-img-box {
        height: 150px;
        padding: 10px;
    }
    .product-img-box img {
        max-height: 120px;
    }
    .btn-whatsapp-enquiry {
        font-size: 10px;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* =========================================================
   WHY CHOOSE US SECTION STYLING (LIGHT ORANGE BACKGROUND)
========================================================= */

.why-choose-us-section {
    background-color: #FFF8F0; /* Light Warm Orange Theme Background */
    padding: 80px 0;
    position: relative;
}

.why-choose-us-section .section-subbadge {
    color: var(--kt-cyan);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.why-choose-us-section .section-main-title {
    font-size: 38px;
    font-weight: 800;
    color: #2D221E;
    line-height: 1.25;
    margin-bottom: 50px;
}

.why-choose-us-section .section-main-title span {
    color: var(--kt-orange, #FF8A00);
}

/* Section Grid Layout */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 25px;
    align-items: center;
}

/* Feature Cards Column */
.feature-cards-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 8px 25px rgba(220, 150, 100, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 230, 210, 0.6);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 138, 0, 0.15);
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFF2E5;
    color: var(--kt-orange, #FF8A00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-content {
    flex-grow: 1;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: #2D221E;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.feature-desc {
    font-size: 12px;
    color: #6B5E57;
    line-height: 1.5;
    margin: 0;
}

/* Gallery Mosaic Section */
.gallery-mosaic-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-img-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.gallery-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-img-card:hover img {
    transform: scale(1.06);
}

.gallery-img-card.img-tall {
    height: 230px;
}

.gallery-img-card.img-short {
    height: 160px;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .gallery-mosaic-col {
        order: -1;
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .why-choose-us-section {
        padding: 50px 0;
    }
    
    .why-choose-us-section .section-main-title {
        font-size: 28px;
    }

    .feature-card {
        padding: 16px;
    }

    .gallery-img-card.img-tall {
        height: 180px;
    }

    .gallery-img-card.img-short {
        height: 130px;
    }
}

/* =========================================================
   ABOUT US & TESTIMONIALS SECTION STYLES (UPDATED)
========================================================= */

.about-testimonial-section {
    padding: 90px 0;
    background-color: var(--kt-bg-light, #FFFDF9);
    overflow: hidden;
}

.about-testimonial-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

/* --- Left Column Styling --- */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 199, 255, 0.12); /* Light Cyan Background */
    color: var(--kt-cyan, #00C7FF);      /* Cyan Theme Text */
    border: 1px solid rgba(0, 199, 255, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--kt-navy, #1E293B);
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-title span {
    color: var(--kt-orange, #FF8A00);
}

.about-desc {
    font-size: 15px;
    color: var(--kt-text-muted, #64748B);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
}

/* Stats Row */
.about-stats-row {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 138, 0, 0.12);
    color: var(--kt-orange, #FF8A00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 20px;
    font-weight: 800;
    color: var(--kt-navy, #1E293B);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--kt-text-muted, #64748B);
    margin-top: 2px;
}

/* Match Brand Orange Gradient Button */
.btn-get-started {
    background: linear-gradient(135deg, var(--kt-orange, #FF8A00) 0%, #FF6B00 100%) !important;
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(255, 138, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 138, 0, 0.45);
}

/* --- Right Column (Testimonial Card) Styling --- */
.testimonial-slider-col {
    min-width: 0;
}

.testimonialSwiper {
    padding: 15px 10px 50px 10px !important;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--kt-border, #F1F5F9);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 330px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Slide count on right */
    font-size: 11px;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 138, 0, 0.12);
    color: var(--kt-orange, #FF8A00);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--kt-navy, #1E293B);
    margin: 0;
}

.author-role {
    font-size: 11px;
    color: var(--kt-text-muted, #64748B);
}

.star-rating {
    color: #FFB800;
    font-size: 13px;
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.quote-mark {
    font-size: 32px;
    color: #CBD5E1;
    font-family: serif;
    line-height: 1;
    margin-bottom: 2px;
}

.testimonial-text {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--kt-border, #F1F5F9);
    font-size: 11px;
}

.verified-tag {
    color: #94A3B8;
}

.view-google {
    color: var(--kt-orange, #FF8A00);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.view-google:hover {
    color: #E07800;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1100px) {
    .about-testimonial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-desc {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .about-testimonial-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-stats-row {
        flex-wrap: wrap;
        gap: 15px;
    }

    .stat-item {
        width: 45%;
    }
}

/* =========================================================
   ANIMATED COUNTER STATS SECTION STYLES
========================================================= */

.counter-stats-section {
    padding: 65px 0;
    background-color: #FFFFFF;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    text-align: center;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Icon Wrapper & Floating Effect */
.icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIcon 3.5s ease-in-out infinite;
}

/* Floating Keyframe */
@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Icon Box Styling */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
}

.icon-box svg {
    width: 26px;
    height: 26px;
}

/* --- LIGHT ORANGE THEME --- */
.theme-orange .icon-box {
    background-color: #FFF6EC;
    border: 1px solid rgba(255, 138, 0, 0.18);
    color: #FF8A00;
}

.theme-orange .wave-ring {
    border: 1px solid rgba(255, 138, 0, 0.4);
}

/* --- LIGHT CYAN THEME --- */
.theme-cyan .icon-box {
    background-color: #EBFBFF;
    border: 1px solid rgba(0, 199, 255, 0.22);
    color: #00C7FF;
}

.theme-cyan .wave-ring {
    border: 1px solid rgba(0, 199, 255, 0.4);
}

/* Floating Waves / Ripple Rings */
.wave-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    animation: waveRelease 2.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.wave-ring.wave-2 {
    animation-delay: 1.4s;
}

@keyframes waveRelease {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.65);
        opacity: 0;
    }
}

/* Numbers & Typography */
.counter-number {
    font-size: 38px;
    color: #2D221E;
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.counter-label {
    font-size: 12px;
    font-weight: 700;
    color: #8C7B70;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 480px) {
    .counter-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 35px;
    }
    
    .counter-number {
        font-size: 32px;
    }
}

/* =========================================================
   OEM & ODM MANUFACTURING PARTNER SECTION STYLES
========================================================= */

.oem-odm-section {
    background-color: #FFF8F0; /* Warm Light Orange Theme Background */
    padding: 90px 0;
    position: relative;
}

.oem-odm-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: center;
}

/* --- Left Column Styling --- */
.oem-subbadge {
    color: var(--kt-cyan, #00C7FF);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.oem-title {
    font-size: 42px;
    font-weight: 800;
    color: #2D221E;
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.oem-title span {
    color: var(--kt-navy, #2D221E);
}

.oem-desc {
    font-size: 15px;
    color: #6B5E57;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 480px;
}

/* Feature Pills List */
.oem-pills-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

.oem-pill-item {
    background: #FFFFFF;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 15px rgba(220, 150, 100, 0.05);
    border: 1px solid rgba(255, 230, 210, 0.8);
    max-width: 420px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oem-pill-item:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.1);
}

.pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFF2E5;
    color: #FF8A00;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pill-icon svg {
    width: 17px;
    height: 17px;
}

.pill-text {
    font-size: 13.5px;
    font-weight: 600;
    color: #382C26;
    flex-grow: 1;
}

.pill-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #D8C2B0;
    color: #B28258;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pill-check svg {
    width: 12px;
    height: 12px;
}

/* CTA Button Styling */
.btn-oem-cta {
    background: linear-gradient(135deg, var(--kt-orange, #FF8A00) 0%, #E27700 100%) !important;
    color: #FFFFFF !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 22px rgba(255, 138, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.btn-oem-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 138, 0, 0.4);
}

/* --- Right Column Service Cards --- */
.oem-cards-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.oem-service-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 28px 30px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    box-shadow: 0 10px 30px rgba(200, 140, 90, 0.08);
    border: 1px solid rgba(255, 235, 220, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oem-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(255, 138, 0, 0.15);
}

.service-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #FFF2E5;
    color: #FF8A00;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-box svg {
    width: 24px;
    height: 24px;
}

.service-info {
    flex-grow: 1;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D221E;
    margin-bottom: 8px;
    line-height: 1.3;
}

.service-desc {
    font-size: 13.5px;
    color: #6B5E57;
    line-height: 1.55;
    margin: 0;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .oem-odm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .oem-desc, .oem-pill-item {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .oem-odm-section {
        padding: 55px 0;
    }

    .oem-title {
        font-size: 30px;
    }

    .oem-service-card {
        padding: 20px;
        gap: 15px;
    }

    .service-icon-box {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .service-icon-box svg {
        width: 20px;
        height: 20px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-desc {
        font-size: 12.5px;
    }
}

/* =========================================================
   HAMBURGER BUTTON & MOBILE NAVIGATION STYLING
========================================================= */

.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--kt-navy);
    cursor: pointer;
    padding: 5px;
}

.mobile-close-btn {
    display: none;
    align-self: flex-end;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--kt-navy);
    cursor: pointer;
    margin-bottom: 15px;
}

/* RESPONSIVE MEDIA QUERIES FOR HEADER & TOPBAR */
@media (max-width: 992px) {
    .hamburger-btn {
        display: block;
    }

    .mobile-close-btn {
        display: block;
    }

    /* Floating Nav Mobile Slide-in Drawer */
    .floating-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 25px 20px;
        border-radius: 0;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        transition: right 0.35s ease-in-out;
        z-index: 1001;
        overflow-y: auto;
    }

    .floating-nav.nav-open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 18px;
        margin-bottom: 25px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 14px;
    }

    .btn-quote {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    /* Responsive Top Bar */
    .top-bar {
        max-height: none;
        padding: 6px 0;
    }

    .top-bar-container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px 12px;
    }

    .top-pill {
        font-size: 11px;
        padding: 3px 10px;
    }

    .top-pill i {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }

    .brand-logo img {
        width: 75px !important;
        height: 70px !important;
    }

    .header-wrapper.scrolled .brand-logo img {
        width: 65px !important;
        height: 60px !important;
    }
}