html {
    scroll-behavior: smooth;
    
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}



/* ========================================== TOP NAVBAR ========================================== */
.top-navbar {
    background-color: #111;
    color: #fff;
    font-size: 16px;
}

.top-navbar i {
    font-size: 20px;
}

.top-navbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 12px;
    transition: color 0.3s ease;
}

.top-navbar a:hover {
    color: #f39c12;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* -------- Mobile (Android / iPhone) -------- */
@media (max-width: 575px) {
    .top-navbar {
        font-size: 13px;
    }

    .top-navbar i {
        font-size: 16px;
    }

    .social-icons a {
        margin: 0 8px;
    }
}

/* -------- Tablets -------- */
@media (min-width: 576px) and (max-width: 991px) {
    .top-navbar {
        font-size: 14px;
    }

    .top-navbar i {
        font-size: 18px;
    }
}

/* -------- Laptops & Desktops -------- */
@media (min-width: 992px) {
    .top-navbar {
        font-size: 16px;
    }

    .top-navbar i {
        font-size: 22px;
    }
}

/*==========================================       HEADER        ==================================================*/

.logo-img {
    height: 45px;
    transition: all 0.3s ease;
}

/* Nav links */
.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    margin-left: 18px;
    color: #000;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #f39c12;
}

/* Dropdown menu */
.dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
    font-size: 15px;
    padding: 10px 18px;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f5f5f5;
}

/* -------- Desktop hover dropdown -------- */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* -------- Mobile & Tablet -------- */
@media (max-width: 991px) {

    .logo-img {
        height: 38px;
    }

    .navbar-nav {
        padding-top: 12px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
        font-size: 15px;
    }

    .dropdown-menu {
        text-align: center;
        box-shadow: none;
    }
}

/* -------- Small phones -------- */
@media (max-width: 575px) {

    .logo-img {
        height: 34px;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
    }
}




/*=================================================================================================
==================================      TAGLINE      ==============================================
===================================================================================================*/



  .marquee {
    overflow: hidden;
    position: relative;
  
    color: Black;
    padding: 16px 0;

    /* Fade edges */
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      black 10%,
      black 90%,
      transparent
    );
    mask-image: linear-gradient(
      to right,
      transparent,
      black 10%,
      black 90%,
      transparent
    );
  }

  .marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
    will-change: transform;
  }

  /* Pause on hover */
  .marquee:hover .marquee__track {
    animation-play-state: paused;
  }

  .marquee__content {
    display: flex;
    gap: 60px;
    padding-right: 60px;
    font-weight: 600;
    font-size: 18px;
    white-space: nowrap;
  }

  @keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  /* Reverse direction */
  .marquee.reverse .marquee__track {
    animation-direction: reverse;
  }

  /* Responsive speed */
  @media (max-width: 768px) {
    .marquee__track {
      animation-duration: 35s;
    }
  }

  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
    .marquee__track {
      animation: none;
    }
  }




/* ========================================== CAROUSEL ========================================== */

.carousel-item {
    height: 85vh;
    min-height: 420px;
    position: relative;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

/* Dark overlay */
.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: 30%;
}

.carousel-caption h1 {
    font-size: 48px;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 18px;
}

/* ---------- Tablets ---------- */
@media (max-width: 991px) {
    .carousel-item {
        height: 70vh;
    }

    .carousel-caption {
        bottom: 25%;
    }

    .carousel-caption h1 {
        font-size: 34px;
    }

    .carousel-caption p {
        font-size: 16px;
    }
}

/* ---------- Mobile (Android / iPhone) ---------- */
@media (max-width: 575px) {
    .carousel-item {
        height: 60vh;
        min-height: 320px;
    }

    .carousel-caption {
        bottom: 20%;
        text-align: center !important;
        padding: 0 12px;
    }

    .carousel-caption h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none; /* cleaner mobile UI */
    }
}


/* ==========================================    CARDS      ========================================== */


.feature-cards {
    padding: 100px 24px;   /* GAP from left & right screen edges */
}

.feature-cards .card-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;   /* keeps content centered on large screens */
    margin: 0 auto;
}

