/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family:'Fredoka', sans-serif;
  width: 100%;
}


html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}
.transparent-navbar.navbar.scrolled {
    background: #0a99ff !important;
    height:80px;
}
.navbar.scrolled {
    background: #0a99ff !important;
    height:80px;
    z-index:9999;
}
/* LOGO SIZE AFTER SCROLL */
.navbar.scrolled .navbar-brand img {
    height: 60px;   
}

@media (max-width: 768px) {
    .gap-4 {
        gap: 0.5rem !important;  /* Adjust the gap to a smaller value */
    }
}

@media (max-width: 768px) {
    .navbar .nav-item {
        margin-bottom:5px;  /* Reduce the margin as needed */
    }
}
@media (max-width: 768px) {
    .navbar {
        background-color: black;
    }
    .navbar a {
        color:black !important; /* Ensure links are visible on black background */
    }
}

.hero-section {
    padding-top: var(--navbar-height);
    position: relative;
    z-index:0;
    height: 100vh; 
    width: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}


/* TRANSPARENT NAVBAR */
.transparent-navbar {
   background: transparent !important;
    box-shadow: none; /* Remove any unwanted shadow */
    position:fixed; /* Make navbar absolute to place it on top */
    top: 0; /* Keep it at the top */
    left: 0; 
    height: var(--navbar-height);
    width: 100%;
    z-index:99999; /* Set a high z-index to place it above the hero section */
     isolation: isolate;   /* 🔥 MOST IMPORTANT LINE */
}

.earth-img {
    position: absolute;
    top: -30px;          /* adjust to match reference */
    right: -40px;        /* pushes image partially outside */
    width: 160px;
    height:140px;        /* control size */
    opacity: 0.6;        /* soft look like reference */
    z-index: 1;          /* behind navbar text */
    pointer-events: none; /* prevents blocking clicks */
}
/* NAV LINKS */
.navbar-nav .nav-link {
    font-weight: 500;
     font-family: 'Fredoka', sans-serif;
     color: #000;
}
.nav-item{
    font-family: 'Fredoka', sans-serif;
    font-size:30px;
    font-weight:500;

}

.navbar .nav-item .dropdown-toggle::after {
    margin-top:15px;  /* Adjust the value to move the arrow down or up */
}

/* Dropdown background transparent */
.dropdown-menu {
  /* background: transparent; */
  border: none;
  box-shadow: none;
  padding: 8px 0;
  border-radius:30px;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  color: #fff;
  /* background-color:black; */
  padding: 0 16px;
  font-size:20px;
  font-weight:500;
}

/* Hover effect */
.dropdown-menu .dropdown-item:hover {
  background:black;
  color: #fff;
  border-radius:30px !important;
}

/* Dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
  background: rgba(12, 12, 12,1);
    border: none;
    box-shadow: none;
    padding: 10px 0;
}
/* .dropdown-menu:hover{
   background: rgba(12, 12, 12, 0.15);
} */
.dropdown-menu .dropdown-item {
   
    color:black;
    padding: 6px 18px;
}

