* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    
}

body {
    color: white;
     margin: 0;
    padding: 0;
}




/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;

    margin-top: -56px; /* 👈 shift hero up by height of top-bar */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    transition: opacity 1s ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1600px;
    padding: 0 20px;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    color: white;
}
.hero-content p {
    margin-top: 10px;
    font-size: 1.5rem;
    color: white;
}
.hero-slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-slideshow .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  object-fit: cover;
  object-position: center;


}

.hero-slideshow .slide.active {
  opacity: 1;
  z-index: 1;
}

/* Quote button */
.hero-content .quote-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #ff0000, #000000);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hero-content .quote-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

/* Tablet View */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-content p {
        font-size: 1.6rem;
    }
    .hero-content .quote-btn {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

/* Mobile View */
@media (max-width: 600px) {
    .hero {
        height: 80vh; /* slightly shorter for mobile */
        padding: 20px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
    .hero-content .quote-btn {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
    .hero-slideshow .slide {
    object-fit: cover; 
    object-position: center center;
  }

}

/* Stats Section */
.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111;
    padding: 10px 0;
    text-align: center;
}

.stat-box {
    flex: 1;
    padding: 20px;
}

.stat-box i {
    font-size: 3rem; /* Increased from 2rem */
    margin-bottom: 15px;
    color: #fff;
}

.stat-box h2 {
    color: red;
    font-size: 2.5rem; /* Increased from 1.8rem */
    font-weight: bold;
}

.stat-box p {
    font-size: 1.2rem; /* Slightly bigger */
    margin-top: 8px;
    color: #fff;
}

/* White lines between boxes */
.border-right {
    border-right: 2px solid white;
}

/* ========================= */
/* 📱 Responsive Media Queries */
/* ========================= */

/* Tablet View */
@media (max-width: 992px) {
    .stat-box i {
        font-size: 2.5rem;
    }
    .stat-box h2 {
        font-size: 2rem;
    }
    .stat-box p {
        font-size: 1rem;
    }
}

/* Mobile View */
/* Mobile View */
@media (max-width: 600px) {
    .stats {
        display: flex;
        flex-wrap: wrap;       /* allow wrapping */
    }
    .stat-box {
        flex: 0 0 50%;         /* 2 per row */
        padding: 15px 0;
        box-sizing: border-box;
        border: 1px solid #fff; /* ✅ white border around every box */
    }
    .stat-box i {
        font-size: 2rem;
    }
    .stat-box h2 {
        font-size: 1.6rem;
    }
    .stat-box p {
        font-size: 0.95rem;
    }
}

/* About us Section */

.about-section {
    display: flex;
    align-items: stretch;
    gap: 60px; /* increase gap between image and content */
    padding: 50px;
}

/* Image */
.about-image {
    position: relative;
    width: 65%; /* smaller image width */
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}
.red-box {
    position: absolute;
    background: #d32f2f; /* same as Get Quote box */
    z-index: 1;
}
.top-right {
    top: -10px;
    right: -30px;
    width: 600px; /* bigger box */
    height: 450px; /* bigger box */
}
.bottom-left {
    bottom: -40px;
    left: -30px;
    width: 600px; /* bigger box */
    height: 450px; /* bigger box */
}


/* Content */
.about-content {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    margin-left: 40px;
    padding-left: 50px;
}
.about-content h2 {
    font-size: 3.2rem; /* bigger heading */
    margin-bottom: 20px;
}
.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.3rem; /* bigger paragraph */
}

/* Button */
.read-more {
    background-color: #d32f2f; /* same as Get Quote box */
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    width: fit-content;
}
.read-more:hover {
    background-color: #b71c1c;
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.btn {
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2rem;
}
.btn.gradient {
    background: linear-gradient(90deg, black, red);
    color: white;
}
/* laptop view */
@media (max-width: 1440px) {
  .about-section {
    gap: 40px;
    padding: 40px;
  }

  .about-image {
    width: 60%;
    height: 500px;
  }

  .about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    position: relative;
    z-index: 3; /* image above everything */
  }

  .top-right {
    width: 400px;
    height: 250px;
  }

  .bottom-left {
    width: 400px;
    height: 250px;
    margin-bottom: 115px;
  }

   
  .about-content {
    width: 50%;
    margin-left: 30px;
    padding-left: 40px;
  }

  .about-content h2 {
    font-size: 2.8rem;
  }

  .about-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 1023px) {
  .about-section {
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }

  .about-image {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2; /* ensure container is above red boxes */
  }

  .about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    position: relative;
    z-index: 3; /* image above everything */
  }

  .top-right {
    position: absolute;
    width: 350px;
    height: 200px;
    margin-top: -12px;
    z-index: 1; /* red boxes behind image */
  }
  .bottom-left {
    position: absolute;
    width: 350px;
    height: 200px;
    margin-bottom: -15px;
    z-index: 1; /* red boxes behind image */
  }

  .about-content {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    text-align: center;
  }

  .about-content h2 {
    font-size: 2.4rem;
  }

  .about-content p {
    font-size: 1.1rem;
  }

  .about-buttons {
    justify-content: center;
  }
}