/* Card */
.feature-cards .card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;

    /* Perfect centering */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    
}

/* Image centered */
.feature-cards .card img {
    display: block;
    margin: 0 auto 14px;
    width: 70px;
    height: 70px;
    object-fit: contain;
}

/* Counter */
.feature-cards .counter {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Title */
.feature-cards .title {
    font-size: 16px;
    font-weight: 600;
}

/* ---------- Tablets ---------- */
@media (max-width: 991px) {
    .feature-cards {
        padding: 36px 20px;
    }

    .feature-cards .card-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- Mobile (Android / iPhone) ---------- */
@media (max-width: 575px) {
    .feature-cards {
        padding: 30px 16px;
    }

    .feature-cards .card-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-cards .card {
        padding: 24px 16px;
    }

    .feature-cards .card img {
        width: 60px;
        height: 60px;
    }

    .feature-cards .counter {
        font-size: 26px;
    }
}


/* ==========================================    ABOUT SECTION      ========================================== */
.about-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT */
.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #333;
}

/* RIGHT IMAGE */
.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ========================= */
/* TABLETS (<= 992px) */
/* ========================= */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 30px;
    }

    .about-container {
        gap: 40px;
    }

    .about-content h2 {
        font-size: 28px;
    }
}

/* ========================= */
/* MOBILE (<= 768px) */
/* ========================= */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-image {
        margin-top: 30px;
    }
}

/* ========================= */
/* SMALL MOBILE (<= 480px) */
/* ========================= */
@media (max-width: 480px) {
    .about-section {
        padding: 40px 20px;
    }

    .about-content h2 {
        font-size: 22px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}


/* ==========================================    WHAT WE DO     ========================================== */

.what-we-do {
    position: relative;
    background: url("../images/background.jpg") center/cover no-repeat;
    background-attachment: fixed;
    padding: 120px 40px;
    color: #fff;
}

/* Overlay */
.what-we-do .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

/* Content */
.what-content {
    position: relative;
    max-width: 1200px;
    margin: auto;
    z-index: 2;
}

/* Title */
.what-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 80px;
    letter-spacing: 1px;
}

/* Grid (UNCHANGED STRUCTURE) */
.what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
}

/* Vertical divider (UNCHANGED) */
.what-grid::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
}

/* Each block (UNCHANGED ALIGNMENT) */
.what-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

/* Icon */
.what-icon img {
    width: 350px;
    max-width: 100%;
}

/* Text */
.what-text h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}

.what-text p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

/* ========================= */
/* TABLETS (≤ 992px) */
/* ========================= */
@media (max-width: 992px) {

    .what-we-do {
        padding: 90px 30px;
    }

    .what-title {
        font-size: 32px;
        margin-bottom: 60px;
    }

    /* Stack grid in one column */
    .what-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /* Remove vertical divider */
    .what-grid::before {
        display: none;
    }

    /* Stack image above text */
    .what-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .what-icon img {
        width: 180px;   /* Bigger image */
    }
}

/* ========================= */
/* MOBILE (≤ 768px) */
/* ========================= */
@media (max-width: 768px) {

    .what-we-do {
        padding: 70px 20px;
        background-attachment: scroll;
    }

    .what-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .what-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .what-icon img {
        width: 150px;
    }

    .what-text h4 {
        font-size: 22px;
    }

    .what-text p {
        font-size: 15px;
    }
}

/* ========================= */
/* SMALL MOBILE (≤ 480px) */
/* ========================= */
@media (max-width: 480px) {
    .what-we-do {
        padding: 50px 16px;
    }

    .what-title {
        font-size: 24px;
    }

    .what-icon img {
        width: 90px;
    }

    .what-text p {
        font-size: 14px;
        line-height: 1.6;
    }
}




/* ==================================     WHAT WE EXPORT SECTION    ================================== */

.export-cards-row {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 40px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap; /* allows wrapping, no alignment change */
}

/* Card */
.export-product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: calc(25% - 22.5px); /* 4 cards desktop */
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

/* Image */
.export-product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Body */
.export-card-body {
    padding: 20px;
}

