
body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #fff;
  background-color: #f4fcff;
}

section {
  padding: 45px 20px;
  text-align: center;
}

a {
  text-decoration: none;
}

/*---------------------------------------- Navbar  css----------------------------------------------*/
.navbar {
background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  padding: 15px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  height: 70px;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.navbar .logo {
  height: 40px;
  /* width:100px; */
}

.navbar .toggle-btn {
  font-size: 30px;
  cursor: pointer;
  display: none;
  color: white;
  margin-right: 15px;
}

.nav-items {
  list-style: none;
  padding: 0;
  margin-right: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-items li {
  margin-left: 20px;
}

.nav-items a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  position: relative;
}

.nav-items a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #fff;
  bottom: -4px;
  left: 0;
  transition: 0.3s ease-in-out;
}

.nav-items a:hover::after {
  width: 100%;
}
.navbar.scrolled {
  background-color: #000;;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); 
  color:#fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid #ccc; 
}

/* ------------------------------------Sidebar css----------------------------------------------- */
.sidebar {
  height: 100%;
  width: 250px;
  position: fixed;
  top: 0;
  right: -250px;
  background-color: #333;
  color: white;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 1000;
}

.sidebar.open {
  right: 0;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 15px;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
}

.close-btn {
  font-size: 30px;
  position: absolute;
  top: 10px;
  left: 15px;
  color: #fff !important;
  cursor: pointer;
}
.sidebar .stay-in-touch,
.sidebar .adventure-goa {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar .stay-in-touch h2,
.sidebar .adventure-goa h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #00a6ff;
}

.sidebar .stay-in-touch p,
.sidebar .adventure-goa p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}
/* Social Icons container */
.sidebar .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Social icons styling */
.sidebar .social-icons a {
  font-size: 2.3rem;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect for icons */
.sidebar .social-icons a:hover {
  color: #00a6ff;
  transform: scale(1.2);
}

/* ----------------------------------------------Home Section css start --------------------------------------- */
#home {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
}
.video-background {
  position: relative;   
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Video should be at the bottom */
.video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

/* Poster image above video */
#video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Content on top of both */
.content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.content h1 {
  font-size: 2.5rem;
}

.content p {
  font-size: 1.4rem;
}

.btn {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 10px;
  background-color: #fff;
  border: none;
  cursor: pointer;
}
.btn:hover{
  background: #000;
  border:2px solid black;
  color:#fff;
}

/*-----------------------------------------About section css start----------------------------------------*/
#about{
  scroll-margin-top: 70px;
}
.about-section {
  display: flex;
  flex-wrap: wrap;
  padding:25px;
  background-color: #f4fcff;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
}

.about-images {
  position: relative;
  width: 600px;
  height: 450px;
  display: flex;
  opacity: 0; 
  animation: fadeInLeft 3s forwards; 
}

.left-image {
  width: 60%;
  height: 100%;
  position: relative;
  opacity: 0;  
  animation: fadeInLeft 3s forwards; 
}

.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.right-image {
  width: 40%;
  height: 50%;
  position: relative;
  margin-left: 20px;
  margin-top: 10px;
}

.right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.adventure-img {
  position: absolute;
  top:60%;
  bottom: -40px;
  left: 250px;
  width: 60%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  z-index: 3;
  background: #fff;
}

.about-text {
  max-width: 500px;
  text-align: justify;
  opacity: 0; 
  animation: fadeInRight 3s forwards 0.4s; 
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #004f63;
}

.about-text p {
  font-size: 1.1rem;
  padding-top: 10px;
  line-height: 1.6;
  color: #333;
}

/* --------------------------------Animation---------------------------------- */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* animation for video  */
@keyframes revealClip {
  0% {
    clip-path: circle(9.4% at 0 52%);
  }
  100% {
    clip-path: circle(73.0% at 50% 53%);
  }
}

.clip-animate {
  animation: revealClip 0.8s ease forwards;
}

html {
  scroll-behavior: smooth;
}

.things-to-do {
  padding: 50px 20px;
  text-align: center;
  margin-top: 170px;
}

.things-to-do h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #222;
}

.activities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.activity-card {
  width: 120px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.activity-card:hover {
  transform: scale(1.05);
}

.activity-card img {
  width: 100%;
  border-radius: 15px;
  height: 100px;
  object-fit: cover;
}
.activity-card img:hover{
  transform: scale(1.1);
}
.activity-card p {
  margin-top: 10px;
  font-weight: 600;
  color: #333;
}


/* media query ----------------------------------------------------*/
@media (max-width: 768px) {
  #home{
    padding: 0;
  }
  .nav-items {
    display: none;
  }

  .navbar .toggle-btn {
    display: block;
  }

  .sidebar {
    right: -250px;
  }

  .sidebar.open {
    right: 0;
  }

  .sidebar ul li {
    padding: 20px;
    border-bottom: 1px solid #444;
  }

  .video-background video {
    height: 100vh;
  }

  .content {
    top: 50%;
  }
  .content h1 {
    font-size: 2rem; 
  }

  .content p {
    font-size: 1.2rem; 
  }

  .dots {
    margin-top: 10px;
    font-size: 2rem;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
  }

  .dot {
    font-size: 2.5rem;
    margin: 0 6px;
  }

  .about-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    margin-bottom: 2rem;
  }

  .about-images {
    width: 100%;
    max-width: 600px; 
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /* animation: none;  */
  }

  .left-image, .right-image {
    width: 90%;
    height: auto;
    margin: 0;
  }

  .left-image img, .right-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .adventure-img {
    position: static;
    width: 90%;
    height: auto;
    margin-top: 20px;
    transform: none;
  }

  .about-text {
    max-width: 100%;
    text-align: center;
    margin-top: 20px;
    text-align: justify;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
  }
  .things-to-do{
      padding-top: 0;        
      margin-top: 2.5rem;    
    }
}


