body {
  font-family: "Poppins", sans-serif !important;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: rgb(230, 21, 21);
  --secondary-color: whitesmoke;
  --white-color: white;
  --yellow-color: rgb(255, 217, 0);
  --background-color: #f4f4f4;
}

.tx-custom {
  font-size: 1.2rem !important;
}

.fa-envelope,
.fa-location,
.fa-phone-volume {
  color: #228b22;
}

.fa-angle-left,
.fa-angle-right {
  color: var(--white-color);
  padding: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  font-size: 1.5rem;

}

.fa-angle-left:hover,
.fa-angle-right:hover {
  color: var(--yellow-color);
}

.bg-grad {
  background: linear-gradient(90deg, rgba(7, 61, 113, 1) 0%, rgba(71, 136, 69, 1) 100%);
}

h2,
h5,
h3 {
  font-weight: bold !important;
}


h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: rgb(120, 122, 121);
}

span {
  font-weight: bolder;
}

h2.underline {
  position: relative;
}

h2.underline::before {
  content: '';
  position: absolute;
  display: block;
  width: 300px;
  height: 1px;
  background: rgb(6, 48, 22);
  bottom: -10px;
  left: calc(50% - 150px);
}

h2.underline::after {
  content: '';
  position: absolute;
  display: block;
  width: 100px;
  height: 5px;
  background: var(--primary-color);
  bottom: -12px;
  left: calc(50% - 50px);
}


.fa-solid.fa-bars,
.fa-circle-xmark,
.fa-calendar-check,
.fa-angles-right {
  color: var(--primary-color) !important;
  border: none;
}

.btn-off {
  background-color: transparent;
  border: none;
}

.card-btn {
  display: flex;
  justify-content: space-between;
}

.btn-card {
  background-color: rgb(6, 48, 22);
  border-radius: 25px;
  padding: 10px 10px;
  width: 150px;
  text-decoration: none;
  color: white;
  font-size: small;
  text-align: center;
  justify-content: space-between;

}

.btn-card:hover {
  background-color: orangered;
}

.bg-gray {
  background-color: whitesmoke !important;
}

.top-bar {
  background-color: var(--primary-color);
}



.navbar-brand {
  font-weight: bolder;
  margin-right: 0px !important;
}


.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 10px 0px 25px rgb(194, 192, 192);

}

.nav-link {
  font-weight: bolder;
  text-transform: uppercase;
}


.navbar {
  z-index: 99;
}

.navbar,
.offcanvas {
  background-color: white;
  /* border-bottom: 5px solid var(--primary-color); */
}

.navbar-nav .nav-link {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-link:hover {
  color: red !important;
}

.navbar-toggler {
  border: none;

}

.navbar-toggler:hover {
  border: none;

}

.nav-link.btn {
  background-color: #ffd100;
  border-radius: 25px;
  color: green;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 150px;
  border: 2px solid #ffd100;
}

.nav-link.btn:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

.dropdown-menu {
  border-radius: 0;
}

/* slider css  */

.carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  /* height: 80vh; */
  /* Set carousel height for desktop and larger screens */
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel img {
  width: auto;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  object-fit: scale-down;
  flex-shrink: 0;
}

/* Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}



/* Responsive Adjustments */
@media (max-width: 768px) {
  .carousel {
    height: auto;
    /* Adjust to content height for smaller screens */
  }

  .carousel img {
    height: auto;
    /* Allow proportional scaling */
    width: 100%;
    /* Fit the image within the container width */
    object-fit: contain;
    /* Ensure the whole image is visible */
  }
}




.swal2-icon {
  /* color: white!important; */
  font-size: 10px !important;
}

.swal2-popup {
  /* background-color: #034406 !important; Set the background color */
}

/* Custom button color */
.swal2-confirm {
  background-color: red !important;
  /* Green button */
  color: white !important;
  /* White text */
  border: none !important;
  /* Remove border */
  font-size: 16px !important;
  /* Set font size */
  /* width: 200px; */
}

/* Optional: Custom hover effect */
.swal2-confirm:hover {
  background-color: #45a049 !important;
  /* Darker green on hover */
}

.swal2-html-container {
  text-align: left !important;
  /* Justify text */
}



/* About Us Section */
.about-us {
  padding: 50px 20px;
  background-color: #f9f9f9;

}

.about-us-header h3 {
  font-size: 2rem;
  color: rgb(6, 48, 22);
  text-align: left;
  margin-bottom: 20px;
  font-weight: bolder;
  border-left: 10px solid var(--primary-color);
  padding: 0 10px;
}

.about-us-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 100px;
}

.about-image {
  flex: 1;
  max-width: 350px;

}

