/* =========================================
   RESET & BASE
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Akshar:wght@300..700&family=Oswald:wght@200..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  overflow-x: hidden;
}

/* =========================================
   NAVBAR
========================================= */
/* Custom Navbar */
/* Transparent Glass Navbar */
.custom-navbar {
  background: rgba(255, 255, 255, 0.05);
  /* semi-transparent */
  padding: 0.7rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  backdrop-filter: blur(12px);
  /* frosted glass effect */
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Add slight shadow when scrolled */
.custom-navbar.scrolled {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Brand logo */
.scustom-navbar .navbar-brand img {
  height: 42px;
  transition: transform 0.3s ease;
}

.custom-navbar .navbar-brand img:hover {
  transform: scale(1.05);
}

/* Links */
.custom-navbar .nav-link {
  color: #ffffff;
  margin: 0 12px;
  padding: 8px 16px !important;
  border-radius: 10px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-family: "Oswald", sans-serif;
}

/* Hover effect */
.custom-navbar .nav-link:hover {
  color: #ffebcd;
  background: rgba(255, 255, 255, 0.15);
}

/* Active link underline glow */
.custom-navbar .nav-link.active {
  color: #fff;
  font-weight: 600;
}

.custom-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  box-shadow: 0 0 6px rgba(255, 138, 0, 0.6);
}

/* Mobile toggle */
.custom-navbar .navbar-toggler {
  border: none;
  outline: none;
}

.custom-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* Dropdown menu */
.custom-navbar .dropdown-menu {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.custom-navbar .dropdown-item {
  color: #fff;
  transition: all 0.3s;
}

.custom-navbar .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffebcd;
}


/* =========================================
   VIDEO SECTIONS (base)
========================================= */
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* keeps video edges clean */
  background: #000;
  /* fallback in case video fails */
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.stack {
  position: relative;
  isolation: isolate;
}

.stack>.video-section {
  position: sticky;
  top: 0;
  /* sticks to the very top (navbar already offset by body padding) */
  height: 100vh;
  will-change: transform;
}

/* Later sections appear OVER earlier ones */
.stack>.video-section:nth-of-type(1) {
  z-index: 1;
}

.stack>.video-section:nth-of-type(2) {
  z-index: 2;
}

.stack>.video-section:nth-of-type(3) {
  z-index: 3;
}

.stack>.video-section:nth-of-type(4) {
  z-index: 4;
}

/* add more rules if you add more sections */

/* Optional: gentle depth on overlay content so it stays crisp above video */
.stack>.video-section .overlay {
  pointer-events: auto;
}

.main-reads {
  color: #fff;
}

.main-reads h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffd580;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
  font-family: "Akshar", sans-serif;
}

.main-reads p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 520px;
  font-family: "Akshar", sans-serif;
}

/* Buttons */
.btn-dharma {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  background: linear-gradient(90deg, #ff8a00, #ffc864);
  color: #0a1229;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.35);
  transition: all 0.3s ease;
  font-family: "Akshar", sans-serif;
}

.btn-dharma:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255, 138, 0, 0.55);
}

/* =========================================
   CLOUDS (Section 2)
========================================= */
.cloud {
  background: url("/assets/Images/cloud.png") no-repeat center;
  background-size: cover;
  height: 140px;
  width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatCloud 6s ease-in-out infinite;
}

.cloud p {
  color: #000;
  font-weight: bold;
  text-align: center;
  font-family: "Akshar", sans-serif;
}

@keyframes floatCloud {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px) translateX(10px);
  }
}

/* =========================================
   BUBBLES (Section 3)
========================================= */
.new-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  padding: 80px 0;
}

.bubble {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(0, 174, 255, 0.4) 70%);
  box-shadow:
    inset -10px -10px 20px rgba(0, 0, 0, 0.2),
    inset 10px 10px 30px rgba(255, 255, 255, 0.5),
    0 0 25px rgba(0, 174, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Floating animation */
  animation: float 6s ease-in-out infinite;
}

/* Text styling */
.bubble-top h3 {
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  font-family: "Akshar", sans-serif;
}