.export-card-body h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.export-card-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* Footer */
.export-card-footer {
    margin-top: auto;
    padding: 15px 20px;
    display: flex;
    gap: 12px;
}

/* Icons */
.icon-btn {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
}

/* ========================= */
/* LAPTOP / SMALL DESKTOP */
/* ========================= */
@media (max-width: 1200px) {
    .export-product-card {
        width: calc(33.33% - 20px);
    }
}

/* ========================= */
/* TABLET (≤ 992px) */
/* ========================= */
@media (max-width: 992px) {
    .export-cards-row {
        padding: 0 30px;
    }

    .export-product-card {
        width: calc(50% - 15px);
    }

    .export-product-card img {
        height: 300px;
    }
}

/* ========================= */
/* MOBILE (≤ 768px) */
/* ========================= */
@media (max-width: 768px) {
    .export-cards-row {
        padding: 0 20px;
        gap: 20px;
    }

    .export-product-card {
        width: 100%;
    }

    .export-product-card img {
        height: 180px;
    }

    .export-card-body h4 {
        font-size: 18px;
    }

    .export-card-body p {
        font-size: 14px;
    }
}

/* ========================= */
/* SMALL MOBILE (≤ 480px) */
/* ========================= */
@media (max-width: 480px) {
    .export-product-card img {
        height: 300px;
    }

    .icon-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}




/* =========================== ENQUIRY BOX =========================== */
.btn.enquiry-btn {
    background-color: #f39c12 !important;
    color: #fff !important;
    padding: 10px 28px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    border: none !important;
    transition: all 0.3s ease;
}

.btn.enquiry-btn:hover {
    background-color: #222 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* ===================================================       PRODUCT GALLERY =================================================== */

.gallery-wrapper {
  max-width: 1400px;
  margin: 80px auto;
  padding: 60px 40px;
  background: #FFFDD0;
  border-radius: 20px;
  box-shadow: none;
}

/* Title */
.gallery-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Card rows (alignment kept) */
.card-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap; /* allows safe wrapping on smaller screens */
}

/* Card */
.gallery-wrapper .card {
  width: 245px;
  height: 245px;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: none !important;
}

/* Image fills the card completely */
.gallery-wrapper .card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills card, maintains aspect ratio */
  display: block;
  border-radius: 0; /* remove inner border-radius if you want full fill */
}



/* Remove hover effects */
.gallery-wrapper .card:hover {
  box-shadow: none !important;
  transform: none !important;
}

.gallery-wrapper figure {
  margin: 0;
}

/* LAPTOP (≤ 1200px) */
@media (max-width: 1200px) {
  .gallery-wrapper .card {
    width: 220px;
    height: 220px;
  }
  .gallery-wrapper .card img {
    width: 100%;
    height: 100%;
  }
}

/* TABLET (≤ 992px) */
@media (max-width: 992px) {
  .gallery-wrapper .card {
    width: 180px;
    height: 300px;
  }
}

/* MOBILE (≤ 768px) */
@media (max-width: 768px) {
  .gallery-wrapper .card {
    width: 140px;
    height: 300px;
  }

  .gallery-title {
    font-size: 24px;
  } 
}

/* SMALL MOBILE (≤ 480px) */
@media (max-width: 480px) {
  .gallery-wrapper .card {
    width: 120px;
    height: 300px;
  }

  .gallery-title {
    font-size: 20px;
  }
}




/* =========================== WHY YOU CHOSE US =========================== */

/* Section wrapper */
.why-you-chose-us {
    max-width: 1200px;
    margin: auto;
    padding: 20px 40px;
    padding-bottom: 60px; /* Add this line for extra space below */
}

/* Heading */
.chose-us-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-top: 50px;
    letter-spacing: 1px;
    padding-bottom: 50px;
}

/* Card row (alignment unchanged) */
.card-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Card */
.why-you-chose-us .card {
    width: 260px;          /* same width for all */
    min-height: 240px;     /* same height for all */
    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    border-radius: 14px;

    /* Glow preserved */
    box-shadow:
        0 0 15px rgba(0, 200, 255, 0.8),
        0 0 15px rgba(0, 200, 255, 0.6),
        0 0 15px rgba(0, 200, 255, 0.4);

    transition: none !important;
}

