* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f5f5;

    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =========================================
   GLOBAL FIX
   ========================================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body{
    overflow-x: hidden;
}

/* =========================================
   NAVBAR
   ========================================= */

.navbar{
    position: fixed;

    top: 20px;
    left: 50%;

    transform: translateX(-50%);

    width: 80%;

    padding: 15px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255,255,255,0.35);

    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 40px;

    box-shadow: 0 8px 30px rgba(0,0,0,0.1);

    z-index: 1000;

    transition: all 0.4s ease;
}

.navbar::before{
    content: "";

    position: absolute;
    inset: 0;

    border-radius: inherit;

    background: rgba(99,97,97,0.15);

    filter: blur(10px);

    z-index: -1;
}

/* =========================================
   LOGO
   ========================================= */

.logo img{
    height: 38px;

    max-width: 140px;

    width: auto;

    object-fit: contain;

    display: block;
   
}

/* =========================================
   NAV CENTER
   ========================================= */

.nav-center{
    display: flex;

    align-items: center;

    gap: 15px;
}

/* =========================================
   SEARCH BOX
   ========================================= */

.search-box{
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border-radius: 25px;

    background: rgba(177,171,171,0.2);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.3);

    margin-right: 10px;
}

.search-box input{
    border: none;
    outline: none;

    background: transparent;

    color: #111;

    width: 220px;

    font-size: 14px;
}

.search-box input::placeholder{
    color: rgba(0,0,0,0.6);
}

.search-icon{
    font-size: 14px;

    cursor: pointer;
}

/* =========================================
   NAV LINKS
   ========================================= */

.nav-links{
    display: flex;

    align-items: center;

    gap: 20px;
}

.nav-links a{
    text-decoration: none;

    color: #222;

    font-size: 15px;

    font-weight: 500;

    transition: 0.3s ease;
}

.nav-links a:hover{
    color: #d60000;
}

/* =========================================
   DOWNLOAD BUTTON
   ========================================= */

.download-btn{
    background: rgba(229,57,53,0.9);

    color: white;

    border: none;

    padding: 10px 18px;

    border-radius: 20px;

    cursor: pointer;

    transition: 0.3s;
}

.download-btn:hover{
    background: rgba(229,57,53,1);
}

/* =========================================
   MENU BUTTON
   ========================================= */

.menu-toggle{
    display: none;
}

.menu-icon{
    width: 22px;
    height: 22px;
}

#closeIcon{
    display: none;
}

/* =========================================
   HIDE MOBILE ELEMENTS ON DESKTOP
   ========================================= */

.mobile-search,
.mobile-social{
    display: none;
}


/* =========================================
   LARGE MONITORS
   ========================================= */

@media (min-width:1400px){

    .navbar{
        width: 70%;
        padding: 18px 40px;
    }

    .search-box input{
        width: 200px;
    }

    .nav-links a{
        font-size: 17px;
    }
}

/* =========================================
   NORMAL LAPTOPS
   ========================================= */

@media (max-width:1400px){

    .navbar{
        width: 92%;
        padding: 18px 30px;
    }

    .search-box input{
        width: 220px;
    }

    .nav-links a{
        font-size: 15px;
        padding-left: 10px;
    }
}

/* =========================================
   SMALL LAPTOPS
   ========================================= */

@media (max-width:1200px){

    .navbar{
        padding: 14px 22px;
    }

    .search-box input{
        width: 150px;
    }

    .nav-links a{
        font-size: 14px;
        padding-left: 8px;
    }
}

/* =========================================
   TABLETS
   ========================================= */

@media (max-width:950px){

    .search-box{
        display: none;
    }

    .download-btn{
        padding: 8px 14px;
        font-size: 13px;
    }

    .nav-links a{
        font-size: 13px;
    }
    
    
    .logo img{
        margin-top: 2px;
    }
    
}









/* =========================================
   MOBILE NAVBAR
   ========================================= */

@media (max-width:768px){

   

    

    /* EXPANDED */

  .navbar{
    height: auto;

    overflow: hidden;

    align-items: flex-start;

    padding-top: 14px;

    transition:
        height 0.45s cubic-bezier(.22,.61,.36,1),
        border-radius 0.35s ease;
}




.navbar.active{
    height: 500px;

    border-radius: 32px;
}
.nav-center{
    align-items: flex-start;
}

    /* LOGO */

    .logo{
        padding-top: 5px;
        display: flex;
        align-items: center;

        z-index: 1001;
    }

    .logo img{
        height: 30px;

        max-width: 120px;

        display: block;
    }

    /* HIDE DESKTOP ITEMS */

    .search-box,
    .download-btn{
        display: none !important;
    }

    /* NAV CENTER */

    .nav-center{
        display: flex;
        align-items: center;

        margin-left: auto;
    }

    /* MENU BUTTON */

    .menu-toggle{
        display: flex !important;

        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        cursor: pointer;

        z-index: 2000;
    }

    .menu-icon{
        width: 22px;
        height: 22px;

        display: block;
    }

    #closeIcon{
        display: none;
    }

    /* NAV LINKS */

    /* NAV LINKS */