.bubble-top p {
  color: #fff;
  font-family: "Akshar", sans-serif;
}

/* Floating animation keyframes */
@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px);
  }

  25% {
    transform: translateY(-15px) translateX(8px);
  }

  50% {
    transform: translateY(-25px) translateX(0px);
  }

  75% {
    transform: translateY(-15px) translateX(-8px);
  }

  100% {
    transform: translateY(0px) translateX(0px);
  }
}

/* Add variation for each bubble */
.bubble:nth-child(1) {
  animation-duration: 7s;
  animation-delay: 0s;
}

.bubble:nth-child(2) {
  animation-duration: 6s;
  animation-delay: 1s;
}

.bubble:nth-child(3) {
  animation-duration: 8s;
  animation-delay: 2s;
}


/* =========================================
   GLASSMORPHIC ACCORDION (Section 4)
========================================= */
.accordion {
  background: transparent;
  border: none;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.08);
  /* frosted glass */
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  margin-bottom: 1.2rem;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.accordion-button {
  background: rgba(255, 255, 255, 0.06);
  color: #f5f5f5;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: none;
  padding: 1rem 1.25rem;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: "Akshar", sans-serif;
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.accordion-button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.accordion-body {
  background: rgba(255, 255, 255, 0.05);
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.6;
  padding: 1rem 1.25rem;
}

.accordion-collapse {
  transition: all 0.35s ease-in-out;
}

/* -FormPage   */
.form-banner {
  background-image: url('/assets/Images/form-top.png');
  background-position: center center;
  background-size: cover;
  height: 750px;
  margin-top: -70px;
  background-repeat: no-repeat;
}

/* Row wrapper — keep bootstrap flex intact */
.custom-section {
  padding: 50px 30px;
  position: relative;
  top: 5rem;
  /* only padding, not flex! */
}

/* Spacer column (middle gap) */
.spacer-box {
  visibility: hidden;
}

/* Glass cards */
.content-box,
.collect-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  border: 2px solid rgba(255, 204, 102, 0.4);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  padding: 30px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.content-box:hover,
.collect-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 153, 51, 0.4);
}

/* Titles */
.content-title,
.collect-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fffbe6;
  margin-bottom: 15px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #ff9933;
  padding-left: 12px;
  font-family: "Akshar", sans-serif;
}

/* Text */
.content-text,
.collect-text {
  font-size: 16px;
  line-height: 1.7;
  color: #fdfdfd;
  opacity: 0.9;
  font-family: "Akshar", sans-serif;
}

/* Button */
.content-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  border-radius: 40px;
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 15px rgba(255, 153, 51, 0.4);
  transition: all 0.3s ease;
  font-family: "Akshar", sans-serif;
}

.content-btn:hover {
  background: linear-gradient(90deg, #ffcc00, #ff6600);
  transform: scale(1.07);
  box-shadow: 0 10px 20px rgba(255, 153, 51, 0.6);
}

/* Collect inner */
.collect {
  text-align: center;
}

.collect-img {
  max-width: 100%;
  border-radius: 15px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* ------------------------
   FORM CONTAINER BACKGROUND
------------------------ */
.form-container {
  position: relative;
  background: url('/assets/Images/new-form-image.png') center/cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  font-family: "Akshar", sans-serif;
}

.form-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 900px at 10% 5%, rgba(255, 122, 0, .18), transparent 60%),
    radial-gradient(1000px 700px at 90% 10%, rgba(77, 166, 255, .14), transparent 60%),
    linear-gradient(135deg, rgba(255, 122, 0, .06), rgba(13, 25, 51, .22) 40%, rgba(10, 18, 38, .45));
  z-index: -1;
}

.form-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 70% at 50% 50%, transparent 60%, rgba(0, 0, 0, .35) 100%);
  mix-blend-mode: multiply;
  z-index: -1;
}

/* ------------------------
   TWO COLUMN LAYOUT
------------------------ */
.project-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  width: 100%;
  align-items: stretch;
  /* ensures equal height columns */
}

.project-section .col-md-6 {
  width: 48%;
}

