/* ==========================
   Global Reset & Base Styles
   ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    flex: 1 1 50%;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================
   Header
   ========================== */
.header {
    position: absolute;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    z-index: 999;
}

.header.sticky {
    position: sticky;
    top: 0;
    background-color: #003049;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    display: flex;

    animation-name: logo_spin;
    animation-duration:3s;
    animation-timing-function: ease-in-out;
    animation-delay: 1s;
    animation-iteration-count: 2;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-play-state: running;
}

.logo:hover {
    animation-play-state: paused;
}

.logo img {
    height: 110px;
}
/*Logo Spin Animation*/
@keyframes logo_spin {
    0%{

    }
    50%{
        scale: 1.5;
        transform: rotate(0);
        border-radius: 0;
    }
    100%{
        transform: rotate(360deg);
        border-radius: 52;
        scale: 2;
    }
}

/* Navbar */
.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li {
    margin-left: 25px;
}

.navbar ul li a {
    color: #fff;
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    color: #00aaff;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* ==========================
   Hero Section
   ========================== */
.hero {
    height: 100vh;
    background: url('../images/beach_1.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-content .small-text {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00aaff;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
}

/* Button Primary */
.btn-primary {
    background-color: #00aaff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #fff;
     color: #00aaff;
    transform: translateY(-5px) scale(1.05);
}

/* ==========================
   Tours Section
   ========================== */
.tours {
    padding: 80px 0 40px;
    text-align: center;
}

.tours h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tour-card {
    background: #f8f8f8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.tour-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tour-card h3 {
    font-size: 22px;
    margin: 15px;
}

.tour-card p {
    font-size: 16px;
    padding: 0 15px 20px;
}

.tour-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

/* ==========================
   Testimonials Section
   ========================== */
.testimonials {
    padding: 60px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.testimonial-card {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 15px;
    background: #f2f2f2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.testimonial-card p {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    font-weight: bold;
}



/* ==========================
        Gallery Section
   ========================== */
.slider {
    width: 100%;
    height: var(--height);
    overflow: hidden;
    position: relative;
}

.slider .list {
    display: flex;

}

.slider .list .item {
    width: var(--width);
    height: var(--height);
}




/* ==========================
   Call to Action Section
   ========================== */
.cta {
    background: #00aaff;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 50px auto;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta .btn-primary {
    background: #fff;
    color: #00aaff;
    font-weight: bold;
}

.cta .btn-primary:hover {
    background: #f0f0f0;
}

/* ==========================
   Footer
   ========================== */
.footer {
    background: #222;
    color: #bbb;
    text-align: center;
    padding: 30px 20px;
}

.footer .social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.footer .social-icons img {
    width: 28px;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.footer .social-icons img:hover {
    transform: scale(1.3) rotate(5deg);
}


.custom-tooltip {
    position: relative;
    cursor: pointer;
    display: inline-block;
  }
  
  .custom-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%; /* Tooltip above the element */
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
    font-size: 14px;
  }
  
  .custom-tooltip:hover::after,
  .custom-tooltip:focus::after {
    opacity: 1;
    visibility: visible;
  }
  

/* ==========================
   Scroll To Top Button
   ========================== */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #00aaff;
    color: white;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollToTopBtn:hover {
    background-color: #008ecc;
}

/* ==========================
   Activities Section (Updated)
   ========================== */
.activities {
    padding: 80px 0;
    text-align: center;
}

.activities h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.activity-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

/* Dark transparent overlay */
.activity-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    z-index: 0;
}

/* Text above overlay */
.activity-card h3,
.activity-card p,
.activity-card .feature {
    position: relative;
    z-index: 1;
}

.activity-card:hover {
    transform: scale(1.05);
}

.activity-card h3{
     color: #DAF1DE;
     padding: auto;
}

.activity-card P{
    color: #DAF1DE;
}

.feature {
    color: #D5DDDF;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}


/* Different background images per card */
.grid .activity-card:nth-child(1) {
    background-image: url('../images/snorkelling_1.jpg');
}

.grid .activity-card:nth-child(2) {
    background-image: url('../images/village_2.jpg');
}

.grid .activity-card:nth-child(3) {
    background-image: url('../images/znz_food_1.jpg');
}
/* Other Activity cards
.grid .activity-card:nth-child(4) {
    background-image: url('../images/woman_1.jpg');
}
*/


/* ==========================
   About Us section
   ==========================*/
.about-us {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    flex-wrap: wrap;
    min-height: 350px;
}

.abt_text {
    width: 55%;
}

.abt_text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.abt_text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    text-align: left;
}

.abt_text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

/* Image Slider Container */
.abt_image {
    width: 40%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 450px;  /* Height of the container */
    min-height: 450px;  /* Ensures the container has a minimum height */
}

.abt_image:hover {
    transform: scale(1.05);
    transition: ease;
}

@keyframes hover_scale {
   0%{

   } 
   50%{

   }
   100%{
    
   }
}


/* Images inside slider */
.abt_image .slide-track img {
    position: absolute;
    width: 100%;
    height: 100%;  /* Ensure the image covers the full container */
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover;  /* Ensures the image covers the entire container while maintaining aspect ratio */
    border-radius: 8px;
}

/* Active image */
.abt_image .slide-track img.active {
    opacity: 1;
    z-index: 1;
}


/*Our Mission & Values*/
.mission-section {
  padding: 4rem 0;
}

.mission-content {
  display: flex;
  align-items: stretch; /* key to equal height columns */
  justify-content: space-between;
  gap: 2rem;
}

.mission-text,
.mission-image {
  flex: 1 1 50%;
}

.mission-text {
    text-align: right; 
    justify-content: right;
    justify-items: right;
}

.mission-text p {
    justify-content: right;
    justify-items: right;
    text-align: right justify-all;
}

.mission-image {
  display: flex;
  align-items: stretch;
}

.mission-image .slide-track {
  width: 100%;
  object-fit: cover;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.mission-image img {
  height: 100%;
  width: auto;
  object-fit: cover;
}


/*Mission & Values*/
.values_cards_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  margin-top: 2rem;
}

.value_card {
  background-color: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  text-align: center;
  flex: 1 1 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value_card i {
  font-size: 2.2rem;
  color: goldenrod; /* Or replace #00aaff*/
  margin-bottom: 0.8rem;
}

.value_card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.value_card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Hover effect for value cards */
.value_card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}



/* Activities Slider */
.activities-image-slider {
    height: 100vh;
    margin-top: 2px;
    position: relative;
}

.activities-image-slider .activity-list .activity-item {
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;
}

.activities-image-slider .activity-list .activity-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activities-image-slider .activity-list .activity-item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #000 40%, transparent
    );   
}