.nav-links{
    position: absolute;

    top: 88px;
    left: 0;

    width: 100%;

    padding: 0 24px;

    display: flex;
    flex-direction: column;

    gap: 20px;

    opacity: 0;

    max-height: 0;

    overflow: hidden;

    transition:
        opacity 0.3s ease,
        max-height 0.45s ease;

    pointer-events: none;
}

.navbar.active .nav-links{
    opacity: 1;

    max-height: 400px;

    pointer-events: auto;
}

/* LINKS */

.nav-links a{
    font-size: 22px;

    font-weight: 500;

    color: #111;

    text-decoration: none;

    padding: 0;

    margin: 0;
}

/* MOBILE SEARCH */

.mobile-search{
    width: 100%;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 16px;

    border-radius: 999px;

    background: rgba(255,255,255,0.22);

    border: 1px solid rgba(255,255,255,0.2);

    margin-top: 8px;
}

.mobile-search input{
    width: 100%;

    border: none;
    outline: none;

    background: transparent;
}

/* SOCIAL */

.mobile-social{
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 6px;
}

.mobile-social a{
    color: #111;

    font-size: 20px;
}}



/* HERO */
.hero {
    position: relative;
    min-height: 650px;
    /* background-image: url('/images/home2img.png'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size:cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero span{
    color: red;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
     inset: 0;
      z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    z-index: 2;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: rgb(255, 255, 255);
}

.hero p {
    font-size: 14px;
    color: #e6e3e3;
    margin-bottom: 20px;
}

.hero-buttons button {
    padding: 10px 18px;
    border-radius: 20px;
    margin: 5px;
    cursor: pointer;
}

.primary-btn {
    background: #e53935;
    color: white;
    border: none;
}
.primary-btn:hover {
    background-color: #dd0400;
}

.secondary-btn {
     border: 1px solid rgba(255,255,255,0.2);
    color: #fefefe;
    /* background: transparent; */
     background: rgba(255,255,255,0.15);

    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px);
}








/* ABOUT */
/* ABOUT SECTION */
.about {
    padding: 30px 80px;
    font-family: Arial, sans-serif;
    position: relative;
}

.about-container {
    position: relative;
    background: #f7f7f7;
    border-radius: 28px;
    padding: 70px 80px;
    /* overflow: hidden; */
}

/* LEFT SIDE */
.about-left {
    position: absolute;
    left: 40px;
    top: 45%; /* moved slightly upward */
    transform: translateY(-50%);
    z-index: 1;
}

/* SMALL TAG */
.about-tag {
    display: inline-block;
    font-size: 13px;
    color: #666;
    background: #ececec;
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 20PX;
    margin-bottom: 20px;
}

/* LOGO BACKGROUND */
.about-logo img {
    width: 180px;
    opacity: 0.5;
    height: auto;
    margin-bottom: 5px; /* adds gap from underline */
}

/* RIGHT CONTENT */
.about-right {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin-left: 180px; /* text overlaps logo */
}

.about-right p {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    margin: 0;
    font-weight: 400;
}

/* UNDERLINE */
.about-line {
    margin-top: 60px;
    width: 100%;
    height: 1px;
    background: #ddd;
}