/* ------------------------
   GLASS BOXES
------------------------ */
.glass-box {
  background: rgba(8, 18, 40, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 32px;
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 211, 110, 0.28);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ------------------------
   HEADINGS
------------------------ */
.project-heading {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-left: 45px;
  font-family: "Akshar", sans-serif;
}

.project-heading::before {
  content: "🕉️";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
}

.project-heading::after {
  content: "";
  position: absolute;
  left: 45px;
  right: 0;
  bottom: -8px;
  height: 3px;
  background: linear-gradient(90deg, #ff7a00, #ffd36e 40%, rgba(255, 255, 255, 0));
  border-radius: 2px;
}

/* ------------------------
   PROJECT POINTS
------------------------ */
.project-points {
  list-style: none;
  padding: 0;
  margin: 12px 0 28px;
  display: grid;
  gap: 12px;
}

.project-points li {
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
  color: #e8f2ff;
  font-family: "Oswald", sans-serif;
}

.project-points li::before {
  content: "🔱";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
}

/* ------------------------
   PROJECT GALLERY
------------------------ */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: auto;
  /* pushes gallery to bottom if form taller */
}

.project-item img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .45);
  transition: transform .3s ease, box-shadow .3s ease;
}

.project-item img:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .55);
}

.project-item p {
  font-size: 14px;
  color: #dfeeff;
  font-family: "Oswald", sans-serif;
}

/* ------------------------
   FORM ELEMENTS
------------------------ */
.custom-form .form-label {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  color: #ffd36e;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Oswald", sans-serif;
}

.custom-form .form-label::before {
  content: "🔱";
  font-size: 14px;
}

.custom-form .form-control,
.custom-form .form-select,
.custom-form textarea {
  background: rgba(20, 30, 60, 0.65);
  border: 1px solid rgba(255, 211, 110, 0.35);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  color: #fff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
  /* ensures width includes padding */
}

.custom-form .form-control::placeholder,
.custom-form textarea::placeholder {
  color: #dfeeff;
  /* light placeholder */
  opacity: 1;
}

.custom-form .form-control:focus,
.custom-form .form-select:focus,
.custom-form textarea:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.35);
  outline: none;
  background: rgba(30, 40, 70, 0.8);
}

/* ------------------------
   FILE UPLOAD
------------------------ */
.custom-form input[type="file"] {
  width: 100%;
  max-width: 100%;
  padding: 14px 0px 14px 20px;
  border: 2px dashed rgba(255, 211, 110, 0.4);
  border-radius: 14px;
  background: rgba(20, 30, 60, 0.55);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-form input[type="file"]::file-selector-button {
  cursor: pointer;
  background: #ff7a00;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  margin-right: 8px;
  transition: background 0.3s ease;
}

.custom-form input[type="file"]::file-selector-button:hover {
  background: #ffaa33;
}

/* ------------------------
   SUBMIT BUTTON
------------------------ */
.btn-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 25px;
  border: none;
  background: linear-gradient(135deg, #ff8800, #ff5500);
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  font-family: "Oswald", sans-serif;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #ffaa00, #ff7733);
  transform: translateY(-3px);
}

/* ------------------------
   QUANTITY / PACKAGE SELECTION
------------------------ */
.quantity-section {
  margin: 25px 0;
  text-align: center;
}

.quantity-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.quantity-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 20px;
  width: 130px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  position: relative;
}

.quantity-box:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: #ff7a00;
  box-shadow: 0 8px 20px rgba(255, 136, 0, 0.6);
}

.quantity-box input[type="radio"] {
  display: none;
}

.quantity-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Oswald", sans-serif;
}

.quantity-price {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #00ffe7;
  transition: all 0.3s ease;
  font-family: "Oswald", sans-serif;
}

.quantity-box input[type="radio"]:checked+.quantity-label {
  color: #ff7a00;
  text-shadow: 0 0 10px #ff7a00;
}

.quantity-box input[type="radio"]:checked~.quantity-price {
  color: #ffd700;
  text-shadow: 0 0 10px #ffd700;
}

