@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
/* =========================================
   VARIABLES
========================================== */
:root {
    /* Colors */
    --color-primary: #f36b21;
    --color-primary-dark: #dd5a13;
    --color-primary-hover: #dc5f17;
    --color-dark: #222;
    --color-dark-bg: #111;
    --color-light: #fff;
    --color-gray: #666;
    --color-gray-light: #cfcfcf;
    --color-gray-bg: #ececec;
    --color-border: #e7e7e7;
    --color-overlay: rgba(0,0,0,0.60);
    
    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 25px;
    --spacing-2xl: 30px;
    --spacing-3xl: 40px;
    --spacing-4xl: 60px;
    --spacing-5xl: 80px;
    --spacing-6xl: 90px;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-size-xs: 12px;
    --font-size-sm: 13px;
    --font-size-base: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-2xl: 28px;
    --font-size-3xl: 32px;
    --font-size-4xl: 38px;
    --font-size-5xl: 42px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50px;
    
    /* Shadows */
    --shadow-sm: 0 5px 15px rgba(0,0,0,.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,.05);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.15);
    --shadow-xl: 0 15px 40px rgba(0,0,0,.08);
    
    /* Transitions */
    --transition-fast: .3s;
    --transition-base: .35s;
    --transition-slow: .5s;

    /* font family */
    --font-primary: 'Inter', sans-serif;
}

/* =========================================
   BASE RESET & TYPOGRAPHY
========================================== */
body {
    font-family: var(--font-primary);
    color: var(--color-dark);
}
/* ============================================
   INNER BANNER / PAGE HERO
   ============================================ */
.inner-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 50%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') center center/cover;
    opacity: 0.1;
}

.inner-banner::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.1;
}

.inner-banner .container {
    position: relative;
    z-index: 1;
}

.inner-banner-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.inner-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.inner-banner .breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.inner-banner .breadcrumb-item a:hover {
    color: #fff;
}

.inner-banner .breadcrumb-item.active {
    color: #ccc;
}

.inner-banner .breadcrumb-item + .breadcrumb-item::before {
    color: #666;
}

.feature-col{
    position: relative;
}

/* Divider */
.feature-col:not(:last-child)::after{
    content: "";
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 75px;              /* divider height */
    background: #fff;
}

/* Hide on mobile */
@media (max-width:768px){
    .feature-col::after{
        display:none;
    }
}
/* Responsive */
@media (max-width: 991px) {
    .inner-banner {
        padding: 60px 0 40px;
    }
    
    .inner-banner-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .inner-banner {
        padding: 50px 0 30px;
    }
    
    .inner-banner-title {
        font-size: 26px;
    }
    
    .inner-banner .breadcrumb {
        font-size: 14px;
    }
}
/* =========================================
   UTILITY
========================================== */
.section-tag {
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: var(--font-size-sm);
}

/* =========================================
   SECTION TITLE - Complete
========================================== */
.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin: var(--spacing-md) 0;
    color: var(--color-dark);
    position: relative;
}

.section-title::after {
    content: "";
    width: 55px;
    height: 4px;
    background: var(--color-primary);
    display: block;
    margin-top: var(--spacing-sm);
    border-radius: var(--radius-2xl);
}

/* Center alignment */
.section-title.text-center,
.text-center .section-title {
    text-align: center;
}

.section-title.text-center::after,
.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* Right alignment (optional) */
.section-title.text-end,
.text-end .section-title {
    text-align: right;
}

.section-title.text-end::after,
.text-end .section-title::after {
    margin-left: auto;
    margin-right: 0;
}

/* Section Description */
.section-desc {
    color: var(--color-gray);
    max-width: 700px;
    margin: var(--spacing-md) 0 0;
}

