:root{
  --main: #bd0828;
  --mainline: #1c2b4b;
  --bavk: #fffffd;
}
::-moz-selection { /* Code for Firefox */
    color: var(--bavk);
    background: var(--main);
  }
  
  ::selection {
    color: var(--bavk);
    background: var(--main);
  }


 
  
  a, a:visited, a:hover, a:active {
    color: inherit;
  }

/* style.css */
body {
  margin: 0;
  font-family: "Poppins", serif;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--bavk);
}


/* Number bar Styles */

.number-bar {
  height: 30px;
  background-color: var(--bavk);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color:var(--mainline) ;
  font-size: 18px;
  box-shadow: 0px 33px 75px -10px rgba(0,0,0,0.75);
  padding-right: 72px;
  position: sticky; /* Make navbar sticky */
  top: 0; /* Stick to the top of the viewport */
  z-index: 1000; /* Ensure navbar stays above other content */

}

.phone-link {
  color: var(--mainline);
  text-decoration: none;
  font-size: 18px;
}

.phone-icon {
  margin-right: 10px;
}

.phone-link:hover {
  
  color: var(--main);
}


@media (max-width: 768px) {
  .number-bar{
    justify-content: center;
    padding: 0;
  }

}


/* Number bar Styles end */






/* nav bar Styles */


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--bavk);
  color: var(--mainline);
  position: sticky; /* Make navbar sticky */
  top: 30px; /* Stick to the top of the viewport */
  z-index: 1000; /* Ensure navbar stays above other content */
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  margin-right: 40px;
}

.nav-menu li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background-color: #555;
}

.nav-menu li a {
  color: var(--mainline);
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  transition: background-color 0.3s, color 0.3s;
}

.nav-menu li a:hover {
  background-color: var(--main);
  color: var(--bavk);
  border-radius: 5px;
}

.navbar span {
  font-size: 2em;
  font-weight: thin;
  letter-spacing: 10px;
  
  
}
.navbar a {
  text-decoration: none;
  display: block;
}


.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon .bar {
  width: 25px;
  height: 3px;
  background-color: var(--mainline);
  margin: 4px 0;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* nav Mobile Styles */
@media (max-width: 768px) {
  .navbar {
      justify-content: center; /* Center the content in mobile view */
  }

  .navbar span {
      position: static; /* Remove absolute positioning */
      transform: none; /* Remove transform */
      text-align: center; /* Center the text */
      letter-spacing: 8px;
      margin-left: 10px;
  }

  .nav-menu {
      position: fixed;
      top: 0;
      left: -80%;
      width: 80%;
      height: 100%;
      background-color: var(--bavk);
      flex-direction: column;
      padding-top: 60px;
      transition: left 0.3s ease;
      z-index: 1000;
  }

  .nav-menu.active {
      left: 0;
  }

  .nav-menu li {
      margin: 10px 0;
  }

  .nav-menu li:not(:last-child)::after {
      display: none;
  }

  .nav-menu li a {
      padding: 15px;
  }

  .menu-icon {
      display: flex;
      position: absolute; /* Position the menu icon absolutely */
      left: 20px; /* Adjust as needed */
  }

  .overlay.active {
      display: block;
  }
}
@media (max-width: 480px){
  .navbar span {
      letter-spacing: 6px;
      margin-left: 15px;
      text-align: center;
  }

  
}





/* Hero Section */
.hero-section {
  min-height: 500px; /* Use min-height instead of fixed height */
  background-image: url('images/bridge.jpg'); /* Add your background image */
  background-size:cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-content {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  width: 100%;
  max-width: 1200px;
  background: rgba(27, 27, 27, 0.685);
  border-radius: 10px;
  padding: 40px 20px; /* Increased padding */
  overflow: hidden;
}



.hero-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px; /* Space between logo and button */
}

.hero-logo img {
  max-width: 100%;
  height: auto;
  max-height: 350px; /* Adjust as needed */
}

/* Book Now Button Styles */
.book-now-btn {
  padding: 15px 40px;
  background-color: var(--main);
  color: var(--bavk);
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(189, 8, 40, 0.4);
  animation: bounce 2s infinite;
}

.book-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(189, 8, 40, 0.6);
}

.book-now-btn:active {
  transform: translateY(1px);
}

/* Ripple Effect */
.book-now-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.book-now-btn:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}

/* Ripple Animation */
@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(25, 25);
    opacity: 0;
  }
}

/* Add this to your CSS */
.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}



@media (max-width: 768px) {
.hero-section{
  background-image: url(images/mobile-back.jpg);
  background-size: cover;
  background-position: center;
  margin: 0;
}
.hero-content {
  flex-direction: column;
}



.hero-logo {
  width: 100%;
  margin-top: 20px;
  margin: 0;
}

.form-row {
  flex-direction: column;
}
}



