  /* Global Styles */
:root {
  --primary: #b89054;
  --text-light: #d3d3d3;
  --text-dark: #1a1a1d;
  --bg-dark: #222224;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-dark);
  color: #fff;
}

/* Banner Section */
.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 80px;
  max-width: 1400px;
  margin: auto;
  flex-wrap: wrap;
  position: relative;
  
}

/* Left Content */
.banner-content {
  flex: 1 1 500px;
  z-index: 2;
}

.banner-content h5 {
  font-size: 30px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.banner-content h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

.banner-content h1 span {
  background: linear-gradient(90deg, #9E7339 0%, #e1c184 50%, #9E7339 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback */
  font-weight: 700; /* optional: makes gradient text pop */
}

.banner-content p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 35px;
  margin-top: 35px;
  max-width: 400px;
}

/* Buttons */
.buttons {
  display: flex;
  gap: 20px;
}

.btn {
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s ease;
}

.btn-primary {
 background:linear-gradient(90deg, #9E7339 0%, #e1c184 50%, #9E7339 100%);
  color: var(--text-dark);
}

.btn-primary:hover {
     border-color: #d9a96a;
    background: #b89054;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(184, 144, 84, 0.12);
  }

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
    border-color: #d9a96a;
    background: linear-gradient(90deg, #9E7339 0%, #e1c184 50%, #9E7339 100%);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(184, 144, 84, 0.12);
    color: var(--text-dark);
  }

/* Right Image Section */
.banner-image {
  position: relative;
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-image img {
  width: 120%;
  z-index: 2;
  position: relative;
}

/* Decorative Lines */
.shape-lines {
  position: absolute;
  top: 65%;
  right: -54px;
  width: 100px;
  height: 170px;
  background: black;
}

/* Image Background */
.image-background {
  position: absolute;
  top: 50px;
  right: 0;
  width: 330px;
  height: 480px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  opacity: 0.7;
  z-index: 0;
}

/* Clients Section */
.clients-section {
  padding: 80px 125px;

}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.section-header p {
  color: var(--text-light);
  font-size: 16px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  padding: 60px;
  align-items: center;
  border: 4px solid #ae864b;

  background: #fff;
  border-radius: 20px;
}

.client-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.client-item:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(184, 144, 84, 0.1);
  background: rgba(184, 144, 84, 0.05);
}

.client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.client-logo img {
  max-width: 100%;

  width: auto;
  height: auto;
  transition: all 0.3s ease;
}

.client-item {
  position: relative;
  overflow: hidden;
}

.client-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #9E7339 0%, #e1c184 50%, #9E7339 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.client-item:hover::before {
  opacity: 1;
}

.client-logo img {
  position: relative;
  z-index: 1;
  transition: filter 0.4s ease;
}

.client-item:hover .client-logo img {
  filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .banner {
    padding: 60px 30px;
    flex-direction: column;
    text-align: center;
  }

  .banner-content h1 {
    font-size: 32px !important;
  }

  .banner-content p {
    margin: 0 auto 30px;
  }

  .banner-image {
    margin-top: 40px;
  }


  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .section-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .client-item {
    height: 100px;
    padding: 15px;
  }
  
 
}

@media (max-width: 600px) {
  .banner-content h1 {
    font-size: 38px;
  }
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .clients-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
}


/* About Section Styles */
.about-section {
  padding: 100px 80px;
  max-width: 1400px;
  margin: auto;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h5 {
  font-size: 30px;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #fff;
}

.about-text h2 span {
  color: var(--primary);
}

.about-text > p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

/* Feature Items */
.about-features {
  margin-bottom: 50px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}


.feature-icon svg {
  color: var(--text-dark);
  width: 14px;
  height: 14px;
}

.feature-text p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* About Image */
.about-image {
  position: relative;
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 110%;
  max-width: 500px;
  border-radius: 10px;
  z-index: 2;
  position: relative;
}


/* Responsive Design */
@media (max-width: 1200px) {
  .about-section {
    padding: 80px 60px;
  }
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  
  .about-text h2 {
    font-size: 42px;
  }
  
  .about-text > p {
    margin: 0 auto 40px;
  }
  
  .feature-item {
    justify-content: flex-start;
    text-align: left;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .about-image {
    margin-top: 40px;
  }
  
 
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 30px;
  }
  
  .about-text h2 {
    font-size: 36px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .about-text h2 {
    font-size: 32px;
  }
  
  .about-text h5 {
    font-size: 24px;
  }
  
  .stat-item h3 {
    font-size: 36px;
  }
  
  .feature-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
}


/* Stats Section Styles */
.stats-section {
  padding: 40px 80px;
  background: #1a1a1d;
  margin:30px;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(184, 144, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon svg {
  color: var(--text-dark);
}

.stat-content h3 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 10px;
  color:  var(--primary);;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-content h3 {
  color:white
}

.stat-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .stats-section {
    padding: 80px 60px;
  }
  
  .stats-grid {
    gap: 30px;
  }
  
  .stat-content h3 {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stat-item {
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 30px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stat-content h3 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .stats-section {
    padding: 50px 20px;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
  }
  
  .stat-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .stat-content h3 {
    font-size: 32px;
  }
}

/* Services Section Styles */
   .services-section {
    position: relative;
    min-height: 950px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px; /* adds 50px margin left and right */
}


    .services-bg-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        background-image: url('{{ asset("img/service.png") }}');
        background-position: top;
        background-attachment: fixed;
        z-index: 1;
    }

    /* <CHANGE> Overlay for background image */
    .services-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.733);
        z-index: 2;
    }

    .services-header {
        position: relative;
        z-index: 3;
        text-align: center;
        margin-bottom: 60px;
        color: white;
    }

    .services-header h5 {
        font-size: 40px;
        font-weight: 500;
        color: #F2BF76;
        letter-spacing: 2px;
        margin-bottom: 15px;
         margin-top: 40px;
        text-transform: uppercase;
    }

    .services-header p {
        font-size: 20px;
        color: #ffffff;
        margin: 0;
        font-weight: 300;
    }

    .services-grid {
        position: relative;
        z-index: 3;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        
        margin: 0 auto;
        padding: 0 40px;
        width: 100%;
    }

    /* <CHANGE> Service card with black bottom section */
    .service-card {
       
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

    .service-image {
        width: 100%;
        height: 280px;
        overflow: hidden;
        background: #f0f0f0;
    }

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .service-card:hover .service-image img {
        transform: scale(1.05);
    }

    /* <CHANGE> Black bottom section for content */
    .service-content {
        background: #1f1f1f;
        padding: 40px 30px;
        color: white;
    }

    .service-content h3 {
        font-size: 30px;
        font-weight: 300;
        text-align: center;
        color: #F2BF76;
        margin-bottom: 15px;
        margin-top: 0;
    }

    .service-subtitle {
        font-size: 18px;
        text-align: center;
        color: #ffffff;
        font-weight: 500;
        margin-bottom: 10px;
       
    }

    .service-description {
        font-size: 18px;
        text-align: center;
        color: #cccccc;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .service-btn {
        display: inline-block;
        padding: 12px 30px;
        border: 2px solid #F2BF76;
        color: #F2BF76;
        text-decoration: none;
        border-radius: 25px;
        margin-left: 170px;
        font-weight: 500;
        transition: all 0.3s ease;
        font-size: 14px;
    }

    .service-btn:hover {
        background: #F2BF76;
        color: #000000;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .services-grid {
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 0 30px;
        }

        .services-section {
            min-height: auto;
            padding: 80px 0;
        }

        .services-bg-wrapper {
            position: relative;
            min-height: 800px;
        }
    }

    @media (max-width: 768px) {
        .services-header h5 {
            font-size: 32px;
        }

        .services-header p {
            font-size: 16px;
        }

        .services-grid {
            padding: 0 20px;
        }

        .service-content {
            padding: 30px 20px;
        }

        .service-image {
            height: 220px;
        }
    }

/* Define CSS variables for consistent theming */

/* Why Choose Us Section Styles */
.why-choose-section {
  padding: 100px 80px;
  background: var(--bg-dark);
  position: relative;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h5 {
  font-size: 40px;
  font-weight: 500;
  color: #F2BF76;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.section-header h2 span {
  color: var(--primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
 background:linear-gradient(90deg, #9E7339 0%, #e1c184 50%, #9E7339 100%);
  border-radius: 15px;
  padding: 25px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.ins-card{
  background:linear-gradient(90deg, #9E7339 0%, #e1c184 50%, #9E7339 100%);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(184, 144, 84, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
 
  border-radius: 50%;
  background: rgba(184, 144, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}
.feature-icon1 {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(184, 144, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.feature-icon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  transition: all 0.3s ease;
}



.feature-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: black;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-content h3 {
  color: var(--primary);
}
.feature-card:hover .feature-content p {
  color: var(--primary);
}
.feature-content p {
  font-size: 18px;
  color: black;
  line-height: 1.6;
  margin-bottom: 25px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: black;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.feature-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.feature-link:hover {
  color: #d9a96a;
}

.feature-link:hover::after {
  width: 100%;
}

.feature-link svg {
  transition: transform 0.3s ease;
}

.feature-link:hover svg {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .why-choose-section {
    padding: 80px 60px;
  }
  
  .features-grid {
    gap: 30px;
  }
  
  .section-header h2 {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .feature-card {
    padding: 20px 5px;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 60px 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
  
  .section-header h5 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .why-choose-section {
    padding: 50px 20px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon img {
    width: 50px;
    height: 50px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .feature-content h3 {
    font-size: 22px;
  }
} 


/* Stats Section Styles */
.stats-section {
  padding: 40px 80px;
  background: #1a1a1d;
  margin:30px;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(184, 144, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  background: var(--primary);
  transform: scale(1.1);
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon svg {
  color: var(--text-dark);
}

.stat-content h3 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 10px;
  color:  var(--primary);;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-content h3 {
  color:white
}

.stat-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .stats-section {
    padding: 80px 60px;
  }
  
  .stats-grid {
    gap: 30px;
  }
  
  .stat-content h3 {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stat-item {
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 30px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stat-content h3 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .stats-section {
    padding: 50px 20px;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
  }
  
  .stat-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .stat-content h3 {
    font-size: 32px;
  }
}

.how-it-works-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 80px;
  color: #fff;
  z-index: 1;
  margin: 0 20px;
}

.how-it-works-section .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.how-it-works-section .container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h5 {
  font-size: 40px;
  font-weight: 400;
  color: #F2BF76;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

/* === TAB BUTTONS (PILL STYLE) === */
.tab-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 150px;
}

.tab-buttons {
  justify-content: center;
  align-items: center;
  background: #1a1a1a;
  border-radius: 50px;
  overflow: hidden;
}

.tab-button {
  flex: 1;
  padding: 20px 55px;
  border: none;
  background: transparent;
  color: #d9d9d9;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button.active {
  background: #f2bf76;
  color: #111;
  box-shadow: 0 2px 8px rgba(242, 191, 118, 0.4);
}

.tab-button:not(.active):hover {
  background: rgba(255, 255, 255, 0.08);
}

/* === STEPS GRID === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* === STEP CARD === */
.step-card {
  background: #161616;
  backdrop-filter: blur(5px);
  padding: 60px 30px 40px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: #F2BF76;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* === STEP NUMBER FLOATING ON TOP === */
.step-number {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 90px;
  background: #F2BF76;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  box-shadow: 0 8px 15px rgba(0,0,0,0.4);
}

.step-content {
  margin-top: 40px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 400;
  color: #E7B65B;
  margin-bottom: 20px;
}

.step-content p {
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
}

/* === TAB PANELS === */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .how-it-works-section {
    padding: 60px 30px;
  }

  .section-header h5 {
    font-size: 30px;
  }

  .tab-buttons {
    flex-direction: column;
    border-radius: 30px;
    width: 100%;
    max-width: 300px;
  }

  .tab-button {
    width: 100%;
  }
}

/* Industries Section Styles */
.industries-section {
  padding: 100px 80px;
  background: var(--bg-dark);
  position: relative;
}

.industries-section .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.industries-section .section-header h5 {
  font-size: 40px;
  font-weight: 400;
  color: #F2BF76;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: #1B1B1C;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #F2BF76;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}



.industry-card:hover::before {
  transform: scaleX(1);
} */

 .industry-card:hover {
  transform: translateY(10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
} 

.industry-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
 background:linear-gradient(90deg, #9e3939 0%, #825f1c 50%, #f2660f 100%);
}
.industry-card:hover  {
 background:linear-gradient(90deg, #9E7339 0%, #e1c184 50%, #9E7339 100%);
}
.industry-card:hover .staff-count {
 color:white;
}
.industry-icon img {
  width: 100px;
  height: 90px;
  object-fit: contain;
}

.industry-content h3 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}

.staff-count {
  font-size: 16px;
  color: #F2BF76;
  font-weight: 500;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .industries-section {
    padding: 80px 60px;
  }
  
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .industries-section {
    padding: 60px 30px;
  }
  
  .industries-section .section-header h5 {
    font-size: 30px;
  }
  
  .industries-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .industries-section {
    padding: 50px 20px;
  }
  
  .industries-section .section-header h5 {
    font-size: 24px;
  }
}

/* Map Section */
.map-section {
  background: var(--bg-dark);
  padding: 10px 80px;
  margin-bottom: 90px;
  position: relative;
}


.map-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.map-section .section-header h5 {
  font-size: 40px;
  font-weight: 400;
  color: #F2BF76;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(242, 191, 118, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .map-section {
    padding: 80px 40px;
  }
}

@media (max-width: 600px) {
  .map-section {
    padding: 60px 20px;
  }
  .map-section .section-header h5 {
    font-size: 28px;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 100px 80px;
  background: var(--bg-dark);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.contact-section .section-header {
  text-align: center;
  margin-bottom: 80px;
}

.contact-section .section-header h5 {
  font-size: 40px;
  font-weight: 400;
  color: #F2BF76;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.contact-section .section-header h2 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.contact-section .section-header h2 span {
  color: var(--primary);
}
.contact-header h2 {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 25px;
  margin-top: 25px;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 25px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 50px;
  position: relative;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.contact-details {
  margin-bottom: 50px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 65px;
  height: 65px;
  border-radius: 20%;
  background: #1B1B1C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
 background:linear-gradient(90deg, #9E7339 0%, #e1c184 50%, #9E7339 100%);
}

.contact-icon svg {
  color: var(--primary);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon svg {
  color: var(--text-dark);
}

.contact-text p {
  font-size: 16px;
  color: #F2BF76;
  line-height: 1.6;
  margin: 0;
}

.social-info h3 {
  font-size: 25px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 50px;
  position: relative;
}

.social-info h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 65px;
  height: 65px;
  border-radius: 20%;
  background: #1B1B1C;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
 background:linear-gradient(90deg, #9E7339 0%, #e1c184 50%, #9E7339 100%);
  transform: translateY(-5px);
}

.social-link svg {
  color: var(--primary);
  transition: all 0.3s ease;
}

.social-link:hover svg {
  color: var(--text-dark);
}

.contact-form {
  background: #1B1B1C;
  padding: 10px 60px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(184, 144, 84, 0.05);
}

.submit-btn {
  background: var(--text-dark);
  color: var(--primary);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 500;
  border: 2px solid var(--primary);
  font-size: 16px;
  margin-bottom: 20px;
  margin-left: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.submit-btn:hover {
  background:linear-gradient(90deg, #9E7339 0%, #e1c184 50%, #9E7339 100%);
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(184, 144, 84, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-section {
    padding: 80px 60px;
  }
  
  .contact-content {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .contact-section .section-header h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 30px;
  }
  
  .contact-section .section-header h2 {
    font-size: 36px;
  }
  
  .contact-section .section-header h5 {
    font-size: 24px;
  }
  
  .contact-form {
    padding: 30px 25px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 50px 20px;
  }
  
  .contact-section .section-header h2 {
    font-size: 32px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
  .banner {
    padding: 80px 40px;
  }
  
  .clients-section {
    padding: 60px 40px;
  }
  
  .about-section {
    padding: 80px 40px;
  }
  
  .stats-section {
    padding: 60px 40px;
    margin: 20px;
  }
  
  .why-choose-section {
    padding: 80px 40px;
  }
  
  .industries-section {
    padding: 80px 40px;
  }
  
  .contact-section {
    padding: 80px 40px;
  }
  
  .map-section {
    padding: 60px 40px;
  }
}

@media (max-width: 992px) {
  /* Banner Section */
  .banner {
    padding: 60px 30px;
    flex-direction: column;
    text-align: center;
  }
  
  .banner-content {
    flex: 1 1 100%;
    margin-bottom: 40px;
  }
  
  .banner-content h1 {
    font-size: 52px;
  }
  
  .banner-content p {
    margin: 20px auto 30px;
  }
  
  .banner-image {
    flex: 1 1 100%;
    margin-top: 20px;
  }
  
 
  /* Clients Section */
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 20px;
  }
  
  /* About Section */
  .about-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .about-text h2 {
    font-size: 42px;
  }
  
  .about-image .image-background {
    display: none;
  }
  
  /* Stats Section */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  /* Why Choose Us */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  /* Services Section */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 30px;
  }
  
  .service-btn {
    margin-left: 0;
    display: block;
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
  }
  
  /* Industries Section */
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* How It Works */
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .how-it-works-section {
    padding: 60px 30px;
  }
  
  /* Contact Section */
  .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  /* General Padding */
  .banner,
  .clients-section,
  .about-section,
  .stats-section,
  .why-choose-section,
  .services-section,
  .industries-section,
  .how-it-works-section,
  .contact-section,
  .map-section {
    padding: 50px 20px;
  }
  
  /* Banner */
  .banner-content h1 {
    font-size: 38px;
  }
  
  .banner-content h5 {
    font-size: 24px;
  }
  
  .buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn {
    width: 200px;
    text-align: center;
  }
  
  /* Clients */
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 30px 15px;
  }
  
  .client-item {
    height: 100px;
  }
  
  /* About Section */
  .about-text h2 {
    font-size: 36px;
  }
  
  .about-text h5 {
    font-size: 24px;
  }
  
  .feature-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }
  
  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stat-content h3 {
    font-size: 36px;
  }
  
  /* Why Choose Us */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .section-header h5 {
    font-size: 30px;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
  
  /* Services */
  .services-header h5 {
    font-size: 32px;
  }
  
  .services-header p {
    font-size: 16px;
  }
  
  .services-grid {
    padding: 0 20px;
  }
  
  .service-content {
    padding: 30px 20px;
  }
  
  .service-image {
    height: 220px;
  }
  
  .service-content h3 {
    font-size: 24px;
  }
  
  /* Industries */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .industries-section .section-header h5 {
    font-size: 30px;
  }
  
  /* How It Works */
  .tab-buttons {
    flex-direction: column;
    border-radius: 30px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 80px;
  }
  
  .tab-button {
    width: 100%;
    padding: 15px 30px;
  }
  
  .step-card {
    padding: 50px 20px 30px;
  }
  
  /* Contact Section */
  .contact-section .section-header h2 {
    font-size: 36px;
  }
  
  .contact-section .section-header h5 {
    font-size: 30px;
  }
  
  .contact-form {
    padding: 30px 25px;
  }
  
  .submit-btn {
    margin-left: 0;
    width: 100%;
    max-width: 200px;
  }
  
  /* Map Section */
  .map-section .section-header h5 {
    font-size: 28px;
  }
}

@media (max-width: 600px) {
  /* Banner */
  .banner-content h1 {
    font-size: 32px;
  }
  
  .banner-content h5 {
    font-size: 20px;
  }
  
  .banner-content p {
    font-size: 13px;
  }
  
  /* Clients */
  .clients-grid {
    gap: 15px;
  }
  
  .client-item {
    height: 80px;
    padding: 10px;
  }
  
  /* About */
  .about-text h2 {
    font-size: 28px;
  }
  
  .about-text h5 {
    font-size: 20px;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
  }
  
  .stat-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .stat-content h3 {
    font-size: 32px;
  }
  
  /* Why Choose Us */
  .feature-icon {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon img {
    width: 60px;
    height: 60px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .feature-content h3 {
    font-size: 20px;
  }
  
  /* Services */
  .services-header h5 {
    font-size: 28px;
  }
  
  .service-content h3 {
    font-size: 20px;
  }
  
  .service-subtitle,
  .service-description {
    font-size: 16px;
  }
  

  
  .industries-section .section-header h5 {
    font-size: 24px;
  }
  
  .industry-icon {
    width: 100px;
    height: 100px;
  }
  
  .industry-icon img {
    width: 80px;
    height: 70px;
  }
  
  /* Contact */
  .contact-section .section-header h2 {
    font-size: 28px;
  }
  
  .contact-section .section-header h5 {
    font-size: 24px;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .contact-info h3,
  .social-info h3 {
    font-size: 22px;
  }
  
  /* Map */
  .map-section {
    padding: 40px 20px;
  }
  
  .map-section .section-header h5 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .banner-content h1 {
    font-size: 28px;
  }
  
  .banner-content h5 {
    font-size: 18px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 180px;
  }
  
  .section-header h5 {
    font-size: 24px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .services-header h5 {
    font-size: 24px;
  }
  
  .contact-header h2 {
    font-size: 24px;
  }
  
  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }
  
  .social-link {
    width: 50px;
    height: 50px;
  }
  
  .social-link svg {
    width: 24px;
    height: 24px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
  }
  
  .contact-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Fix for mobile touch interactions */
@media (hover: none) and (pointer: coarse) {
  .client-item:hover,
  .stat-item:hover,
  .feature-card:hover,
  .industry-card:hover,
  .social-link:hover,
  .step-card:hover,
  .service-card:hover {
    transform: none;
  }
  
  .tab-button:hover {
    background: transparent;
  }
  
  .tab-button.active:hover {
    background: #f2bf76;
  }
}

/* Prevent horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.container, .container1 {
  max-width: 100%;
  overflow-x: hidden;
}

/* ✅ RESPONSIVE DESIGN */

/* Tablets */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 30px;
    }

    .services-section {
        min-height: 2050px !important;
        padding: 80px 0;
        margin: 0 10px;
    }

    .services-bg-wrapper {
        position: relative;
        height: auto;
        min-height: auto !important;
        background-attachment: scroll;
    }

    .service-image {
        height: 300px;
    }
}

/* Mobiles */
@media (max-width: 768px) {
    .services-header h5 {
        font-size: 28px;
    }

    .services-header p {
        font-size: 16px;
        padding: 0 15px;
    }

    .services-grid {
        padding: 0 20px;
        gap: 25px;
    }

    .service-content {
        padding: 25px 5px;
    }

    .service-image {
        height: 220px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-subtitle,
    .service-description {
        font-size: 16px;
    }

    .service-btn {
        font-size: 13px;
        padding: 10px 25px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .services-header h5 {
        font-size: 24px;
    }

    .service-content {
        padding: 20px 15px;
    }

    .service-image {
        height: 200px;
    }

    .service-description {
        font-size: 15px;
    }

    .service-btn {
        font-size: 12px;
        padding: 8px 22px;
    }
}

/* ✅ Tablet (below 992px) */
@media (max-width: 992px) {
  .image-background {
    top: 40px;
    right: 10px;
    width: 260px;
    height: 380px;
    opacity: 0.8;
  }
}

/* ✅ Mobile (below 768px) */
@media (max-width: 768px) {
  .image-background {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 300px;
    border-radius: 0;
    margin-top: 20px;
    opacity: 0.9;
  }
}

/* ✅ Small Mobile (below 480px) */
@media (max-width: 480px) {
  .image-background {
    height: 220px;
    margin-top: 10px;
    opacity: 1;
  }
  
}

.highlight-section {
  padding: 80px 20px;
  background: #222224;
}

.highlight-container {
  max-width: 1400px;
  margin: auto;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
}

/* Card Style */
.highlight-box {
  background: rgba(26, 26, 29, 0.9);
  padding: 50px 30px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(184, 144, 84, 0.25);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
}

.highlight-box:hover {
  transform: translateY(-10px);
  border-color: #b89054;
  box-shadow: 0 10px 25px rgba(184, 144, 84, 0.35);
}

/* Icon Circle */
.highlight-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a1a1d, #2a2a2d);
  border: 2px solid rgba(184, 144, 84, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s ease;
}

.highlight-box:hover .highlight-icon-wrap {
  transform: scale(1.1);
  border-color: #b89054;
}

/* Icon */
.highlight-icon {
  font-size: 38px;
  color: #b89054;
}

/* Title */
.highlight-title {
  font-size: 19px;
  font-weight: 600;
  color: #d3d3d3;
  line-height: 1.5;
  margin-top: 10px;
}
/* ---------- MOBILE VIEW ---------- */
@media (max-width: 576px) {

  .highlight-section {
    padding: 50px 15px;
  }

  .highlight-grid {
    gap: 20px;
    grid-template-columns: 1fr; /* one per row */
  }

  .highlight-box {
    padding: 35px 20px;
    border-radius: 14px;
  }

  .highlight-icon-wrap {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
  }

  .highlight-icon {
    font-size: 30px;
  }

  .highlight-title {
    font-size: 17px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) and (min-width: 577px) {
  .highlight-grid {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-box {
    padding: 45px 25px;
  }

  .highlight-title {
    font-size: 18px;
  }
}