/* ✅ Mobile Responsive Styles */
@media (max-width: 991px) {
    .about-section {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }

    .about-image {
        width: 100%;
    }

    .top-right {
        width: 350px;
        height: 200px;
        margin-top: -7px;
    }

     .bottom-left {
        width: 350px;
        height: 200px;
       
        margin-bottom: -12px;
    }

    .about-content {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        text-align: center;
    }

    .about-content h2 {
        font-size: 2rem;
        margin-top: 25px;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-buttons {
        justify-content: center;
    }
}




.btn.gradient {
  background: linear-gradient(to right, #000, red);
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-size: 1rem;
}
.btn.full {
  width: 100%;
}


.no-thanks {
  color: red;
  font-size: 0.9rem;
  text-align: center;
  margin: 12px 0 5px;
}


.checkbox {
  font-size: 0.85rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
}




/* global presence */
/* global presence */

.global-presence-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 60px;
   max-width: 1800px;
}

.content-wrapper {
  max-width: 1600px;
  text-align: center;
}

.main-heading {
  font-size: 2.8em;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.description {
  font-size: 1.3em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  justify-items: center;

}

.country-card {
  width: 100%;
  max-width: 200px;
  height: 120px;
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.country-card:hover {
  transform: translateY(-5px);
}

.country-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.country-card .country-name {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  max-width: 1000px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  overflow-y: auto;
  max-height: 90vh;
}

.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #ffffff;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.modal-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.fullscreen-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.fullscreen-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  z-index: 10001;
}
/* Responsive Modal Grid */
@media (max-width: 768px) {
  .modal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .modal-grid {
    grid-template-columns: 1fr;
  }
}
.view-more-card {
  display: flex;
  align-items: center;
  justify-content: center;
margin-top: 70px;
  border-radius: 25px;
  transition: transform 0.3s ease;
  height: 0;
  max-width: 400px;
}

.view-more-card:hover {
  transform: translateY(-5px);
}

.view-more-button {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.3rem;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff0000, #000000);
  /* border: 2px solid #000000; */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.view-more-button:hover {
  background-color: #fdf5f5;
  color: #ff4d4d;
}

/* ========================= */
/* 📱 Responsive Media Queries */
/* ========================= */


/* Mobile View */
@media (max-width: 600px) {
  .global-presence-container {
    padding: 60px 20px;
     margin-bottom: 0;
  }

  .main-heading {
    font-size: 1.8em;
  }

  .description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .countries-grid {
    grid-template-columns: 1fr; /* stack vertically */
    gap: 15px;
   margin-bottom: 0;
  }

  .country-card {
    max-width: 100%;
    height: 100px;
  }

  .country-card .country-name {
    font-size: 1em;
    bottom: 30px;
  }
}
@media (max-width: 600px) {
  .view-more-card {
    height: 50px;
    max-width: 100%;
    padding-top: 0%;
    margin-top: 0;
  }

  .view-more-button {
    font-size: 0.95rem;
    padding: 10px 20px;
    margin-top: 80px;
  
  }
}
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 10001;
  border-radius: 5px;
}

#prevImage {
  left: 30px;
}

#nextImage {
  right: 30px;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.4);
}

 /*    Services   */
