/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}
/* Scoped bullet styling only inside .custom-blog-content */
.custom-blog-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.custom-blog-content li {
  position: relative;
  padding-left: 1.5em;
  color: #000;
}

.custom-blog-content li::before {
  content: "•";
  color: black;
  position: absolute;
  left: 0;
  top: 0.2em;
}

.custom-blog-content li strong {
  font-weight: bold;
}



/* Set Poppins as the default for the whole body */
body {
  font-family: 'Poppins', sans-serif;
}

/* Apply DN Sans to all heading tags */
h1, h2, h3, h4, h5, h6 {
  font-family: 'DN Sans', sans-serif;
  /*padding-top:15px;*/
  /*padding-bottom:15px;*/
}
/* .section-heading {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  } */
/* Header Styling */

.header {
    background: #343440;
    padding: 15px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Container */
/* .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

/* Logo */
.logo img {
    /*height: 50px;*/
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #343440;
        padding: 15px 0;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        display: block;
        padding: 10px 0;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }
}

/*header end*/
/*footer start*/
.footer {
    width: 100%;
    background:#cae6f5;
    color:#333333;
    text-align: center;
    /* position: relative; */
    overflow: hidden; /* Prevents unwanted scrolling */
    text-align:justify;
}

.footer-bg img {
    width: 100%; /* Ensures full width */
    height: auto; /* Adjust height accordingly */
    object-fit: cover;
    display: block; /* Removes unwanted gaps */
}

.footer-container {
    max-width: 1200px; /* Adjust for responsiveness */
    margin: auto;
    padding: 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap; /* Allows responsiveness */
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    max-width: 250px; /* Ensure proper scaling */
    height: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.links-column h3 {
    font-size: 20px;
    opacity: 0.8;
    margin-top:10px;
}

.links-column ul {
    list-style: none;
    padding: 0;
}

.links-column ul li a {
    text-decoration: none;
    color: #134a91;
    font-size: 18px;
}

.footer-line {
    width: 50%;
    margin: 20px auto;
    border: 1px solid white;
}

.copyright {
    font-size: 16px;
    margin-top: 10px;
    text-align:center;
}


/* footer bootom */

.footer-bottom {
    background-color: white; /* White background */
    text-align: center; /* Center text */
    padding: 20px; /* Add some spacing */
    color:#000
}

.footer-bottom h3 {
    color: black; /* Black text */
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-bottom ul {
    list-style: none; /* Remove bullet points */
    padding: 0;
}

.footer-bottom ul li {
    margin: 5px 0;
}

.footer-bottom ul li a {
    text-decoration: none; /* Remove underline */
    color: black; /* Black text */
    font-size: 18px;
    font-weight: bold;
}
/* banner start */
/* Airplane Section */
.airplane-section {
    position: absolute;
    width: 1454px;
    height: 731px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -270%);
    
    /* Background Image with Dark Overlay */
    /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0.67)), 
                url('airport-timetable-display.jpg'); */
    background-size: cover;
    background-position: center;
}

/* Airplane Image */
.airplane-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps aspect ratio */
    z-index: 2;
}
/* banner end */
/* Ensure no extra margins or paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Airplane Section */
.airplane-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust height as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Background Overlay */
/* .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */


/* Airplane Image */
.airplane-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .airplane-section {
        height: 50vh;
    }
    
    .airplane-image {
        width: 90%;
        height: auto;
    }
}

/* service section */
/* Best Service Section */
.best-service {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

/* Title Styling */
.service-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: #181E4B;
    margin-bottom: 40px;
    display: block; /* Ensures it's on a new line */
    text-align: center;
}

/* Service Container */
.service-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 36px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    text-align: center;
    height: 100%;
    margin-top: 20px; /* Ensures spacing between title and services */
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.15);
}

/* Highlighted Service */
.service-box.selected {
    background: #F76641;
    color: #fff;
}

.service-box.selected .service-text {
    color: #fff;
}

/* Service Icon */
.service-icon img {
    width: 92px;
    height: 92px;
    margin-bottom: 15px;
}

/* Service Heading */
.service-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1E1D4C;
    margin-bottom: 10px;
}

/* Service Text */
.service-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #5E6282;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-title {
        font-size: 36px;
    }
}


/* service section end */

/*carasole slide */