.light-head {
  color: gray;

}

/* .about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
} */

.about-details {
  flex: 2;
  text-align: left;
}

.about-details h2 {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 15px;
}

.about-details p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.know-more-btn {
  padding: 12px 30px;
  font-size: 1rem;
  color: #fff;
  background-color: var(--primary-color);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.know-more-btn:hover {
  background-color: orangered;
  /* color: rgb(6, 48, 22); */
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us-content {
    flex-direction: column;
    text-align: center;
  }

  .about-details {
    text-align: center;
  }

  .about-details h2 {
    font-size: 1.8rem;
  }

  .about-details p {
    font-size: 1rem;
  }
}

.services-section {
  position: relative;
  text-align: center;
  padding: 50px 20px;
  background-color: rgba(245, 245, 245, 0.900) !important;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../image/sachin-overseas-back.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: hue-rotate(180deg);
  opacity: 0.5;
  z-index: -1;
}


.services-section p {
  color: rgb(6, 48, 22);
}


.services-section h2 {
  font-size: 2.5rem;
  color: rgb(6, 48, 22);
  margin-bottom: 30px;
  font-weight: bolder;
}

.ycolor {
  color: #f3e412 !important;
}

.service-card {
  background: #f5f7f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 80px;
  height: 200px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: rgb(6, 48, 22);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #666;
}

.cta-section {
  padding: 20px 20px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.cta-content h2 {
  font-weight: bold;
}

.book-btn {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 25px;
  color: white;
  transition: background-color 0.3s ease;
}

.book-btn:hover {
  background-color: #e29c05;
  /* Hover effect for the button */
}

@media (max-width: 768px) {
  .cta-content {
    display: block;
  }

  .book-btn {
    padding: 5px 20px;

  }
}

.blog-section {
  text-align: left;
  padding: 50px 20px;


}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #888;
  /* Light gray for subtle meta info */
  margin-bottom: 10px;
}

.blog-date,
.blog-category {
  background-color: #f4f4f4;
  /* Light background for better contrast */
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}

.blog-date {
  color: white;
  background-color: #e29c05;
}

.blog-category {
  color: white;
  background-color: rgb(6, 48, 22);
}

.blog-content a {
  text-decoration: none;
  color: rgb(6, 48, 22);

}

/* Base Footer Styles */
footer {
  position: relative;
  background-color: rgba(255, 0, 0, 0.900);
  color: #fff;
  padding: 20px 0;
  overflow: hidden;

}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../image/sachin-overseas-back.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: hue-rotate(180deg);
  /* Adjust hue rotation as needed */
  z-index: -1;
}


.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
  /* Allows wrapping on smaller screens */
}

.footer-section {
  flex: 1;
  min-width: 200px;
  /* Ensures sections don't get too narrow */
  padding: 0 10px;
}

.footer-section img {
  width: 90%;
}

.footer-section h4 {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.footer-section p {
  margin-top: 10px;
}

.footer-section a {
  text-decoration: none;
  color: white;
}

.footer-section a:hover {
  text-decoration: none;
  color: yellow;
}

.footer-section ul {
  margin: 0;
  padding: 0;
}

.footer-section li {
  list-style: none;
  line-height: 2rem;

}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  border-top: 1px solid #aca9a9;
  font-size: 14px;
  flex-wrap: wrap;
  /* Ensures items stack on smaller screens */
}

.footer-bottom p {
  margin: 0;
  flex: 1;
  text-align: left;
  gap: 100px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    /* Stacks sections vertically */
    align-items: left;
  }

  .footer-section {
    text-align: left;
    /* Center-aligns text for smaller screens */
    padding: 10px 0;
  }

  .footer-bottom {
    flex-direction: column;
    /* Stacks items vertically */
    align-items: center;
    text-align: center;
    /* Aligns text to the center */
    gap: 10px;
    /* Adds space between items */
  }

  .footer-bottom p {
    flex: none;
    /* Removes flex sizing */
  }
}

@media (max-width: 480px) {
  .footer-section {
    min-width: 100%;
    /* Makes sections full width */
  }
}

.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  /* Distance from the bottom */
  left: 20px;
  /* Distance from the left */
  z-index: 1000;
  /* Ensure it appears on top */
}

