:root {
    color-scheme: light;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f9f9f9 !important; /* Prevent dark mode auto-change */
    color: #000000 !important; /* Ensure text stays dark */
}

img, video, svg, iframe {
    filter: none !important; /* Prevent media from inverting in dark mode */
}

html {
  scroll-behavior: smooth;
}


/* =======================
   TOPBAR + LOGO
======================= */
.topbar {
  position: fixed; /* <-- Change this */
  top: 0;           /* <-- Add this */
  left: 0;          /* <-- Add this */
  width: 100%;      /* <-- Add this so it stretches full width */
  min-height: 70px;
  padding: 10px 20px;
  background: rgb(244, 250, 237);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 1001;
   border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 45px;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}



/* =======================
   HAMBURGER (Mobile Only)
======================= */
.hamburger {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: 0.3s;
}

.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);
}

/* =======================
   SIDEMENU (Mobile)
======================= */
.sidemenu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 220px;
  height: 100%;
  background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 100px 20px 20px; /* Increased top padding to push menus lower */
  transition: 0.3s ease;
  z-index: 1000;
}

.sidemenu.active {
  left: 0;
}

.sidemenu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidemenu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  transition: 0.3s;
}

.sidemenu ul li a:hover {
  color: #001eff;
}

.sidemenu .social-icons {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 10px; /* Adjust this to control vertical spacing */
  padding: 0 20px;   /* Only horizontal padding */
  margin-left: -19px;
}

.sidemenu .social-icons a i {
  font-size: 20px;   /* Slightly smaller icon */
  color: #000;
  transition: color 0.3s;
}

.sidemenu .social-icons a:hover i {
  color: rgb(72, 0, 255);
}




/* =======================
   OVERLAY (Mobile)
======================= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 900;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =======================
   DESKTOP NAVBAR
======================= */
.desktop-nav {
  display: none;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.desktop-nav li a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav li a:hover {
  color: #6eb3ca;
}

.desktop-nav .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 4px; /* 🔧 Adjust this value as needed */
}


.desktop-nav .social-icons {
  display: flex;
  align-items: center;  /* ⬅️ ensures vertical centering */
  gap: 12px;
}

.desktop-nav .social-icons a {
  display: flex;
  align-items: center;  /* ⬅️ vertically center each icon */
}

.desktop-nav .social-icons a img,
.desktop-nav .social-icons a i {
  width: 20px;
  height: 20px;
  color: #333;
}


/* =======================
   MEDIA QUERIES
======================= */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .sidemenu {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  .topbar {
    justify-content: space-between;
  }
}



.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slider .slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slider .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* overlay */
  z-index: 2;
}

.hero-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 0 20px;
}

/* Fade-in from bottom animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse effect for button after load */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Initial hidden state for load animation */
.hero-content h1,
.hero-content p,
.whatsapp-button {
  opacity: 0;
}

/* Animations on load */
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 400;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.whatsapp-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #25d366;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: background-color 0.3s ease;
  text-align: center;
  white-space: nowrap;
  animation: fadeInUp 1.2s ease forwards, pulse 2s infinite 1.4s;
  animation-delay: 0.5s, 1.4s; /* fade in first, then pulse */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-button {
    display: block;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    margin: 1.5rem auto 0 auto;
    max-width: fit-content;
  }
}

.whatsapp-button:hover {
  background-color: #1ebc57;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.4rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
}






.about-section {
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-section {
  scroll-margin-top: 70px; /* prevents heading from being hidden */
}


.about-text {
  max-width: 800px;
  text-align: center;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #1c1c1c;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
    text-align: justify;
}

/* About Section Scroll Animation */
.about-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}





/* Responsive */
@media (max-width: 768px) {
  .about-text h2 {
    font-size: 1.75rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}

.packages-section {
  padding: 50px 20px;
  text-align: center;
}

.packages-section {
  scroll-margin-top: 70px; /* match your fixed header height */
}



.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
  
}

.packages-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
    background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.package-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}


.package-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #000000;
}

.package-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #333;
}

.discover-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000000;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.3s ease;
  text-decoration: none; /* ← remove underline */
  margin-top: 15px; /* ← space between paragraph and button */
  text-align: center;
}

.discover-btn:hover {
  background-color: #005f3f;
}


@media (min-width: 768px) {
  .packages-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .packages-container {
    grid-template-columns: repeat(3, 1fr);
  }
}



 
.whatsapp-contact {
 
  padding: 60px 20px;
  text-align: center;
 margin-top: -2rem;
}

.whatsapp-section {
  scroll-margin-top: 10px; /* match your fixed header height */
}


.whatsapp-box {
  max-width: 600px;
  margin: 0 auto;
  
  padding: 30px 20px;
  border-radius: 16px;

}

.whatsapp-box h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
  font-family: 'Montserrat', sans-serif;
}

.whatsapp-box p {
  font-size: 1rem;
  margin-bottom: 25px;
  font-family: 'Montserrat', sans-serif;
  color: #555;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}

.whatsapp-button img {
  width: 20px;
  height: 20px;
}

.footer {
  background-color: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Montserrat', sans-serif;
    margin-top: 60px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-logo-text {
  font-size: 1.8rem;   /* adjust size as needed */
  font-weight: 700;   /* bold */
  font-family: 'Arial', sans-serif;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-logo-text .imd {
  color: #ff7528;  /* orange */
}

.footer-logo-text .global {
  color: #0867bd;  /* blue */
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #fff;
}

.footer-section p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #00ffa0;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a img {
  width: 24px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.social-icons a img:hover {
  filter: brightness(1.5);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #aaa;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-family: 'Montserrat', sans-serif;
}

/* ---------- Responsive (Mobile) ---------- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    max-width: 300px;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}