/* Default styles for all articles */
/* html, body {
    overflow-x: hidden;
    width: 100%;
} */


/*testimonial */
/* General Styles */
/* body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
} */
 
/* Banner Section */
/* Banner */
.banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonial Section on Banner */
.testimonial-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 17px;
    padding: 20px;
    text-align: center;
    /*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);*/
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #000000;
}

.testimonial-name {
    font-weight: 700;
    margin-top: 10px;
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border: 6px solid #FFFFFF;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 10px;
}

/* Navigation */
.nav-btn {
    background: #EC651B;
    width: 46.5px;
    height: 46.5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

/* explore */
.banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Centered Testimonial Section */
.testimonial-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    text-align: center;
}

.testimonial-heading {
    font-family: 'Volkhov', sans-serif;
    font-size: 50px;
    color: #181E4B;
    text-align: center;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 17px;
    /*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);*/
    padding: 20px;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    text-align: center;
}

.testimonial-name {
    font-weight: 700;
    margin-top: 10px;
    text-align: center;
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #FFFFFF;
    box-shadow: 6px 14px 27px rgba(0, 0, 0, 0.15);
}

/* Navigation Buttons */
.prev-btn, .next-btn {
    background: #EC651B;
    width: 46.5px;
    height: 46.5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
}
/* header-banner */

/* header-banner */