.dark-background {
  background-color: #121212;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
}

.services-section {
  padding: 20px 10px;
  text-align: center;
}

.services-container {
  max-width: 2000px;
  margin: 0 auto;
   padding: 0 20px;

}

.services-heading {
  font-size: 3.5em;
  margin-bottom: 50px;
  color: #fff;
}

.services-cards-wrapper {
 display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards in one row */
  gap: 60px;
  margin-bottom: 50px;

}

.service-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: #fff;
}

.card-description {
  font-size: 1.2em;
  line-height: 1.6;
  color: #ccc;
}

.quote-button {
  background: linear-gradient(to right, #e74c3c, #c0392b);
  border: none;
  border-radius: 25px;
  color: white;
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
  display: inline-block;

}

.quote-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ========================= */
/* 📱 Responsive Media Queries */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  .services-heading {
    font-size: 2.5em;
  }

  .services-cards-wrapper {
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .service-card {
    max-width: 380px;
    padding: 25px;
    margin: 0 auto;
  }

  .card-title {
    font-size: 1.6em;
  }

  .card-description {
    font-size: 1.05em;
  }
}


/* Mobile */
@media (max-width: 600px) {
  .services-heading {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .services-cards-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .service-card {
    max-width: 90%;
    padding: 20px;
     margin: 0 auto;

  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .card-title {
    font-size: 1.4em;
  }

  .card-description {
    font-size: 1em;
  }

  .quote-button {
    font-size: 1em;
    padding: 12px 20px;
  }
}
@media (max-width: 1200px) {
  .services-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .service-card {
    flex: 1 1 calc(50% - 40px); /* Two cards per row */
    max-width: 500px;
  }

  .service-card:nth-child(3) {
    flex-basis: 100%; /* Third card takes full width */
    max-width: 600px;
  }
}


/*  our process */

.process-section {
  padding: 50px 0;
  background-color: #fff;
  text-align: center;
}

.process-container {
  margin: 0;
}

.process-heading {
  font-size: 3.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.process-step {
  padding: 40px 20px;
}

/* Borders for desktop grid */
.process-step:nth-child(1),
.process-step:nth-child(3) {
  border-right: 2px solid #000000;
}

.process-step:nth-child(1),
.process-step:nth-child(2) {
  border-bottom: 2px solid #000000;
}

.step-number {
  font-size: 3.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  display: block;
}

.step-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.step-description {
  font-size: 1.3em;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* ========================= */
/* 📱 Responsive Media Queries */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  .process-heading {
    font-size: 2.8em;
  }

  .step-number {
    font-size: 2.8em;
  }

  .step-title {
    font-size: 1.8em;
  }

  .step-description {
    font-size: 1.1em;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr; /* Stack all steps vertically */
    grid-template-rows: auto;
  }

  .process-step {
    border: none; /* Remove grid borders for mobile */
    padding: 25px 15px;
    border-bottom: 2px solid #ddd;
  }

  .process-step:last-child {
    border-bottom: none; /* Remove bottom border from last step */
  }

  .process-heading {
    font-size: 2em;
    margin-bottom: 25px;
  }

  .step-number {
    font-size: 2.2em;
  }

  .step-title {
    font-size: 1.4em;
  }

  .step-description {
    font-size: 1em;
  }
}
/* Removes vertical borders for mobile view and adds horizontal borders */
@media (max-width: 768px) {
  .process-step:nth-child(1),
  .process-step:nth-child(2),
  .process-step:nth-child(3) {
    border-right: none;
    border-bottom: 2px solid #000000;
  }
}

/*  Video Section */
.video-background {
  background-color: #121212;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
}

.video-portfolio-section {
  padding: 20px 0;
  text-align: center;
}

.video-portfolio-container {
  margin: 0;
}

.video-portfolio-heading {
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  /* Shifted the grid to the right by increasing the left padding */
  padding: 0 20px 0 30px; 
  justify-content: center;
}

.video-item {
  text-align: center;
    margin-top: 50px; 
}

.video-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  cursor: pointer;
  border: 3px solid #ff0000; /* Added a 3px solid red border */
}

.video-thumbnail-wrapper:hover {
  transform: translateY(-5px);
}

.video-thumbnail {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.video-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  /* Increased the space between the video and its title */
  margin-top: 50px; 
}
.video-background {
  background-color: #121212;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
}

.video-portfolio-section {
  padding: 20px 0;
  text-align: center;
}

.video-portfolio-container {
  margin: 0;
}

.video-portfolio-heading {
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
  justify-content: center;
}

.video-item {
  text-align: center;
  margin-top: 40px;
}

.video-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 3px solid #ff0000;
}

.video-thumbnail-wrapper:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.video-thumbnail {
  width: 85%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.video-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
  margin-top: 20px;
}

/* ========================= */
/* 📱 Responsive Media Queries */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 videos per row */
  }

  .video-portfolio-heading {
    font-size: 2em;
  }

  .video-title {
    font-size: 1.1em;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .videos-grid {
    grid-template-columns: 1fr; /* 1 video per row */
  }

  .video-thumbnail {
    width: 100%;
  }

  .video-portfolio-heading {
    font-size: 1.6em;
    margin-bottom: 15px;
  }

  .video-title {
    font-size: 1em;
    margin-top: 15px;
  }
}

/* testimonials.css */

.testimonials-page {
  font-family: sans-serif;
  color: unset; /* Avoid conflicts */
  background-color: #f0f4f8;
  margin: 0;
  padding: 0;
}

.testimonials-section {
  width: 100vw;              /* Full viewport width */
  max-width: unset;          /* Remove any constraint */
  margin: 0;                 /* No auto margins */
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.container {
    width: 100vw;              /* Match viewport width */
  margin: 0;
  padding: 0;
}

.section-title {
  font-size: 3rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.3rem;
  color: #666;
  line-height: 1.6;

  max-width: unset;
  margin: 0 0 40px;
}


.splide {
  width: 100%;
  margin: 0;
  padding: 0;
}

.splide__list {
 display: flex;
  flex-wrap: nowrap;
  gap: 0; /* no spacing between cards */
}
.testimonial-slider-wrapper {
  width: 100vw;              /* Full viewport width */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;        /* Cancel out parent padding */
  margin-right: -50vw;
   padding-left: 80px;   /* 👈 Add space on left */
  padding-right: 80px;  /* 👉 Add space on right */
}
.testimonial-card {
   flex: 0 0 calc(100% / 3); /* exactly 3 cards per view */
  min-width: unset; /* remove fixed min-width */
   margin: 0;
  padding: 30px 20px; /* Slight horizontal breathing room */
  background-color: #000;
  color: #fff;
  border-radius: 15px;
  display: flex;
   box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.logo-container {
  background-color: #fff;
  border-radius: 50%;
  padding: 12px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.brand-logo {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12%;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
  color: #f5f5f5;
}

.brand-name {
  font-weight: bold;
  font-size: 1.2rem;
  color: #ff4d4d; /* Accent red to match your theme */
  margin-top: 10px;
}

/* ========================= */
/* 📱 Responsive Media Queries */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }

  .section-description {
    font-size: 1.2rem;
    max-width: 700px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
.testimonial-slider-wrapper {
    padding-left: 20px;   /* 👈 Reduced space on left */
    padding-right: 20px;  /* 👉 Reduced space on right */
  }
  .logo-container {
    width: 70px;
    height: 70px;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .brand-name {
    font-size: 1rem;
  }
}
/* award

.award-section {
  background-image: url('46.webp');  Replace with your background image */
  /*background-size: cover;
  background-position: center;
  padding: 60px 40px;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

.award-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.left-side {
  flex: 1;
}

.right-side {
  flex: 1;
  text-align: right;
}

.award-heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.award-name,
.show-name {
  font-size: 20px;
  margin-bottom: 10px;
}

.description {
  font-size: 18px;
  margin-bottom: 20px;
}

.award-image {
  width: 120px;
  height: auto;
  display: inline-block;
} */






/*Our team */

/* Team Section Wrapper */
.team-section {
  padding: 40px 20px; /* adds subtle left/right margin */
  text-align: center;
  background-color: #fff;
  max-width: 3000px;
  margin: 0 auto;
}

.team-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 5px; /* reduced horizontal padding */
      margin-left: 10px;   /* small left margin */
  margin-right: 10px;  /* small right margin */   
}


.team-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 25px;
}

.team-description {
    font-size: 1.5rem;
    color: #ffffff;
    max-width: 2000px;
    margin: 0 auto 10px;
    line-height: 1.5;
}



.team-slider {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}



.team-slider-wrapper {
  display: flex;
  align-items: stretch;
  margin-left: 0;
  margin-right: 0;
  gap: 0;
}

.team-wrapper {
  font-family: 'Segoe UI', sans-serif;
  background: #000000;
  padding: 1px 1px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: 0px;
  margin-right: 0%;
}

.team-button-prev,
.team-button-next {
  position: absolute;
  top: 45%; /* slightly higher */
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 10;
  transition: background-color 0.3s ease;
}

.team-button-prev:hover,
.team-button-next:hover {
  background-color: #eee;
}

.team-button-prev {
  left: 10px;
}

.team-button-next {
  right: 10px;
}


.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
     /* ✅ adds space between cards */
  padding: 0;
  gap: 0;
}

.team-card {
   flex: 0 0 calc(33.333% - 20px); /* exact width minus margin */
  margin: 0 10px;
  padding: 10px 5px;
  box-sizing: border-box;
  text-align: center;
  background: #ffffff;
  border-radius: 8px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.team-row {   /* parent of .team-card */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;   /* space between cards */
  justify-content: center;
}
.team-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;

  border-radius: 8px;
  margin: 0 auto 5px;
}
.team-card h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
  color: #333;
}
.team-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #777;
}


