* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica;
}

@font-face {
  font-family: Helvetica;
  src: url(Helvetica.otf);
}

body {
  font-size: 16px;
  background: linear-gradient(to right, #e0f7fa, #b2ebf2);
  font-family: "Open Sans", sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #333;
}

h1,
h2,
h3 {
  position: relative;
  z-index: 999;
}

.mb {
  margin-bottom: 20px !important;
}

h1 {
  font-size: 54px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 26px;
  color: #2467e4;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

a {
  text-decoration: none;
}

p {
  color: #303030;
}

.container {
  max-width: 95%;
  margin: 0 auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.flex-end {
  align-items: flex-end;
}

.flex-start {
  align-items: flex-start;
}

.text-center {
  text-align: center;
}

.section-gap {
  padding: 50px 0;
}

.col-33 {
  width: 32.33%;
}

.col-25 {
  width: 24%;
}

.col-50 {
  width: 49%;
}

.col-51 {
  width: 49%;
}

.col-40 {
  width: 39%;
}

.col-60 {
  width: 59%;
}

/* General Styling */

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  color: #333;
  line-height: 1.2;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.btn-primary {
  background-color: #70b343;
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background-color: #5a9136;
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: #70b343;
  border: 2px solid #70b343;
  padding: 8px 18px;
}

.btn-secondary:hover {
  background-color: #70b343;
  color: #fff;
  text-decoration: none;
}
.about-left-img {
  height: 600px;
}
/* Header/Hero Section */
.hero {
  background: linear-gradient(rgba(25, 37, 24, 0.6), rgba(25, 37, 24, 0.6)),
    url("images/hike.jpg");
  color: #fff;
  text-align: center;
  padding: 180px 0;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero > * {
  /* Ensure content is above the overlay */
  position: relative;
  z-index: 2;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 3;
  background: #fffaee;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5em;
  color: #00004c;
  text-align: left;
}
.logo a {
  color: #00004c;
}
.footer-joa-top .logo a {
  color: #fff;
}
.nav-links li {
  margin-left: 30px;
}
.nav-links a {
  color: #00004c;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links .btn-secondary {
  color: #00004c;
  border-color: #00004c;
  border-radius: 40px;
}

.nav-links .btn-secondary:hover {
  background-color: #fff;
  color: #00004c;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 50px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
}

.hero-content p {
  color: #e0e0e0;
  margin-bottom: 40px;
  font-size: 1.1em;
}

/* About Section */

.about h2 {
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.about h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #70b343;
}

.about p {
  font-size: 1.05em;
  text-align: left;
}

/* Products Section */
.products {
  background-color: #f9f9f9;
  text-align: center;
}

.products h2 {
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 10px;
}

.products h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #70b343;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 400px; /* Fixed height for product images */
  object-fit: cover;
  display: block;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.product-card h3 {
  margin: 20px 20px 10px 20px;
  color: #70b343;
  font-size: 1.5em;
}

.product-card h4 {
  margin: 0 20px 15px 20px;
  color: #666;
  font-size: 1.1em;
  font-weight: 400;
}

.product-card ul {
  margin: 0 20px 20px 20px;
  list-style: disc inside;
  color: #555;
  flex-grow: 1; /* Allow ul to take available space */
}

.product-card ul li {
  margin-bottom: 8px;
  font-size: 0.95em;
  list-style: none;
}

.product-card ul li span {
  font-weight: 600;
  color: #333;
}

.product-card .btn-secondary {
  margin: 0 20px 20px 20px;
  align-self: flex-start; /* Align button to the left */
}

/* CTA Section */
.cta {
  text-align: center;
}

.cta .col-50 {
  font-size: 20px;
  margin-bottom: 1.5em;
  color: #555;
  text-align: left;
}

/* Contact Form Section */
.contact-form-section {
  background-color: #f0f0f0;
}

.contact-form-section h2 {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.contact-form-section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #70b343;
}

.contact-form-section form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-group {
  flex-grow: 1;
}

.form-group input[type="text"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  outline: none;
}

.form-group input[type="text"]::placeholder {
  color: #888;
}

.contact-form-section .btn-primary {
  padding: 12px 30px;
  white-space: nowrap; /* Prevent button text from wrapping */
}

.form-note {
  font-size: 0.9em;
  color: #777;
}

.form-note a {
  color: #70b343;
}

.contact-section .contact-card {
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 30px 40px;
  width: 100%;
}

.contact-section .contact-card h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-size: 24px;
}

.contact-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-section .contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-section .contact-form label {
  font-weight: 500;
  color: #444;
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-section .contact-form input,
.contact-section .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-section .contact-form input:focus,
.contact-section .contact-form textarea:focus {
  border-color: #5a9136;
  box-shadow: 0 0 5px rgba(109, 40, 217, 0.3);
  outline: none;
}

.contact-section .contact-form textarea {
  resize: none;
  min-height: 100px;
}

.contact-section .contact-form button {
  background: #5a9136;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-section .contact-form button:hover {
  background: #4f46e5;
}

/* Footer Image */
.footer-image {
  width: 100%;
  overflow: hidden; /* Ensures image doesn't overflow container */
  height: 600px;
  margin-bottom: 70px;
}

.footer-image img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove extra space below image */
  object-fit: cover;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Footer */
.footer {
  background-color: #70b343; /* Light green background */
  color: #555;
  padding: 30px 0;
  text-align: center;
  font-size: 0.9em;
  /* position: fixed; */
  bottom: 0;
  right: 0;
  width: 100%;
  border: 3px solid #73ad21;
  z-index: 999;
}

.footer-links {
  gap: 25px;
  text-align: left;
}
.footer-quick-links {
  padding-left: 60px;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #fff;

  font-weight: 600;
  font-size: 18px;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: none;
}
.footer-joa-top h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;

  text-align: left;
}
.footer-joa-top .col-33 p {
  text-align: left;
  font-size: 18px;
  color: #fff;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 2em;
  }
  h3 {
    font-size: 1.6em;
  }

  .nav-links {
    display: none; /* Hide nav links for smaller screens */
  }

  .hero-content {
    padding: 20px;
  }

  .product-grid {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%; /* Make cards take more width on smaller screens */
    max-width: 450px; /* Limit max width of cards */
  }

  .contact-form-section form {
    flex-direction: column;
    gap: 10px;
  }

  .contact-form-section .btn-primary {
    width: 100%;
    max-width: 200px; /* Limit button width */
  }
}

@media (max-width: 768px) {
  .nav-links.col-33 {
    width: 200px;
  }
  .hero {
    padding: 80px 0 60px 0;
  }

  .hero-content h1 {
    font-size: 2em;
  }

  .hero-content p {
    font-size: 1em;
  }

  .about,
  .products,
  .cta,
  .contact-form-section {
    padding: 60px 0;
  }

  .footer-links {
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.8em;
  }
  h3 {
    font-size: 1.4em;
  }

  .hero {
    padding: 85px 0 0px 0;
  }

  .hero-content p {
    font-size: 0.95em;
  }

  .logo {
    font-size: 1.3em;
    text-align: center;
  }
  .navbar {
    padding: 10px 0;
  }
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #00004c;
}
.logo.col-50 {
  text-align: left;
}
.phone-view-top-head {
  display: none;
}

.privacy-policy-head ul {
  padding-left: 20px;
}

.privacy-policy-head ul li {
  margin-bottom: 10px;
  list-style: disc;
}

@media (max-width: 767px) {
  .btn.btn-secondary {
    border: none;
    padding: 0;
  }

  .nav-links li {
    margin-left: 00px;
    margin-bottom: 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 0;
    background: #fffaee;
    width: 200px;
    padding: 15px;
    border-radius: 0px;
    gap: 15px;
    z-index: 9999;
    width: 100%;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
  /* .footer-links {
    flex-direction: row;
    gap: 15px;
  } */
  .footer-links a {
    font-size: 17px;
  }
  .hero-content {
    padding-top: 90px;
  }
  .product-card {
    width: 100%;
    margin-bottom: 10px;
  }
  .cta .col-50 {
    font-size: 16px;
    margin-bottom: 1.5em;
    color: #555;
  }
  .about,
  .products,
  .cta,
  .contact-form-section {
    padding: 30px 0;
  }
  .footer {
    padding: 20px 0;
  }
  .col-50 {
    width: 100%;
  }
  .col-25 {
    width: 100%;
  }

  .joaquin-top.container.section-gap.text-center {
    padding: 0 0;
  }
  .about-img-right {
    padding: 50px 10px !important;
  }
  .footer-image.section-gap.container {
    padding: 0 0;
  }
  .nav-links.col-50.flex {
    width: 49%;
  }
  .logo.col-50 {
    width: 49%;
  }
  .footer-quick-links {
    padding-left: 0px;
    margin: 15px 0;
  }
  .col-33 {
    width: 100%;
  }
  .footer-joa-top h3 {
    text-align: center;
  }
  .footer-joa-top .col-33 p {
    text-align: center;
  }
  .section-gap {
    padding: 25px 0;
  }
  /* .hero-content {
    display: none;
  } */
  /* .phone-view-top-head {
    display: block;
  } */
  .about-img-right-contact {
    margin-bottom: 10px;
  }
}

/* popup css  */
.booking-section-top-head {
  background: url("images/plane-seat.jpg") no-repeat center center;
  background-size: cover;
  height: 550px;
}

.booking-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  /* border-radius: 15px; */
  /* margin: 20px; */
  height: 100%;
}

.agent-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #004d40;
  margin-bottom: 10px;
}

.available {
  color: #00ff00;
  font-size: 14px;
  margin-bottom: 5px;
}

.booking-section h2 {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}

.booking-section p {
  color: #fff;
  font-weight: bold;
  margin: 5px 0 15px 0;
  font-size: 16px;
}

.stars {
  color: gold;
  font-size: 20px;
  margin-bottom: 15px;
}

.call-btn-pop {
  background: #e31b23;
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px;
}
.call-btn-pop a {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}
.call-btn-pop a i {
  font-size: 15px;
}
.call-btn-pop:hover {
  background: #ff3a3a;
}

.no-wait {
  color: #00ff00;
  font-size: 14px;
}
.booking-section-top-head .extra-line {
  font-size: 17px;
  color: #fff;
  margin: 2px 0;
}
@media (max-width: 480px) {
  /* .booking-section {
    padding: 15px;
    margin: 15px;
  } */

  .booking-section h2 {
    font-size: 16px;
  }

  .booking-section p {
    font-size: 14px;
  }

  .stars {
    font-size: 18px;
  }

  .call-btn {
    font-size: 14px;
  }
  .infant-services .tagline {
    font-size: 16px;
  }
}
.general-terms-head {
  margin: 15px 0;
}
.joa-footer-disc {
  border-top: 1px solid #fff;
  padding: 10px 0;
  margin: 10px;
  color: #fff;

  text-align: left;
  font-size: 16px;
}
.footer-no {
  margin-top: 10px;
}
.footer-no a {
  color: #fff;
}

/* sadsad */
#website-ad-section img {
  width: 100%;
}

#mobileView {
  display: none;
}

@media (max-width: 767px) {
  #mobileView {
    display: block;
  }

  #desktopView {
    display: none;
  }
}
