
body, html {
  overflow-x: hidden;  /* good for layout, but bad if toggle is pushed off screen */
}


html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-y: auto;      /* Enable vertical scrolling */
    overflow-x: hidden;    /* Disable horizontal scrolling */
    box-sizing: border-box;
    
}

  .bg-image-side {
  background: url('../Images/afg.png') no-repeat center center;
  background-size: cover;
  height: 400px;
}
.highlight-red {
  color: red;
}


/* Align menu items to the right */
.navbar-nav {
  margin-left: auto;
}



.container-fluid {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  justify-content: space-between; /* Ensure the logo and toggle button are aligned properly */
  align-items: center;
}


 .navbar-nav {
    padding-right: 0; /* Prevent any space from pushing the items to the right */
  }




/* 🌟 NAVBAR COLLAPSE ANIMATION */
@media (max-width: 991px) {
  .animated-collapse {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
    overflow: hidden;
  }

  .animated-collapse.show {
    transform: scaleY(1);
  }
}

/* Rest of your existing styles */
.top-strip {
  height: 37px;
  background-color: #8B0000;
}

.text-darkred {
  color: #8B0000;
}

/* 📱 NAVBAR COLLAPSE ANIMATION */
@media (max-width: 991px) {
  .animated-collapse {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
    overflow: hidden;
  }

  .animated-collapse.show {
    transform: scaleY(1);
  }
}