/* media query for about styling------------------------------------- */
@media (max-width: 1100px) and (min-width: 769px) {
  .about-section {
    display: flex;
    flex-wrap: wrap;
    padding:20px;
    background-color: #f4fcff;
    align-items: center;
    justify-content: center;
    gap: 60px;
    position: relative;
  }
  
  .about-images {
    position: relative;
    width: 600px;
    height: 450px;
    display: flex;
  }
  
  .left-image {
    width: 60%;
    height: 100%;
    position: relative;
  }
  
  .left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .right-image {
    width: 40%;
    height: 50%;
    position: relative;
    margin-left: 20px;
    margin-top: 10px;
  }
  
  .right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .adventure-img {
    position: absolute;
    top:60%;
    bottom: -40px;
    left: 250px;
    width: 60%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    z-index: 3;
    background: #fff;
  }
  
  .about-text {
    margin-top: 110px;
    max-width: 500px;
  }
  
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #004f63;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
  }
}

/* contact us css start------------------------------- */
#contact-us {
  /* margin-top: 170px; */
  background-color: #f1f9ff;
  padding: 60px 20px;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.contact-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-image img {
  width: 100%;
  max-width: 600px;
  /* border-radius: 12px; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  clip-path: circle(50% at 50% 50%);
  transition: all 0.3s ease;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.contact-form h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #007bff;
  text-align: left;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
}

.contact-form button {
  background-color: #007bff;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    text-align: center;
  }

  .contact-image img {
    max-width: 90%;
    clip-path: none;
    border-radius: 12px;
  }

  .contact-form {
    width: 100%;
    padding: 10px;
  }

  .contact-form h2 {
    text-align: center;
  }
}

/* footer css----------------------------------------------- */
.glass-footer {
  position: relative;
  /* background: linear-gradient(to bottom right, #003b5b, #001c2b); */
  background: #000;
  color: white;
  padding: 60px 20px 30px;
  text-align: center;
}

footer h3{
  color:#fa692a;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  text-align: left;
  gap: 50px; /* increased from 30px to 50px for better spacing */
}

.footer-col.left {
  flex: 1.3; 
  min-width: 180px; 
}

.footer-col.middle{
  flex: 1.3; 
}
.footer-col.right{
  flex :1;
}

.footer-logo {
  width: 120px;
  margin-bottom: 20px;
}

.footer-links {
  font-size: 0.95em;
  margin-top: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00eaff;
}
.footer-contact {
  margin-top: 25px;
  font-size: 0.95em;
}

.footer-contact p {
  margin: 8px 0;
}

.footer-contact i {
  color: #00eaff;
  margin-right: 8px;
}

/* Cruise links list styling */
.footer-cruise-links {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.footer-cruise-links li {
  margin-top: 10px;
  margin-bottom: 10px;
  /* text-align: center; */
}

.footer-cruise-links a {
  color: white;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.3s ease;
}

.footer-cruise-links a:hover {
  color: #00eaff;
}


.footer-icons a {
  margin-right: 15px;
  font-size: 1.6rem;
  color: #ffffff;
  transition: 0.3s ease;
}

.footer-icons a:hover {
  color: #00eaff;
}

.footer-copy {
  margin-top: 20px;
  font-size: 0.95rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}
.footer-col.map-col h3 {
  margin-bottom: 10px;
}

.footer-col.map-col {
  padding-top: 20px;
  flex: 1;
  min-width: 220px;
}

.footer-col.map-col iframe {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  border: 0;
}

/* Smooth scrolling effect */
html {
  scroll-behavior: smooth;
}

.card-section h1 {
  font-size: 3.5rem !important;
  color: #000;
}
.card-section p {
  font-size: 1.8rem;
  color: #000;
}
.card-section h1, .card-section p {
  animation: fadeZoom 1.2s ease;
}

@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* WhatsApp floating button */
.whatsapp-float{
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;          /* distance from bottom */
  right: 25px;           /* distance from right  */
  background:#25D366;    /* WhatsApp green       */
  color:#fff;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:32px;
  z-index:9999;
  box-shadow:0 8px 15px rgba(0,0,0,.2);
  transition:transform .2s ease-in-out;
}
.whatsapp-float:hover{
  transform:scale(1.1);
}

/* Expanding ring pulse */
@keyframes wpPulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(1.8); opacity: 0;  }
  100% { transform: scale(2);   opacity: 0;  }
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: 0;                 
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: wpPulse 1.6s ease-out infinite;
  pointer-events: none;      
}