/* ------------------------
   SELECT ARROW FIX
------------------------ */
.custom-form select.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: rgba(20, 30, 60, 0.65) url("data:image/svg+xml;utf8,<svg fill='white' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;
  background-size: 12px;
  padding-right: 36px;
}

/* ✅ Global fixes for responsiveness */
img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  word-wrap: break-word;
  font-family: "Oswald", sans-serif;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

/* Utilize Page  */
.new-body {
  background: linear-gradient(to bottom right, #f9f5e9, #f0e3c2);
  background-image: url('https://www.transparenttextures.com/patterns/white-diamond.png');
    font-family: "Oswald", sans-serif;
  padding: 40px 15px;
  color: #333;
}

/* Page content wrapper to push below navbar */
.page-content {
  margin-top: 100px;
}

/* Page title */
.page-title {
  font-family: "Oswald", sans-serif;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #7b3e19;
  position: relative;
}

.page-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #d4af37, #f8e27c);
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Cards */
.utilization-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 25px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.utilization-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.utilization-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
  transform: rotate(25deg);
}

.utilization-icon {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.utilization-card h4 {
  font-family: "Akshar", sans-serif;
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #7b3e19;
}

.utilization-card p {
  font-size: 1rem;
  color: #444;
  font-family: "Oswald", sans-serif;
}

/* Highlight */
.highlight {
  background: linear-gradient(90deg, #d4af37, #f8e27c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 50px;
  font-size: 0.9rem;
  color: #666;
}

/* Success HTML  */

.success-body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  overflow-x: hidden;
  position: relative;
  background: url('/assets/Images/success.png') no-repeat center center / cover;
  padding: 20px;

  /* ✅ Push content below navbar */
  padding-top: 90px;
}

/* Subtle Overlay */
.success-body::before {
  content: "";
  background: url('/assets/Images/success.png');
  opacity: 0.1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 0;
}

/* Thank You Card */
.thankyou-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 50px 40px;
  max-width: 850px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
  border: 3px solid rgba(255, 215, 0, 0.7);
  animation: floatCard 5s ease-in-out infinite;
  z-index: 1;
  margin-bottom: 40px;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.thankyou-card h1 {
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  margin-bottom: 15px;
  color: #ffd700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
}

.thankyou-card p {
  font-size: 1.3rem;
  margin-bottom: 35px;
  color: #fff5d6;
  font-family: "Oswald", sans-serif;
}

.btn-custom {
  position: relative;
  border-radius: 40px;
  font-weight: 600;
  padding: 14px 40px;
  font-size: 1.1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: none;
  font-family: "Oswald", sans-serif;
}

.btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: skewX(-25deg);
}

.btn-custom:hover::before {
  animation: shine 1s ease forwards;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.btn-donate {
  background: linear-gradient(135deg, #ff6a00, #ee0979);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.6);
  font-family: "Oswald", sans-serif;
}

.btn-share {
  background: linear-gradient(135deg, #00c9ff, #92fe9d);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 201, 255, 0.6);
  font-family: "Oswald", sans-serif;
}

.btn-custom:hover {
  transform: scale(1.08);
}

.gallery-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid rgba(255, 215, 0, 0.4);
}

.gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card h5 {
  padding: 12px;
  font-size: 1.1rem;
  color: #ffd700;
  font-family: "Oswald", sans-serif;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.gallery-card:hover img {
  transform: scale(1.1);
}


/* Privacy Policy Page  */
:root {
  --saffron: #ff9933;
  --deep-saffron: #ff6f00;
  --maroon: #6e1f18;
  --gold: #f2c94c;
  --ivory: #fff7ed;
}

.privacy-body {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(242, 201, 76, 0.06), transparent 8%),
    linear-gradient(160deg, #fff8f0 0%, #fff2e8 45%, #fff4eb 100%);
  -webkit-font-smoothing: antialiased;
  color: #2b2b2b;
}

/* subtle mandala texture */
.privacy-body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/arabesque.png');
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}

.container-wrap {
  position: relative;
  z-index: 1;
  padding: 100px 16px 90px;
  display: flex;
  justify-content: center;
}

.policy-card {
  width: 100%;
  max-width: 1100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 240, 0.9));
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(110, 31, 24, 0.07);
  border: 1px solid rgba(110, 31, 24, 0.06);
  position: relative;
  overflow: hidden;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.brand .logo {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, var(--gold), #ffd88c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  color: var(--maroon);
  font-size: 28px;
  box-shadow: 0 10px 30px rgba(110, 31, 24, 0.05);
  border: 3px solid rgba(242, 201, 76, 0.08);
}

.brand h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  color: var(--maroon);
  letter-spacing: 0.4px;
}