.section-desc.text-center,
.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-desc.text-end,
.text-end .section-desc {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

/* Responsive */
@media (max-width: 991px) {
    .section-title {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: var(--font-size-xl);
    }
    
    .section-title.text-center::after,
    .text-center .section-title::after {
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================
   TOP BAR
========================================== */
.top-bar {
    font-size: var(--font-size-base);
}

/* Social Media Icons with Border */
.top-bar .social-icons {
    display: inline-flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.top-bar .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-light);
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: var(--font-size-base);
}

.top-bar .social-icons a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 107, 33, 0.3);
}
.top-bar .contact-info .list-inline-item i{
    color: var(--color-primary)!important;
}
/* Hide Social Icons on Mobile */
@media (max-width: 767px) {
    .top-bar .social-icons {
        display: none !important;
    }
    
    /* Optional: Hide additional top bar items on mobile */
    .top-bar .contact-info {
        display: flex;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
}

/* Hide entire top bar on very small screens */
@media (max-width: 575px) {
    .top-bar {
        display: none;
    }
}
/* =========================================
   NAVBAR
========================================== */
.navbar {
    padding: 16px 0;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--color-dark);
    margin-left: var(--spacing-lg);
}

.navbar-nav .nav-link:hover {
    color: var(--color-primary);
}

/* =========================================
   HERO
========================================== */
.hero-section {
    background: url('../images/bg.png') center center;
    background-size: cover;
    min-height: 760px;
    position: relative;
}

.hero-section .overlay {
    background: var(--color-overlay);
    min-height: 760px;
    display: flex;
    align-items: center;
}

.feature-box {
    color: var(--color-light);
}

.feature-box i {
    color: var(--color-primary);
    font-size: var(--font-size-2xl);
}

/* =========================================
   CONSULT CARD
========================================== */
.consult-card {
    padding: var(--spacing-2xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 80%;
    margin-left: auto;
}

.btn-warning {
    background: var(--color-primary);
    border: none;
    color: var(--color-light);
}

.btn-warning:hover {
    background: var(--color-primary-dark);
}

.form-control {
    height: 50px;
}

textarea.form-control {
    height: auto;
}

/* =========================================
   STATISTICS
========================================== */
.stats-section {
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 100;
    padding-bottom: var(--spacing-3xl);
}

.stats-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.stats-section .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.stats-section .col {
    display: flex;
}

.stat-card {
    width: 100%;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--color-light);
    position: relative;
    transition: var(--transition-base);
}

.stat-card.with-divider::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: var(--color-border);
}

.row>.col:last-child .stat-card::after {
    display: none;
}

.stat-card:hover {
    background: var(--color-primary);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(243,107,33,.25);
    z-index: 2;
}

.stat-card:hover::after {
    display: none;
}

.stat-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #fff4ef;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.stat-icon i {
    font-size: var(--font-size-2xl);
    color: var(--color-primary);
    transition: var(--transition-base);
}

.stat-card:hover .stat-icon {
    background: rgba(255,255,255,.2);
    transform: scale(1.08);
}

.stat-card:hover .stat-icon i {
    color: var(--color-light);
}

.stat-number {
    margin: 0;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.1;
    transition: var(--transition-base);
}

.stat-label {
    margin: var(--spacing-xs) 0 0;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--color-gray);
    line-height: 1.4;
    transition: var(--transition-base);
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
    color: var(--color-light);
}

/* =========================================
   SERVICES
========================================== */
.services {
    background: var(--color-light);
    padding: var(--spacing-5xl) 0;
}

