/* Color Variables */
:root {
    --primary-color: #f23f40;
    --white-text: #e3e3e3;
    --black-color: #232323;
    --secondary-text: #4a4a4a; /* Lighter version of black */
    --card-background: #f2f2f2;
    --body-background: #e3e3e3;
    --min-x-padding: 20px;
  }
  
  /* Apply Bootstrap Theme Overrides */
  body {
    font-family: "Poppins", sans-serif;
    color: var(--black-color);
    background-color: var(--body-background);
  }
  
  .primary {
    color: var(--primary-color);
  }
  
  /* Primary Color for Bootstrap Components */
  .btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white-text) !important;
    border-radius: 0 !important; /* Removes rounded corners */
  }
  
  /* Primary Button Hover */
  .btn-primary:hover {
    background-color: #c73233 !important; /* Adjusted darker shade */
    border-color: #c73233 !important;
  }
  
  /* Card Styling */
  .card {
    background-color: var(--card-background);
    color: var(--black-color);
    border: none;
  }
  
  /* Primary Text */
  .text-primary {
    color: var(--primary-color) !important;
  }
  
  /* Secondary Text */
  .text-secondary {
    color: var(--secondary-text) !important;
  }
  
  /* Navbar Styling */
.navbar {
  font-family: "Poppins", sans-serif;
  padding: 10px 0;
}

/* Navbar Links */
.navbar-nav .nav-link {
  color: var(--black-color) !important;
  font-weight: 500;
  margin-right: 15px;
  transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

/* Navbar Button */
.navbar-nav .btn-primary {
  padding: 8px 16px;
  font-weight: 600;
}
  
  /* Padding for each section */
  .section-spacing {
    padding: 80px var(--min-x-padding); /* Adjust as needed */
  }
  
  /* Limit the max-width of Bootstrap's container */
  @media (min-width: 1700px) {
    .container {
      max-width: 1600px; /* Adjusted from Bootstrap's default 1320px */
    }
  }
  
  /* Hero Section */
  .hero-section {
    /* background: url("./assets/hero.jpg") no-repeat center center/cover; */
    background: url("../image/assets/hero.jpg") no-repeat center center/cover;
    height: 92.6vh;
    display: flex;
    align-items: center;
    color: white;
    padding-left: var(--min-x-padding);
    padding-right: var(--min-x-padding);
  }
  
  /* Hero Content */
  .hero-content {
    max-width: 750px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem; /* Default size for extra small screens */
    font-weight: 700;
  }
  
  /* Bootstrap Breakpoints */
  @media (min-width: 576px) {
    /* sm */
    .hero-content h1 {
      font-size: 3rem;
    }
  }
  
  @media (min-width: 768px) {
    /* md */
    .hero-content h1 {
      font-size: 3.5rem;
    }
  }
  
  @media (min-width: 992px) {
    /* lg */
    .hero-content h1 {
      font-size: 4rem;
    }
  }
  
  @media (min-width: 1200px) {
    /* xl */
    .hero-content h1 {
      font-size: 4.5rem; /* Max size */
    }
  }
  
  /* Tracking Form */
  .tracking-form {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-direction: column;
  }
  
  @media (min-width: 576px) {
    /* sm */
    .tracking-form {
      flex-direction: row;
    }
  }
  
  .tracking-form .form-control {
    flex: 1;
    padding: 10px 20px;
    border-radius: 0; /* Removed rounded corners */
    font-size: 14px;
    max-width: 400px;
  }
  
  .tracking-form .btn-primary {
    padding: 10px 40px;
    border-radius: 0; /* Removed rounded corners */
    font-size: 16px;
  }
  
  /* Experience Section */
  .experience-section {
    background-color: white;
  }
  
  .section-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .experience-section .container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  
  /* Air land section */
  .airland-section {
    background-color: var(--black-color);
    color: var(--white-text);
    display: flex;
    align-items: stretch; /* Makes both sections equal height */
    position: relative;
  }
  
  .airland-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 50%;
    padding: 180px 100px;
  }
  
  .airland-image {
    width: 50%;
    height: auto;
  }
  
  .full-height-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers its space */
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .airland-flex {
      padding: 80px 20px;
      text-align: center;
    }
  
    .airland-section {
      flex-direction: column;
    }
  
    .airland-flex,
    .airland-image {
      width: 100%;
    }
  
    .full-height-img {
      height: 250px; /* Adjust height for mobile */
    }
  }
  
  /* Reviews Section */
  .reviews-section {
    text-align: left;
  }
  .reviews-grid {
    display: flex;
    gap: 20px;
  }
  
  .reviews-grid .card {
    width: 30%;
    border-radius: 8px;
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .reviews-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .reviews-grid .card {
      width: 100%;
    }
  }




/* For animations */
/* Default (Before animated) */
.animate-heading {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.animate-subheading {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease 0.3s; /* Slight delay for subheadings */
}

/* Animated state */
.animate-heading.animated,
.animate-subheading.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Add a delay for each heading */
.animate-heading:nth-child(1) {
  transition-delay: 0.1s;
}
.animate-heading:nth-child(2) {
  transition-delay: 0.2s;
}
.animate-heading:nth-child(3) {
  transition-delay: 0.3s;
}

/* Optional: Add delays for each subheading */
.animate-subheading:nth-child(1) {
  transition-delay: 0.4s;
}
.animate-subheading:nth-child(2) {
  transition-delay: 0.5s;
}


  