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


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

.middle-east-section,
.middle-east-section * {
  font-family: 'Poppins', sans-serif !important;
}
/* 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: 60px;
  font-weight: 700 !important;
  margin: 10px 0;
}

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

.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-title .accent-text {
		font-size : 46px;
	}

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

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

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

  .hero-buttons a {
      width: 100%;
      text-align: center;
  }
	.hero-buttons a.btn-outline {
			border-radius : 0px;
	}
	.hero-buttons a.btn-primary {
			border-radius : 0px;
	}
}

/* ============================================
   ABOUT SECTION - PREMIUM ANIMATIONS
   ============================================ */

/* KEYFRAME ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ============================================
   MAIN SECTION BACKGROUND
   ============================================ */

.vc_row.about-section {
  background-color: #021f57 !important;
  padding: 30px 20px 30px 20px !important;
  position: relative;
  overflow: hidden;
}

.vc_row.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(247, 147, 30, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* ============================================
   HEADING SECTION - PREMIUM
   ============================================ */

.about-main-heading {
  background-color: #021f57 !important;
  text-align: center;
  margin-bottom: 60px;
  padding: 35px 20px 15px 20px;
  width: 100%;
  animation: fadeInUp 0.8s ease-out;
}

.about-main-heading h2 {
  color: #f7931e;
  font-size: 42px;
  font-weight: 900;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.3;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.about-main-heading h2::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 660px;
  height: 3px;
  margin: 15px auto 0;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    rgba(247, 147, 30, 0) 0%,
    rgba(247, 147, 30, 0.5) 25%,
    #f7931e 50%,
    rgba(247, 147, 30, 0.5) 75%,
    rgba(247, 147, 30, 0) 100%
  );
  animation: lineGrow 1.2s ease-out 0.3s both;
}

/* ============================================
   MAIN CONTENT ROW - 1/3 AND 2/3 LAYOUT
   ============================================ */

.vc_row.about-section .vc_row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

/* ============================================
   IMAGE SECTION - LEFT SIDE (1/3)
   ============================================ */

.about-img {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  animation: fadeInLeft 1s ease-out 0.2s both;
}

.about-img img {
  width: 100%;
  max-width: 350px;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(247, 147, 30, 0.1);
  animation: floatImage 6s ease-in-out infinite;
}

.about-img img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(247, 147, 30, 0.3),
              0 0 40px rgba(247, 147, 30, 0.15);
  border-color: rgba(247, 147, 30, 0.3);
}

.about-img:hover img {
  filter: brightness(1.05);
}

/* ============================================
   CONTENT SECTION - RIGHT SIDE (2/3)
   ============================================ */

.about-content {
  flex: 2;
  min-width: 300px;
  padding: 0;
  animation: fadeInRight 1s ease-out 0.4s both;
}

.about-section .vc_column-inner {
  padding: 0 !important;
}

/* ============================================
   SUBTITLE - ANIMATED
   ============================================ */

.about-sub {
  color: #f7931e;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  display: inline-block;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.about-sub::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #f7931e;
  animation: lineGrow 0.6s ease-out 0.5s both;
}