/* Hover unchanged */
.why-you-chose-us .card:hover {
    transform: none !important;
    box-shadow:
        0 0 15px rgba(0, 200, 255, 0.8),
        0 0 15px rgba(0, 200, 255, 0.6),
        0 0 15px rgba(0, 200, 255, 0.4);
}

/* Image */
.card-img {
    width: 100%;
    max-width: 250px;
    height: auto;
}

.why-you-chose-us .card img {
    width: 150px !important;
    height: auto !important;
    margin-bottom: 12px;
}


/* Text */
.why-you-chose-us .title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.why-you-chose-us .subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 4px;
}

/* ========================= */
/* TABLET (≤ 992px) */
/* ========================= */
@media (max-width: 992px) {
    .why-you-chose-us {
        padding: 20px 30px;
    }

    .chose-us-title {
        font-size: 28px;
        padding-bottom: 50px;
    }

    .card-row {
        gap: 30px;
    }

    .why-you-chose-us .card img {
        width: 130px !important;
    }

    .why-you-chose-us .title {
        font-size: 17px;
    }
}

/* ========================= */
/* MOBILE (≤ 768px) */
/* ========================= */
@media (max-width: 768px) {
    .why-you-chose-us {
        padding: 20px 20px;
    }

    .chose-us-title {
        font-size: 26px;
        margin-top: 40px;
        padding-bottom: 50px;
    }

    .card-row {
        gap: 24px;
    }

    .why-you-chose-us .card {
        padding: 24px 16px;
    }

    .why-you-chose-us .card img {
        width: 110px !important;
    }

    .why-you-chose-us .title {
        font-size: 16px;
    }
}

/* ========================= */
/* SMALL MOBILE (≤ 480px) */
/* ========================= */
@media (max-width: 480px) {
    .chose-us-title {
        font-size: 22px;
        padding-bottom: 50px;
    }

    .why-you-chose-us .card img {
        width: 95px !important;
    }

    .why-you-chose-us .title {
        font-size: 15px;
    }
}


/* =========================== LOVE FROM OUR CLIENTS =========================== */
/* Testimonials Section */
.testimonials {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px 80px;
}

.testimonials-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* Card row (flexbox for horizontal row) */
.card-row {
    display: flex;
    justify-content: space-between; /* spread 4 cards evenly */
    gap: 20px;
    flex-wrap: nowrap; /* keep all cards in one row on desktop */
}

/* Card styling */
.card {
    flex: 1; /* each card takes equal width */
    max-width: 270px; /* limit card width */
    background: white;
    border-radius: 14px;
    text-align: center;
    padding: 30px 20px;

    box-shadow:
        0 0 15px rgba(62, 63, 63, 0.8),
        0 0 15px rgba(57, 58, 58, 0.6),
        0 0 15px rgba(52, 53, 53, 0.4);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px); /* lifts the card */
    box-shadow:
        0 0 20px #535151,
        0 0 40px #535151,
        0 0 60px #535151; /* glowing effect */
   
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

/* Client header */
.client-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 14px;
}

.client-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00c8ff;
    margin-bottom: 12px;
}

.client-info .title {
    font-weight: 600;
    font-size: 16px;
}

.stars {
    color: #00c8ff;
    font-size: 20px;
    margin-top: 4px;
}

.card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-top: 10px;
}

/* ========================= */
/* RESPONSIVE MEDIA QUERIES  */
/* ========================= */

/* Large Tablets / Laptops (≤1200px) */
@media (max-width: 1200px) {
    .card-row { gap: 15px; }
}

/* Tablets (≤992px) - 2 cards per row */
@media (max-width: 992px) {
    .card-row {
        flex-wrap: wrap; /* allow wrapping */
        justify-content: center;
    }
    .card {
        flex: 0 1 45%; /* 2 cards per row */
        max-width: none;
        margin-bottom: 20px;
    }
}

/* Mobile (≤768px) - 1 card per row */
@media (max-width: 768px) {
    .card {
        flex: 0 1 90%;
        margin-bottom: 20px;
    }
}