.activities-image-slider .activity-list .activity-item .activity-content {
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
    color: #bbb;
}
.activities-image-slider .activity-list .activity-item .activity-content p:nth-child(1) {
    text-transform: uppercase;
    letter-spacing: 10px;

}
.activities-image-slider .activity-list .activity-item .activity-content h2 {
    font-size: 400%;
    margin: 0;
    text-align: left;
    color: #fff;
    
}
.activities-image-slider .activity-list .activity-item .activity-content p {
    color: #DAF1DE;
}
.activities-image-slider .activity-list .activity-item.active {
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to {
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
    
}
.activities-image-slider .activity-list .activity-item.active p:nth-child(1),
.activities-image-slider .activity-list .activity-item.active h2,
.activities-image-slider .activity-list .activity-item.active p:nth-child(3) {
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.activities-image-slider .activity-list .activity-item.active h2 {
    animation-delay: 1s;
}
.activities-image-slider .activity-list .activity-item.active p:nth-child(3) {
    animation-delay: 1.3s;
}

/*Activites Arrows*/
.activities-arrows {
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}
.activities-arrows button {
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}
.activities-arrows button:hover {
    background-color: #eee;
    color: black;
}

/* Activities Thumbnail */
.activities-thumbnail {
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}
.activities-thumbnail::-webkit-scrollbar {
    width: 0;
}
.activities-thumbnail .activities-thumbnail-item {
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
}
.activities-thumbnail .activities-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.activities-thumbnail .activities-thumbnail-item.active {
    filter: brightness(1.1);
}
.activities-thumbnail .activities-thumbnail-item .content {
    position: absolute;
    inset: auto 10px 10px 10px;
    color: #fff;
}
@media screen and (max-widht: 678px) {
    .activities-thumbnail {
        justify-content: start;
    }
    .activities-thumbnail .activities-thumbnail-item .content h2 {
        font-size: 60px;

    }
    .activities-arrows {
        top: 5%;
    }

    
}

/* Testimonials Section*/
.testimonials-section {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    text-align: center;
}

.testimonials-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00aaff;
}

.testimonials-section h2 {
    position: relative;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #333;
}

.testimonials-section h2::after {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 2px;
    width: 5rem;
    background-color: #00aaff;
}

.testimonials-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonials-section-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 5rem 2rem 2rem;
    background-color: 5px;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgb(0, 0, 0, .1);
    transition: 0.3s;
}

.testimonials-section-card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 75%;
    aspect-ratio: 1;
    border-radius: 100%;
    background-color: #00aaff;
    z-index: -1;
    transition: 0.5s;
}

.testimonials-section-card span {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
    font-size: 3rem;
    color: white;
}

.testimonials-section-card h4 {
    margin-top: 4rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #00aaff;
    transition: 0.3s;
}