.about-title {
  font-size: 45px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  max-width: 75%;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-desc {
  color: #b0b8c1;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 90%;
  animation: fadeInUp 0.8s ease-out 0.5s both;
  transition: color 0.3s ease;
}

.about-desc:hover {
  color: #d3d9df;
}

/* ============================================
   LIST - STAGGERED ANIMATION
   ============================================ */

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.about-list li {
  color: #d3d9df;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  animation: fadeInUp 0.6s ease-out both;
  transition: all 0.3s ease;
  padding-left: 5px;
}

.about-list li:nth-child(1) { animation-delay: 0.5s; }
.about-list li:nth-child(2) { animation-delay: 0.6s; }
.about-list li:nth-child(3) { animation-delay: 0.7s; }
.about-list li:nth-child(4) { animation-delay: 0.8s; }

.about-list li:hover {
  color: #f7931e;
  padding-left: 15px;
  transform: translateX(5px);
}

.about-list li i {
  color: #f7931e;
  margin-right: 12px;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-list li:hover i {
  transform: scale(1.3) rotate(360deg);
}

/* ============================================
   STATS - PREMIUM ANIMATION
   ============================================ */

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 35px;
  border-top: 2px solid rgba(247, 147, 30, 0.2);
  padding-top: 35px;
  position: relative;
}

.about-stats div {
  flex: 1;
  min-width: 100px;
  animation: slideInBottom 0.8s ease-out both;
}

.about-stats div:nth-child(1) { animation-delay: 0.9s; }
.about-stats div:nth-child(2) { animation-delay: 1s; }
.about-stats div:nth-child(3) { animation-delay: 1.1s; }

.about-stats h3 {
  color: #f7931e;
  font-size: 34px;
  margin: 0 0 5px 0;
  font-weight: 900;
  transition: all 0.3s ease;
  font-family: 'Courier New', monospace;
  letter-spacing: 1px;
}

.about-stats p {
  color: #b0b8c1;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  transition: color 0.3s ease;
}

.about-stats div:hover h3 {
  color: #ffffff;
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(247, 147, 30, 0.5);
}

.about-stats div:hover p {
  color: #f7931e;
}

/* ============================================
   TABLET RESPONSIVE - 768px
   ============================================ */

@media (max-width: 768px) {
  .vc_row.about-section {
    padding: 40px 20px 60px 20px !important;
  }

  .vc_row.about-section .vc_row {
    flex-direction: column;
    gap: 30px;
  }

  .about-main-heading h2 {
    font-size: 36px;
  }

  .about-img img {
    max-width: 100%;
    height: auto;
    min-height: 350px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-desc {
    font-size: 15px;
  }

  .about-stats {
    gap: 25px;
  }

  .about-stats h3 {
    font-size: 28px;
  }

  .about-list li {
    font-size: 14px;
  }
}

/* ============================================
   MOBILE RESPONSIVE - 576px
   ============================================ */

@media (max-width: 576px) {

  .vc_row.about-section {
    padding-top : 0px !important;
    padding-left : 30px !important;
    padding-right : 30px !important;
  }

  .about-main-heading {
    padding: 25px 15px 10px 15px;
    margin-bottom: 40px;
  }

  .about-main-heading h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .about-content {
    min-width: 100%;
  }

  .about-sub {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .about-sub::before {
    width: 30px;
  }

  .about-title {
    font-size: 24px;
    margin-bottom: 15px;
    padding: 10px 0 0 0;
    line-height: 1.3;
  }

  .about-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .about-list li {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .about-list li:hover {
    padding-left: 10px;
  }

  .about-list li i {
    margin-right: 10px;
    font-size: 12px;
  }

  .about-stats {
    flex-direction: row;       /* &#x1f525; keep in one line */
    flex-wrap: nowrap;         /* &#x274c; prevent wrapping */
    justify-content: space-between;
    gap: 10px;
  }

  .about-stats div {
    flex: 1;
    min-width: 0;              /* &#x1f525; prevents breaking */
    text-align: center;
  }

  .about-stats h3 {
    font-size: 18px;           /* reduce size to fit */
  }

  .about-stats p {
    font-size: 9px;
    letter-spacing: 1px;
  }
	.about-desc{
		max-width : 95%;
	}

	.about-title{
		max-width : 95%;
	}
	
  .about-img img {
    min-height: 300px;
    border: 3px solid rgba(247, 147, 30, 0.2);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  }

  .about-img img:hover {
    box-shadow: 0 20px 60px rgba(247, 147, 30, 0.25);
  }
}

/* ============================================
   SMALL MOBILE - 375px
   ============================================ */

@media (max-width: 375px) {
  .about-main-heading h2 {
    font-size: 20px;
  }

  .about-title {
    font-size: 20px;
  }

  .about-stats {
    gap: 15px;
  }

  .about-stats h3 {
    font-size: 20px;
  }

  .about-stats div:hover h3 {
    transform: scale(1.05);
  }

  .about-list li:hover {
    padding-left: 8px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .about-img img,
  .about-main-heading h2,
  .about-content,
  .about-title,
  .about-desc,
  .about-list li,
  .about-stats div {
    animation: none !important;
  }

  .about-img img {
    transition: none;
  }

  .about-list li,
  .about-stats div:hover h3,
  .about-desc:hover,
  .about-list li:hover {
    transition: none;
  }
}

.about-list li:focus-within {
  outline: 2px solid #f7931e;
  outline-offset: 4px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
}

.show-mobile {
  display: block;
}

@media (min-width: 768px) {
  .show-mobile {
    display: none;
  }
}

.vc_row.about-section::before {
  display: none !important;
}

.services-wrapper,
.services-wrapper * {
  font-family: 'Poppins', sans-serif !important;
}

/* SECTION BACKGROUND */
.services-wrapper {
  background: #f5f7fa; /* light gray */
  padding: 0px 20px;
	padding-bottom : 70px;
  text-align: center;
}

/* HEADER CENTER */
.services-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.services-header h2 {
  color: #021f57;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.services-header p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}


/* CENTER THE SCROLL AREA */
.services-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* SCROLL */
.services-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
}

/* CARD BIGGER */
.service-card {
  min-width: 340px; /* increased */
  background: #0b2a63;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  flex-shrink: 0;
  transition: 0.4s;
  text-align: left;
}

/* IMAGE */
.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* TITLE */
.service-card h3 {
  padding: 0px 20px;
	padding-bottom: 20px;
	color : white;
  font-size: 20px;
  font-weight: 400;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-12px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;

  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 25px 80px rgba(0, 0, 0, 0.12);
}

/* IMAGE WRAP */
.service-image {
  position: relative;
  overflow: hidden;
}

/* OVERLAY */
.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 31, 87, 0.85); /* dark blue overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: 0.4s ease;
}

.service-overlay p {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  transform: translateY(20px);
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.service-card:hover .service-overlay {
  opacity: 1;
}

.service-card:hover .service-overlay p {
  transform: translateY(0);
}

/* IMAGE ZOOM */
.service-card:hover img {
  transform: scale(1.1);
  transition: 0.4s ease;
}

/* ARROWS FIX POSITION */
.scroll-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #f7931e;
  color: #021f57;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.scroll-btn.left {
  left: -25px;
}

.scroll-btn.right {
  right: -25px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .service-card {
    min-width: 280px;
  }
	
	.services-section .vc_column-inner {
  padding: 0 !important;
}
	.services-section .vc_row {
		margin: 0 !important;
	}

  .services-header h2 {
    font-size: 32px;
  }

  .scroll-btn {
    display: none; /* hide arrows on mobile */
  }
}

/* ===== SERVICES HEADING FIX ===== */
.services-section {
  background: #f5f5f5 !important;
  padding: 40px 20px !important;
  text-align: center !important;
}

/* Force Poppins everywhere */
.services-section,
.services-section * {
  font-family: 'Poppins', sans-serif !important;
}

/* Heading */
.services-heading {
  text-align: center !important;
  margin-bottom: 5px !important;
}

.services-heading h2 {
  font-size: 42px !important;
  color: #021f57 !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}

/* Description */
.services-heading p {
  font-size: 16px !important;
  color: #555 !important;
  max-width: 600px !important;
  margin: 0 auto !important;
}