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

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

/* Header Section */
.header {
  padding: 20px 50px;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}
.transparent-navbar {
    background: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.navbar.scrolled {
    background: #0a99ff !important;
    height:80px;
}
/* LOGO SIZE AFTER SCROLL */
.navbar.scrolled .navbar-brand img {
    height: 60px;   /* 🔥 fits perfectly in 80px navbar */
}

@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 */
    }
}

.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;
    width: 100%;
    z-index: 1000; /* Set a high z-index to place it above the hero section */
}
.dropdown-item{
  background: transparent !important;
}
/* NAV LINKS */
.navbar-nav .nav-link {
    font-weight: 500;
    font-family: 'Fredoka', sans-serif;
}
.nav-item{
    font-family: 'Fredoka', sans-serif;
    font-size:25px;
    font-weight:500;

}
/* DROPDOWN MENU CONTAINER */
.navbar .dropdown-menu {
    background: rgba(0, 0, 0, 0.35);   /* transparent black */
    backdrop-filter: blur(12px);       /* glass effect */
    -webkit-backdrop-filter: blur(12px);
    border: none;
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
/* DROPDOWN ITEMS */
.navbar .dropdown-item {
    color: #ffffff;
    font-family: 'Fredoka', sans-serif;
    font-size: 19px;          /* 🔥 change size here */
    font-weight:600;
    letter-spacing: 0.3px;
    padding: 10px 22px;
    background: transparent !important;
    transition: all 0.3s ease;
}
.navbar .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    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);
    }
}

.navbar .nav-item .dropdown-toggle::after {
    margin-top:15px;  
}
/* Dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}
/* Dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* 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);
}

/* 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;
  margin-left: -50px;
}


/* 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;
}

/* ===============================
   GALLERY HEADER – MOBILE ONLY
   (Desktop unchanged)
================================ */
@media (max-width: 768px) {

  .gallery-header {
    padding: 36px 16px 28px;
    text-align: center;
  }

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

  
    /* HEADING */
  .gallery-left h2 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-align: center;
    margin: 0 auto;
    max-width: 92%;
  }

   /* FORCE CENTER BLOCK */
  .gallery-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* PARAGRAPH – OPTICAL CENTER */
  .gallery-right p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    text-align: center;

    max-width: 82%;          /* 🔑 slightly tighter */
    margin: 0 auto;

    transform: translateX(-15%);  /* 🔥 subtle optical centering */
  }

  /* SCRIPT TEXT */
  .script-text {
    font-size: 28px;
    margin-top: 10px;
    text-align: center;
    opacity: 0.9;

    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  /* remove forced line breaks on mobile */
  .gallery-right p br {
    display: none;
  }

  /* BOTTOM IMAGE */
  .gallery-bottom-img {
    margin: 20px auto 0 !important;
    text-align: center;
  }

  .gallery-bottom-img img {
    width: 100%;
    max-width: 300px;
    height: auto;
    /* display: block; */
    border-radius: 12px;
  }
}


/* Tab container */
.tab-container {
    display: inline-flex; /* Change to inline-flex to make it fit the content width */
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    border: 2px solid #000;
    margin-top: 20px;
    margin-bottom: 30px;
    margin-left: 30px;
    padding: 5px 10px;  /* Add padding to ensure spacing inside the container */
}

/* Tab links */
.tab {
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    white-space: nowrap;  /* Prevent text wrapping */
    /* border: 1px solid #000;  */
}

/* Active tab styling */
.active {
    background-color: #0066ff;
    color: #fff;
}

/* Hover effect */
.tab:hover {
    background-color: #f2f2f2;
    color: #000;
}

.tab-container::after {
  content: "";
  flex: 0 0 10px;
}

/* ===============================
   RESPONSIVE – TABLET & MOBILE
================================ */

/* Tablet */
@media (max-width: 991px) {
  .tab-container {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .tab {
    padding: 8px 16px;
    font-size: 14px;
    margin: 0 6px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .tab-container {
    width: 100%;
    overflow-x: auto;
    padding: 8px 0;        /* vertical only */
    scrollbar-width: none;
    width: calc(100% - 24px);  /* 🔑 left + right gap */
    margin-left: 12px;         /* 🔑 outside border space */
    margin-right: 12px;        /* 🔑 outside border space */
  }

  .tab-container::-webkit-scrollbar {
    display: none;
  }

  .tab-inner {
    display: inline-flex;
    padding-left: 10px;    /* LEFT SAFE */
    padding-right: 24px;   /* 🔑 RIGHT SAFE (MAIN FIX) */
  }

    .tab {
    font-size: 13px;
    line-height: 1.2;
    padding: 8px 14px;
    white-space: nowrap;      /* 🔑 text break nahi hoga */
    text-align: center;
  }

  .tab.active {
    background-color: #0066ff;  /* 🔵 active blue */
    color: #ffffff;
  }

  .tab:not(.active) {
    color: #222;
  }
}


/* Gallery Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Display 4 Images per row */
    gap: 20px; /* Space between Images */
    margin-top: 20px;
    margin-bottom: 50px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 0 20px;
    overflow: visible; /* Ensure no hidden overflow */
}

.gallery-grid img {
    width: 100%; /* Ensures the image takes full available width */
    height: 250px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures Images are cropped to fit the container */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect on Images */
.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Images per row on smaller screens */
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* ✅ mobile me bhi 2 Images */
        gap: 12px;              /* mobile friendly spacing */
        margin-left: 10px;
        margin-right: 10px;
        padding: 0;
    }

    .gallery-grid img {
        height: 180px;          /* 🔑 mobile ke liye better proportion */
    }
}


/* Wrapper */
.zigzag-wrapper {
  width: 100%;
  /* background-color: #fff; */
  /* margin-top: -150px; */
  z-index: 1;
  /* 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);
}



@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;
  }
}


/* 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;
  }
}


.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;
  }
}