/* Banner Section Styles */
.top-banner {
    position: relative;
    width: 100%;
    height: 10%;
    min-height: 410px; /* Minimum height for smaller screens */
    margin: 0 auto;
    overflow: hidden;
  }
  
  @media (max-width: 768px) {
    .top-banner {
        min-height: 800px; /* reduce height for smaller screens */
        height: 15%; /* let it grow with content if needed */
        padding-bottom: 80px;
    }
}
  
  /* Image Section */
  .image-section {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
       
  }
  
  .image-overlay {
    position: absolute;
    /* width: 100%; */
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
  }
  
  .background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  /* Content Section */
  .content-section {
    position: relative;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-bottom:0px;
  }
  @media (max-width: 768px) {
  .content-section {
   position: relative;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    /*padding-bottom:0px;             Slightly more width */
  }
}
  
  /* Heading */
  .heading h1 {
    width: 100%;
    max-width: 832px;
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px; /* Smaller font size for mobile */
    line-height: 48px; /* Adjusted line height */
    text-align: center;
    letter-spacing: 0.01em;
    color: #FFFFFF;
  }
  
  /* Form Section */
  .form-section {
    width: 100%;
    max-width: 1440px;
    background: #FFFFFF;
    /*box-shadow: 0px 4px 8px rgba(51, 51, 51, 0.25);*/
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  /* Radio Buttons */
  .radio-buttons {
    display: flex;
    gap: 24px;
    justify-content:left;
  }
  
  
  
  .radio-buttons label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #5F8F25;
  }
  
  .radio-buttons input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 1px solid #5F8F25;
    border-radius: 50%;
  }
  
  .radio-buttons input[type="radio"]:checked {
    background: #5F8F25;
  }
  
  /* Form Fields */
  .form-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .form-group label {
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #112211;
  }
  
  .form-group input {
    width: 100%;
    height: 56px;
    padding: 4px 16px;
    border: 1px solid #79747E;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color:#adb5bd;
  }
  
  /* Search Button */
  .search-button {
    width: 100%;
    max-width: 200px;
    height: 56px;
    background: #5F8F25;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    margin: 0 auto;
  }
  
  /* Media Queries for Responsiveness */
  @media (min-width: 768px) {
    .heading h1 {
      font-size: 52px; /* Larger font size for tablets and desktops */
      line-height: 80px;
    }
  
    .form-section {
      padding: 16px 32px 32px;
    }
  
    .form-fields {
      grid-template-columns: repeat(4, 1fr); /* 4 columns for larger screens */
    }
  }
  
  @media (max-width: 767px) {
    .form-fields {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
    }
    
  }
  
  @media (max-width: 480px) {
    .form-fields {
      grid-template-columns: 1fr; /* 1 column for mobile */
    }
  
    .radio-buttons {
      flex-direction: column; /* Stack radio buttons vertically on mobile */
    }
  }
  
  
  
      /* Form Styling */
      .form-section {
          background: #FFFFFF;
          padding: 16px;
          border-radius: 16px;
          /*box-shadow: 0px 4px 8px rgba(51, 51, 51, 0.25);*/
      }
  
      .form-fields {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 16px;
          align-items: center;
      }
  
      .form-group {
          display: flex;
          flex-direction: column;
      }
  
      select, input {
          width: 100%;
          height: 40px;
          padding: 8px;
          border: 1px solid #79747E;
          border-radius: 4px;
      }
  
      .search-button {
          height: 40px;
          background: #5F8F25;
          color: white;
          border: none;
          cursor: pointer;
      }
  
      /* Responsive Button Positioning */
      @media (min-width: 768px) {
          .form-fields {
              grid-template-columns: repeat(5, 1fr);
          }
  
          .search-button {
              width: 100%;
          }
          
      }
  
      @media (max-width: 767px) {
          .form-fields {
              grid-template-columns: 1fr;
          }
  
          .search-button {
              width: 100%;
          }
      }
  
  
  /* Ensure Buttons & Boxes Stay in the Same Row */
  .radio-buttons {
    display: flex;
    gap: 24px;
    justify-content: left;
    flex-wrap: wrap; /* Ensures alignment on smaller screens */
  }
  
  /* Make All Form Fields & Buttons the Same Size */
  .form-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    align-items: center;
  }
  
  /* Ensure All Inputs & Selects Have Equal Heights */
  .form-group input,
  .form-group select {
    width: 100%;
    height: 56px; /* Consistent height */
    padding: 8px;
    border: 1px solid #79747E;
    border-radius: 4px;
  }
  
  /* Style Round Trip & One-Way Radio Buttons */
  .radio-buttons label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #5F8F25;
  }
  
  /* Make All Buttons the Same Size */
  .search-button {
    width: 100%;
    max-width: 200px;
    height: 56px; /* Consistent height */
    background: #5F8F25;
    border-radius: 4px;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-bottom:-1.5rem;
  }
  
  /* Keep Buttons Aligned in a Row (Mobile + Desktop) */
  .button-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Ensures proper alignment on smaller screens */
    gap: 16px;
  }
  
  /* Media Queries for Responsive Design */
  @media (max-width: 768px) {
    .form-fields {
        grid-template-columns: repeat(2, 1fr); /* Two columns for tablets */
    }
  }
  
  @media (max-width: 480px) {
    .form-fields {
        grid-template-columns: 1fr; /* One column for mobile */
    }
  
    .button-group {
        flex-direction: column; /* Stack buttons vertically on small screens */
        align-items: stretch; /* Make buttons full width */
    }
  
    .search-button {
        max-width: 100%; /* Full width buttons on mobile */
    }
  }
  
  /* banner form */
  .booking-form {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 1000px;
    position: relative;
}
.tabs {
    display: flex;
    justify-content: center;
    background: #ff6f00;
    border-radius: 12px 12px 0 0;
    padding: 10px;
}
.tab {
    flex: 1;
    text-align: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
}
.tab.active {
    background: white;
    color: #ff6f00;
    border-radius: 12px 12px 0 0;
}
.form-content {
    display: none;
    gap: 15px;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}