.testimonials-section-card p {
    margin-top: 2rem;
    color: #666;
    transition: 0.3s;
}

.testimonials-section-card img {
    display: block;
    margin: 0 auto 1rem;
    max-width: 100px;
    border-radius: 100%;
    border: 2px solid #00aaff;
    transition: 0.3s;
    height: 100px;
    width: 100px;
    object-fit: cover;
}

.testimonials-section-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #00aaff;
    transition: 0.3s;
}

.testimonials-section-card h6 {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    transition: 0.3s;
}

.testimonials-section-card:hover::before {
    width: 400%;
}

.testimonials-section-card:hover :is(h4, h5) {
    color: white;
}

.testimonials-section-card:hover :is(p, h6) {
    color: #333;
}

.testimonials-section-card:hover img {
    border-color: white;
}
/*Radio Selector "Why choose Us"*/

.why-choose-us-main {
    background-color: #00aaff;
    width: 100%;
    height: 100%;
}

.radio-why-choose-us {
    display: none;
}

.container-why-choose-us {
    position: relative;
    max-width: 800px;
    margin: 5% auto;
}

.slider-why-choose-us{
    width: 100%;
    position: absolute;
    height: 0;
    padding-top: 56.25%;
    background: #111111;
    overflow: hidden;
    border: solid 1px none;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.slide-why-choose-us {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
   /* opacity: 0; */
}

.slide-why-choose-us img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: 1.3s;

}

.caption {
    position: absolute;
    width: 100%;
    left: 5%;
    top: -100%;
    color: #00aaff;
    font-weight: 900;
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: -5px;
    line-height: 50px;
    transition: 0.9s;
}

.caption span {
    display: block;
    text-transform: initial;
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    line-height: 15px;
}

.dots {
    width: 100%;
    position: absolute;
    bottom: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dots label {
    width: 15px;
    height: 15px;
    background: #fff;
    margin: 0 10px;
    border-radius: 50%;
    opacity: 0.3;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease-in-out, background-color 0.3s ease;
}

/* Hover effect to scale the dot */
.dots label:hover {
    opacity: 0.7;
    transform: scale(1.2); /* Slightly enlarge the dot on hover */
}

/* Hide all slides by default */
#slide-1, #slide-2, #slide-3, #slide-4 {
    opacity: 0;
    pointer-events: none; /* Prevent interaction with hidden slides */
    transition: opacity 0.5s ease, transform 0.5s ease-in-out;
}

/* Show the corresponding slide when the radio button is checked */
#radio-1:checked ~ #slide-1,
#radio-2:checked ~ #slide-2,
#radio-3:checked ~ #slide-3,
#radio-4:checked ~ #slide-4 {
    opacity: 1;
    pointer-events: auto; /* Allow interaction with the visible slide */
    transform: translateY(0); /* You can add this to make it slide in smoothly */
}
#radio-1:checked ~ #slide-1 img,
#radio-2:checked ~ #slide-2 img,
#radio-3:checked ~ #slide-3 img,
#radio-4:checked ~ #slide-4 img {
    transform: scale(1);
}
#radio-1:checked ~ #slide-1 .caption,
#radio-2:checked ~ #slide-2 .caption,
#radio-3:checked ~ #slide-3 .caption,
#radio-4:checked ~ #slide-4 .caption {
    opacity: 1;
    top: 7%;
    font-size: 50px;
}
#radio-1:checked ~ .dots #label-1,
#radio-2:checked ~ .dots #label-2,
#radio-3:checked ~ .dots #label-3,
#radio-4:checked ~ .dots #label-4 {
    background: #fff;
    opacity: 1;
}

/* Adjust label appearance when the radio button is checked */
#radio-1:checked ~ .dots label:nth-child(1),
#radio-2:checked ~ .dots label:nth-child(2),
#radio-3:checked ~ .dots label:nth-child(3),
#radio-4:checked ~ .dots label:nth-child(4) {
    background: #159efa; /* Active dot color */
    opacity: 1; /* Ensure the active dot is fully visible */
    transform: scale(1.2); /* Slightly enlarge the active dot */
}

/* Add subtle shadow to active dots */
#radio-1:checked ~ .dots label:nth-child(1),
#radio-2:checked ~ .dots label:nth-child(2),
#radio-3:checked ~ .dots label:nth-child(3),
#radio-4:checked ~ .dots label:nth-child(4) {
    box-shadow: 0 0 8px rgba(240, 192, 64, 0.8); /* Soft glow for active dots */
}