.btn-service {
    padding: var(--spacing-sm) var(--spacing-2xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    border: 2px solid var(--color-dark);
    border-radius: var(--radius-sm);
}

.btn-service i {
    margin-left: var(--spacing-sm);
}

.service-card {
    border: 1px solid var(--color-gray-bg);
    background: var(--color-light);
    transition: var(--transition-fast);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.service-image {
    position: relative;
    height: 145px;
    overflow: visible;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover img {
    transform: scale(1.06);
}

.service-icon {
    position: absolute;
    left: var(--spacing-sm);
    bottom: -16px;
    width: 34px;
    height: 34px;
    background: var(--color-primary);
    border-radius: 50%;
    color: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-light);
    font-size: 16px;
    z-index: 1000;
}

.service-icon-image {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.service-content {
    padding: var(--spacing-2xl) var(--spacing-lg) 20px;
}

.service-content h5 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.35;
}

.service-content p {
    font-size: var(--font-size-sm);
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   ABOUT
========================================== */
.about {
    padding: var(--spacing-6xl) 0;
}

.about-box {
    background: #fff8f4;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.about-box i {
    color: var(--color-primary);
    margin-right: var(--spacing-sm);
}
/* =========================================
   PROJECTS - Updated Design (Image + Text Below)
========================================== */
.projects {
    padding: var(--spacing-5xl) 0;
    background: var(--color-light);
}

.btn-project {
    padding: var(--spacing-sm) var(--spacing-2xl);
    border: 2px solid var(--color-dark);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-project:hover {
    background: var(--color-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
}

.btn-project i {
    margin-left: var(--spacing-sm);
    transition: var(--transition-fast);
}

.btn-project:hover i {
    transform: translateX(5px);
}

/* Project Card - Image on top, text below */
.project-card {
    background: #1a1a1a; /* Black background for card */
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Content below image - Black background with white text */
.project-content {
    background: #1a1a1a; /* Solid black background */
    padding: 16px 18px 18px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-content h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.project-content span {
    color: #cccccc;
    font-size: 13px;
    font-weight: 400;
    display: block;
}

/* Optional: Add a subtle border or separator */
.project-content .location {
    color: #aaaaaa;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hover effect on content */
.project-card:hover .project-content {
    background: #222222; /* Slightly lighter on hover */
}

.project-card:hover .project-content h5 {
    color: #ffffff;
}

.project-card:hover .project-content span {
    color: #e0e0e0;
}

/* Responsive */
@media (max-width: 1199px) {
    .project-card img {
        height: 180px;
    }
}

@media (max-width: 991px) {
    .project-card img {
        height: 170px;
    }
    
    .project-content {
        padding: 14px 16px 16px;
        min-height: 70px;
    }
    
    .project-content h5 {
        font-size: 15px;
    }
    
    .project-content span {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .projects {
        padding: var(--spacing-4xl) 0;
    }
    
    .btn-project {
        margin-top: var(--spacing-lg);
        width: 100%;
        text-align: center;
        white-space: normal;
    }
    
    .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }
    
    .project-card img {
        height: 200px;
    }
    
    .project-content {
        padding: 14px 16px 16px;
        min-height: 70px;
    }
    
    .project-content h5 {
        font-size: 15px;
    }
    
    .project-content span {
        font-size: 12px;
    }
}

@media (max-width: 575px) {
    .project-card img {
        height: 180px;
    }
    
    .project-content {
        padding: 12px 14px 14px;
        min-height: 65px;
    }
    
    .project-content h5 {
        font-size: 14px;
    }
    
    .project-content span {
        font-size: 12px;
    }
}

/* =========================================
   COUNTER SECTION
========================================== */
.counter-section {
    background: #1d1d1d url('../images/pattern.png') center center/cover no-repeat;
    padding: 22px 0;
    position: relative;
}

.counter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
}

.counter-section .container {
    position: relative;
    z-index: 2;
}

.counter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    min-height: 80px;
    position: relative;
}

.border-right::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    width: 1px;
    height: 64%;
    background: rgba(255,255,255,.12);
}

.counter-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.counter-icon i {
    font-size: var(--font-size-lg);
}

.counter-content h3 {
    color: var(--color-light);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.counter-content span {
    display: block;
    margin-top: var(--spacing-xs);
    color: #c9c9c9;
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.counter-box:hover .counter-icon {
    background: var(--color-primary);
    color: var(--color-light);
    transition: var(--transition-fast);
}

.counter-box:hover h3 {
    color: var(--color-primary);
    transition: var(--transition-fast);
}

/* =========================================
   WHY US
========================================== */
.why-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #fff4ef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: var(--font-size-2xl);
    color: var(--color-primary);
}

/* =========================================
   TESTIMONIALS
========================================== */
.testimonial-card {
    background: var(--color-light);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-style: italic;
    margin: var(--spacing-md) 0;
}
/* ============================================
   BRANDS CAROUSEL SECTION - FIXED
   ============================================ */
.brands-carousel-section {
    background: var(--bg-secondary, #F8F6F2);
    padding: 60px 0;
    overflow: hidden;
}

.brands-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.brands-carousel {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.brands-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
}

.brand-slide {
    flex: 0 0 20%; /* 5 items per slide */
    padding: 0 15px;
    box-sizing: border-box;
}

.brand-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: var(--radius-md, 12px);
    text-align: center;
    box-shadow: var(--shadow-sm, 0 2px 10px rgba(0,0,0,0.06));
    transition: var(--transition-base, all 0.3s ease);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    min-height: 150px;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg, 0 20px 60px rgba(0,0,0,0.12));
    border-color: var(--color-primary, #F26713);
}

.brand-logo-wrapper {
    width: 120px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.brand-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-base, all 0.3s ease);
}

.brand-item:hover .brand-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--color-primary, #F26713);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    transition: var(--transition-base, all 0.3s ease);
}

.brand-item:hover .brand-placeholder {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(243, 107, 33, 0.3);
}

.brand-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark, #1A1A1A);
    letter-spacing: 0.5px;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--color-primary, #F26713);
    color: var(--color-primary, #F26713);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base, all 0.3s ease);
    z-index: 10;
    box-shadow: var(--shadow-sm, 0 2px 10px rgba(0,0,0,0.06));
}

.carousel-btn:hover {
    background: var(--color-primary, #F26713);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 25px rgba(243, 107, 33, 0.3);
}

.carousel-btn i {
    font-size: 20px;
    line-height: 1;
}

.prev-btn {
    left: -10px;
}

.next-btn {
    right: -10px;
}

/* Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition-base, all 0.3s ease);
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--color-primary, #F26713);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--color-primary-light, #F8A46C);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.author-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-primary);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1200px) {
    .brand-slide {
        flex: 0 0 25%; /* 4 items */
    }
}

@media (max-width: 992px) {
    .brands-carousel-wrapper {
        padding: 0 40px;
    }
    
    .brand-slide {
        flex: 0 0 33.333%; /* 3 items */
    }
    
    .brand-logo-wrapper {
        width: 100px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .brands-carousel-wrapper {
        padding: 0 35px;
    }
    
    .brand-slide {
        flex: 0 0 50%; /* 2 items */
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn i {
        font-size: 16px;
    }
    
    .prev-btn {
        left: -5px;
    }
    
    .next-btn {
        right: -5px;
    }
    
    .brand-logo-wrapper {
        width: 80px;
        height: 50px;
    }
    
    .brand-name {
        font-size: 12px;
    }
    
    .brand-item {
        min-height: 120px;
        padding: 18px 15px;
    }
}

@media (max-width: 480px) {
    .brand-slide {
        flex: 0 0 100%; /* 1 item */
    }
    
    .brands-carousel-wrapper {
        padding: 0 30px;
    }
    
    .brand-logo-wrapper {
        width: 120px;
        height: 60px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
    }
    
    .carousel-btn i {
        font-size: 14px;
    }
    
    .brand-item {
        min-height: 140px;
        padding: 20px 15px;
    }
}
/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */

.products-hero .section-title {
    margin-top: 0;
}

/* Product Cards */
.product-card {
    background: #fff;
    border-radius: var(--radius-md, 12px);
    overflow: hidden;
    box-shadow: var(--shadow-sm, 0 2px 10px rgba(0,0,0,0.06));
    transition: var(--transition-base, all 0.3s ease);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg, 0 20px 60px rgba(0,0,0,0.12));
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base, all 0.3s ease);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-primary, #F26713);
    color: #fff;
    padding: 4px 14px;
    border-radius: var(--radius-full, 50px);
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(242, 103, 19, 0.3);
}

.product-content {
    padding: 16px 18px 18px;
}

.product-content h5 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--color-dark, #1A1A1A);
}

.product-content p {
    color: var(--color-gray, #888);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.product-tags .badge {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: var(--radius-full, 50px);
}

/* Product Filter */
.products-filter .nav-pills .nav-link {
    color: var(--color-dark, #1A1A1A);
    border-radius: var(--radius-full, 50px);
    padding: 8px 20px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-base, all 0.3s ease);
}

.products-filter .nav-pills .nav-link.active {
    background: var(--color-primary, #F26713);
    color: #fff;
}

.products-filter .nav-pills .nav-link:hover:not(.active) {
    background: #f0f0f0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Related Products */
.related-products-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-products-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.related-products-list li:last-child {
    border-bottom: none;
}

.related-products-list li a {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-base, all 0.3s ease);
}

.related-products-list li a:hover {
    color: var(--color-primary, #F26713);
}

.related-products-list li a img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm, 8px);
    object-fit: cover;
    flex-shrink: 0;
}

.related-products-list li a .product-title {
    display: block;
    font-weight: 600;
    color: var(--color-dark, #1A1A1A);
    font-size: 14px;
    line-height: 1.3;
}

/* Related Product Cards */
.related-product-card {
    background: #fff;
    border-radius: var(--radius-md, 12px);
    overflow: hidden;
    box-shadow: var(--shadow-sm, 0 2px 10px rgba(0,0,0,0.06));
    transition: var(--transition-base, all 0.3s ease);
    height: 100%;
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg, 0 20px 60px rgba(0,0,0,0.12));
}

.related-product-image {
    height: 150px;
    overflow: hidden;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base, all 0.3s ease);
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-content {
    padding: 12px 14px 14px;
    text-align: center;
}

.related-product-content h5 {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.related-product-content h5 a {
    color: var(--color-dark, #1A1A1A);
    text-decoration: none;
    transition: var(--transition-base, all 0.3s ease);
}

.related-product-content h5 a:hover {
    color: var(--color-primary, #F26713);
}

/* Product CTA */
.products-cta .cta-wrapper {
    background: linear-gradient(135deg, var(--color-primary, #F26713), #d45210);
    padding: 60px 40px;
    border-radius: var(--radius-xl, 24px);
    color: #fff;
}

.products-cta .cta-wrapper h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.products-cta .cta-wrapper h2 span {
    color: #fff;
    text-decoration: underline;
}

.products-cta .cta-wrapper p {
    font-size: 18px;
    opacity: 0.9;
}

.products-cta .cta-wrapper .btn-light {
    border-radius: var(--radius-full, 50px);
    transition: var(--transition-base, all 0.3s ease);
}

.products-cta .cta-wrapper .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .products-cta .cta-wrapper {
        padding: 40px 30px;
    }
    
    .products-cta .cta-wrapper h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .products-filter .nav-pills .nav-link {
        font-size: 12px;
        padding: 6px 14px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .products-cta .cta-wrapper {
        padding: 30px 20px;
        border-radius: var(--radius-md, 12px);
    }
    
    .products-cta .cta-wrapper h2 {
        font-size: 24px;
    }
    
    .products-cta .cta-wrapper p {
        font-size: 15px;
    }
    
    .related-product-image {
        height: 120px;
    }
}

/* =========================================
   PARTNERS
========================================== */
.partner-logo {
    padding: var(--spacing-sm);
    background: var(--color-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    opacity: 0.6;
    border: 1px solid var(--color-primary);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logo img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
.partner-logo:hover {
    opacity: 1;
}

/* =========================================
   CTA
========================================== */
.cta-wrapper {
    background: linear-gradient(135deg, var(--color-primary), #d45210);
    padding: var(--spacing-4xl) var(--spacing-3xl);
    border-radius: var(--radius-xl);
    color: var(--color-light);
}

.cta-wrapper h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
}

.footer-cta {
    background: var(--color-primary);
    color: var(--color-light);
    padding: var(--spacing-xl) 0;
}

.footer-cta h3 {
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer-cta .btn {
    border-radius: var(--radius-full);
    padding: var(--spacing-sm) 22px;
    font-weight: 600;
}
/* ============================================
   LEGAL PAGES (Privacy Policy & Terms)
   ============================================ */

/* Page Hero */
.page-hero {
    padding-top: 140px !important;
    padding-bottom: 40px;
}

.page-hero .section-title {
    margin-top: 0;
}

/* Legal Content */
.legal-content {
    padding: 40px 0 60px;
}

.legal-card {
    background: #fff;
    padding: 40px 45px;
    border-radius: var(--radius-md, 16px);
    box-shadow: var(--shadow-sm, 0 2px 10px rgba(0,0,0,0.06));
    border: 1px solid rgba(0,0,0,0.04);
}

.legal-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark, #1A1A2E);
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.legal-card h3:first-child {
    margin-top: 0;
}

.legal-card p {
    color: var(--color-gray, #555);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-card ul {
    margin: 10px 0 20px 20px;
    padding-left: 10px;
}

.legal-card ul li {
    color: var(--color-gray, #555);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.legal-card ul li strong {
    color: var(--color-dark, #1A1A2E);
}

/* Contact Details in Legal */
.contact-details {
    background: var(--bg-secondary, #F8F6F2);
    padding: 20px 25px;
    border-radius: var(--radius-sm, 8px);
    margin-top: 10px;
}

.contact-details p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.contact-details p i {
    color: var(--color-primary, #F26713);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.contact-details p a {
    color: var(--color-primary, #F26713);
    text-decoration: none;
    transition: var(--transition-base, all 0.3s ease);
}

.contact-details p a:hover {
    color: var(--color-primary-dark, #D9540E);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: var(--color-secondary, #1A1A2E);
    color: #fff;
    padding: 50px 0;
}

.cta-section h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.cta-section h2 span {
    color: var(--color-primary, #F26713);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin: 0;
}

.cta-section .btn-light {
    border-radius: var(--radius-full, 50px);
    padding: 14px 36px;
    font-weight: 600;
    transition: var(--transition-base, all 0.3s ease);
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .legal-card {
        padding: 30px 25px;
    }
    
    .legal-card h3 {
        font-size: 18px;
    }
    
    .cta-section h2 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding-top: 100px !important;
        text-align: center;
    }
    
    .page-hero .text-lg-end {
        text-align: center !important;
        margin-top: 15px;
    }
    
    .legal-card {
        padding: 25px 18px;
    }
    
    .legal-card p,
    .legal-card ul li {
        font-size: 14px;
    }
    
    .contact-details {
        padding: 15px 18px;
    }
    
    .contact-details p {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .cta-section {
        text-align: center;
        padding: 40px 0;
    }
    
    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 20px;
    }
    
    .cta-section h2 {
        font-size: 22px;
    }
    
    .cta-section p {
        font-size: 15px;
    }
    
    .cta-section .btn-light {
        width: 100%;
        justify-content: center;
    }
}
/* =========================================
   FOOTER
========================================== */
.footer {
    background: var(--color-dark-bg);
    color: var(--color-gray-light);
    padding: 70px 0 var(--spacing-xl);
}

.footer h5 {
    color: var(--color-light);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    font-weight: 700;
    position: relative;
}

.footer h5::after {
    content: "";
    width: 45px;
    height: 3px;
    background: var(--color-primary);
    position: absolute;
    left: 0;
    bottom: -10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: var(--spacing-sm);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.footer-contact i {
    color: var(--color-primary);
    font-size: var(--font-size-lg);
    margin-top: 3px;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #1f1f1f;
    color: var(--color-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--color-primary);
}

.btn-theme {
    background: var(--color-primary);
    color: var(--color-light);
    border: none;
    /* height: 48px; */
}

.btn-theme:hover {
    background: var(--color-primary-hover);
    color: var(--color-light);
}

.footer input {
    background: #1b1b1b;
    border: 1px solid #333;
    color: var(--color-light);
}

.footer input:focus {
    background: #1b1b1b;
    color: var(--color-light);
    border-color: var(--color-primary);
    box-shadow: none;
}

.footer-divider {
    border-color: #2d2d2d;
    margin: 45px 0 var(--spacing-xl);
}

.footer a {
    color: var(--color-gray-light);
    text-decoration: none;
}

.footer a:hover {
    color: var(--color-primary);
}

/* =========================================
   RESPONSIVE
========================================== */
@media (max-width: 1199px) {
    .stats-section {
        margin-top: -60px;
    }
    
    .stats-section .container {
        margin: 0 var(--spacing-md);
    }
    
    .stat-card {
        min-height: 110px;
        padding: 22px var(--spacing-lg);
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .stat-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }
    
    .stat-icon i {
        font-size: var(--font-size-xl);
    }
    
    .service-image {
        height: 130px;
    }
    
    .section-title {
        font-size: var(--font-size-3xl);
    }
    
    .project-card img {
        height: 165px;
    }
}

@media (max-width: 991px) {
    .stats-section {
        margin-top: -45px;
    }
    
    .stats-section .container {
        margin: 0 var(--spacing-sm);
    }
    
    .stat-card {
        min-height: 100px;
        padding: var(--spacing-lg) var(--spacing-md);
        gap: var(--spacing-base);
    }
    
    .stat-number {
        font-size: var(--font-size-xl);
    }
    
    .stat-label {
        font-size: var(--font-size-sm);
    }
    
    .stat-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }
    
    .stat-icon i {
        font-size: 22px;
    }
    
    .row>.col:nth-child(3n) .stat-card::after {
        display: none;
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .service-image {
        height: 120px;
    }
    
    .project-card img {
        height: 160px;
    }
    
    .border-right:nth-child(2n)::after {
        display: none;
    }
    
    .counter-box {
        min-height: 75px;
    }
}

@media (max-width: 767px) {
    .stats-section {
        margin-top: -30px;
    }
    
    .stats-section .container {
        margin: 0 var(--spacing-sm);
        border-radius: var(--radius-md);
    }
    
    .stat-card {
        min-height: 85px;
        padding: var(--spacing-md) var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .stat-card.with-divider::after {
        height: 45%;
    }
    
    .stat-number {
        font-size: var(--spacing-lg);
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .stat-icon i {
        font-size: var(--font-size-lg);
    }
    
    .row>.col:nth-child(2n) .stat-card::after {
        display: none;
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
    
    .btn-service {
        margin-top: var(--spacing-lg);
    }
    
    .service-image {
        height: 180px;
    }
    
    .projects {
        padding: var(--spacing-4xl) 0;
    }
    
    .btn-project {
        margin-top: var(--spacing-lg);
    }
    
    .project-card img {
        height: 220px;
    }
    
    .counter-section {
        padding: var(--spacing-lg) 0;
    }
    
    .counter-box {
        justify-content: flex-start;
        padding: var(--spacing-sm);
    }
    
    .counter-content h3 {
        font-size: 22px;
    }
    
    .counter-content span {
        font-size: 11px;
    }
    
    .counter-icon {
        width: 36px;
        height: 36px;
    }
    
    .counter-icon i {
        font-size: var(--font-size-md);
    }
}

@media (max-width: 575px) {
    .stats-section .container {
        margin: 0 var(--spacing-xs);
    }
    
    .stat-card {
        min-height: 75px;
        padding: var(--spacing-sm) var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: var(--font-size-lg);
    }
    
    .stat-label {
        font-size: var(--spacing-sm);
    }
    
    .stat-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }
    
    .stat-icon i {
        font-size: 16px;
    }
    
    .project-card img {
        height: 200px;
    }
    
    .counter-box {
        gap: var(--spacing-sm);
    }
}