.form-content.active {
    display: flex;
}
.form-group {
    flex: 1;
}
.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}
.search-btn {
    background: #ff6f00;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}


.search-container {
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 1500px;
    position: relative;
    padding: 20px;
    margin: auto;
    background: white;
    margin-top: 60px; /* Moves the form down */
}


.tabs {
    display: flex;
    justify-content: center;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px;
    background: #EC651B;
    padding: 5px;
    width: fit-content;
    white-space: nowrap;
}

.tab {
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.tab.active {
    background: white;
    color: #EC651B;
    border-radius: 50px;
}

.form-section {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    align-items: center;
    padding: 20px;
    width: 100%;
}

.form-section.active {
    display: grid;
}

.form-group label {
    font-size: 12px;
    font-weight: bold;
    color: #FF5722;
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.search-button {
    padding: 12px 25px;
    background: orange;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 480px) {
    .search-container {
        width: 95%;
        padding: 15px;
    }

    .tabs {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 5px;
        padding: 5px;
        flex-wrap: nowrap;
    }

    .tab {
        padding: 8px 12px;
        font-size: 14px;
        flex: 1;
        text-align: center;
    }

    .form-section {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .form-group input {
        font-size: 14px;
    }

    .search-button {
        width: 100%;
        font-size: 14px;
    }
}


/* General Header Styles */
/* General Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    width: 100%;
    background:#cae6f5;
    color: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Logo */
.logo {
    width: 150px;
    /*height: 60px;*/
    background: url('../images/logo.png') no-repeat center/contain;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #134a91;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #F76641;
}

/* Phone Number (Hidden on Mobile) */
.phone {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .phone {
        display: none; /* Hide phone number on mobile */
    }
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Navigation (Hidden by Default) */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: #343440;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    color:#ffffff;
    z-index: 1050;
}

.mobile-nav a {
    color: Orange;
    text-decoration: none;
    padding: 10px;
    font-size: 18px;
}

.mobile-nav a:hover {
    background: #F76641;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide Desktop Nav */
    }

    .hamburger {
        display: block; /* Show Hamburger */
    }

    .mobile-nav.show {
        display: flex; /* Show Mobile Menu */
    }
}
/* blogs-page.....start */

/* Hero Banner */
.hero-banner {
    width: 100%;
    height: 400px; /* Default height for larger screens */
    position: relative;
    overflow: hidden;
}

/* Ensures the image fits properly inside the banner */
.hero-banner img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

/* Dark overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}


/* Hero Text (Centered) */
.hero-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    width: 80%;
    padding: 0 1rem;
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
    z-index: 1; /* Ensure it stays on top */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-banner {
        height: 250px;
        position: relative;
        overflow: hidden; /* Prevent overflow from child elements */
    }

    .hero-text {
        top: 20%;
        font-size: 1.5rem;
        line-height: 1.4;
        max-width: 90%;
        margin: 0 auto;
        padding: 0 1rem;
    }
}



 .blog-card {
            display: flex;
            flex-direction: column;
            align-items: center;
         
        }

        .blog-img {
            width: 100%;
            height: 250px; /* Fixed image height */
            object-fit: cover;
        }

        .blog-content {
            width: 100%;
            background: #e0e0e0; /* Grey background */
            padding: 15px;
            text-align: left;
        }

        .blog-title {
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .blog-meta {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .blog-date {
            font-size: 12px;
            margin-top: 10px;
            color: #666;
        }


/* blogs-page.....end */

/* contact page start */
.card {
    border-radius: 12px;
}

.btn-warning {
    background-color: #FF6600;
    border-color: #FF6600;
}

.btn-warning:hover {
    background-color: #e65c00;
}

.form-control {
    border-radius: 8px;
    padding: 10px;
}

h1 {
    color: #FFFFFF;
}

.text-uppercase {
    text-transform: uppercase;
}

/* contact page start */
/* Company Logo Images CSS */
.container1 {
    max-width: 1440px;
    margin: auto;
}
.our-deals{
background: #f8f8f8;

}
.logo-carousel {
    display: flex;
    align-items: center;
    justify-content:stretch;
    margin-top: 20px;
    margin-bottom: 20px;
}
.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    padding: 10px;
    border-radius: 8px;
    height: 100px;
}
.logo-box img {
    max-width: 150px;
    max-height: 80px;
    /* object-fit: contain; */
}

.vector-shape {
    position: absolute;
    left: -1.24%;
    right: -1.16%;
    top: 100.33%;
    bottom: -99.05%;
    background: #FFFFFF;
    transform: matrix(1, 0, 0, -1, 0, 0);
}

/* about us page */
/* Container Styling */
.terms-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header Styling */
.terms-header h1 {
    font-size: 36px;
    text-align: center;
    color: #EC651B;
    font-weight: bold;
    margin-bottom: 20px;
    position: inherit;
}

/* Underline effect for header */
.terms-header h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #EC651B;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* Content Section */
.terms-content {
    text-align: left;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
}

/* Section Headings */
.terms-content h2 {
    font-size: 28px;
    color: #EC651B;
    font-weight: bold;
    margin-top: 30px;
}

/* Subheadings */
.terms-content h3 {
    font-size: 22px;
    color: #444;
    font-weight: bold;
    margin-top: 20px;
}

/* Paragraph Styling */
.terms-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* List Styling */
.terms-content ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.terms-content ul li {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

/* Custom Bullet Points */
.terms-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #EC651B;
    font-size: 20px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        padding: 30px;
        margin: 30px auto;
    }

    .terms-header h1 {
        font-size: 30px;
    }

    .terms-content h2 {
        font-size: 24px;
    }

    .terms-content h3 {
        font-size: 20px;
    }

    .terms-content p,
    .terms-content ul li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .terms-container {
        padding: 20px;
    }

    .terms-header h1 {
        font-size: 26px;
    }

    .terms-content h2 {
        font-size: 22px;
    }

    .terms-content h3 {
        font-size: 18px;
    }

    .terms-content p,
    .terms-content ul li {
        font-size: 14px;
    }
}
/* about us page end */
/* Footer Main Container */
.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

/* Make Footer Content Flex */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
   gap:90px;
   text-align:left;
}

/* Footer Logo and Text */
.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-top:-20px;
}