/* RED TEXT */
.about-right span {
    color: #d32f2f;
    font-weight: 600;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .about {
        padding: 20px;
    }

    .about-container {
        padding: 50px 25px;
        border-radius: 22px;
    }

    .about-left {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .about-logo img {
        width: 140px;
        opacity: 0.10;
    }

    .about-right {
        margin-left: 0;
        position: relative;
        z-index: 2;
    }

    .about-right p {
        font-size: 17px;
        line-height: 1.7;
        text-align: left;
    }

    .about-line {
        margin-top: 35px;
    }
}
@media (max-width: 768px) {

    .about-left {
        left: 50%;
        top: 42%; /* move logo upward on mobile */
        transform: translate(-50%, -50%);
    }

    .about-logo img {
        width: 140px;
        opacity: 0.10;
    }
}
/* LARGE SCREEN RESPONSIVE */
@media (min-width: 1600px) {

    .about {
        padding: 60px 140px;
    }

    .about-container {
        padding: 100px 140px;
        border-radius: 36px;
    }

    .about-left {
        left: 70px;
    }

    .about-logo img {
        width: 260px;
    }

    .about-right {
        max-width: 1100px;
        margin-left: 260px;
    }

    .about-right p {
        font-size: 26px;
        line-height: 1.9;
    }

    .about-tag {
        font-size: 16px;
        padding: 8px 18px;
    }

    .about-line {
        margin-top: 80px;
    }
}
@media (min-width: 2200px) {

    .about-container {
        max-width: 1900px;
        margin: auto;
    }

    .about-logo img {
        width: 320px;
    }

    .about-right {
        margin-left: 320px;
        max-width: 1300px;
    }

    .about-right p {
        font-size: 30px;
    }
}

@media (max-width: 768px) {

   .about-tag {
    position: relative;
    top: -10px;
    visibility: hidden;
}
}







/* GRID */
.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
}