.brand p {
  margin: 0;
  color: #6b4f48;
  font-size: 0.95rem;
  font-family: "Oswald", sans-serif;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.meta-left small {
  color: #7a5b53;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.action-buttons .btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 8px 14px;
  box-shadow: 0 6px 18px rgba(110, 31, 24, 0.06);
}

/* accordion */
.accordion-button-privacy {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.06), transparent);
  border-radius: 8px;
  color: #2b2b2b;
  font-weight: 600;
}

.section-title {
  font-size: 1.05rem;
  color: var(--maroon);
  font-weight: 700;
  margin-bottom: 8px;
  font-family: "Oswald", sans-serif;
}

.policy-intro {
  margin: 18px 0 28px;
  color: #5b4b47;
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Oswald", sans-serif;
}

/* footer small note */
.policy-footer {
  margin-top: 26px;
  font-size: 0.92rem;
  color: #6b4f48;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: "Oswald", sans-serif;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 201, 76, 0.08);
  padding: 8px 12px;
  border-radius: 999px;
  color: #5b4b47;
  border: 1px solid rgba(242, 201, 76, 0.12);
}

/* ========== MEDIA QUERIES ========== */

/* 1600px and below */
@media (min-width: 1600px) {

  /* Your CSS here */
  .form-banner {
    margin-top: 0px;
  }

  .custom-section {
    padding: 50px 30px;
    position: relative;
    top: 8rem;
  }
}

@media (max-width: 1599px) {
  .custom-section {
    padding: 50px 30px;
    position: relative;
    top: 8rem;
  }
}

/* 1440px and below */
@media (max-width: 1440px) {

  /* Your CSS here */
  .form-banner {
    margin-top: 0px;
  }

  .custom-section {
    padding: 50px 30px;
    position: relative;
    top: 10rem;
  }
}

/* 1366px and below */
@media (max-width: 1366px) {

  /* Your CSS here */
  .form-banner {
    margin-top: 5px;
  }
}

/* 1280px and below */
@media (max-width: 1280px) {

  /* Your CSS here */
  .form-banner {
    height: 620px;
    margin-top: 0px;
  }

  .custom-section {
    padding: 50px 30px;
    position: relative;
    top: 3rem;
  }
}

/* 1204px and below */
@media (max-width: 1204px) {

  /* Your CSS here */
  .form-banner {
    margin-top: 0px;
    /* height: 600px; */
  }

  .project-heading {
    font-size: 24px;
    padding-left: 50px;
    line-height: 40px;
  }

}

