.product-add-to-cart {
    display: none !important;
}

/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* HERO SECTION MAIN */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 85vh;
  height: 85vh;
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

/* FULL WIDTH FIX FOR WPBAKERY - Kept your original setup! */
.hero-section .vc_row {
  margin: 0 !important;
}

.hero-section .vc_column-inner {
  position: relative;
  z-index: 2;
  padding-left: 100px;
  padding-right: 20px;
}

/* TEXT */
.hero-subtitle {
  color: #f5c518;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 10px;
}

.hero-title {
  color: #021f57;
  font-size: 73px;
  font-weight: 700;
  margin: 10px 0;
}

/* Targets the span to apply your red color */
.hero-title .accent-text {
  color: #a50d25;
}

.hero-desc {
  color: #232323;
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-buttons a {
  display: inline-block;
  text-decoration: none;
  padding: 16px 30px 12px 30px;
  font-size: 16px;
  letter-spacing: 1px;
  white-space: nowrap;
  font-weight: 600;
}

/* PRIMARY BUTTON */
.hero-buttons a.btn-primary {
  background: #021f57;
  color: #fff;
  transition: background-color 0.3s ease-in-out;
  border-radius: 100vw;
}

/* OUTLINE BUTTON */
.hero-buttons a.btn-outline {
  border: 3px solid #a50d25;
  background: rgba(211, 211, 211, 0.6);
  color: #a50d25;
  transition: background-color 0.3s ease-in-out;
  border-radius: 100vw;
}

/* HOVER */
.hero-buttons a.btn-primary:hover {
  background: #a50d25;
  text-decoration: none;
}

.hero-buttons a.btn-outline:hover {
  background: #a50d25;
  color: #fff;
  text-decoration: none;
}



/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

/* TABLET (1024px and below) */
@media (max-width: 1024px) {
  .hero-section .vc_column-inner {
      padding-left: 50px; /* Reduced from 100px so it fits better */
      padding-right: 20px;
  }

  .hero-title {
      font-size: 55px;
  }
}

/* LARGE MOBILE (768px and below) */
@media (max-width: 768px) {
  .hero-section .vc_column-inner {
      padding-left: 30px;
      padding-right: 30px;
  }
  
  .hero-title {
      font-size: 44px;
  }

  /* Breaks "Middle East" and "Operations" into two lines ONLY on mobile */
  .hero-title .accent-text {
      display: block; 
  }

  .hero-desc {
      font-size: 16px;
  }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
  .hero-section {
      height: 85; 
      min-height: 85vh; 
      padding: 40px 0;
  }

  .hero-section .vc_column-inner {
      padding-left: 50px;
      padding-right: 50px;
  }

  .hero-title {
      font-size: 53px;
  }

  .hero-desc {
      font-size: 14px;
  }
  
  /* Stacks buttons properly on small phones */
  .hero-buttons {
      flex-direction: column;
      width: 100%;
  }

  .hero-buttons a {
      width: 100%;
      text-align: center;
  }
}