.whatsapp-widget img {
  width: 70px;
  /* Size of the WhatsApp icon */
  height: 70px;
  cursor: pointer;
  /* Pointer cursor on hover */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-widget img:hover {
  transform: scale(1.1);
  /* Slightly enlarge on hover */

}

.book-now-blinking {
  position: fixed;
  /* Sticks the button in place */
  bottom: 20px;
  /* 20px from the bottom */
  right: 20px;
  /* 20px from the right */
  z-index: 1000;
  /* Ensure it appears above other content */
  background-color: #f08a04;
  /* Bright yellow background */
  border-radius: 50px;
  /* Rounded button */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  /* Subtle shadow for visibility */
  padding: 10px 20px;
  /* Spacing for button size */
  animation: blink 1s infinite;
  /* Apply blinking animation */
}

.book-now-blinking a {
  font-size: 16px;
  /* Text size */
  font-weight: bold;
  /* Bold text */
  color: #064016;
  /* Dark green text for contrast */
  text-decoration: none;
  /* Remove underline */
  text-align: center;
  /* Center the text */
  display: block;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    /* Fully visible */
  }

  50% {
    opacity: 0.5;
    /* Semi-transparent */
  }
}

.book-now-blinking a:hover {
  color: #f0e004;
  /* Yellow text on hover */
  animation: none;
  /* Stop blinking on hover */
}


.breadcrumb-section {
  background: linear-gradient(90deg, rgba(249, 7, 7, 1) 0%, rgba(244, 6, 139, 1) 100%);
}

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 0;
  border-radius: 5px;

}

/* Style for each breadcrumb item */
.breadcrumb li {
  padding: 8px 5px;
  font-size: 16px;

}

.breadcrumb li a {
  text-decoration: none;
  color: white;
}

/* Style for the last breadcrumb item (active) */
.breadcrumb li.active {
  color: #f0e004;
  pointer-events: none;
  /* Disable interaction with the last breadcrumb */
}

/* Style for separators */
.breadcrumb li::after {
  content: '/';
  color: #6c757d;
  padding: 0 5px;
}

/* Remove separator for the last item */
.breadcrumb li:last-child::after {
  content: '';
}

/* Blog container */
.blog-container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
  justify-content: center;
}

/* Main content (left side) */
.blog-main {
  flex: 3;
}

.blog-main img {
  width: 100%;
  object-fit: cover;
}

.content h2,
.content p {
  margin: 10px 0;
}

.blog-main p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Sidebar (right side) */
.blog-sidebar {
  flex: 1;
  /* Only background color applied */
  color: white;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Section 1 - Square Section */
.square-section {
  width: 100%;
  height: 250px;
  background-color: rgb(6, 48, 22);
  text-align: center;
  color: white;
  font-size: 20px;
  padding: 20px;
}

.square-section h4 {
  border-radius: 25px;
  margin: 5px 0;
}

.square-section a {
  text-decoration: none;
  color: white;
}

.square-section p {
  font-size: 1rem;
}

/* Section 2 - Important On-Page Info */
.important-info {
  flex: 1;
  background-color: #34495e;
  /* Slightly lighter color for content section */
  padding: 15px;
  border-radius: 5px;
}

.important-info h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #ffd100;
}

.important-info ul {
  list-style-type: none;
  padding: 0;
}

.important-info ul li {
  font-size: 16px;
  color: #ecf0f1;
  margin-bottom: 10px;
}

/* Section 3 - Inquiry Form */
.inquiry-form {
  width: 100%;
  background-color: #16a085;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
}

.inquiry-form h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: white;
}

.inquiry-form input,
.inquiry-form textarea {
  /* width: 90%; */
  /* padding: 10px; */
  margin-bottom: 5px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
}

.inquiry-form button {
  width: 90%;
  padding: 12px;
  background-color: #ffd100;
  border: none;
  border-radius: 5px;
  color: #1e2a3a;
  font-size: 16px;
  cursor: pointer;
}

.inquiry-form button:hover {
  background-color: #f39c12;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
    gap: 10px;
  }

  .blog-main {
    flex: 1;
  }

  .blog-sidebar {
    flex: 1;
  }

  .fa-angle-left,
  .fa-angle-right {

    font-size: 1rem;

  }
}

/* Styling for small devices */
@media (max-width: 480px) {
  .blog-main h1 {
    font-size: 24px;
  }

  .fa-angle-left,
  .fa-angle-right {

    font-size: 1rem;

  }


  .blog-main p {
    font-size: 14px;
  }

  .blog-sidebar h3 {
    font-size: 16px;
  }

  .important-info ul li {
    font-size: 14px;
  }
}

.package-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 10px;
}