/* ============================= */
/* 📱 Mobile Responsive Styles   */
/* ============================= */
@media (max-width: 600px) {
    .slider-track {
    gap: 20px; /* ensure no extra spacing */
  }

  .team-card {
    flex: 0 0 100%;
    margin: 0 auto;
    max-width: 100%;
  }

  .team-slider {
    padding-left: 10px;
    padding-right: 10px;
  }

  .team-button-prev,
  .team-button-next {
    width: 40px;
    height: 40px;
    font-size: 2rem;
    line-height: 40px;
    top: 50%;
  }

  .team-button-prev {
    left: 5px;
  }

  .team-button-next {
    right: 5px;
  }
}

/* Client Secton */
.clients-section-wrapper {
  background-color: #161616; /* Dark background */
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

.brand-section {
  padding: 60px 0;
}

.brand-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title1 {
  color: #000000;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-title1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff4d4d; /* Accent line under heading */
  margin: 12px auto 0;
  border-radius: 2px;
}

.clients-swiper {
  width: 100%;
  overflow: hidden; /* Prevent overflow */
  padding: 10px 0;
  align-items: center;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide {
  flex-shrink: 0;

  display: flex;
  justify-content: center;
  align-items: center;
 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide:hover {
  transform: translateY(-6px) scale(1.05);

}



.client-item img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.client-item img:hover {
  transform: scale(1.1);
}

/* ========================= */
/* 📱 Responsive Media Queries */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  .section-title1 {
    font-size: 2rem;
  }

  .swiper-slide {
    width: 150px;
    height: 100px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .section-title1 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .swiper-slide {
    width: 120px;
    height: 80px;
    margin: 0 8px;
  }

  .client-item img {
    max-width: 70%;
    max-height: 70%;
  }
}