/* 991px and below (Tablet Landscape → Mobile) */
@media (max-width: 991px) {

  /* Your CSS here */
  .main-reads h1 {
    font-size: 30px;
    line-height: 42px;
  }

  .main-reads p {
    font-size: 14px;
    line-height: 24px;
  }

  .bubble {
    width: 200px;
    height: 200px;
  }

  .main-reads p {
    font-size: 16px;
    line-height: 32px;
  }


  /* Accordion wrapper */
  .accordion {
    margin: 10px 0;
  }

  /* Accordion button */
  .accordion .accordion-button {
    font-size: 15px;
    /* slightly smaller font for tablets/phones */
    padding: 12px 14px;
    /* balanced padding */
    line-height: 1.5;
    word-break: break-word;
    /* prevent Hindi text overflow */
  }

  /* Accordion body */
  .accordion .accordion-body {
    font-size: 14px;
    padding: 12px 14px;
    line-height: 1.6;
    text-align: justify;
  }

  /* Bold text inside accordion */
  .accordion .accordion-body strong {
    font-size: 14px;
    font-weight: 500;
  }

  .form-banner {
    margin-top: 0px;
    height: 900px;
  }

  .content-box {
    height: 280px;
    width: 320px;
    margin-bottom: 30px;
  }

  .collect-box {
    height: 430px;
    width: 270px;
  }

  .project-section .col-md-6 {
    width: 100%;
  }

  .thankyou-card {
    max-width: 600px;
    padding: 35px;
  }

  .thankyou-card h1 {
    font-size: 2.1rem;
  }

  .thankyou-card p {
    font-size: 1rem;
  }

  .btn-custom {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

}

/* 767px and below (Tablet Portrait) */
@media (max-width: 767px) {
  .main-reads h1 {
    font-size: 40px;
    line-height: 56px;
  }

  .main-reads h1 {
    font-size: 30px;
    line-height: 42px;
  }

  .main-reads p {
    font-size: 14px;
    line-height: 26px;
  }

  .bubble-top h3 {
    font-size: 20px;
  }

  /* Accordion wrapper */
  .accordion {
    margin: 10px 0;
  }

  /* Accordion button */
  .accordion .accordion-button {
    font-size: 15px;
    /* slightly smaller font for tablets/phones */
    padding: 12px 14px;
    /* balanced padding */
    line-height: 1.5;
    word-break: break-word;
    /* prevent Hindi text overflow */
  }

  /* Accordion body */
  .accordion .accordion-body {
    font-size: 14px;
    padding: 12px 14px;
    line-height: 1.6;
    text-align: justify;
  }

  /* Bold text inside accordion */
  .accordion .accordion-body strong {
    font-size: 14px;
    font-weight: 500;
  }

  .form-banner {
    height: 940px;
    margin-top: 0px;
  }

  .content-box {
    height: 290px;
    width: 320px;
    margin-bottom: 30px;
  }

  .collect-box {
    height: 460px;
    width: 360px;
  }

  .project-section .col-md-6 {
    width: 100%;
  }

  .page-title {
    font-size: 2rem;
  }

  .utilization-card {
    margin-bottom: 20px;
  }

  .thankyou-card {
    max-width: 100%;
    padding: 30px 20px;
  }

  .thankyou-card h1 {
    font-size: 1.8rem;
  }

  .thankyou-card p {
    font-size: 0.95rem;
  }

  .btn-custom {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand .logo {
    width: 64px;
    height: 64px;
    font-size: 22px;
    border-radius: 12px;
  }
}

/* 678px and below */
@media (max-width: 678px) {

  /* Your CSS here */
  .main-reads h1 {
    font-size: 40px;
    line-height: 54px;
  }

  .main-reads p {
    font-size: 16px;
    max-width: 440px;
    line-height: 26px;
  }

  .cloud {
    height: 110px !important;
    width: 270px !important;
  }

  .bubble {
    width: 180px;
    height: 180px;
  }

  .project-section .col-md-6 {
    width: 100%;
  }

  .project-section {
    width: auto;
  }

  .content-box {
    height: 320px;
    width: 260px;
    margin-bottom: 30px;
  }

  .form-banner {
    height: 930px;
    margin-top: 0px;
  }

  .collect-box {
    height: 400px;
    width: auto;
  }

}

/* 676px and below */
@media (max-width: 576px) {

  /* Your CSS here */
  .main-reads h1 {
    font-size: 24px;
    line-height: 36px;
  }

  .main-reads p {
    font-size: 12px;
    max-width: 450px;
    line-height: 18px;
  }

  .btn-dharma {
    padding: 6px 12px;
    font-size: 14px;
  }

  .cloud {
    height: 110px;
    width: 230px;
  }

  .bubble {
    width: 40%;
    height: 200px;
    padding: 10px;
  }

  .bubble-top h3 {
    font-size: 20px;
    line-height: 36px;
  }

  .bubble-top p {
    font-size: 14px;
  }

  .main-reads {
    text-align: center;
  }

  .bubs {
    display: none !important;
  }

  .form-banner {
    height: auto;
    /* don’t force full 100vh on small screens */
    margin-top: -50px;
    /* reduce overlap */
    padding: 20px 0;
    /* breathing space */
    background-image: url('/assets/Images/latest-form.png');
  }

  /* Row wrapper */
  .custom-section {
    padding: 20px 15px;
    /* tighter padding */
    flex-direction: column;
    /* stack cards */
  }

  /* Spacer column disappears completely */
  .spacer-box {
    display: none;
  }

  /* Content + Collect cards */
  .content-box,
  .collect-box {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 15px;
    height: 200px;
    width: 200px;
  }

  .collect-box {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 15px;
    height: 300px;
    width: 200px;
  }

  .form-banner {
    height: 730px;
    /* margin-top: 55px; */
  }

  .content-title,
  .collect-title {
    font-size: 16px;
    padding-left: 8px;
    margin-bottom: 12px;
    line-height: 24px;
  }

  /* Text */
  .content-text,
  .collect-text {
    font-size: 14px;
    /* smaller body text */
    line-height: 1.5;
  }

  /* Button */
  .content-btn {
    margin-top: 5px;
    padding: 10px 22px;
    font-size: 14px;
  }

  /* Collect section */
  .collect {
    text-align: center;
  }

  .collect-img {
    margin-bottom: 15px;
    height: 150px;
    width: 150px;
    object-fit: contain;
  }

  .project-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* center child divs */
  }

  .project-section .col-md-6.col-12 {
    width: 90% !important;
    /* override col-12 full width */
    max-width: 500px;
    /* optional: don’t let it grow too wide */
  }


  .project-section {
    width: auto;
  }

  .project-heading {
    font-size: 24px;
    padding-left: 50px;
  }

  .thankyou-card {
    padding: 25px 15px;
    border-radius: 15px;
  }

  .thankyou-card h1 {
    font-size: 1.6rem;
  }

  .thankyou-card p {
    font-size: 0.9rem;
  }

  .btn-custom {
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* 414px and below (iPhone 11/12/13 Pro Max, etc.) */
@media (max-width: 414px) {
  .cloud {
    height: 110px;
  }


  /* Your CSS here */
  .bubs {
    display: none !important;
  }

  .bubble {
    width: 50%;
    height: 180px;
    padding: 0px;
  }


  /* Accordion wrapper only */
  .accordion {
    margin: 8px 0;
  }

  /* Accordion button styling */
  .accordion .accordion-button {
    font-size: 14px;
    /* smaller for mobile */
    padding: 10px 12px;
    /* reduce padding */
    line-height: 1.4;
    word-break: break-word;
    /* prevent overflow */
  }

  /* Accordion body text */
  .accordion .accordion-body {
    font-size: 13px;
    padding: 10px 12px;
    line-height: 1.5;
    text-align: justify;
  }

  /* Bold text inside accordion */
  .accordion .accordion-body strong {
    font-size: 13px;
    font-weight: 500;
  }
}

/* 390px and below (iPhone 12/13/14, etc.) */
@media (max-width: 390px) {
  /* Your CSS here */
}

/* 360px and below (Small Android Phones) */
@media (max-width: 360px) {
  /* Your CSS here */
}

/* 320px and below (Very small devices like iPhone SE) */
@media (max-width: 320px) {

  /* Your CSS here */
  .main-reads h1 {
    font-size: 28px;
    line-height: 40px;
    text-align: center;
  }

  .main-reads p {
    font-size: 16px;
    max-width: 450px;
    line-height: 26px;
    text-align: center;
  }

  .main-reads {
    color: #fff;
    text-align: center;
  }

  .cloud {
    height: 90px;
    width: 270px;
  }

  .cloud p {
    font-size: 14px;
    position: relative;
    top: 5px;
  }

  .bubble {
    height: 170px;
    padding: 30px;
    width: 180px;
  }

  .new-row {
    gap: 15px;
  }

  .bubs {
    display: none !important;
  }

  .project-heading {
    font-size: 16px;
    padding-left: 50px;
    line-height: 24px;
  }

  form h2 {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
  }

  .form p {
    font-size: 14px;
    line-height: 22px;
  }

  .custom-section {
    position: relative;
    top: 7rem;
  }


}