.package-card {
  width: 100%;
  max-width: 300px;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-card-body {
  padding: 20px;
  text-align: left;
}


.package-card-body p {
  color: #333;
  font-size: 16px;
}

.price {
  font-size: 18px;
  font-weight: bold;
  color: #e74c3c;
  margin-top: 10px;
}

.button {
  padding: 12px 30px;
  background-color: rgb(6, 48, 22);
  color: white;
  text-decoration: none;
  font-size: 16px;
  border-radius: 8px;
  margin-top: 15px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #ffd100;
}

@media (max-width: 768px) {
  .package-card {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .package-card-body h3 {
    font-size: 20px;
  }

  .price {
    font-size: 16px;
  }

  .button {
    font-size: 14px;
  }
}

.left-content {
  flex: 1;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: start;
}

.left-content h2 {
  margin: 0 0 10px;
  font-size: 28px;
  color: #333;
}

.left-content p {
  margin: 0;
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

.form-container {
  flex: 1;
  background-color: var(--primary-color);
  padding: 20px;
  border-radius: 8px;
  color: #fff;
  max-width: 520px;
  text-align: start !important;
  /* max-height: 570px; */
}


/* 
.form-group {
  display: flex;
  gap: 10px;
  flex-basis: 50%;
  justify-content: space-between;
}

.form-group input,
.form-group select {
  flex: 1;
  padding: 5px;
  border: none;
  border-radius: 4px;
  margin-top: 5px;
  font-size: 14px;
} */

.form-container input:focus,
.form-container select:focus {
  outline: 2px solid #90ee90;
}

.form-container button {
  flex-basis: 100%;
  padding: 10px;
  background-color: orangered;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.form-container button:hover {
  background-color: #228b22;
}

@media (max-width: 768px) {
  .form-container {
    width: auto;
    height: auto;
  }

  .left-content {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .form-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .left-content h2 {
    font-size: 24px;
  }

  .form-container {
    width: auto;
    height: auto;
  }

  .left-content p {
    font-size: 14px;
  }

  .form-container form {
    gap: 15px;
  }

  .form-group input,
  .form-group select {
    font-size: 12px;
    padding: 8px;
  }

  .form-container button {
    font-size: 14px;
  }
}

.fa-bars {
  font-size: 1.5rem !important;
}

.nav-btn {
  border: none;
  background-color: transparent;
}

.nav-btn:hover {
  border: none;
}


.chardham {
  background: url(../image/helicopter-tour.jpg) no-repeat right center #d8fbf5;

}

.dodham {
  background: url(../image/helicopter-tour-dodham.jpg) no-repeat right center #d8fbf5;

}

.custom-helicopter {
  background: url(../image/custom_helicopter_banner.jpg) no-repeat right center #d8fbf5;
}

.heli-scheme {
  background: url(../image/heli-scheme.jpg) no-repeat right center #d8fbf5;

}

.chardham,
.dodham,
.custom-helicopter,
.heli-scheme {
  background-size: contain;
}

.heli .block {
  background: #d8fbf5a2;
}

.heli .block a {
  text-decoration: none;
  color: #064016;
}

.fas .fa-tag {
  color: #064016 !important;
}


.heli-service-scheme img {
  max-width: 400px;
  max-height: auto;
  border-radius: 25px;
  box-shadow: 10px 5px 5ps rgb(202, 200, 200);
}

.form-footer-container {
  background-color: #f4fff4;
  border: 1px solid rgb(197, 196, 196);
  border-radius: 15px;
}

.form-footer-container h3 {
  color: #065a1e !important;
}

.form-footer-container button {
  background-color: #006400;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px 0;
}

.top-bar .mobile {
  display: none;
}

@media only screen and (max-width: 480px) {

  .chardham,
  .dodham,
  .custom-helicopter,
  .heli-scheme {
    background-position: top center !important;
  }

  .heli .block {
    margin-top: 200px !important;
  }

  .top-bar .desktop {
    display: none;
  }

  .top-bar .mobile {
    display: block;
  }
}

.close {
  background-color: transparent !important;
  border: none;
  font-size: 2rem;
}

.modal {
  background-color: rgba(55, 56, 55, 0.541) !important;
}

.modal-dialog {
  background-color: #16a085 !;
}


#login-section {
  background: url(../image/login-background.jpg);
  background-size: cover;
  background-position: center;
}

.oranged {
  background-color: orange !important;
}


.breadcrumb {

  margin-bottom: 0px !important;
}


.important-info {
  background-color: transparent;
  padding: 0;
}

.important-info h3 {
  background-color: #228b22;
  padding: 10px;
}

.important-info ul li {
  padding: 5px 10px;
  border-bottom: 1px dashed gray;
}

.important-info ul li a {
  color: gray;
  text-decoration: none;

}

.course-table {
  border-collapse: collapse;
  width: 100%;
}

.course-table th {
  color: red;
}

.course-table th,
.course-table td {
  border: 1px solid rgb(212, 210, 210) !important;
  padding: 10px;
}