.container-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url("assets/images/home_page_background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.container-bg.service-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url("assets/images/service_page_background.png");
  background-size: cover;
  background-position: center;
}

.container-bg.about-us-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
    url("assets/images/about_page_background.png");
  background-size: cover;
  background-position: center;
}

.container-bg.contact-us {
  background: #062b1c;
  background-size: cover;
  background-position: center;
}

.diamond-icon {
  filter: brightness(0) saturate(100%) invert(100%);
}

.progress-line {
  position: relative;
}

.progress-line::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #059669);
  border-radius: 2px;
}

.progress-cargo::after {
  width: 100%;
}
.progress-shipping::after {
  width: 60%;
}
.progress-delivery::after {
  width: 30%;
}

.step-number {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.phone-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  transition: all 0.3s ease;
}

.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.get-quote-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.get-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.get-quote-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.get-quote-btn:hover::before {
  left: 100%;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #10b981;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #10b981;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.floating-element {
  animation: float 6s ease-in-out infinite;
  background: #9ca3af6c;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.get-touch-btn,
.get-quote-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.get-touch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.get-touch-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.get-touch-btn:hover::before {
  left: 100%;
}

/* .stat-card {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(16, 185, 129, 0.2);
            transition: all 0.3s ease;
        } */

/* .stat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-4px);
} */

.animate-counter {
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.grid-pattern {
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(16, 185, 129, 0.1) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(16, 185, 129, 0.1) 2px,
      transparent 2px
    );
  background-size: 100px 100px;
  background-position: 0 0, 50px 50px;
}

.pulse-glow {
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
  }
}

/* statistics_section */
.statistics_section {
  background: url("assets/images/home_statitics_bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
/* statistics_section */

/* <!-- About Section --> */
.get-touch-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.get-touch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.get-touch-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.get-touch-btn:hover::before {
  left: 100%;
}

.feature-card {
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.feature-card:hover {
  border-left-color: #10b981;
  transform: translateX(8px);
  background: rgba(16, 185, 129, 0.02);
}

.icon-container {
  background: linear-gradient(135deg, #10b981, #059669);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-container {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.container-illustration {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-3d {
  width: 280px;
  height: 200px;
  position: relative;
  transform: perspective(1000px) rotateX(10deg) rotateY(-15deg);
  transition: transform 0.3s ease;
}

.container-3d:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(-10deg) scale(1.05);
}

.container-front {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: absolute;
  display: flex;
  flex-direction: column;
}

.container-top {
  background: linear-gradient(135deg, #f87171, #ef4444);
  width: 100%;
  height: 30px;
  transform: rotateX(90deg) translateZ(15px);
  border-radius: 8px 8px 0 0;
}

.container-side {
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  width: 30px;
  height: 100%;
  position: absolute;
  right: -30px;
  transform: rotateY(90deg) translateZ(30px);
  border-radius: 0 8px 8px 0;
}

.container-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
}

.about_section {
  position: relative;
}

.about_section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0px;
  opacity: 1;
  background: url("assets/images/pattern-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}


.fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease-out forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .get-touch-btn {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            transition: all 0.3s ease;
        }
        
        .get-touch-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }
        
        .feature-card {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        
        /* Image Slider Styles */
        .slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            min-width: 100%;
            position: relative;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 24px;
            color: white;
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .slider-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .slider-nav.prev {
            left: 16px;
        }
        
        .slider-nav.next {
            right: 16px;
        }
        
        .slider-dots {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: white;
            transform: scale(1.2);
        }
        
        @media (max-width: 768px) {
            .slide img {
                height: 200px;
            }
            
            .slider-nav {
                width: 32px;
                height: 32px;
            }
            
            .slider-nav.prev {
                left: 8px;
            }
            
            .slider-nav.next {
                right: 8px;
            }
        }



/* <!-- About Section --> */

/* <!-- Cargo Ship Section --> */
.cargo-section {
  background: linear-gradient(
    135deg,
    #0f172a 0%,
    #1e293b 30%,
    #0369a1 70%,
    #0ea5e9 100%
  );
  position: relative;
  overflow: hidden;
  /* min-height: 500px; */
}

.cargo-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      45deg,
      rgba(3, 105, 161, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(-45deg, rgba(3, 105, 161, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  z-index: 1;
}

.cargo-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: url("assets/images/cargo-ship.png") no-repeat center;
  background-size: cover;
  z-index: 2;
  opacity: 0.8;
}

.content-wrapper {
  position: relative;
  z-index: 10;
}

.get-touch-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.get-touch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.get-touch-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.get-touch-btn:hover::before {
  left: 100%;
}

.floating-ship {
  animation: floatShip 8s ease-in-out infinite;
}

@keyframes floatShip {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-5px) translateX(2px);
  }
  50% {
    transform: translateY(0px) translateX(0px);
  }
  75% {
    transform: translateY(3px) translateX(-2px);
  }
}

.wave-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    90deg,
    rgba(3, 105, 161, 0.3) 0%,
    rgba(14, 165, 233, 0.2) 50%,
    rgba(3, 105, 161, 0.3) 100%
  );
  opacity: 0.6;
  animation: wave 4s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(20px);
  }
}