/* Box container */
  
.cardboxes{
  width: 100%;
}
.containerb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 20px;
  
}

.boxb {
  width: 22%;
  padding: 20px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
  margin-bottom: 20px;
 
}
.boxb img{
  width: 50px;
  height: 50px;
}

.boxb:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

h2 {
  margin: 10px 0;
  font-size: 1.5em;
}

p {
  font-size: 1em;
  color: #555;
  line-height: 1.5em;
}
@media (max-width: 768px){
  .boxb {
    width: 85%;
}

}




/* Container for the cards */
.containercard {
  text-align: center;
  padding: 20px;
}

/* Main heading */
.main-heading {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Card container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Individual card styling */
.cards, .card {
  position: relative;
  width: calc(33.333% - 20px); /* 3 cards per row with gap */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  aspect-ratio: 1 / 1; /* Ensure all boxes are square */
}
#four{
  width: calc(24% - 20px);
}

.cards img, .card img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the entire box */
  display: block;
  transition: transform 0.3s ease;
}

/* Transparent overlay */
.cards::before, .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(218, 218, 218, 0); /* Transparent by default */
  transition: background-color 0.3s ease;
  z-index: 1;
}

/* Card heading */
.card-heading {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.322);
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  z-index: 2;
}

/* Hover effect */
.cards:hover::before, .card:hover::before {
  background-color: rgba(241, 241, 241, 0.7); /* Dark overlay on hover */
}

.cards:hover .card-heading, .card:hover .card-heading {
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: var(--main);
  width: 100%;
  text-align: center;
}

.cards:hover img, .card:hover img {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cards, .card {
    width: calc(50% - 20px); /* 2 cards per row on tablets */
  }
  #four{
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .cards, .card {
    width: 100%; /* 1 card per row on mobile */
  }
  #four{
    width: 100%;
  }

  .main-heading {
    font-size: 1.5rem;
  }
}


/* General Styles */
.why-session {
  display: flex;
  gap: 40px; /* Space between left and right containers */
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.left-content {
  flex: 60%; /* 60% width for left container */
  margin-top: 50px;
  line-height: 2em;
}

.left-content h2{
  margin-bottom: 20px;
  color: var(--main);
}

.right-content {
  flex: 30%; /* 40% width for right container */
}

.boxc {
  background: var(--bavk);
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  color: var(--mainline);
}


.boxc:hover {
  box-shadow: 0 4px 8px #bd08297a; /* Light shadow on hover */
}

.boxc img {
  width: 100%;
  height: auto;
  display: block;
}

.box-content {
  padding: 15px;
}

.box-content h3 {
  margin-top: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .why-session {
    flex-direction: column; /* Stack containers vertically on mobile */
  }

  .left-content,
  .right-content {
    flex: 100%; /* Full width for both containers on mobile */
  }

  .boxc {
    margin-top: 20px; /* Add space between left and right containers on mobile */
  }
}



/* General Styles */
.tablesession {
  font-family: Arial, sans-serif;
  padding: 30px;
  text-align: center;
}

.tablesession h1 {
  font-size: 30px;
  margin-bottom: 20px;
}

.tablesession table {
  width: 70%;
  border-collapse: collapse;
  margin: 0 auto;
}

.tablesession td {
  padding: 20px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
  
}

.tablesession td img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Alternating row colors */
.tablesession tr:nth-child(odd) {
  background-color: #f2f2f2; /* Light gray for even rows */
}

/* Tablet View */
@media (max-width: 768px) {
  .tablesession table{
    width: 90%;
  }
  .tablesession h1 {
      font-size: 20px;
  }

  .tablesession td {
      padding: 8px;
      font-size: 14px;
  }

  .tablesession td img {
      width: 14px;
      height: 14px;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .tablesession table{
    width: 100%;
  }
  .tablesession h1 {
      font-size: 18px;
  }

  .tablesession table {
      display: block;
      overflow-x: auto;
  }

  .tablesession td {
      padding: 6px;
      font-size: 12px;
  }

  .tablesession td img {
      width: 12px;
      height: 12px;
  }
}




/* General Styles */
.containerfleet {
  padding: 20px;
  text-align: center;
}

.main-heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.boxf-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.boxf {
  background: var(--bavk);
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  width: calc(25% - 40px); /* 4 cards in a row for desktop */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.boxf:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.boxf img {
  width: 100%;
  height: auto;
  display: block;
}

.boxf h2 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: var(--mainline);
}

.boxf p {
  font-size: 1rem;
  color: var(--mainline);
  padding: 0 15px 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .boxf {
      width: calc(50% - 20px); /* 2 cards in a row for tablet */
  }
}

@media (max-width: 768px) {
  .boxf {
      width: 100%; /* 1 card in a row for mobile */
      margin: 20px;
  }

  .main-heading {
      font-size: 2rem;
  }

  .boxf h2 {
      font-size: 1.3rem;
  }

  .boxf p {
      font-size: 0.9rem;
  }
}





/* General Styles */


.airporttable {
  overflow-x: auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 1000px;
}

.airporttable table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
}

.airporttable th, td {
  padding: 12px 15px;
  text-align: left;
}

.airporttable th {
  background-color: var(--mainline);
  color: white;
  font-weight: bold;
  font-size: 20px;
}

.airporttable tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.airporttable tr:nth-child(even) {
  background-color: #e9e9e9;
}

.airporttable td[data-label] {
  text-align: left;
}

/* Rounded Corners for Table */
.airporttable thead th:first-child {
  border-top-left-radius: 10px;
}

.airporttable thead th:last-child {
  border-top-right-radius: 10px;
}

.airporttable tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}