/* ==========================
   Gallerry Section
   ========================== */
   .gallery-section {
    width: 100%;
    height: 100vh;
    padding: 20px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-row: auto;
   }

   .grid-gallery {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    grid-auto-rows: 260px;
    grid-auto-flow: dense;
    grid-gap: 20px;
   }

   .grid-gallery-item {
    position: relative;
   }

   .grid-gallery-item .image {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid-gallery-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s;
    user-select: none;
}

.grid-gallery-item .image:hover img {
    transform: scale(1.4);
}

.grid-item-title {
    margin: -10px 25px;
    padding: 2px 6px;
    color: #DAF1DE;
    background-color: rgba(112, 112, 112, 0.6);
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
    position: absolute;
    white-space: nowrap;
    z-index: 9999;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-in-out, transform 1s ease-in-out;
}
/* Show the title on hover */
.grid-gallery-item:hover .grid-item-title {
    opacity: 1; /* Make visible */
    transform: translateY(0); /* Reset translation */
}
.grid-item-title.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ==========================
   Fishing Tours Section (Updated)
   ==========================

.fishing-tours {
    padding: 80px 0;
    text-align: center;
}

.fishing-tours h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.tour-summary,
.tour-inclusions,
.tour-types,
.best-time,
.popular-spots,
.pricing {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.tour-summary:hover,
.tour-inclusions:hover,
.tour-types:hover,
.best-time:hover,
.popular-spots:hover,
.pricing:hover {
transform: scale(1.05);
}

*/


/* ==========================
   Our Location Section
   ========================== */
.location-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5em;
    color: white;
    background-color: #00aaff;
}

.location-box {
    width: 900px;
}

.location-section .location-box h2 {
    justify-content: left;
    justify-items: left;
    text-align: left;
}

.location-section .location-box p {
    font-size: 1.2em;
}

.location-section .map {
    border-radius: 2em;
    border: none;
    width: 500px;
    height: 500px;
    transition: transform 0.5s ease-in-out;
    margin: 2em;
    opacity: 0.95;
    box-shadow: 0 4px 8px rgba(0, 2, 5, 0.1);
}
.location-section .map:hover {
    transform: scale(1.1);
    opacity: 1;
}



/* ==========================
   Contact Us Section
   ========================== */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    width: 100%;
    background: #00aaff;
    
}

.contact-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(#ffeb3b, #e91e63);
    border-radius: 50%;
    transform: translate(-420px, -180px);
}
.contact-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(#2196f3, #83d8ff);
    border-radius: 50%;
    transform: translate(400px, 180px);
}

.contact-form-container {
    position: relative;
    z-index: 1000;
    width: 100%;
    max-width: 1000px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(25px);
}
.contact-form-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: -40%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    transform: skewX(-15deg);
}

.contact-form-container h2 {
    width: 100%;
    text-align: center;
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-form-container .row100 {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
}

.contact-form-container .col {
    position: relative;
    width: 100%;
    padding: 0 10px;
    margin: 30px 0 20px;
}

.contact-form-container .row100 .col .inputBox {
    position: relative;
    width: 100%;
    height: 40px;
    color: white;
}

.contact-form-container .row100 .col input,
.contact-form-container .row100 .col textarea 
{
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    font-size: 15px;
    padding: 0 10px;
    z-index: 1;
    color: #000;
}

.contact-form-container .row100 .col .inputBox .span-text {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 40px;
    font-size: 18px;
    padding: 0 10px;
    display: block;
    transition: 0.5s;
    pointer-events: none;
}

.contact-form-container .row100 .col .inputBox input:focus + .span-text,
.contact-form-container .row100 .col .inputBox input:valid + .span-text, 
.contact-form-container .row100 .col .inputBox textarea:focus + .span-text,
.contact-form-container .row100 .col .inputBox textarea:valid + .span-text {   
    top: -35px;
    left: -10px;
}

.contact-form-container .row100 .col .inputBox .line {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    transition: 0.5s;
    border-radius: 2px;
    pointer-events: none;
}

.contact-form-container .row100 .col .inputBox input:focus ~ .line,
.contact-form-container .row100 .col .inputBox input:valid ~ .line {
    height: 100%;
}

.contact-form-container .row100 .col .inputBox.textarea {
    position: relative;
    width: 100%;
    height: 100px;
    padding: 10px 0;
}


.contact-form-container .row100 .col .inputBox textarea:focus ~ .line,
.contact-form-container .row100 .col .inputBox textarea:valid ~ .line {
    height: 100%;
}

.contact-form-container .row100 .col button[type="submit"] {
    border: none;
    background-color: white;
    color: #00aaff;
}

.contact-form-container .inputBox button[type="submit"]:hover {
   color: #008ecc;
}






/* ==========================
   Animation Classes
   ========================== */
@keyframes appear {
    from {
        opacity: 0;
       transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.block {
    animation: appear 5s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
   Responsive Design
   ========================== */