/* 🎯 TEXT ENTRANCE ANIMATIONS */
.animate-left,
.animate-right {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.animate-left {
  transform: translateX(-50px);
  animation-name: slideInLeft;
}

.animate-right {
  transform: translateX(50px);
  animation-name: slideInRight;
}

@keyframes slideInLeft {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  to { opacity: 1; transform: translateX(0); }
}

.bg-afghanistan::before {
  content: '';
  position: auto;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* 🌟 SCROLLING PRODUCT SLIDER */
.scroll-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.scroll-track {
  animation: scroll-left 30s linear infinite;
  width: max-content;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 💡 SERVICES SLIDE-IN ANIMATION */
.service-box-horizontal {
  width: 220px;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.service-box-horizontal.visible {
  opacity: 1;
  transform: translateX(0);
}

.service-box-horizontal:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 🎠 LOGO CAROUSEL STYLE */
.logo-carousel-wrapper {
  overflow: hidden;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.logo-carousel-track {
  display: flex;
  gap: 40px;
  align-items: center;
  transition: transform 0.8s ease;
}

.logo-logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-logo img {
  height: 60px;              /* base size */
  transform: scale(0.6);     /* starting smaller */
  opacity: 0.3;
  transition: all 0.6s ease;
}

.logo-logo.active img {
  transform: scale(4.2) !important;
  height: 500px;
  opacity: 1 !important;
}

/* Left and right logos */
.logo-logo.prev img {
  transform: scale(0.8);
  opacity: 0.5;
}

.logo-logo.next img {
  transform: scale(1.2);
  opacity: 0.75;
}

.swiper-container {
  width: 100%;
  padding: 30px 0;
  overflow: hidden;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px; /* spacing between logos */
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scale(0.85);
  opacity: 0.5;
}

/* Center logo (active) */
.swiper-slide-active {
  transform: scale(1.25);
  opacity: 1;
  z-index: 2;
}

/* Neighboring slides */
.swiper-slide-prev,
.swiper-slide-next {
  transform: scale(1);
  opacity: 0.8;
}

/* Logo Image Styling */
.swiper-slide img {
  max-height: 100px;
  max-width: 160px;
  border: 2px solid rgba(204, 0, 0, 0.3);
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(204, 0, 0, 0.1);
  padding: 1px;
  background: white;
  transition: all 0.4s ease-in-out;
}

.swiper-slide-active img {
  border-color: #cc0000;
  box-shadow: 0 0 90px rgba(255, 0, 0, 0.35);
}

.stats-section {
  background: linear-gradient(to right, #8B0000, #b30000); /* red gradient */
  color: #fff;
}

.stats-section h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 20px;
}

.stats-section p {
  margin: 0;
  font-size: 1rem;
}

/* Fly-in animation directions */
.stat-box {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.stat-box.fly-left {
  transform: translateX(-60px);
}
.stat-box.fly-right {
  transform: translateX(60px);
}
.stat-box.fly-top {
  transform: translateY(-60px);
}
.stat-box.fly-bottom {
  transform: translateY(60px);
}

.stat-box.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
















    .feedback-section {
      min-height: 70vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px 5px;
      text-align: center;
      position: relative;
    }

    .feedback-content {
      flex-grow: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .feedback-container {
      width: 100%;
      max-width: 880px;
      padding: 20px;
      background-color: transparent;
      text-align: center;
      color: #000;
      display: none;
      transform: scale(0.95);
      transition: transform 0.5s ease;
      position: relative;
    }

    .feedback-container.active {
      display: block;
      transform: scale(1);
    }

    .logo {
      width: 210px;
      margin: 0 auto 20px auto;
      display: block;
    }

    .feedback-text {
      font-size: 1rem;
      color: #000;
      line-height: 1.5;
    }

    .feedback-name {
      font-weight: 500;
      color: #000;
      margin-top: 15px;
      font-size: 1.2rem;
    }

    .feedback-nav {
      margin-top: 30px;
      text-align: center;
    }

    .feedback-dot {
      display: inline-block;
      width: 12px;
      height: 12px;
      margin: 0 6px;
      background-color: #ccc;
      border-radius: 50%;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .feedback-dot.active {
      background-color: #8B0000;
    }

    .feedback-title {
      font-size: 2rem;
      font-weight: bold;
      margin: 30px 0 0;
      color: #000;
      text-align: center;
      width: 100%;
    }

    @media (max-width: 768px) {
      .feedback-container {
        padding: 20px;
        max-width: 90%;
      }

      .feedback-text {
        font-size: 0.9rem;
      }

      .logo {
        width: 140px;
      }

      .feedback-title {
        font-size: 1.5rem;
      }
    }
    
    
    
    
    
/* 🎠 LOGO CAROUSEL STYLE */
.logo-carousel-wrapper {
  overflow: hidden;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.logo-carousel-track {
  display: flex;
  gap: 40px;
  align-items: center;
  transition: transform 0.8s ease;
}

.logo-logo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-logo img {
  height: 60px;              /* base size */
  transform: scale(0.6);     /* starting smaller */
  opacity: 0.3;
  transition: all 0.6s ease;
}

.logo-logo.active img {
  transform: scale(4.2) !important;
  height: 500px;
  opacity: 1 !important;
}

/* Left and right logos */
.logo-logo.prev img {
  transform: scale(0.8);
  opacity: 0.5;
}

.logo-logo.next img {
  transform: scale(1.2);
  opacity: 0.75;
}



.swiper-wrapper {
  align-items: center;
}

.swiper-container {
  width: 100%;
  padding: 30px 0;
  overflow: hidden;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px; /* spacing between logos */
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scale(0.85);
  opacity: 0.5;
}

/* Center logo (active) */
.swiper-slide-active {
  transform: scale(1.25);
  opacity: 1;
  z-index: 2;
}

/* Neighboring slides */
.swiper-slide-prev,
.swiper-slide-next {
  transform: scale(1);
  opacity: 0.8;
}

/* Logo Image Styling */
.swiper-slide img {
  max-height: 100px;
  max-width: 160px;
  border: 2px solid rgba(204, 0, 0, 0.3);
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(204, 0, 0, 0.1);
  padding: 1px;
  background: white;
  transition: all 0.4s ease-in-out;
}

.swiper-slide-active img {
  border-color: #cc0000;
  box-shadow: 0 0 90px rgba(255, 0, 0, 0.35);
}


.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

  