:root {
  --primary-color: #1a237e;
  --accent-color: #304ffe;
  --text-color: #333;
  --light-bg: #f5f7ff;
  --gradient: linear-gradient(135deg, #1a237e, #304ffe);
}

/* General Styles */
.section-padding {
  padding: 30px 0;
}

/* Enhanced Hero Section */
#service-hero {
  height: 75vh;
  /* background: linear-gradient(rgba(26, 35, 126, 0.25), rgba(48, 79, 254, 0.35)), */
  /* background: linear-gradient(rgba(255, 140, 0, 0.2), rgba(255, 98, 0, 0.3)),
    url("../img/Airplane-Runway-Airport.jpg"); */
  background-size: cover;
  background-position: center;
  color: white;
  margin-bottom: 0;
}

#service-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-text {
  font-size: 1.8rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

.hero-cta .primary-btn {
  background: var(--accent-color);
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(48, 79, 254, 0.3);
  transition: all 0.3s ease;
}

.hero-cta .secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

/* Stats Section */
.stat-box {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-bottom: 4px solid var(--accent-color);
}

.stat-box i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid #eef2ff;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(48, 79, 254, 0.15);
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
}

.service-card .service-icon i {
  font-size: 32px;
  color: white;
}

.service-card h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  font-size: 16px;
  margin-bottom: 15px;
}

.service-features li i {
  color: var(--accent-color);
  font-size: 18px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-more:hover {
  gap: 12px;
  color: var(--primary-color);
}

.learn-more i {
  transition: transform 0.3s ease;
}

.learn-more:hover i {
  transform: translateX(5px);
}

/* Enhanced CTA */
.cta {
  background: linear-gradient(rgba(26, 35, 126, 0.95), rgba(48, 79, 254, 0.9)),
    url("../img/newCall.jpg");
  background-size: cover;
  background-attachment: fixed;
  color: white;
  padding: 120px 0;
}

.cta h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-btn {
  background: white;
  color: var(--primary-color);
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #fff;
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #service-hero h1 {
    font-size: 2.5rem;
  }

  .hero-text {
    font-size: 1.4rem;
  }

  .service-card {
    margin-bottom: 30px;
  }
}

/* Service Section Enhancements */
#transport-services {
  background-color: var(--light-bg);
}

.section-title {
  margin-top: 0;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.section-title p {
  font-size: 18px;
  color: #666;
}

/* Service Card Grid Spacing */
.row > [class*="col-"] {
  margin-bottom: 30px;
}

/* Service Icon Variations */
.service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, #2196f3, #00bcd4);
}

.service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #ff4081, #e91e63);
}

/* Hover State Enhancements */
.service-card:hover .service-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Animation Delays for Cards */
[data-aos-delay] {
  transition-delay: 0s !important;
}

@media (min-width: 768px) {
  [data-aos-delay] {
    transition-delay: inherit !important;
  }
}

/* Air Freight Hero Section */
.full-width-hero {
  height: 80vh;
  background: linear-gradient(rgba(26, 35, 126, 0.85), rgba(48, 79, 254, 0.9)),
    url("../img/air-freight-hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.tagline {
  font-size: 2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero-btn {
  background: var(--accent-color);
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: white;
  color: var(--accent-color);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(48, 79, 254, 0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* News Section */
.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
}

.date {
  color: var(--accent-color);
  font-size: 0.9rem;
}

/* Business Hub */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.hub-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  color: var(--text-color);
  text-decoration: none;
}

.hub-card:hover {
  transform: translateY(-5px);
  background: var(--accent-color);
  color: white;
}

.hub-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Charter Form */
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  outline: none;
}

.submit-btn {
  background: var(--accent-color);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .benefit-card {
    margin-bottom: 20px;
  }
}

/* Why Choose Section Styles */
.why-choose-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(48, 79, 254, 0.15);
}

.why-choose-card .icon-box {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-choose-card .icon-box i {
  font-size: 32px;
  color: white;
}

.why-choose-card h4 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #666;
}

.feature-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
}

.section-description {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-choose-card {
    margin-bottom: 20px;
  }
}

/* Business Hub Styles */
#business-hub {
  padding: 40px 0;
}

#business-hub .section-title {
  margin-bottom: 20px;
  color: #666;
}

.hub-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

/* Content Section Styling */
.content-box {
  padding: 30px;
  position: relative;
}

.content-box h3 {
  font-size: 42px;
  font-weight: 300;
  color: #333;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.content-box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
}

.content-box p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #f0f0f0;
}

/* Image styling */
.content-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.content-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.content-image:hover img {
  transform: scale(1.05);
}

/* Section spacing */
.content-section {
  padding: 40px 0;
}

.content-section:nth-child(even) {
  background-color: #f8f9fa;
}

/* Responsive text adjustments */
@media (max-width: 768px) {
  .content-box h3 {
    font-size: 32px;
  }

  .content-box p {
    font-size: 16px;
    padding-left: 15px;
  }
}

/* Animation classes */
.fade-in-left {
  animation: fadeInLeft 1s ease-out;
}

.fade-in-right {
  animation: fadeInRight 1s ease-out;
}

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

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

/* Hero Video Section */
#hero-video {
  height: 85vh;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  margin-left: 80px;
  margin-top: -40px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content .highlight {
  display: block;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 35px;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-buttons .btn {
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.hero-buttons .btn-light {
  background: #fff;
  color: #000;
  min-width: 160px;
  text-align: center;
}

.hero-buttons .btn-yellow {
  background: #ffd700;
  color: #000;
  min-width: 280px;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .hero-content {
    margin-left: 40px;
  }
}

@media (max-width: 991px) {
  .hero-content {
    margin-left: 20px;
    margin-top: -20px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  #hero-video {
    height: 80vh;
  }

  .hero-content {
    margin-left: 15px;
    margin-top: 0;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-width: unset;
    padding: 12px 25px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

#service-hero.air-freight-bg {
  background: linear-gradient(rgba(255, 140, 0, 0.2), rgba(255, 98, 0, 0.3)),
    url("../img/services/air/airbac.jpg") no-repeat center center/cover !important;
  min-height: 80vh; /* Add this to ensure the section has height */
}

#service-hero.sea-freight-bg {
  background: linear-gradient(rgba(255, 140, 0, 0.2), rgba(255, 98, 0, 0.3)),
    url("../img/services/sea/seabagg.jpg") no-repeat center center/cover !important;
}

#service-hero.customsclearance-bg {
  background: linear-gradient(rgba(255, 140, 0, 0.2), rgba(255, 98, 0, 0.3)),
    url("../img/services//custom/back.png") no-repeat center center/cover !important;
}

#service-hero.hazardous-bg {
  background: linear-gradient(rgba(255, 140, 0, 0.2), rgba(255, 98, 0, 0.3)),
    url("../img/services/Hazardous/4.png") no-repeat center center/cover !important;
}

#service-hero.project-cargo-bg {
  background: linear-gradient(rgba(255, 140, 0, 0.2), rgba(255, 98, 0, 0.3)),
    url("../img/services/Project/projectbac.jpg") no-repeat center center/cover !important;
}

#service-hero.multi-modal-bg {
  background: linear-gradient(rgba(255, 140, 0, 0.2), rgba(255, 98, 0, 0.3)),
    url("../img/services/Multimodal/multibac.jpg") no-repeat center center/cover !important;
}