/* Extra small mobile (≤480px) */
@media (max-width: 480px) {
    .client-img { width: 55px; height: 55px; }
    .client-info .title { font-size: 13px; }
    .stars { font-size: 15px; }
    .card p { font-size: 12px; }
}

/* Section Title */
.testimonials-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* Swiper */
.swiper {
  width: 100%;
  max-width: 1100px;
  padding-bottom: 60px;
  margin: auto;
}

/* Slide */
.swiper-slide {
  width: 300px;
  display: flex;
  justify-content: center;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(0.85);
  opacity: 0.5;
}

/* Active (center) slide */
.swiper-slide-active {
  transform: scale(1.1);
  opacity: 1;
}

/* Card */
.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Client Header */
.client-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.client-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info .title {
  font-weight: bold;
  font-size: 16px;
}

.stars {
  color: #f39c12;
  font-size: 14px;
}

/* Card Text */
.card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* Responsive Swiper */
@media (max-width: 1024px) {
  .swiper-slide {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 200px;
  }
  .testimonials-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .swiper-slide {
    width: 160px;
  }
  .testimonials-title {
    font-size: 22px;
  }
}

.testimonials {
  padding: 80px 20px;
  text-align: center;
 
}

.testimonials-title {
  font-size: 32px;
  margin-bottom: 50px;
}

.testimonialSwiper {
  width: 100%;
  max-width: 1800px;
  margin: auto;
  padding-bottom: 60px;
}

.testimonialSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  transition: transform 0.4s ease;
}

/* Default smaller size */
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transform: scale(0.85);
  transition: transform 0.4s ease;
}

/* ACTIVE (center) card bigger */
.swiper-slide-active .testimonial-card {
  transform: scale(1);
}

/* Client header */
.client-header {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 15px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  font-weight: 600;
  font-size: 16px;
}

.stars {
  color: #f39c12;
  font-size: 14px;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

/* Responsive */
@media (min-width: 768px) {
  .testimonial-card {
    max-width: 350px;
  }
}

/* ===================================    CERTIFICATIONS     ===================================*/
.marquee-wrapper {
  width: 100%;            /* Full width wrapper */
  display: flex;
  justify-content: center; /* Centers the marquee horizontally */
  margin: 40px 0;          /* Optional vertical spacing */
}

.marquee {
  width: 80%;              /* Marquee itself */
  overflow: hidden;
  position: relative;
  padding: 30px 0;

  /* Fade edges */
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 80px;
}

.marquee__content img {
  height: 200px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.marquee__content img:hover {
  transform: scale(1.08);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .marquee__content img {
    height: 100px;
  }

  .marquee__track {
    animation-duration: 30s;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}







/* ==================================       FOOTER     ================================== */
       
.custom-footer {
  background-color: #FFFDD0; /* footer background */
  padding: 30px 15px;
  text-align: left;
}

/* ================================
   Company Logo (Responsive)
================================ */
.company-logo {
  width: 100%;              /* allows shrinking */
  max-width: 400px;         /* desktop limit */
  height: auto;
  display: block;
  margin: 0 auto 20px;
  filter: brightness(1.1);
}

/* Tablet */
@media (max-width: 768px) {
  .company-logo {
    max-width: 300px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .company-logo {
    max-width: 200px;
  }
}

/* ================================
   Footer Links
================================ */
.footer-link {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #f39c12;
}

/* ================================
   Social Links
================================ */
.social-links {
  display: flex;
  justify-content: left;
  gap: 12px;
  margin-top: 15px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: #222;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #f39c12;
  color: #000;
}

/* ================================
   Social Icons Responsive
================================ */
@media (max-width: 480px) {
  .social-icon {
    width: 32px;
    height: 32px;
  }
}

.whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: #fff;
            border-radius: 50%;
            font-size: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            background-color: #1ebe5d;
            transform: scale(1.1);
            color: #fff;
        }













/*=================================================================================================
================================== ENQUIRY PAGE ===================================================
===================================================================================================*/

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.enquiry-box {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.enquiry-box h2 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button {
    background-color: #f39c12;
    color: #fff;
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
    background-color: #222;
}




























































