* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #E1F7F5;
}

.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    background-color: #0E46A3;
}

.logo img {
    width: 30px;
    margin-left: 10px;
}

.footer-logo img {
  margin-bottom: 5px;
    height: 30px;   
}



.nav-links {
    display: flex;
    list-style: none;
    margin-left: 0px;
 
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}
/* Nav links for mobile */
@media screen and (max-width: 768px) {
    .nav-links {
        display: flex;          /* hide by default */
        flex-direction: column;
        position: absolute;
        background-color: #333;
        top: 70px;              /* adjust for navbar height */
        left: 0;
        width: 100%;
        text-align: center;
        z-index: 100;
    }
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: #333;
        top: 70px;
        left: 0;
        width: 100%;
        text-align: center;
        z-index:10;
    }
    
    .nav-links.active {
        display: flex;          /* show when hamburger clicked */
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 4px;
    transition: all 0.3s ease-in-out; /* Smooth transition */
}

/* Hamburger Animation */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


    .nav-links.active {
        display: flex;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        z-index:100;
        text-align: center;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }
}

.background-image-section {
    height: 400px;
    background-image: url(../images/Contact2.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index:11;
}

body.tour1 .background1 {
   height: 400px;
    background-image: url(../images/Mango.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index:11;
 
}
body.tour2 .background2 {
   height: 400px;
    background-image: url(../images/ANMR0112\(2\).jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index:11;
 
}
body.tour3 .background3 {
   height: 400px;
    background-image: url(../images/20250721_152633.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index:11;
 
}



.content {
    padding-left: 100px;
    padding-right: 100px;
}

h1, h2 {
    margin-bottom: 10px;
}



.book-now-button {
    background-color: #FF5722;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.book-now-button:hover {
    background-color: #E64A19;
}

.content {
    padding: 50px; /* Add padding for better spacing */
    background-color: #E1F7F5; /* Light background color for contrast */
    color: #333; /* Darker color for text */
    text-align: justify; /* Justify the paragraph text */
    font-size: 18px; /* Increase the font size for readability */
    line-height: 1.6; /* Adjust line spacing */
    border-radius: 10px; /* Optional: Rounded corners for better design */
    box-shadow: 0px 4px 8px #E1F7F5(0, 0, 0, 0.1); /* Optional: Subtle shadow for depth */
}

.content h2 {
    font-size: 24px; /* Increase heading size */
    color: #0E46A3; /* Matching the navbar color */
    margin-bottom: 15px; /* Spacing below the heading */
}

.content p {
    font-size: 18px; /* Ensure paragraph size matches content size */
    color: #444; /* Slightly darker color for better contrast */
    margin-bottom: 15px;
}



















.background-image-section1 {
    height: 200px;
    background-image: url('map-roatan-area.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index:11;
}
.price-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffffee;
    padding: 15px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-size: 1.1rem;
    font-weight: bold;
    z-index: 20;
    text-align: center;
}

.individual-price-box {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    font-size: 1rem;
    z-index: 5;
}

.large-shape {
    position: relative; /* Needed for absolute positioning inside */
    margin-top: 0px;    /* Optional: create space above for price box */
    margin-bottom: -50px; 
}
.small-shape {
    position: relative; /* Needed for absolute positioning inside */
    margin-top: 0px;   
    margin-bottom: -15px; /* or 0 if you want no margin */
}



.shape-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 55px auto;
    padding: 0 20px;
    max-width: 1200px;
}

.cool-shape {
    background: linear-gradient(135deg, #4fc3f7, #0288d1);
    color: rgb(0, 0, 0);
    border-radius: 30px;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cool-shape:hover {
    transform: scale(1.05);
}

.shape-content h2, .shape-content h3 {
    margin-bottom: 10px;
}

.shape-content p {
    opacity: 0.9;
    font-size: 1rem;
}

/* Sizes */
.small-shape {
    flex: 1;
    min-width: 200px;
    max-width: 500px;
}

.large-shape {
    flex: 1.2;
    min-width: 250px;
    max-width: 500px;
    padding: 40px 25px;
}



header
{
    position: sticky;
    top:0;
    left:0;
    z-index:999;
}




.services-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background-color: #f9f9f900;
}

.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  margin: 1rem;
  font-size: 1.25rem;
  color: #333;
}

.service-card p {
  margin: 0 1rem 1rem;
  color: #666;
  font-size: 0.95rem;
}

.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid #eee;
  background-color: #fafafa;
}

.price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #1e90ff;
}

.learn-more {
  background-color: #1e90ff;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
   font-size: 0.9rem;
}

.learn-more:hover {
  background-color: #0077cc;
}
#shadow {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.47);
}
 h3{text-align: center;}

 h1{text-align: center; padding-top: 15px;}
 
 .service-all {background-color: #d0faf6;}

 html {
  scroll-behavior: smooth;
}



.content,
.images1,
iframe,
#important,
section,
.overview {
  margin-bottom: 0px !important;  /* or smaller value */
  padding-bottom: 20px !important;
}


footer {
  margin-top: 5px !important; /* shrink space above footer */
}

.footer {
  background-color: #000000;
  color: #eee;
  padding: 10px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 30px;
 width:100%;
  margin: auto;
}



.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer h4 {
  margin-bottom: 10px;
}

.footer p, .footer a {
  font-size: 12px;
}
footer{
 padding-top: 110px;
    top: auto;
    width: 100%;
}







#important{
    margin-bottom: 1px;
}
strong{
    color:rgb(158, 5, 5);
}