/* CARD */
.category-card {
    position: relative;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

/* 🔥 FULL IMAGE */
.category-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 🔥 GLASS LAYER */
.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    
    background: rgba(20,20,20,0.45); /* dark glass */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* CONTENT */
.category-card .content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

/* TEXT */
.category-card h3 {
    font-size: 18px;
}

.category-card p {
    font-size: 13px;
    opacity: 0.8;
    margin: 5px 0;
}

.category-card span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

/* HOVER */
.category-card:hover::before {
    background: rgba(20,20,20,0.3);
}

.category-card:hover img {
    transform: scale(1.05);
    transition: 0.4s ease;
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .categories {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .category-card {
        height: 190px;
        border-radius: 18px;
    }

    .category-card img {
        object-fit: cover;
    }

    .category-card::before {
        background: linear-gradient(
            to top,
            rgba(0,0,0,0.75) 5%,
            rgba(0,0,0,0.20) 55%,
            rgba(0,0,0,0.05) 100%
        );

        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    .category-card .content {
        padding: 18px;
        justify-content: flex-end;
    }

    .category-card h3 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 6px;
    }

    .category-card p {
        font-size: 12px;
        line-height: 1.5;
        opacity: 0.9;
        max-width: 95%;
    }

    .category-card span {
        font-size: 12px;
    }
}












/* =========================
   FEATURED SECTION
   ========================= */

.featured {
    padding: 40px;
    background: #f8f8f8;
}

/* HEADER */
.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.featured-header h2 {
    font-size: 24px;
}

/* =========================
   SLIDER WRAPPER
   ========================= */

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* =========================
   PRODUCT SLIDER
   ========================= */

.product-slider {
    display: flex;
    gap: 20px;

    overflow-x: auto;
    scroll-behavior: smooth;

    padding: 10px 40px;

    /* hide scrollbar */
    scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

/* =========================
   SLIDER BUTTONS
   ========================= */

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #fff;
    color: #333;

    box-shadow: 0 2px 10px rgba(0,0,0,0.15);

    cursor: pointer;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: opacity 0.3s ease;
}

.slider-btn:hover {
    background: #e53935;
    color: white;
}

.slider-btn.left {
    left: 0;
}

.slider-btn.right {
    right: 0;
}

/* =========================
   PRODUCT CARD
   ========================= */

.product-card {
    width: 260px;
    height: 340px;

    flex: 0 0 auto;

    background: #fff;
    border-radius: 12px;

    padding: 15px;

    display: flex;
    flex-direction: column;

    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 130px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* BADGE */
.badge {
    font-size: 10px;
    background: #eee;
    padding: 4px 8px;
    border-radius: 10px;
    width: fit-content;
}

/* TITLE */
.product-card h4 {
    font-size: 15px;
    margin: 10px 0 5px;

    height: 20px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* DESCRIPTION */
.product-card p {
    font-size: 13px;
    color: #666;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    line-clamp: 2;

    overflow: hidden;
}

/* FOOTER */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: auto;
    height: 40px;
}

.product-footer span {
    font-weight: 600;
}

/* BUTTON */
.inquire-btn {
    background: #e53935;
    color: white;

    border: none;
    padding: 6px 12px;

    border-radius: 20px;

    cursor: pointer;
    transition: 0.3s;
}

.inquire-btn:hover {
    background: #c62828;
}

/* FORCE BUTTON RIGHT */
.product-footer button {
    margin-left: auto;
}



/* =========================
   MOBILE RESPONSIVE
   ========================= */

@media (max-width: 768px) {
    .featured {
        padding: 20px;
    }

    .product-slider {
        padding: 10px 30px;
        gap: 15px;
    }

    .product-card {
        width: 220px;
        height: 320px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}






/* industries we serve */

.industries {
    height: 500px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0b0b0b, #3b0d0d);
    color: #fff;

    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 20px;
}

/* ACCORDION */
.accordion {
    flex: 1;
    
}

/* ITEM */
.accordion-item {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 10px 0;
}

/* HEADER */
.accordion-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.accordion-header h3{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


.accordion-header span {
    color: red;
    transition: 0.3s;
    font-size: larger   ;
}

.accordion-item.active span {
    transform: rotate(45deg);
}

/* CONTENT */
.accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

/* INNER CONTENT (LOCKED SIZE) */
.content-inner {
    display: flex;
    align-items: stretch;
    gap: 15px;
    padding-top: 10px;

    height: 110px; /* 🔥 SAME FOR ALL */
}

/* IMAGE */
.image-box {
    width: 200px;
    height: 110px;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TEXT */
.text-box {
    flex: 1;
    height: 110px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-box p {
    font-size: 13px;
    color: #ccc;
    margin: 0;

    display: -webkit-box;
    -webkit-box-orient: vertical;

    overflow: hidden;

    /* Modern */
    line-clamp: 3;

    /* Fallback */
    -webkit-line-clamp: 2;
}

/* BUTTON */
.read-more {
    font-size: 12px;
    color: #ff3b3b;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.read-more:hover {
    text-decoration: underline;
}






/* =========================
   CATALOG BANNER
========================= */

/* CATALOG BANNER */
.catalog {
    margin: 40px;
    background: linear-gradient(45deg, #be2523, #ff6f61);
    color: white;
    padding: 30px;
    border-radius: 12px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog button {
    background: white;
    color: #e53935;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
}

.catalog h2 {
    font-size: 24px;
   
}

.catalog p {
    font-size: 16px;
    opacity: 0.95;
}

.catalog button {
    background: white;
    color: #e53935;

    border: none;
    padding: 12px 20px;

    border-radius: 20px;
    cursor: pointer;

    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;
    transition: 0.3s ease;
}

.catalog button:hover {
    transform: translateY(-2px);
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .catalog {
        padding: 24px;
    }

    .catalog h2 {
        font-size: 26px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .catalog {
        flex-direction: column;
        text-align: center;

        margin: 20px;
        padding: 28px 20px;
    }

    .catalog h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .catalog p {
        font-size: 14px;
        margin-top: 8px;
    }

    .catalog button {
        width: 100%;
        max-width: 260px;

        margin-top: 10px;
        padding: 14px 20px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .catalog {
        margin: 15px;
        padding: 24px 16px;
        border-radius: 10px;
    }

    .catalog h2 {
        font-size: 19px;
    }

    .catalog p {
        font-size: 13px;
    }

    .catalog button {
        font-size: 14px;
    }
}























/* Blog */

/* ===== BLOG SECTION ===== */
.blog-section-new {
  padding: 60px 20px;
  background: #0b0b0b;
}

.blog-container {
  max-width: 1200px;
  margin: auto;
  width: 100%;
}

/* ===== HEADER ===== */
.blog-header-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-tag {
  background: #fff;
  color: #000;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.blog-header-new h2 {
  color: #fff;
  font-size: 28px;
  margin: 0;
}

.blog-header-new h2 span {
  color: #e53935;
}

.blog-view-all {
  color: #fff;
  border: 1px solid #444;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.blog-view-all:hover {
  background: #e53935;
  border-color: #e53935;
}

/* ===== CARDS GRID ===== */
.blog-cards-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 3 cards */
  gap: 25px;
  align-items: stretch;
}

/* ===== CARD ===== */
.blog-card {
  background: #f2f2f2;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* ===== IMAGE ===== */
.blog-image-box {
  position: relative;
  height: 180px;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.blog-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CATEGORY BADGE */
.blog-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 15px;
}

/* ===== CONTENT ===== */
.blog-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-content h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000;
  min-height: 42px; /* keeps titles aligned */
}

.blog-content p {
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;

  display: -webkit-box;
  -webkit-box-orient: vertical;

  -webkit-line-clamp: 3; /* Safari, Chrome */
  line-clamp: 3;         /* Standard (future support) */

  overflow: hidden;
}

.blog-date {
  font-size: 12px;
  color: #777;
  margin-top: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .blog-cards-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-cards-new {
    grid-template-columns: 1fr;
  }
}








/* Stats */

.stats {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    text-align: center;
}

.stats > div {
    flex: 1;
    position: relative;
}

/* Add vertical line */
.stats > div:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #918d8d; /* red line */
}

.stats h2 {
    font-size: 32px;
}

.number {
    color: #000; /* black */
}

.suffix {
    color: #e53935; /* red */
}

/* =========================
   MOBILE / TABLET IMPROVEMENT
   Replace vertical line with underline
========================= */

@media (max-width: 768px) {

    .stats {
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
    }

    .stats > div {
        flex: unset;
        padding: 10px 0;
        position: relative;
    }

    /* remove vertical line */
    .stats > div:not(:last-child)::after {
        display: none;
    }

    /* add underline instead */
    .stats > div:not(:last-child)::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);

        width: 450%;
        height: 1px;
        background-color: #918d8d;
    }

    .stats h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {

    .stats {
        padding: 25px 15px;
        gap: 20px;
    }

    .stats > div:not(:last-child)::before {
        width: 60%;
    }

    .stats h2 {
        font-size: 26px;
    }
}























/* corousial */



.logo-carousel {
    overflow: hidden;
    background: #f5f5f5;
    padding: 60px 0;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: scrollRTL 30s linear infinite;
    transform: translate3d(0,0,0);
    pointer-events: none;
}

.logo-track img {
    height: 50px;
    margin: 0 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.logo-track img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* RIGHT → LEFT animation */
@keyframes scrollRTL {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* SMOOTHER LOOP (not perfect, but hides flicker) */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    95% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}






/* TESTIMONIALS */
.testimonials {
    background: #f5f5f5;
    padding: 80px 20px;
    text-align: center;
   
}

.testimonials .subtitle {
    letter-spacing: 2px;
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 600;
}

.testimonials h2 span {
    color: #fa0000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonial-wrapper {
    display: flex;
    gap: 25px;
    margin-top: 50px;
    overflow-x: auto;
    padding-bottom: 10px;

}

.testimonial-card {
    min-width: 320px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.company {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    background: #f1f1f1;
}

.quote {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #333;
}

.author strong {
    display: block;
    font-size: 14px;
}

.author small {
    color: #888;
}




/* FOOTER */
/* Floating Footer */
.footer {
    width: 90%;
    margin: 50px auto;
    background: #1f1e1e;
    color: white;
    padding: 30px;
    border-radius: 15px;
    font-family: Arial, sans-serif;
}

/* Title */
.footer h2 {
    margin-bottom: 20px;
}

/* Contact Row */
.contact-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-box {
    flex: 1;
    background: #f3f3f3;
    color: #333;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

.contact-box span {
    font-size: 20px;
}

.contact-box p {
    margin: 0;
    font-weight: 600;
}

.contact-box small {
    color: red;
}

/* DESKTOP LINKS */
.footer-links {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links h4 {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

/* Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom i{
    color: white;
}

.social span,
.payments span {
    margin-left: 10px;
}

/* Last Row */
.footer-last {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 12px;
}

/* Divider */
hr {
    border: 0.5px solid rgba(255,255,255,0.3);
}

/* ===================================== */
/* MOBILE ACCORDION HIDDEN ON DESKTOP */
/* ===================================== */

.footer-column {
    display: none;
}

/* ===================================== */
/* MOBILE VIEW ONLY */
/* ===================================== */

@media (max-width:768px) {

    /* Footer */
    .footer {
        width: 95%;
        padding: 20px;
        border-radius: 12px;
    }

    /* Contact boxes stack */
    .contact-row {
        flex-direction: column;
    }

    /* Hide desktop footer links */
    .footer-links {
        display: none !important;
    }

    /* Show mobile accordion */
    .footer-column {
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 15px 0;
    }

    /* Accordion title */
    .footer-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        margin: 0;
        font-size: 18px;
    }

    .footer-title span {
        font-size: 24px;
    }

    /* Accordion links */
    .footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;

    max-height: 0;
    overflow: hidden;

    opacity: 0;

    transition: max-height 0.35s ease, opacity 0.25s ease;
}

    .footer-content a {
        text-decoration: none;
        color: #fff;
        font-size: 14px;
    }

    /* Active accordion */
    .footer-column.active .footer-content {
    max-height: 300px; /* enough for links */
    opacity: 1;
}

    /* Bottom responsive */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-top: 20px;
    }

    .footer-last {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}