.airporttable tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  
  .airporttable{
    margin-left: 10px;
    margin-right: 10px;
  }
  .airporttable table, thead, tbody, th, td, tr {
      display: block;
  }

  .airporttable thead tr {
      position: absolute;
      top: -9999px;
      left: -9999px;
  }

  .airporttable tr {
      margin-bottom: 10px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .airporttable td {
      border: none;
      position: relative;
      padding-left: 50%;
      text-align: left;
  }

  .airporttable td::before {
      content: attr(data-label);
      position: absolute;
      left: 10px;
      width: 45%;
      padding-right: 10px;
      white-space: nowrap;
      text-align: left;
      font-weight: bold;
      color: var(--mainline);
  }

  /* Hide the data-label for the first column */
  .airporttable td:first-child::before {
      content: none;
  }

  .airporttable td:first-child {
      background-color: var(--mainline);
      color: white;
      font-weight: bold;
      padding-left: 15px; /* Adjust padding for the first column */
  }
}





.footer {
  background-color: var(--mainline);
  color: #fff;
  padding: 20px;
}

/* Top Container (Left and Right Sections) */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px; /* Adds space between left and right sections */
  margin-bottom: 20px; /* Space between top and bottom containers */
}

.footer-left,
.footer-right {
  flex: 1;
  min-width: 200px; /* Ensure sections don't get too small */
}

/* Left Section */
.footer-left {
  text-align: left;
}

.footer-left img {
  width: 200px;
  margin-bottom: 10px;
}

.footer-left p {
  margin: 5px 0;
  font-size: 14px;
  color: var(--bavk);
}

/* Right Section */
.footer-right {
  text-align: left;
}

.footer-right h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-right input {
  padding: 8px;
  width: 70%;
  border: none;
  border-radius: 4px;
}

.footer-right button {
  padding: 8px 12px;
  background-color: var(--main);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.footer-right button img {
  width: 16px;
  height: 16px;
}

/* Menu Section */
.footer-menu {
  text-align: center;
  margin-bottom: 20px; /* Space between menu and footer-bottom */
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center; /* Center menu items horizontally */
  flex-wrap: wrap; /* Wrap items on smaller screens */
}

.footer-menu ul li {
  margin: 0 10px; /* Space between menu items */
}

.footer-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s, background-color 0.3s;
}

.footer-menu ul li a:hover {
  color: var(--bavk);
  background-color: var(--main);
  padding: 5px;
  border-radius: 4px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    text-align: center;
  }

  .footer-right input {
    width: 60%;
  }

  .footer-menu ul {
    flex-direction: column; /* Stack menu items vertically on smaller screens */
  }

  .footer-menu ul li {
    margin: 10px 0; /* Add vertical spacing between menu items */
  }
}

@media (max-width: 480px) {
  .footer-right input {
    width: 50%;
  }
}

        
/* Hide mobile book button on desktop */
.mobile-book-btn {
  display: none;
}

/* Show and style mobile book button on mobile */
@media (max-width: 768px) {
  .mobile-book-btn {
    display: block;
    margin: 20px auto;
    width: 60%;
    text-align: center;
  }

  .mobile-book-btn a {
    background-color: var(--main);
    color: var(--bavk);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: background-color 0.3s;
    box-shadow: 0 4px 15px rgba(189, 8, 40, 0.4);
  }

  .mobile-book-btn a:hover {
    background-color: #7d061c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(189, 8, 40, 0.6);
  }
}