.image-slider {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px;
}

.image-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.image-slider .slide.active {
    opacity: 1;
}








 /* Banner */
    .contact-banner {
      width: 100%;
      padding: 40px 0;
      background:url(../images/Contact2.jpg) center/cover no-repeat;
      color: white;
      font-size: 2.5rem;
      font-weight: bold;
      text-align: center;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
      margin-bottom: 40px;
      height: 20vh;
    }

    /* Container for all contact items */
    .contact-container {
      max-width: 900px;
      margin: 0 auto 60px auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 100px);
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    /* Place the middle item in the center bottom row */
    .contact-item.middle {
      grid-column: 2 / 3;
      grid-row: 2 / 3;
    }

    /* Each contact item box */
    .contact-item {
      background: #f7f7f7;
      border-radius: 12px;
      width: 260px;
      display: flex;
      align-items: center;
      padding: 15px 25px;
      box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .contact-item:hover {
      background: #e0f0ff;
    }

    /* Icon on left */
    .contact-icon {
      color: #007bff;
      font-size: 1.8rem;
      width: 30px;
      text-align: center;
      margin-right: 20px;
      flex-shrink: 0;
    }

    /* Text in center */
    .contact-text {
      flex-grow: 1;
      font-size: 1.1rem;
      font-weight: 600;
      color: #333;
    }

    /* Arrow on right */
    .contact-arrow {
      color: #666;
      font-size: 1.2rem;
      margin-left: 20px;
      flex-shrink: 0;
      transition: color 0.3s ease;
    }
    .contact-item:hover .contact-arrow {
      color: #007bff;
    }

    /* Responsive - stack all on small */
    @media (max-width: 620px) {
      .contact-container {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
      .contact-item,
      .contact-item.middle {
        grid-column: auto;
        grid-row: auto;
        width: 90%;
        max-width: 400px;
        margin-bottom: 15px;
      }
    }
    iframe{
        margin-bottom: 70px;
    }





/* Gallery Grid */


.images1 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 12px;

  /* prevent overflowing on smaller devices */
  overflow: hidden;
}

.images1 img {
  width: 100%;
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 4px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

/* optional: make it responsive */
@media (max-width: 600px) {
  .images1 {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    padding: 10px;
    margin: 10px;
  }

  .images1 img {
    height: 150px;
  }
}


.images1 img:hover {
  transform: scale(1.05);
}

/* Lightbox Overlay */
.lightbox {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255,255,255,0.5);
}

/* Close button */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  user-select: none;
}