/* -----------------------------explore section css------------------------------ */
.carousel-section {
  padding: 40px;
  background-color: #f5fbff;
  text-align: center;
}

.carousel-section h2 {
  margin-bottom: 30px;
  font-size: 2.3rem;
  color: #004f63;
}

.mySwiper {
  width: 90%;
  padding-bottom: 40px;
}


.swiper-slide {
  display: flex;
  justify-content: center;
}

.card {
  margin-top: 20px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  width: 250px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  padding: 0;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.5rem;
  margin: 10px 0 5px;
  color: #000;
}

.card p {
  font-size: 1rem;
  color: #0F1E3C;
  padding: 0 10px 15px;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
@media (max-width: 480px) {
  .carousel-section{
    padding: 0;
  }
  .mySwiper {
    width: 100%;
  }

  
  .swiper-slide {
    justify-content: center;
  }

  .card {
    width: 180px; 
    height: auto;
  }

  .card img {
    height: 130px;
  }

  .card h3 {
    font-size: 1.2rem;
  }

  .card p {
    font-size: 0.80rem;
    padding: 0 8px 10px;
  }
}


/* ==================  SECTION WRAPPER  ================== */
.offers {
  padding: 40px 60px 60px;
  background: #f9f9f9;
  overflow-x: hidden;            
}

.offers__title {
  margin-bottom: 30px;
  font-size: 2.3rem;
  color: #004f63;
  text-align: center;
}


.offers__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  padding-bottom: 6px;
  justify-content: center;       
  scrollbar-width: none;
}
.offers__track::-webkit-scrollbar { display: none; }

/* Tablet and above */
@media (min-width: 700px) {
  .offers__track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content: center;     
    gap: 20px 16px;             
    overflow: visible;
    max-width: 1100px;
    padding-left: 70px;
    margin: 0 auto;             
  }
}

/* --------------  Desktop   -------------- */
@media (min-width: 1024px) {
  .offers__track {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==================  CARD  ================== */

.offer {
  flex: 0 0 auto;
  width: 300px;
  max-width: 460px;
  min-height: 350px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 600px) {
  .offer {
    flex: initial;
  }
}
@media (min-width: 550px) {
  .offer {
    width: 300px;
  }
}

@media (min-width: 768px) {
  .offer {
    width: 320px;
  }
}
.offer:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
}

/* ----------------  IMAGE ON TOP  ---------------- */
.offer__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.offer:hover .offer__img {
  transform: scale(1.05);
}

/* ----------------  TEXT AT BOTTOM  ---------------- */
.offer__copy {
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #222;
}
.price {
  margin: 0;
  font-size: 1rem;
  color: #000;
}
.offer__copy h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.offer span{
  color: red;
  font-weight: 600;
}
.btn1 {
  align-self: center;
  padding: 8px 20px;
  font: 600 0.95rem "Poppins", sans-serif;
  color: #fff;
  background: #25D366;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn1:hover {
  background:#25D366 ;
}
.btn1:active {
  transform: scale(0.97);
}
.btn1:focus-visible {
  outline: 2px solid #ffe600;
  outline-offset: 2px;
}
@media (max-width: 585px) {
  .offers__track {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  .offer {
    flex: 1 0 auto;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .offer__img {
    height: 220px;
  }

  .offer__copy h3 {
    font-size: 1.05rem;
  }

  .btn1 {
    font-size: 0.85rem;
    padding: 7px 18px;
  }
}
/* Put this after your other styles */
.mySwiper .swiper-slide,
.offersSwiper .swiper-slide {
  padding-inline: 2px;           
}

.offer {
  flex: 0 0 220px;              
}

/* Shrink nicely on phones */
@media (max-width: 480px) {
  .offers{
    padding: 0;
  }
  .offer { 
    min-height: 300px;
  }    
  .offer__img { height: 200px; } 


}
@media (max-width: 480px) {
  .offers {
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 0;
  }

  .carousel-section {
    padding-top: 0;
    margin-top: 0;
    padding-bottom: 0;
  }

  .offers__title, .carousel-section h2 {
    margin-bottom: 12px;
    margin-top: 0;
  }

  section {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .footer-col {
    flex: unset;
    width: 100%;
  }

  .footer-col.left,
  .footer-col.middle,
  .footer-col.right {
    min-width: 100%;
  }

  .footer-cruise-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-cruise-links li {
    margin: 5px 0;
    width: 45%;
    text-align: center;
  }

  .footer-icons {
    margin-top: 15px;
  }

  .footer-col.map-col iframe {
    height: 180px;
  }

  .footer-contact {
    margin-top: 15px;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }
}