/* Footer Links - Keep Quick Links & Policy in one row */
.footer-links {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping if needed */
    gap: 70px;
}

/* Individual Column */
.links-column {
    min-width: 150px;
}

/* Contact Section */
.footer-contact {
    flex: 1;
    min-width: 250px;
    font-size:20px;
    margin-top:10px;
}
/* Social Media Icons */
.footer-social {
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    background: #fff;
    color: #ff6600;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ff6600;
    color:#fff;
}


/* Horizontal Line */
.footer-line {
    margin-top: 20px;
    border: 1px solid #ddd;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        /* align-items: center; */
        text-align: center;
    }

    .footer-links {
        flex-direction: row; /* Keep Quick Links & Policy in one row */
        justify-content: justify;
        gap: 20px;
        width: 100%;
    }

    .links-column {
        flex: 1; /* Allow both columns to take equal space */
        min-width: 140px;
        text-align: justify;
    }

    .footer-logo,
    .footer-contact {
        text-align: justify;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        display: flex;
        flex-direction: row; /* Ensure Quick Links & Policy stay in one row */
        justify-content: center;
        gap: 20px;
        flex-wrap: nowrap; /* Prevent wrapping */
    }

    .links-column {
        flex: 1;
        min-width: 120px;
        text-align: justify;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
.footer-bottom {
    display: block;
}

@media only screen and (max-width: 767px) {
    .footer-bottom {
        display: none;
    }
}

.footer-social {
    display: block;
}

@media only screen and (max-width: 767px) {
    .footer-social {
        display: none;
    }
}




.disclaimer {
    display: none
;
    justify-content: center;
    align-items: center;
    padding: 3px;
    width: 100%;
    max-width: 1288px;
    border: 2px solid #ffffff;
    border-radius: 12px;
    text-align: center;
}
@media only screen and (max-width: 767px) {
    .disclaimer {
        display: block;
    }

}


/* contact-form image */
.image-container img {
    width: 100%; /* Make the image responsive */
    height: auto;
    border-radius: 10px; /* Rounded corners */
}
/* contact-form image */
 
 
 /*CSS for Blogs Dropdown*/
 
 
 /* Unique class for dropdown container */
.custom-nav-dropdown {
    position: relative;
    display: inline-block;
}

/* Styling for dropdown toggle */
.custom-nav-toggle {
    /*display: flex;*/
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s ease;
    cursor: pointer;
}

/* Dropdown icon (placed after text) */
.custom-nav-toggle::after {
    content: "\f107"; /* FontAwesome down arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 8px; /* Space between text and icon */
    transition: transform 0.3s ease;
}

/* Rotate icon when hovering */
.custom-nav-dropdown:hover .custom-nav-toggle::after {
    transform: rotate(180deg);
}

/* Styling for dropdown menu */
.custom-nav-dropdown-menu {
    display: none; /* Hide dropdown initially */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    padding: 10px 0;
    border: none;
    z-index: 1050; /* Ensure it appears on top */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* Dropdown items styling */
.custom-nav-dropdown-menu .custom-nav-dropdown-item {
    font-size: 16px;
    padding: 10px 15px;
    color: #333;
    transition: background 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Fancy list icon for items */
.custom-nav-dropdown-item::before {
    content: "\f0da"; /* FontAwesome arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px; /* Space between icon and text */
    color: #007bff;
}

/* Hover effect */
.custom-nav-dropdown-menu .custom-nav-dropdown-item:hover {
    background-color: #007bff;
    color: #fff;
}

/* Show dropdown menu on hover */
.custom-nav-dropdown:hover .custom-nav-dropdown-menu,
.custom-nav-dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