.cargo-ship {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 200px;
  z-index: 5;
}

.containers {
  position: absolute;
  bottom: 80px;
  left: 50px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
  width: 300px;
  height: 90px;
}

.wake {
  position: absolute;
  right: 0;
  top: 50%;
  width: 200px;
  height: 100px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 70%,
    transparent 100%
  );
  transform: translateY(-50%) skewX(-15deg);
  opacity: 0.6;
  animation: wake 3s ease-in-out infinite;
}

@keyframes wake {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(-50%) skewX(-15deg) scaleX(1);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-50%) skewX(-15deg) scaleX(1.2);
  }
}

.fade-in-left {
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* <!-- Cargo Ship Section --> */

/* <!-- FAQ Section --> */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: #f9fafb;
}

.faq-question {
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 2rem 0;
}

.faq-question:hover {
  color: #10b981;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 0;
}

.faq-answer.active {
  max-height: 200px;
  padding: 0 0 2rem 0;
}

.plus-icon {
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.plus-icon.rotated {
  transform: rotate(45deg);
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.leading-relaxed {
  padding: 1rem;
}
/* <!-- FAQ Section --> */

/* <!-- Footer Section --> */

.footer-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
  color: #d1d5db;
}

.nav-link:hover {
  color: #10b981;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #10b981;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.facebook {
  background: #1877f2;
}

.facebook:hover {
  background: #166fe5;
}

.twitter {
  background: #1da1f2;
}

.twitter:hover {
  background: #0d8bd9;
}

.linkedin {
  background: #0077b5;
}

.linkedin:hover {
  background: #005885;
}

.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.instagram:hover {
  background: linear-gradient(
    45deg,
    #e1842a 0%,
    #d75a33 25%,
    #cd1e3a 50%,
    #bd1a5d 75%,
    #ad0f7f 100%
  );
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #374151, transparent);
  margin: 2rem 0;
}

.copyright-text {
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* <!-- Footer Section --> */

/* logistics-section  */
.logistics-section {
  background: #f8f8f8 url("assets/images/service_logistics_background.png");
  background-size: cover;
  background-position: center;
}

.ship {
  top: -150px;
  left: 24px;
}

.logistics-section-containers {
  top: -88px;
  left: 80px;
}
/* logistics-section  */

/*  <!-- Testimonial Section --> */
.testimonial-bg {
  background: linear-gradient(180deg, #090a42 0%, #070b35 100%);
  position: relative;
  overflow: hidden;
}

.testimonial-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}

.content-wrapper {
  position: relative;
  z-index: 10;
}

.get-touch-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.get-touch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.get-touch-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.get-touch-btn:hover::before {
  left: 100%;
}

.testimonial-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.star-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.star {
  width: 20px;
  height: 20px;
  fill: #fbbf24;
  transition: transform 0.2s ease;
}

.star:hover {
  transform: scale(1.1);
}

.star.half {
  background: linear-gradient(90deg, #fbbf24 50%, #d1d5db 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fade-in-left {
  animation: fadeInLeft 1s ease-out;
}

.fade-in-right {
  animation: fadeInRight 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quote-icon {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: serif;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .testimonial-bg {
    padding: 3rem 1rem;
  }

  .testimonial-card {
    margin-top: 2rem;
  }

  h1 {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  .get-touch-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .quote-icon {
    font-size: 2rem;
    top: -5px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem !important;
  }

  .testimonial-card {
    padding: 1.5rem !important;
  }

  .star {
    width: 16px;
    height: 16px;
  }
}
/*  <!-- Testimonial Section --> */

/*  <!-- Vision Section --> */
.vision-section {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(16, 185, 129, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(59, 130, 246, 0.02) 0%,
      transparent 50%
    );
  z-index: 0;
}

.content-wrapper {
  position: relative;
  z-index: 10;
}

.image-container {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.image-container:hover {
  transform: translateY(-4px);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.building-image {
  position: relative;
}

.building-image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  opacity: 0.3;
}

.team-image {
  position: relative;
  background-size: cover;
}

.team-image::before {
  content: "";
  position: absolute;
  inset: 20%;
}

.office-image {
  position: relative;
}

.office-image::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 20%;
  right: 20%;
  bottom: 20%;
  background-size: 20px 20px;
}

.text-content {
  animation: fadeInUp 0.8s ease-out;
}

.images-grid {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight-text {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  position: relative;
  display: inline-block;
}

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .images-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
  }

  .image-container:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .vision-section {
    padding: 3rem 1rem;
  }

  .images-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .image-container:first-child {
    grid-column: span 1;
  }

  .section-title {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  .content-title {
    font-size: 1.5rem !important;
    line-height: 1.3;
  }

  .text-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem !important;
  }

  .content-title {
    font-size: 1.3rem !important;
  }

  .image-container {
    height: 200px;
  }
}
/*  <!-- Vision Section --> */

/*  <!-- CTA Section --> */
.cta-section {
  background: linear-gradient(
    135deg,
    #0e153a 0%,
    #132972 30%,
    #2d63bb 70%,
    #60a5fa 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.cta-shade {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.content-wrapper {
  position: relative;
  z-index: 10;
}

.get-touch-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.get-touch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.get-touch-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.get-touch-btn:hover::before {
  left: 100%;
}

.truck-illustration {
  width: 400px;
  height: 200px;
  position: relative;
  animation: truckMove 4s ease-in-out infinite;
}

@keyframes truckMove {
  0%,
  100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
}

.truck-cab {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.truck-cab::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 40px;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  border-radius: 4px;
}

.truck-wheel {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #374151;
  border-radius: 50%;
  bottom: -4px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wheel-front {
  left: 20px;
}
.wheel-middle {
  left: 90px;
}
.wheel-rear {
  left: 280px;
}

.truck-wheel::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: #6b7280;
  border-radius: 50%;
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.fade-in-left {
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.truck-digital {
  position: absolute;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  right: 0;
  bottom: 0px;
}

/* .contact_us_bg_element {
  position: absolute;
  width: 50%;
  left: -25px;
  bottom: -447px;
} */

/*  <!-- CTA Section --> */

/* <!-- Contact Section --> */

.content-wrapper {
  position: relative;
  
}


.contact-form {
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: all 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.form-input:focus {
  outline: none;
  border-color: #10b981;
  background: white;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9fafb;
  resize: vertical;
  min-height: 120px;
}

.form-textarea:focus {
  outline: none;
  border-color: #10b981;
  background: white;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}

.submit-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.contact-card {
  background: white;
  padding: 1rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #10b981;
}

.contact-icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

.contact-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.contact-description {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contact-detail {
  color: #1f2937;
  font-weight: 600;
  font-size: 1rem;
}

.section-title {
  color: white;
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.form-container {
  animation: fadeInLeft 0.8s ease-out;
  position: relative;
}

.cards-container {
  animation: fadeInRight 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 1rem;
  }

  .contact-form {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .section-title h2 {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  .section-title p {
    font-size: 1rem;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
  }

  .form-input,
  .form-textarea {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 1.8rem !important;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .contact-card {
    padding: 1rem;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* <!-- Contact Section --> */


.header-heights {
  height: 60vh !important;
}

@media (min-width: 640px) {
  .header-heights {
    height: 40vh !important;
  }
}

@media (min-width: 768px) {
  .header-heights {
    height: 50vh !important;
  }
}

@media (min-width: 1024px) {
  .header-heights {
    height: 70vh !important;
  }
}