.dropdown-menu {
    animation: fadeSlide 0.3s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arrow icon */
.navbar-nav .nav-item .fa-chevron-down {
    display: none;
}

.nav-item.dropdown:hover .fa-chevron-down {
    display: inline-block;
}

/* Style for chevron */
.nav-item .fa-chevron-down {
    margin-left: 5px;
}

/* Hide dropdown by default */
.dropdown-menu {
    display: none;
}

/* Optional: You can also change the hover background color */
.nav-item.dropdown:hover.nav-link {
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius:30px;
}

/* Dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu {
    background: rgba(12, 12, 12, 0.15);
    border: none;
    box-shadow: none;
    padding: 10px 0;
}
/* .dropdown-menu:hover{
   background: rgba(12, 12, 12, 0.15);
} */
.dropdown-menu .dropdown-item {
   
    color:black;
    padding: 6px 18px;
}
/* .dropdown-menu .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 30px;
} */
/* .navbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    color:black;
    transform: translateX(4px);
} */
.dropdown-menu {
    animation: fadeSlide 0.3s ease forwards;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Arrow icon */
.navbar-nav .nav-item .fa-chevron-down {
    display: none;
}

.nav-item.dropdown:hover .fa-chevron-down {
    display: inline-block;
}

/* Style for chevron */
.nav-item .fa-chevron-down {
    margin-left: 5px;
}

/* Hide dropdown by default */
.dropdown-menu {
    display: none;
}

/* Optional: You can also change the hover background color */
.nav-item.dropdown:hover.nav-link {
    background-color: rgba(0, 0, 0, 0.1) !important;
    border-radius:30px;
}

/* Wrapper */
.gallery-wrapper {
  width: 100%;
  overflow: hidden;   /* keep hidden */
  margin-top: 80px;
}

.gallery-strip {
  display: flex;
  gap: 30px;
  padding: 20px 60px;
  overflow: hidden;          /* IMPORTANT */
  white-space: nowrap;
  will-change: transform;   /* smooth GPU rendering */
}

.gallery-strip::-webkit-scrollbar {
  display: none;             /* Chrome */
}

.gallery-strip img {
  flex: 0 0 auto;
  width: 620px;
  height: 380px;
  object-fit: cover;
  border-radius: 5px;
}

/* Hover effect */
.gallery-strip img:hover {
  transform: scale(1.06);
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-strip {
    scroll-snap-type: x mandatory;
  }
  .gallery-strip img {
    scroll-snap-align: center;
    width: 95vw;
    height: 300px;
  }
}



/* Full section with background image */
.section {
  position: relative;
  height: 85vh; /* Full viewport height */
  background-image: url('/Images/Rectangle 61.png'); /* Background image path */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white; /* Text color to be visible on background */
}

/* ===============================
SECTION – MOBILE HEIGHT FIX
=============================== */
@media (max-width: 768px) {
  .section {
    height: 50vh;          /* ✅ mobile height */
    background-size: cover;
    background-position: center;
  }
}


/* Optional: For small screen adjustments */
@media (max-width: 768px) {
  .carousel-item img {
    height: 300px; /* Adjust height on smaller screens */
  }
}

.gallery-header {
  width: 100%;
  padding: 70px 80px;
  /* background: #ffffff; */
}

.gallery-header-inner {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;   /* 🔥 important */
  margin: 0 auto;      /* center container */
  gap: 50px;           /* controlled space */
}

/* Left side */
.gallery-left h2 {
  font-size: 40px;
  font-weight: 750;
  color: #111;
  line-height: 1.2;
  margin: 0;
}


/* Cursive line */
.script-text {
  display: block;
  margin-top: -6px;           /* bring closer to heading */
  font-size: 34px;
  font-family: 'Fleur De Leah', cursive;
  font-weight: 400;
  color: #f4a261;
  pointer-events: none;
}

.gallery-right p {
  max-width: 420px;      /* line control */
  font-size: 22px;       /* 🔥 ideal size */
  line-height: 1.45;     /* clean spacing */
  color: #000;
  margin: 0;
  text-align: left;
  margin-left: 60px;
}

.gallery-right p br {
  display: block;
  content: "";
  margin-bottom: 4px; /* control line gap */
}


.gallery-left {
  flex: 1.1;
}

.gallery-right {
  flex: 0.9;
}


/* Responsive */
@media (max-width: 900px) {
  .gallery-header-inner {
    flex-direction: column;
    gap: 30px;
  }

  .gallery-left h2 {
    font-size: 30px;
  }

  .script-text {
    font-size: 26px;
  }

  .gallery-header {
    padding: 50px 25px;
    }
}

/* ===============================
  GALLERY HEADER – MOBILE VIEW
=============================== */

@media (max-width: 768px) {

  .gallery-header {
    padding: 40px 16px 30px;
    text-align: center;
  }

  .gallery-header-inner {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 100%;
  }

  /* LEFT TITLE */
  .gallery-left {
    width: 100%;
    z-index: 3;
  }

  .gallery-left h2 {
    font-size: 26px;
    line-height: 1.25;
    text-align: center;
    font-weight: 700;
  }

  /* RIGHT DESCRIPTION */
  .gallery-right {
    width: 100%;
    margin-left: 0 !important;
  }

  .gallery-right p {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .gallery-right p br {
    display: none; /* cleaner mobile text */
  }

  /* IMAGE COLLAGE */
  .gallery-bottom-img {
    margin-top: -20px !important;
    text-align: center;
    z-index: 1;
  }

  .gallery-bottom-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}


/* Wrapper */
.zigzag-wrapper {
  width: 100%;
  background-color: #fff;
  margin-top: -150px;
  /* overflow: hidden; */
}

/* White top area */
/* .white-top {
  background: #fff;
  height: 220px;
} */

/* Blue V cut (WHITE V GAP) */
.blue-shape {
  width: 100%;
  height: 180px;
  background: #0a99ff;
  clip-path: polygon(
    0 0,
    1% 0,
    50% 100%,
    99% 0,
    100% 0,
    100% 100%,
    0 100%
  );
}


/* UPDATE THIS */
.blue-content {
  background: #0a99ff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 50px 0;   /* ⬅️ LEFT–RIGHT padding = 0 */
  overflow: hidden; /* ⬅️ extra image cut cleanly */
}


.side-img img {
  width: 390px;
  height: 300px;
  border-radius: 35px;
  object-fit: cover;
  filter: brightness(0.95);
  position: relative;
  transition: all 0.4s ease;
}


.center-img {
  position: relative;
  z-index: 6;
  margin: 0 -220px;   /* more overlap */
}

.center-img img {
  width: 720px;       /* ⬅️ bigger */
  height: 460px;
  border-radius: 36px;
  object-fit: cover;
  border: 1px solid #000;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* LEFT MOST IMAGE – EDGE TOUCH */
.blue-content .side-img:nth-child(1) {
  transform: translateX(520px) scale(0.9);
}

/* RIGHT MOST IMAGE – EDGE TOUCH */
.blue-content .side-img:nth-child(5) {
  transform: translateX(-520px) scale(0.9);
}


/* Images JUST NEXT TO CENTER */
.blue-content .side-img:nth-child(2),
.blue-content .side-img:nth-child(4) {
  position: relative;
  z-index: 4;
}

/* EXTREME LEFT & RIGHT – MORE BACK */
.blue-content .side-img:nth-child(1),
.blue-content .side-img:nth-child(5) {
  z-index: 1;                     /* aur back */
  transform: translateX(220px)    /* aur andar */
             scale(0.88);         /* thoda chhota */
}

/* RIGHT extreme correction */
.blue-content .side-img:nth-child(5) {
  transform: translateX(-220px) scale(0.88);
}


/* POSITIONING */

/* LEFT SIDE */
.blue-content .side-img:nth-child(1) {
  transform: translateX(360px) scale(0.94);
}

.blue-content .side-img:nth-child(2) {
  transform: translateX(90px) scale(0.98);
  border-radius: 35px;
  border: 1px solid #000;
}

/* RIGHT SIDE */
.blue-content .side-img:nth-child(4) {
  transform: translateX(-90px) scale(0.98);
  border-radius: 35px;
  border: 1px solid #000;
}

.blue-content .side-img:nth-child(5) {
  transform: translateX(-360px) scale(0.94);
}

.side-img {
  cursor: pointer;
}

.side-img img {
  transition: transform 0.4s ease;
}

.side-img:hover img {
  transform: scale(1.03);
}




@media (max-width: 1100px) {
  .blue-content {
    flex-wrap: wrap;
    gap: 20px;
    padding: 80px 30px;
  }

  .center-img {
    order: -1; /* center image comes first */
  }

  .center-img img {
    width: 90%;
    height: auto;
  }

  .side-img img {
    width: 42%;
    height: auto;
  }
}


.left-image-layout {
  background: #000;
  padding: 60px;
}

.grid-left {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 120px 260px 220px;
  gap: 20px;
}

/* Common image style */
.img img {
  width:50%;
  height: 80%;
  object-fit: cover;
  background: #ddd;
  border-radius: 6px;
}

/* Positioning */
.img-small {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.img-medium {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.img-big {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.img-bottom {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}


/* Responsive */
@media (max-width: 1024px) {
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activity-box.image.large {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .activity-box.image.large {
    grid-column: span 1;
  }
}

/* MOBILE RESPONSIVE - HORIZONTAL LAYOUT */
@media (max-width: 768px) {
  .blue-shape {
    height: 100px;
    clip-path: polygon(
      0 0,
      2% 0,
      50% 100%,
      98% 0,
      100% 0,
      100% 100%,
      0 100%
    );
  }

  .blue-content {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
    padding: 40px 20px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  /* Reset all transforms */
  .blue-content .side-img:nth-child(1),
  .blue-content .side-img:nth-child(2),
  .blue-content .side-img:nth-child(4),
  .blue-content .side-img:nth-child(5) {
    transform: none;
    z-index: auto;
    margin: 0;
  }

  .center-img {
    order: 0;
    margin: 0;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  /* ALL Images SAME SIZE */
  .center-img img,
  .side-img img {
    width: 250px;
    height: 200px;
    border-radius: 20px;
    border: 1px solid #000;
    object-fit: cover;
    filter: brightness(0.95);
  }

  .side-img {
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  /* Maintain order: img1, img2, center, img4, img5 */
  .blue-content .side-img:nth-child(1) {
    order: 1;
  }

  .blue-content .side-img:nth-child(2) {
    order: 2;
  }

  .center-img {
    order: 3;
  }

  .blue-content .side-img:nth-child(4) {
    order: 4;
  }

  .blue-content .side-img:nth-child(5) {
    order: 5;
  }
}

/* Extra small mobile */
@media (max-width: 480px) {
  .blue-shape {
    margin-top: 100px;
    height: 80px;
  }

  .blue-content {
    padding: 30px 15px;
    gap: 12px;
  }

  /* ALL Images SAME SIZE for small screens */
  .center-img img,
  .side-img img {
    width: 220px;
    height: 180px;
  }
}

/* Hide scrollbar but keep functionality */
.blue-content::-webkit-scrollbar {
  display: none;
}

.blue-content {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Left Image Layout */
.left-image-layout {
  background: #000;
  padding: 60px;
}

.grid-left {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 120px 260px 220px;
  gap: 20px;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ddd;
  border-radius: 6px;
}

.img-small {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.img-medium {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.img-big {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
}

.img-bottom {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}

@media (max-width: 768px) {
  .left-image-layout {
    padding: 30px 15px;
  }

  .grid-left {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 15px;
  }

  .img-small,
  .img-medium,
  .img-big,
  .img-bottom {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .img img {
    height: 200px;
  }
}


 .collage-container {
    position: relative;
    width: 100%; /* Full width */
    height: auto;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    /* margin-left: 10px;
    margin-right: 10px; */
  }

  .collage-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }

  .overlay {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    border-radius: 10px;
    pointer-events: none;
  }



  
.footer {
  background: #0a99f0;
  padding-top:40px;
  padding-left:20px;
  padding-right:20px;
  /* padding-bottom:15px; */
  color: #ffffff;
  font-family: 'Fredoka', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

/* BRAND */
.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.brand-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-brand h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.footer-brand p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 420px;
  margin-top: 20px;
}

/* LINKS */
.footer-links h4 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 20px;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}
.footer-bottom {
  margin-top: 0px;
  /* margin-bottom:0px; */
  padding: 8px 0px;
  text-align: center;
 
  font-size: 18px;
  color: #ffffff;
}

.footer-bottom p {
  margin: 0;
  line-height: 1.6;
}

.footer-bottom strong {
  font-weight: 700;
}

.designer-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.designer-link:hover {
  opacity: 0.8;
}

/* TABLET */
/* @media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
} */
/* Mobile Footer Fix */
@media (max-width: 768px) {

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }

  /* Brand takes full width */
  .footer-brand {
    width: 100%;
  }
  .footer-links{
    text-align:center;
  }
  /* Visit + Information in one row */
  /* .footer-links {
    width: 50%;
  } */

  .footer-links h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-links ul li {
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .footer-links {
    text-align: left;
  }
}

/* Hide arrow on desktop */
.dropdown-toggle-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
}

/* MOBILE ONLY */
@media (max-width: 991px) {
  .dropdown-toggle-btn {
    display: block;
  }

  .nav-dropdown-mobile > .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 5px;
    border-radius: 12px;
  }
}

/* ===============================
   FORCE HIDE HORIZONTAL SCROLL
   =============================== */

html, body {
  width: 100%;
  overflow-x: hidden !important;
  position: relative;
}



