/* ================= FONT FACES ================= */
@font-face {
  font-family: 'Jaini';
  src: url('fonts/Jaini-Regular_0.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

/* ================= RESET ================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================= ROOT VARIABLES ================= */
:root {
  --primary: #BF2440;
  --secondary: #003C1C;
  --content: #8F6C4E;
  --gold: #8F6C4E;
  --light-bg: #fff5f1;
  --text: #222;
  --muted: #6b6b6b;
  --container: 1440px;
  --maroon: #BF2440;
  
  /* Typography */
  --font-serif: "Jaini", serif;
  --font-sans: "Poppins", sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Transitions */
  --transition: all 0.3s ease;
  
  /* Z-index */
  --z-nav: 1000;
  --z-modal: 2000;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================= TYPOGRAPHY ================= */

/* Screen reader only - hide visually but keep for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Heading 1 - Jaini 48px Regular (using Playfair as fallback) */
h1, h2, h3, h4, h5, h6,
.heading-1 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.2;
}

h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.2;
}

h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
}

h3 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
}

h4 {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
}

h5, h6 {
  font-size: clamp(12px, 1.5vw, 16px);
  font-weight: 600;
}

/* Subheading - Muktavani 20px Regular (using Poppins as fallback) */
.subheading {
  font-family: var(--font-sans);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--secondary);
}

/* Small Title - Muktavani 20px Bold (using Poppins as fallback) */
.small-title {
  font-family: var(--font-sans);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: var(--secondary);
}

/* Paragraph English - Poppins 20px Regular */
p, .paragraph {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  color: var(--text);
}

/* Paragraph Gujarati - Muktavani 18px Regular (using Poppins as fallback) */
.paragraph-gujarati {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 400;
  color: var(--secondary);
}

/* Small text - Poppins 18px Regular (reduced to 14px for better readability) */
.small-text {
  font-family: var(--font-sans);
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 400;
  color: var(--muted);
}

/* ================= COMMON ================= */

@media (max-width: 768px) {
    /* Increase gap below carousel-text and circle-text only on mobile */
    .carousel-text,
    .circle-text {
      margin-bottom: 24px !important;
    }
}

.center {
  display: flex;
  justify-content: center;
  margin-top: var(--space-2xl);
}

.section {
  padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--space-xl) 0;
  }
}

.section-head {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .section-head {
    margin-bottom: var(--space-lg);
  }
}

.title {
  font-size: clamp(24px, 5vw, 40px);
  color: var(--secondary);
  margin-bottom: var(--space-sm);
  font-weight: 700;
  font-family: var(--font-serif);
}

.subtitle {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--muted);
  font-weight: 400;
}

/* Responsive text utilities */
.text-sm {
  font-size: clamp(12px, 1.5vw, 14px);
}

.text-base {
  font-size: clamp(14px, 2vw, 16px);
}

.text-lg {
  font-size: clamp(16px, 2.5vw, 20px);
}

/* ================= NAVBAR ================= */
.navbar {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out;
  transform: translateY(0);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 20px) clamp(16px, 4vw, 32px);
  gap: clamp(16px, 4vw, 32px);
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  min-height: clamp(60px, 12vw, 180px);
  flex-wrap: nowrap;
}

@media (max-width: 1024px) {
  .nav-wrap {
    justify-content: center;
    gap: 0;
    padding: clamp(12px, 3vw, 20px) clamp(12px, 2vw, 16px);
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: clamp(24px, 5vw, 28px);
  cursor: pointer;
  color: #222;
  padding: clamp(6px, 1.5vw, 12px) clamp(25px, 2.5vw, 20px) clamp(6px, 1.5vw, 12px) clamp(6px, 1.5vw, 12px);
  transition: var(--transition);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: var(--z-nav);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--primary);
  outline: none;
}

@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: clamp(12px, 2vw, 16px);
    top: 50%;
    transform: translateY(-50%);
    z-index: var(--z-nav);
  }
}

.nav-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo {
  width: clamp(70px, 12vw, 135px);
  height: auto;
  aspect-ratio: 135/121.53;
  opacity: 1;
  display: block;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .nav-center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    order: auto;
    flex: 0 0 auto;
    padding: 0;
  }

  .logo {
    width: clamp(50px, 8vw, 80px);
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .logo {
    width: clamp(50px, 8vw, 70px);
  }
}

/* ================= DESKTOP NAVIGATION ================= */
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  gap: 200px;
  margin-left: 120px;
  margin-right: 120px;
}

.nav-link {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  color: #343434;
  transition: var(--transition);
  white-space: nowrap;
  padding: 0;
  letter-spacing: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link:visited {
  color: #343434;
}

.nav-link:nth-child(1),
.nav-link:nth-child(2) {
  margin-right: auto;
  margin-left: 0;
}

.nav-link:nth-child(3),
.nav-link:nth-child(4) {
  margin-left: auto;
  margin-right: 0;
}

@media (max-width: 1024px) {
  .nav-menu {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: #ffffff;
    align-items: center;
    justify-content: flex-start;
    z-index: calc(var(--z-nav) - 1);
    padding: clamp(12px, 2vw, 20px);
    gap: clamp(8px, 1.5vw, 12px);
    margin-left: 0;
    margin-right: 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-height: calc(100vh - clamp(60px, 12vw, 180px));
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
}

.nav-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

  .nav-link {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.6;
    padding: clamp(6px, 1vw, 8px) 0;
    white-space: normal;
    margin: 0 !important;
  }

  .nav-link:nth-child(1),
  .nav-link:nth-child(2),
  .nav-link:nth-child(3),
  .nav-link:nth-child(4) {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}

.nav-link.active {
  color: #BF2640;
  font-weight: 600;
}

.nav-link:hover {
  color: #BF2640;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slider-container {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .slider-container {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 474px;
  }

  .slider-container {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 480px) {
  .slider-container {
    height: 100%;
    aspect-ratio: auto;
  }
}

.slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slider-slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide-1,
.hero-slide-2,
.hero-slide-3 {
  background-color: #BF2440;
  background-image: url('../images/hero-banner/Giriraj Shikhar.jpg.jpeg');
}

@media (max-width: 768px) {
  .hero-slide-1,
  .hero-slide-2,
  .hero-slide-3 {
    background-image: url('../images/hero-banner/Giriraj Shikhar - Mobile.jpg.jpeg');
  }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: clamp(6px, 1vw, 12px);
  background: #f7a707;
}

/* Slider Controls (Dots) */
.slider-controls {
  position: absolute;
  bottom: clamp(15px, 3vw, 30px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(8px, 1.5vw, 12px);
  z-index: 10;
}

.slider-dot {
  width: clamp(8px, 1.5vw, 12px);
  height: clamp(8px, 1.5vw, 12px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.2);
}

.slider-arrow {
  display: none !important;
}

.slider-prev,
.slider-next {
  display: none !important;
}

/* ================= HERO (Fallback) ================= */


/* ================= EVENTS ================= */
.section-events {
  background: #fff;
  /* padding: clamp(40px, 8vw, 60px) var(--space-md); */
  margin: 0 auto;
}

.section-events .section-head {
  text-align: center;
  margin-bottom: clamp(32px, 6vw, 48px);
}

.section-events .section-head .title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 48px);
  color: #003C1C;
  margin-bottom: 16px;
  word-break: break-word;
}

.mobile-break {
  display: block;
}

.desktop-text {
  display: none;
}

@media (max-width: 768px) {
  .section-events .section-head .title {
    max-width: 100%;
    word-break: break-word;
  }

  .desktop-text {
    display: none;
  }
}

@media (min-width: 769px) {
  .mobile-break {
    display: inline;
  }

  .desktop-text {
    display: inline;
  }
}

.section-events .section-head .subtitle {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(16px, 3vw, 24px);
  color: #8F6C4E;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  align-items: start;
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (max-width: 1200px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    gap: 22px;
  }
}

@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: minmax(300px, 1fr);
    max-width: 800px;
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
    gap: 16px;
    padding: 0 var(--space-md);
    justify-items: stretch;
  }
}

@media (max-width: 480px) {
  .events-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0 var(--space-md);
    gap: 40px;
    justify-items: stretch;
  }
}

/* Position cards 4 and 5 on the same row (desktop) */
@media (min-width: 1025px) {
  .event-card:nth-child(4),
  .event-card:nth-child(5) {
    grid-column: auto;
    position: relative;
    left: 226px;
   
  }
   .event-card-wrapper:nth-child(4),
    .event-card-wrapper:nth-child(5) {
       grid-column: auto;
    position: relative;
    left: 226px;
    }
  .event-card:nth-child(1),
  .event-card:nth-child(2),
  .event-card:nth-child(3) {
    grid-column: span 1;
  }
}

.event-card {
  width: 100%;
  max-width: 385px;
  aspect-ratio: 385 / 464;
  background: linear-gradient(180deg, #FEF4EB 0%, #F6D5D0 100%);
  border: none;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.event-card:hover .event-diagonal {
  background: #DD603A;
}

.event-img {
  flex: 1;
  background: #fde7e2;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.event-card:hover .event-img img {
  transform: scale(1.08);
}

.event-diagonal {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  height: 104px;
  background: #B5273F;
  transition: var(--transition);
  clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  gap: 8px;
  color: #fff;
}

.event-footer-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #FFFFFF;
  margin-top: 8px;
}

.event-footer-item span {
  display: block;
  flex-basis: 100%;
  text-align: center;
}

.event-footer-item span:first-child {
  font-family: Mukta Vaani;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
}

.event-footer-item span:last-child {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.event-footer-item .detail-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}

.event-icon {
  width: 16px;
  height: 16px;
  display: block;
}

/* Event Card Wrapper & CTA */
.event-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 385px;
}

.event-card-cta {
  width: 100%;
  max-width: 385px;
  margin-top: 14px;
  padding: clamp(10px, 2vw, 14px) clamp(16px, 3vw, 24px);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #B5273F;
  background: transparent;
  color: #B5273F;
  font-family: var(--font-sans);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.event-card-cta:hover,
.event-card-cta:focus {
  background: #B5273F;
  color: #fff;
  outline: none;
}
.event-card-cta.is-disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
}

.event-card-cta.is-disabled:hover,
.event-card-cta.is-disabled:focus {
  background: transparent;
  color: #B5273F;
  outline: none;
}

@media (max-width: 1024px) {
  .event-card {
    width: 100%;
    max-width: 385px;
    margin: 0;
  }

  .event-card-wrapper {
    width: 100%;
    max-width: 385px;
  }
}

@media (max-width: 768px) {
  .event-card {
    width: 100%;
    max-width: 385px;
    margin: 0 auto;
    aspect-ratio: 385 / 464;
    display: flex;
    flex-direction: column;
  }

  .event-card-wrapper {
    width: 100%;
    max-width: 385px;
    margin: 0 auto;
  }

  .event-card-cta {
    width: 100%;
    max-width: 385px;
    margin: 14px auto 0;
  }

  .event-img {
    flex: 1;
    display: flex;
    align-items: stretch;
  }

  .event-img img {
    display: block;
  }

  .event-diagonal {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 354px;
    height: 95.63px;
    padding: 16px;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 25%, 100% 0%, 100% 100%, 0% 100%);
  }

  .event-footer-item {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }

  .event-footer-item span:first-child {
    font-family: Mukta Vaani;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
  }

  .event-footer-item span:last-child {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
  }
}

@media (max-width: 480px) {
  .event-card {
    width: 100%;
    max-width: 385px;
    margin: 0 auto;
    aspect-ratio: 385 / 464;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .event-card-wrapper {
    width: 100%;
    max-width: 385px;
    margin: 0 auto;
  }

  .event-card-cta {
    width: 100%;
    max-width: 385px;
    margin: 14px auto 0;
  }

  .event-img {
    flex: 1;
    display: flex;
    align-items: stretch;
  }

  .event-img img {
    display: block;
  }

  .event-diagonal {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    height: 75px;
    padding: 12px;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .event-footer-item {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }

  .event-footer-item span:first-child {
    font-family: Mukta Vaani;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
  }

  .event-footer-item span:last-child {
    font-family: Poppins;
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
  }
}

/* ================= BUTTON ================= */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #B5273F;
  padding: clamp(8px, 1.5vw, 10px) clamp(16px, 3vw, 24px);
  min-height: 44px;
  min-width: 44px;
  width: clamp(280px, 90vw, 371px);
  text-decoration: none;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  color: #B5273F;
  font-family: var(--font-sans);
  transition: var(--transition);
  cursor: pointer;
  border-radius: 4px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.btn-outline:hover,
.btn-outline:focus {
  background: #B5273F;
  color: #fff;
  outline: none;
}

@media (max-width: 768px) {
  .btn-outline {
    width: 100%;
    max-width: 90%;
  }
}

.btn-register {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: clamp(8px, 1.5vw, 12px) clamp(14px, 2vw, 24px);
  min-height: 44px;
  min-width: 44px;
  font-size: clamp(10px, 1.3vw, 12px);
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
  font-family: var(--font-sans);
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.btn-register:hover,
.btn-register:focus {
  background: #DD603A;
  color: #fff;
  outline: none;
  text-decoration: none;
}

.btn-send-message {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: clamp(8px, 1.5vw, 12px) clamp(14px, 2vw, 24px);
  min-height: 44px;
  min-width: 44px;
  font-size: clamp(10px, 1.3vw, 12px);
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: clamp(8px, 1.5vw, 10px);
  transition: var(--transition);
  font-family: var(--font-sans);
  border-radius: 4px;
}

.btn-send-message:hover,
.btn-send-message:focus {
  opacity: 0.9;
  outline: none;
}

/* ================= TEXT BLOCK ================= */
/* ================= FIGMA TEXT CAROUSEL (1440 x 612) ================= */
.figma-text-carousel {
  width: 100%;
  max-width: 1440px;
  height: 612px;
  margin: 0 auto;

  background: #fde7e2;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 0 18px 0;
}

/* track + slides */
.carousel-inner {
  height: 100%;
}

.carousel-track {
  height: 100%;
  position: relative;
}

.carousel-slide {
  display: none;
  height: 100%;
}

.carousel-slide.active {
  display: block;
}

/* slide content area */
.slide-content {
  max-width: 720px;
}

/* left alignment */
.carousel-slide.align-left .slide-content {
  text-align: left;
}

/* right alignment */
.carousel-slide.align-right {
  display: none;
}
.carousel-slide.align-right.active {
  display: block;
}

.carousel-slide.align-right .slide-content {
  margin-left: auto;
  text-align: right;
}


/* typography */
.carousel-title {
  font-size: 32px;
  color: #0c5b3d;
  margin-bottom: 14px;
  line-height: 1.2;
}

.carousel-subtitle {
  font-size: 13px;
  color: #7b6b6b;
  margin-bottom: 22px;
  line-height: 1.6;
}

.carousel-text {
  font-family: 'Mukta Vaani', sans-serif;
  font-size: 13px;
  line-height: 2;
  color: #6b6b6b;
}

@media (max-width: 767px) {
  .carousel-text {
    font-size: 16px !important;
    padding: 0 4px !important;
    margin-left: -4px !important;
    margin-right: -4px !important;
  }
}

.carousel-text p {
  margin-bottom: 14px;
}

.text-red {
  color: #d65050;
}

/* arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;

  background: #bfb1a8;
  color: #fff;

  font-size: 26px;
  line-height: 1;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow.left {
  left: 40px;
}

.carousel-arrow.right {
  right: 40px;
}

/* dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding-bottom: 6px;
}

.c-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: #cfcfcf;
  cursor: pointer;
}

.c-dot.active {
  background: var(--maroon);
}

/* responsive */
@media (max-width: 900px) {
  .figma-text-carousel {
    height: auto;
    padding: 35px 0 18px 0;
  }

  .slide-content {
    max-width: 100%;
  }

  .carousel-arrow.left {
    left: 12px;
  }

  .carousel-arrow.right {
    right: 12px;
  }

  .carousel-title {
    font-size: 24px;
  }
}


/* ================= CIRCLES ================= */
.section-circles {
  background: #fff;
  padding: clamp(30px, 5vw, 60px) var(--space-md);
}

.section-circles .container {
  max-width: 100%;
  padding: 0;
}

.section-circles .section-head {
  text-align: center;
  margin-bottom: clamp(32px, 6vw, 48px);
}

.section-circles .section-head .title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(44px, 5vw, 48px);
  color: #003C1C;
  margin-bottom: clamp(8px, 1.5vw, 16px);
}

.section-circles .section-head .subtitle {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 24px);
  color: #8F6C4E;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.4;
}

.circles-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(2px, 0.8vw, 8px);
  flex-wrap: nowrap;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(6px, 1vw, 16px);
  overflow-x: hidden;
  overflow-y: hidden;
}

.circle-item {
  flex: 0 0 auto;
  text-align: center;
  min-width: auto;
}

.circle-img {
  border-radius: 50%;
  overflow: hidden;
  background: #ddd;
  margin: 0 auto clamp(8px, 1.5vw, 14px);
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.circle-120 {
  width: clamp(50px, 6vw, 80px);
  height: clamp(50px, 6vw, 80px);
}

.circle-168 {
  width: clamp(65px, 8vw, 110px);
  height: clamp(65px, 8vw, 110px);
}

.circle-218 {
  width: clamp(85px, 10vw, 135px);
  height: clamp(85px, 10vw, 135px);
}

.circle-284 {
  width: clamp(110px, 12vw, 170px);
  height: clamp(110px, 12vw, 170px);
}

.circle-text {
  font-family: 'Mukta Vaani', sans-serif;
  font-size: clamp(12px, 1.5vw, 16px);
  color: #0c5b3d;
  font-weight: 600;
  margin-bottom: clamp(6px, 1vw, 12px);
  line-height: 1.3;
  max-width: clamp(140px, 90vw, 220px);
  word-break: break-word;
}

@media (max-width: 767px) {
  .circle-text {
    font-size: 16px !important;
    max-width: 95vw !important;
    padding: 0 4px !important;
    margin-left: -4px !important;
    margin-right: -4px !important;
  }
}

.circle-text span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #0c5b3d;
  opacity: 0.85;
}

.circle-line {
  display: block;
  width: clamp(30px, 8vw, 48px);
  height: clamp(1px, 0.2vw, 2px);
  margin: clamp(6px, 1vw, 10px) auto 0;
  background: var(--secondary);
  opacity: 0.35;
}

/* Carousel Styles */
.circles-carousel {
  position: relative;
}

.carousel-image {
  transition: opacity 0.6s ease;
  opacity: 1;
  display: block;
}

/* Desktop Large Screens (1441px+) */
@media (min-width: 1441px) {
  .circles-row {
    gap: 10px;
    padding: 0 16px;
  }
  
  .circle-120 {
    width: 80px;
    height: 80px;
  }
  
  .circle-168 {
    width: 110px;
    height: 110px;
  }
  
  .circle-218 {
    width: 135px;
    height: 135px;
  }
  
  .circle-284 {
    width: 170px;
    height: 170px;
  }
}

@media (min-width: 1025px) {
  .circles-row {
    justify-content: space-around;
    gap: clamp(6px, 1.5vw, 18px);
    padding: 0 clamp(12px, 2vw, 28px);
  }

  .circle-item {
    flex: 1 1 auto;
    min-width: 0;
    max-width: clamp(80px, 14vw, 160px);
  }

  .circle-img {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: clamp(8px, 1.5vw, 14px);
  }

  .circle-120,
  .circle-168,
  .circle-218,
  .circle-284 {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .circle-text {
    max-width: clamp(120px, 95vw, 180px);
    font-size: clamp(11px, 1.2vw, 14px);
  }
}

@media (min-width: 1440px) {
  .circles-row {
    justify-content: center;
    gap: clamp(12px, 2vw, 24px);
    padding: 0 clamp(20px, 3vw, 40px);
  }

  .circle-item {
    flex: 0 1 auto;
    min-width: auto;
    max-width: none;
  }

  .circle-120,
  .circle-168,
  .circle-218,
  .circle-284 {
    width: clamp(75px, 10vw, 140px);
    height: clamp(75px, 10vw, 140px);
    aspect-ratio: unset;
  }

  /* .circle-img {
    width: 100%;
    height: 100%;
    margin-bottom: clamp(8px, 1.5vw, 14px);
  } */

  .circle-text {
    max-width: clamp(140px, 18vw, 200px);
    font-size: clamp(12px, 1.4vw, 16px);
  }
}

@media (max-width: 1024px) {
  .circles-row {
    gap: clamp(12px, 2vw, 24px);
    padding: 0 clamp(16px, 2vw, 24px);
  }

  .circle-120 {
    width: clamp(70px, 9vw, 110px);
    height: clamp(70px, 9vw, 110px);
  }

  .circle-168 {
    width: clamp(90px, 10vw, 140px);
    height: clamp(90px, 10vw, 140px);
  }

  .circle-218 {
    width: clamp(110px, 12vw, 170px);
    height: clamp(110px, 12vw, 170px);
  }

  .circle-284 {
    width: clamp(130px, 13vw, 200px);
    height: clamp(130px, 13vw, 200px);
  }

  .section-circles .title {
    font-size: clamp(28px, 6vw, 48px);
  }

  .section-circles .subtitle {
    font-size: clamp(18px, 4vw, 24px);
  }
}

/* Show all carousel items (hidden items now visible but smaller) */
/* .circle-item.circle-hidden {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
} */

/* Make hidden circle items smaller */
/* .circle-item.circle-hidden .circle-img {
  width: clamp(45px, 9vw, 85px) !important;
  height: clamp(45px, 9vw, 85px) !important;
} */

@media (max-width: 768px) {
  .section-circles {
    padding: clamp(25px, 4vw, 40px) var(--space-md);
  }

  .circles-row {
    flex-wrap: wrap;
    gap: clamp(10px, 3vw, 20px);
    overflow-x: visible;
    max-width: 100%;
  }

  /* Show all circles on mobile */
  .circle-item.circle-hidden {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .circle-168,
  .circle-218,
  .circle-284 {
    width: clamp(80px, 20vw, 140px);
    height: clamp(80px, 20vw, 140px);
  }
}






/* ================= MAROON SECTION ================= */
.section-maroon {
  background: var(--primary);
  border-top: 6px solid var(--content);
}

.white {
  color: #fff;
}

.maroon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(16px, 3vw, 26px);
  margin-top: 20px;
}

@media (max-width: 768px) {
  .maroon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

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

.maroon-card {
  text-align: center;
  transition: var(--transition);
}

.maroon-card:hover {
  transform: translateY(-4px);
}

.maroon-img {
  height: clamp(200px, 30vw, 230px);
  background: linear-gradient(#fde7e2, #e77956);
  overflow: hidden;
  border-radius: 4px;
}

.maroon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.maroon-card:hover .maroon-img img {
  transform: scale(1.05);
}

.maroon-text {
  margin-top: -20px;
  padding: clamp(12px, 2vw, 16px);
  color: #fff;
  font-size: clamp(11px, 1.5vw, 13px);
  line-height: 1.5;
}

/* ================= GALLERY ================= */
.section-gallery {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(12px, 2vw, 18px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.g-box {
  width: 100%;
  background: #f7d6d6;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: auto;
  min-height: 150px;
}

.g-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.g-box:hover img {
  transform: scale(1.05);
}

/* Responsive heights */
.h-294 { height: auto; min-height: 200px; }
.h-385 { height: auto; min-height: 250px; }
.h-175 { height: auto; min-height: 150px; }
.h-399 { height: auto; min-height: 280px; }
.h-258 { height: auto; min-height: 200px; }
.h-310 { height: auto; min-height: 220px; }
.h-382 { height: auto; min-height: 270px; }

@media (min-width: 1200px) {
  .h-294 { height: 294px; }
  .h-385 { height: 385px; }
  .h-175 { height: 175px; }
  .h-399 { height: 399px; }
  .h-258 { height: 258px; }
  .h-310 { height: 310px; }
  .h-382 { height: 382px; }
}

/* ================= FOOTER ================= */
.footer {
  width: 100%;
  margin: 0 auto;
  background: #fff1ea;
  border-top: 6px solid #f7a707;
}

.footer-inner {
  padding: clamp(25px, 5vw, 55px) var(--space-md) 0;
}

.footer-top-text {
  text-align: center;
  padding-bottom: clamp(15px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.footer-top-text p {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: #7b6b6b;
  line-height: 100%;
  text-align: center;
  margin: 0;
}

.footer-top-text p:first-of-type {
  color: #BF2440;
}

.footer-top-text p:last-of-type {
  color: #0c5b3d;
  line-height: 1.2;
}

.footer-top-text p + p {
  margin-top: 4px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #d8bfb4;
  margin-top: 18px;
  margin-bottom: 18px;
}

.footer-grid-figma {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  column-gap: clamp(15px, 3vw, 45px);
  padding: clamp(20px, 5vw, 55px) var(--space-md);
  margin-bottom: 18px;
}

.footer-vline {
  width: 1px;
  height: clamp(100px, 20vw, 140px);
  background: #d8bfb4;
  margin: 0 auto;
}

.footer-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-col h3 {
  font-size: clamp(11px, 1.5vw, 14px);
  color: #0c5b3d;
  margin-bottom: clamp(6px, 1vw, 8px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-sans);
}

.footer-col h4 {
  font-size: clamp(11px, 1.5vw, 14px);
  color: #0c5b3d;
  margin-bottom: clamp(12px, 2vw, 16px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: clamp(10px, 1.3vw, 12px);
  color: #7b6b6b;
  line-height: 1.6;
  margin-bottom: clamp(3px, 0.5vw, 4px);
}

.footer-col a {
  color: #7b6b6b;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-bottom {
  min-height: clamp(50px, 8vw, 85px);
  background: var(--maroon);
  border-top: clamp(4px, 1vw, 6px) color: #f7a707;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(10px, 1.3vw, 12px);
  opacity: 0.95;
  text-align: center;
  padding: clamp(12px, 2vw, 16px) var(--space-md);
}
.footer-bottom-link{
  color: #fff;
  text-decoration: none;
   min-height:0px;
}

.footer-bottom-link:visited,
.footer-bottom-link:hover,
.footer-bottom-link:focus{
  color: #fff;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .footer-grid-figma {
    column-gap: clamp(15px, 2vw, 30px);
  }

  .footer-vline {
    height: clamp(80px, 15vw, 120px);
  }
}

@media (max-width: 768px) {
  .footer-inner {
    padding: clamp(20px, 3vw, 25px) var(--space-md) 0;
  }

  .footer-grid-figma {
    grid-template-columns: 1fr;
    row-gap: clamp(18px, 3vw, 25px);
    padding: clamp(18px, 3vw, 25px) var(--space-md);
  }

  .footer-vline {
    display: none;
  }

  .footer-col {
    padding: 0;
  }

  .footer-bottom {
    height: auto;
    padding: clamp(12px, 2vw, 16px) var(--space-md);
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: clamp(11px, 1.5vw, 13px);
  }

  .footer-col p {
    font-size: clamp(10px, 1.3vw, 11px);
  }
}


/* ================= COMPREHENSIVE RESPONSIVE BREAKPOINTS ================= */

/* Small phones (320px - 480px) */
@media (max-width: 480px) {
  .nav-wrap {
    flex-direction: column;
    gap: 12px;
  }

  .nav-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    order: -1;
    margin-bottom: 12px;
  }

  .logo {
    width: 90px;
    padding-top: 8px;
  }

  .events-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .maroon-grid {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .carousel-arrow.left {
    left: 8px;
  }

  .carousel-arrow.right {
    right: 8px;
  }
}

/* Tablets (481px - 768px) */
@media (max-width: 768px) {
  .nav-wrap {
    padding: 0 var(--space-md);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .maroon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-slide {
    padding: 0 var(--space-md);
  }

  .carousel-arrow.left {
    left: 16px;
  }

  .carousel-arrow.right {
    right: 16px;
  }
}

/* Medium tablets (769px - 1024px) */
@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .maroon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .circles-row {
    gap: 30px;
    padding: 0 var(--space-md);
  }
}

/* Large screens (1025px and above) */
@media (min-width: 1025px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .circles-row {
    gap: 55px;
  }
}

/* Touch-friendly adjustments */
@media (hover: none) {
  .event-card,
  .maroon-card,
  .info-block {
    /* Disable hover effects on touch devices */
  }

  button,
  a {
    min-height: 44px;
    min-width: 44px;
  }

  /* Exclude carousel dots from touch-friendly sizing */
  .carousel-dot {
    min-height: unset;
    min-width: unset;
  }
}

/* High-resolution displays */
@media (min-width: 1441px) {
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .mobile-menu-toggle {
    display: none;
  }

  body {
    line-height: 1.5;
    color: #000;
  }

  button,
  .btn-register,
  .btn-outline {
    border: 1px solid #000;
    background: transparent !important;
  }
}


/* ================= CHATURMAS REGISTRATION PAGE ================= */

.registration-section {
  background: #fff;
  padding: clamp(40px, 8vw, 60px) 24px;
}

@media (min-width: 1025px) {
  .registration-section {
    padding-left: 120px;
    padding-right: 120px;
  }
}

@media (max-width: 600px) {
  .registration-section {
    padding: 20px 12px;
  }
}

.registration-card {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #7fa08f;
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 262px 1fr;
  background: #fff;
}

@media (max-width: 768px) {
  .registration-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .registration-card {
    border-radius: 4px;
    margin: 0 auto;
  }
}

.registration-strip {
  background: var(--maroon);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 262px;
  height: 100%;
  padding: var(--space-sm);
}

@media (max-width: 768px) {
  .registration-strip {
    width: 100%;
    height: auto;
    min-height: 60px;
    padding: var(--space-sm);
  }
}

.strip-text {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: clamp(14px, 2vw, 18px);
  transform: rotate(-90deg);
  white-space: nowrap;
  text-align: center;
}

@media (max-width: 768px) {
  .strip-text {
    transform: none;
    font-size: 14px;
  }
}

.registration-form-area {
  padding: clamp(25px, 4vw, 40px);
  display: flex;
  align-items: flex-start;
  min-height: 1262px;
  width: 100%;
  overflow-x: hidden;
}

.reg-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.5vw, 28px);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  align-items: start;
}

@media (max-width: 768px) {
  .registration-form-area {
    padding: clamp(16px, 3vw, 24px);
    min-height: auto;
    align-items: flex-start;
  }

  .reg-form {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .registration-form-area {
    padding: 12px 12px;
    min-height: auto;
  }

  .reg-form {
    gap: 16px;
  }
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-group > label {
  
  font-size: clamp(10px, 1.5vw, 12px);
  color: #8F6C4E;
  margin-bottom: 8px;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.radio-text{

  font-family: 'Mukta Vaani', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #ddd;
  padding: clamp(10px, 1.5vw, 12px) var(--space-sm);
  font-size: clamp(11px, 1.5vw, 12px);
  outline: none;
  background: #fff;
  font-family: inherit;
  transition: var(--transition);
  max-width: 100%;
  box-sizing: border-box;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1.4;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, #8F6C4E 50%),
    linear-gradient(135deg, #8F6C4E 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

@media (max-width: 600px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 14px;
    min-height: 40px;
    padding: 10px 12px;
  }

  .form-group > label {
    font-size: 11px;
    margin-bottom: 6px;
    margin-top: 4px;
  }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(191, 36, 64, 0.1);
}

.form-group small {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  color: #888;
  line-height: 1.4;
}

/* Three-column form row with equal spacing */
.form-row-three-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  width: 100%;
  align-items: flex-start;
}

.form-row-three-cols .form-group {
  display: flex;
  flex-direction: column;
}

.form-row-three-cols .form-group input {
  width: 100%;
}

.updhan-location-row {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.8fr);
}

.navvanu-location-row {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.8fr);
}

.updhan-location-row .form-group,
.navvanu-location-row .form-group,
.updhan-location-row #country,
.navvanu-location-row #country,
.updhan-location-row #state,
.navvanu-location-row #state,
.updhan-location-row #pincode,
.navvanu-location-row #pincode {
  max-width: none !important;
}

/* Specific widths for State, Pincode, Country fields */
#state {
  max-width: 360px !important;
}

#pincode {
  max-width: 160px !important;
}

#country {
  max-width: 320px !important;
}

@media (max-width: 1024px) {
  #state {
    max-width: 100% !important;
  }

  #pincode {
    max-width: 100% !important;
  }

  #country {
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .form-row-three-cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .updhan-location-row {
    grid-template-columns: 1fr;
  }

  .navvanu-location-row {
    grid-template-columns: 1fr;
  }

  #state,
  #pincode,
  #country {
    max-width: 100% !important;
  }
}

/* Mobile-first responsive design for form */
@media (max-width: 600px) {
  .registration-card {
    flex-direction: column;
  }

  .registration-strip {
    width: 100%;
    height: auto;
    padding: 16px;
    margin-bottom: 0;
  }

  .registration-form-area {
    width: 100%;
    padding: clamp(18px, 3vw, 24px);
    min-height: auto;
  }

  .reg-form {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .form-group > label {
    font-size: 16px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 14px;
    padding: 10px;
    min-height: 40px;
  }

  .radio-row {
    gap: 12px;
  }

  .upload-box {
    padding: clamp(12px, 3vw, 20px);
  }

  .btn-register {
    width: 100%;
    font-size: 14px;
    padding: 12px 16px;
  }
}

.radio-row {
  display: flex;
  gap: clamp(16px, 4vw, 28px);
  /*padding-top: 8px;*/
  flex-wrap: wrap;
  align-items: center;
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding-top: 8px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(14px, 1.5vw, 12px);
  color: #555;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
  padding: 0;
  margin: 0;
}

.radio-item input[type="radio"],
.check-row input[type="checkbox"] {
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin: 0;
  vertical-align: middle;
}

.radio-item span,
.check-row span {
  display: block;
  line-height: 1.2;
  margin: 0;
}

.upload-box {
  border: 2px dashed #c9c9c9;
  height: clamp(100px, 20vw, 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  background: #fafafa;
}

.upload-box:hover {
  border-color: var(--primary);
  background: #f5f5f5;
}

.upload-label {
  cursor: pointer;
  text-align: center;
  color: #777;
  font-size: clamp(11px, 1.5vw, 12px);
  width: 100%;
}

.upload-icon {
  font-size: clamp(18px, 3vw, 20px);
  margin-bottom: 8px;
}

.upload-text span {
  color: var(--maroon);
  font-weight: 700;
}

.form-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-md);
  margin-top: 18px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .form-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .form-bottom .btn-register {
    width: 100%;
  }
}

.declaration {
  font-size: clamp(10px, 1.5vw, 11px);
  color: #666;
  max-width: 100%;
  flex: 1;
  min-width: 250px;
}

@media (max-width: 768px) {
  .declaration {
    min-width: 100%;
  }
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
  font-size: clamp(10px, 1.5vw, 11px);
}

.declaration p {
  line-height: 1.8;
  margin-top: 8px;
}

/* ================= EVENTS DETAILS PAGE ================= */

.page-header {
  background: linear-gradient(90deg, #FFFFFF 0%, #FCDFD7 100%);
  width: 100%;
  height: 229px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-md);
  margin: 0 auto;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 1025px) {
  .page-header {
    padding: 0 120px;
  }
}

@media (max-width: 600px) {
  .page-header {
    height: auto;
    padding: 20px 12px;
    min-height: 140px;
  }
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 500;
  margin-top: 24px;
  color: #0c5b3d;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  /*margin-bottom: 32px;*/
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .page-title {
    font-size: 24px;
  }
}

.breadcrumb {
  font-size: clamp(11px, 1.5vw, 12px);
  color: var(--muted);
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  word-break: break-word;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.25rem;
}

/* Updhan Header Event Details */
.header-event-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
  text-align: center;
}

.event-detail-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
}

.detail-label {
  font-weight: 500;
  color: #8B6F47;
  font-family: 'Poppins', sans-serif;
}

.detail-value {
  color: #0c5b3d;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
}

@media (max-width: 600px) {
  .header-event-details {
    gap: 14px;
    margin: 24px 0;
  }

  .event-detail-item {
    font-size: 16px;
    flex-direction: column;
    gap: 6px;
  }

  .detail-label,
  .detail-value {
    display: block;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 24px;
  }

  .event-detail-item {
    font-size: 18px;
  }

  .detail-label,
  .detail-value {
    font-size: 12px;
  }
}

.events-details-section {
  background: #fff;
  padding: clamp(40px, 8vw, 60px) 0;
}

.event-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 50px);
  margin-bottom: clamp(50px, 10vw, 80px);
  align-items: center;
}

@media (max-width: 1024px) {
  .event-detail-card {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .event-detail-card {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }

  .event-detail-left {
    order: 2;
  }

  .event-detail-right {
    order: 1;
  }
}

.event-detail-card:last-child {
  margin-bottom: 0;
}

.event-detail-left {
  padding: var(--space-md) 0;
}

.event-title {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.event-details {
  margin-bottom: 24px;
}

.details-heading {
  font-size: clamp(12px, 1.5vw, 14px);
  color: #222;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
  font-size: clamp(12px, 1.5vw, 13px);
  color: var(--muted);
}

.detail-icon {
  width: 9.333333px;
  height: 13.333333px;
  transform: rotate(0deg);
  opacity: 1;
  position: relative;
  top: 1.33px;
  left: 3.33px;
}

.detail-text {
  color: var(--text);
  font-weight: 500;
}

.event-description {
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: clamp(12px, 1.5vw, 13px);
  color: var(--text);
}

.event-description p {
  margin-bottom: 12px;
}

.text-gujarati {
  color: #0c5b3d;
  font-style: italic;
  margin-top: 8px;
}

.event-detail-right {
  width: 100%;
}

.event-detail-img {
  width: 100%;
  height: clamp(250px, 50vw, 400px);
  background: #fde7e2;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.closing-message {
  background: #fde7e2;
  padding: clamp(40px, 8vw, 60px) 24px;
  text-align: center;
}

@media (min-width: 1025px) {
  .closing-message {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.message-text {
  font-size: clamp(12px, 1.5vw, 14px);
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}

.message-gujarati {
  font-size: clamp(14px, 2vw, 16px);
  color: #0c5b3d;
  font-weight: 600;
}
/* ================= CONTACT PAGE ================= */

.contact-top-strip {
  background: transparent;
  padding: clamp(30px, 4.2vw, 52px) 24px;
}

@media (max-width: 1024px) {
  /* Keep contact page mobile menu flush with navbar (remove empty strip) */
  body.contact-page .nav-menu {
    top: 100%;
    padding-top: 8px;
  }
}

@media (min-width: 1025px) {
  .contact-top-strip {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.contact-top-grid {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  justify-content: space-between;
  align-items: start;
  column-gap: clamp(24px, 4vw, 72px);
  row-gap: 24px;
}

.contact-top-item {
  min-width: 0;
}

.contact-top-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--primary);
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
}

.contact-top-icon {
  width: 16px;
  height: 16px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-top-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contact-top-value {
  margin: 0;
  color: #8f6c4e;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 166%;
  letter-spacing: 0;
}

.contact-top-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  align-self: center;
  gap: 4px;
  background: #00893c;
  color: #fff;
  text-decoration: none;
  width: fit-content;
  height: 32px;
  max-width: 100%;
  padding: 0 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  opacity: 1;
  transition: var(--transition);
}

.contact-top-whatsapp:hover,
.contact-top-whatsapp:focus {
  background: #047233;
}

.contact-top-icon--white {
  color: #fff;
  width: 14px;
  height: 14px;
}

.contact-hero-image {
  margin-top: 54px;
}

.contact-hero-image .container {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.contact-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1200px) {
  .contact-top-grid {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 24px;
    row-gap: 24px;
  }

  .contact-top-item {
    width: 100%;
    text-align: center;
  }

  .contact-top-title {
    justify-content: center;
  }

  .contact-top-whatsapp {
    width: fit-content;
    min-width: auto;
    justify-content: center;
  }
}

.contact-intro {
  background: transparent;
  padding: clamp(35px, 5vw, 50px) 24px;
  text-align: center;
  margin-top: 80px;
}

@media (min-width: 1025px) {
  .contact-intro {
    padding: clamp(35px, 5vw, 50px) 120px;
  }
}

.intro-text {
  font-size: clamp(14px, 2vw, 16px);
  color: #8b6b6b;
  margin-bottom: 12px;
  line-height: 1.6;
}

.intro-text-gujarati {
  font-size: clamp(12px, 1.5vw, 14px);
  color: #0c5b3d;
  font-weight: 600;
  margin-bottom: 16px;
}

.intro-subtitle {
  font-size: clamp(11px, 1.5vw, 12px);
  color: var(--muted);
  line-height: 1.8;
}

.contact-section {
  background: #fff;
  padding: clamp(40px, 8vw, 60px) 24px;
}

@media (min-width: 1025px) {
  .contact-section {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.section-title {
  font-size: clamp(18px, 3vw, 24px);
  color: #0c5b3d;
  margin-bottom: clamp(25px, 5vw, 40px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .contact-wrapper {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.contact-form-area {
  background: #FEF8F7;
  padding: clamp(25px, 4vw, 40px);
  border: 1px solid #f0d6d6;
  border-radius: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 18px);
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 600;
  color: #8F6C4E;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  padding: clamp(10px, 2vw, 12px) var(--space-sm);
  border: 1px solid #e8d4d4;
  background: #fff;
  font-size: clamp(12px, 1.5vw, 14px);
  color: var(--text);
  font-family: inherit;
  border-radius: 4px;
  transition: var(--transition);
  min-height: 44px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(191, 36, 64, 0.1);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #bbb;
}

.contact-form textarea {
  resize: vertical;
  line-height: 1.6;
  min-height: 140px;
}

.contact-info-area {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 36px);
}

.info-block {
  display: flex;
  gap: clamp(16px, 2vw, 20px);
  align-items: flex-start;
  padding: clamp(16px, 3vw, 24px);
  border-radius: 4px;
  transition: var(--transition);
}

.info-block:hover {
  background: rgba(191, 36, 64, 0.05);
}

.info-icon {
  font-size: clamp(20px, 3vw, 24px);
  min-width: clamp(24px, 4vw, 30px);
  color: var(--maroon);
}

.info-content {
  flex: 1;
}

.info-title {
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-content p {
  font-size: clamp(11px, 1.5vw, 13px);
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 4px;
}

.guidance-note-section {
  background: #fff;
  padding: clamp(40px, 8vw, 60px) 24px;
}

@media (min-width: 1025px) {
  .guidance-note-section {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.guidance-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
}

.guidance-list li {
  font-size: clamp(12px, 1.8vw, 14px);
  color: var(--text);
  margin-bottom: clamp(14px, 2vw, 18px);
  padding-left: 32px;
  position: relative;
  line-height: 1.7;
}

.guidance-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: clamp(14px, 2vw, 16px);
}

@media (max-width: 768px) {
  .contact-intro {
    padding: 30px 24px;
    margin-top: 60px;
  }

  .contact-form-area {
    padding: 20px;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .contact-section {
    padding: clamp(30px, 5vw, 40px) 24px;
  }
}

/* ================= DIVYA KRUPA SECTION ================= */
.section-circles {
  background: #fff;
  padding: 60px var(--space-md);
}

.section-circles .container {
  width: min(100%, 1440px);
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

.section-circles .section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-circles .title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  color: #003C1C;
  margin-bottom: 20px;
}

.section-circles .subtitle {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  color: #8F6C4E;
  max-width: 580px;
  margin: 0 auto;
}

.circles-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 1vw, 14px);
  flex-wrap: nowrap;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(6px, 1.2vw, 16px);
  overflow-x: hidden;
}

.circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 0 1 auto;
  min-width: 0;
}

.circle-item .circle-img {
  background: linear-gradient(180deg, #FEF4EB 0%, #F6D5D0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.circle-item .circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-image {
  transition: none;
}

.circle-120 {
  width: clamp(56px, 6.5vw, 90px);
  height: clamp(56px, 6.5vw, 90px);
}

.circle-168 {
  width: clamp(78px, 8.5vw, 124px);
  height: clamp(78px, 8.5vw, 124px);
}

.circle-218 {
  width: clamp(96px, 10.5vw, 158px);
  height: clamp(96px, 10.5vw, 158px);
}

.circle-284 {
  width: clamp(112px, 12.5vw, 186px);
  height: clamp(112px, 12.5vw, 186px);
}

.circle-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: #05431A;
  text-align: center;
  line-height: 27px;
  max-width: 180px;
}

.circle-text span {
  display: block;
  font-size: 12px;
}

.circle-line {
  width: 40px;
  height: 2px;
  background: #C9B7A8;
  margin-top: 12px;
}

@media (min-width: 1441px) {
  .circles-row {
    gap: 20px;
    padding: 0 24px;
    justify-content: space-between;
    align-items: flex-start;
  }

  .circle-item {
    flex: 1 1 0;
    max-width: 180px;
  }

  .circle-120,
  .circle-168,
  .circle-218,
  .circle-284 {
    width: 160px;
    height: 160px;
  }

  .circle-text {
    max-width: 190px;
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  .circles-row {
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(10px, 1.2vw, 18px);
    padding: 0 clamp(8px, 1.5vw, 20px);
  }

  .circle-item {
    flex: 1 1 0;
    max-width: 170px;
  }

  .circle-120,
  .circle-168,
  .circle-218,
  .circle-284 {
    width: clamp(128px, 9vw, 160px);
    height: clamp(128px, 9vw, 160px);
  }

  .circle-text {
    max-width: 190px;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.5;
  }
}

@media (max-width: 1024px) {
  .circles-row {
    gap: clamp(12px, 2vw, 24px);
    padding: 0 clamp(16px, 2vw, 24px);
  }

  .circle-120 {
    width: clamp(70px, 9vw, 110px);
    height: clamp(70px, 9vw, 110px);
  }

  .circle-168 {
    width: clamp(90px, 10vw, 140px);
    height: clamp(90px, 10vw, 140px);
  }

  .circle-218 {
    width: clamp(110px, 12vw, 170px);
    height: clamp(110px, 12vw, 170px);
  }

  .circle-284 {
    width: clamp(130px, 13vw, 200px);
    height: clamp(130px, 13vw, 200px);
  }

  .section-circles .title {
    font-size: clamp(28px, 6vw, 48px);
  }

  .section-circles .subtitle {
    font-size: clamp(18px, 4vw, 24px);
  }
}

@media (max-width: 768px) {
  .section-circles {
    padding: 40px var(--space-md);
  }

  .circles-row {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .circle-item {
    width: 100%;
  }

  .circles-row {
    margin-top: -20px;
  }

  .circle-120, .circle-168, .circle-218, .circle-284 {
    width: clamp(175px, 35vw, 240px);
    height: clamp(175px, 35vw, 240px);
  }
}

/* ================= PAVAN NISHRA SECTION ================= */
.section-pavan-nishra {
  position: relative;
  padding: clamp(30px, 5vw, 60px) var(--space-md);
  background: #fff;
  margin-bottom: 0;
}

.pavan-nishra-border {
  position: absolute;
  width: 100vw;
  height: 6px;
  background: #f7a707;
  top: 0;
  left: 50%;
  right: 0;
  transform: translateX(-50%);
  z-index: 0;
}

.pavan-nishra-bg {
  position: absolute;
  width: 100%;
  height: clamp(200px, 50vw, 382px);
  left: 0;
  top: 10px;
  background: #B5273F;
  z-index: 1;
  border-top: 6px solid #f7a707;
}

.pavan-nishra-heading {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 40px);
}

.pavan-nishra-heading .title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  color: #FFEFE2;
  margin-bottom: clamp(12px, 2vw, 20px);
}

.pavan-nishra-heading .title br {
  display: none;
}

@media (max-width: 480px) {
  .pavan-nishra-heading .title br {
    display: block;
  }
}

.pavan-nishra-heading .subtitle {
  font-family: var(--font-sans);
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 400;
  color: #FCDFD7;
  max-width: 580px;
  margin: 0 auto;
}

.pavan-nishra-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: stretch;
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-top: 72px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pavan-nishra-card {
  /* width: 312px; */
  height: 396px;
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(12px, 2vw, 20px);
  text-align: center;
}

.pavan-nishra-card .card-text {
  font-family: var(--font-sans);
  font-size: clamp(14px, 3vw, 24px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: clamp(1.3, 1.6, 2);
}

.pavan-nishra-label {
  text-align: center;
  width: auto;
}

.pavan-nishra-label .label-title {
  font-family: 'Mukta Vaani', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 8px;
}

.pavan-nishra-label .label-name {
  font-family: 'Mukta Vaani', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
  text-align: center;
}

@media (min-width: 1025px) {
  .section-pavan-nishra {
    overflow: hidden;
  }

  .pavan-nishra-cards {
    gap: 28px;
    max-width: 760px;
    margin-top: 82px;
  }

  .pavan-nishra-label {
    position: relative;
    z-index: 3;
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 30px 48px 34px;
    color: #B5273F;
    background: linear-gradient(180deg, #fff9f4 0%, #f8e4d9 100%);
    border: 1px solid rgba(143, 108, 78, 0.22);
    border-radius: 30px;
    box-shadow:
      0 24px 60px rgba(83, 38, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }

  .pavan-nishra-label::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 22px;
    border: 1px solid rgba(181, 39, 63, 0.1);
    pointer-events: none;
  }

  .pavan-nishra-label .label-title {
    font-family: 'Mukta Vaani', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    color: #8F6C4E;
    text-align: center;
    margin-bottom: 14px;
    opacity: 0.95;
  }

  .pavan-nishra-label .label-name {
    font-family: 'Mukta Vaani', sans-serif;
    font-weight: 700;
    font-size: clamp(34px, 3vw, 42px);
    line-height: 1.28;
    letter-spacing: 0.01em;
    color: #B5273F;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    text-wrap: balance;
  }
}

.pavan-nishra-divider {
  font-family: 'Mukta Vaani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #F9BCC6;
  text-align: center;
  margin: 12px 0 15px 0;
  padding: 8px 12px;
  border-radius: 4px;
}

@media (min-width: 1025px) {
  .pavan-nishra-divider {
    position: relative;
    z-index: 3;
    width: fit-content;
    min-width: 130px;
    margin: 30px auto 22px;
    padding: 14px 32px;
    font-family: 'Mukta Vaani', sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #8F6C4E;
    text-align: center;
    background: linear-gradient(180deg, #fff7ef 0%, #f5ddd1 100%);
    border: 1px solid rgba(143, 108, 78, 0.22);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(83, 38, 0, 0.08);
  }

  .pavan-nishra-divider::before,
  .pavan-nishra-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, rgba(143, 108, 78, 0), rgba(143, 108, 78, 0.55), rgba(143, 108, 78, 0));
    transform: translateY(-50%);
  }

  .pavan-nishra-divider::before {
    right: calc(100% + 18px);
  }

  .pavan-nishra-divider::after {
    left: calc(100% + 18px);
  }
}

@media (max-width: 1024px) {
  .pavan-nishra-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .section-pavan-nishra {
    padding: clamp(20px, 4vw, 30px) var(--space-md);
  }

  .pavan-nishra-bg {
    height: clamp(160px, 45vw, 280px);
  }

  .pavan-nishra-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: clamp(15px, 3vw, 25px);
    max-width: 100%;
    padding: 0;
  }

  .pavan-nishra-card {
    width: 100%;
    max-width: 312px;
    height: auto;
    aspect-ratio: 312 / 396;
  }
}

@media (max-width: 480px) {
  .section-pavan-nishra {
    padding: clamp(15px, 3vw, 20px) var(--space-md);
    /* margin-bottom: 320px; */
    margin-bottom: 70px;
  }

  .pavan-nishra-border {
    height: 6px;
  }

  .pavan-nishra-bg {
    width: 100%;
    height: 338px;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pavan-nishra-heading .title {
    margin-bottom: clamp(8px, 1.5vw, 15px);
  }

  .pavan-nishra-heading {
    margin-top: 42px;
  }

  .pavan-nishra-cards {
    gap: 20px;
    margin-top: clamp(12px, 2vw, 20px);
  }

  .pavan-nishra-card {
    width: 100%;
    max-width: 312px;
    height: auto;
    aspect-ratio: 312 / 396;
    padding: clamp(8px, 1.5vw, 15px);
  }

  .pavan-nishra-divider {
    position: relative;
    z-index: 3;
  }

  .pavan-nishra-label {
    position: relative;
    z-index: 3;
  }

  .section-pavan-nishra::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 338px;
    background: #B5273F;
    left: 50%;
    transform: translateX(-50%);
    top: 800px;
    z-index: 0;
    border-bottom: 6px solid #f7a707;
    max-width: 100vw;
   
  }
  }


/* ================= CONTENT BANNER CAROUSEL ================= */
.content-banner-section {
  position: relative;
  width: 100%;
  height: auto;
  /* max-width: 1440px; */
  margin: 0 auto;
  aspect-ratio: 1440 / 612;
  background: #fff;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-content {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-content.active {
  opacity: 1;
  z-index: 1;
}

.carousel-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(40px, 6vw, 80px) clamp(40px, 8vw, 100px);
  gap: clamp(20px, 4vw, 50px);
}

/* Carousel background images */
.carousel-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient backgrounds for each slide */
.carousel-frame-gradient-1,
.carousel-frame-gradient-2,
.carousel-frame-gradient-3 {
  position: relative;
}

@media (max-width: 768px) {
  .content-banner-section {
    aspect-ratio: auto;
    height: auto;
    min-height: 500px;
  }
  
  .carousel-wrapper {
    height: auto;
    min-height: 500px;
  }
  
  .carousel-frame {
    height: auto;
    min-height: 500px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: clamp(30px, 5vw, 50px) clamp(20px, 4vw, 40px);
  }
}

@media (max-width: 480px) {
  .content-banner-section {
    aspect-ratio: auto;
    height: auto;
    min-height: 400px;
  }
  
  .carousel-wrapper {
    height: auto;
    min-height: 400px;
  }
  
  .carousel-frame {
    height: auto;
    min-height: 400px;
    padding: clamp(20px, 4vw, 30px) clamp(16px, 3vw, 25px);
  }
}

.carousel-text-block {
  flex: 1;
  max-width: 650px;
  position: relative;
  z-index: 3;
}

.carousel-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: #3C1B0A;
  margin-bottom: clamp(12px, 2vw, 24px);
  line-height: 1.2;
}

.carousel-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 500;
  color: #8F6C4E;
  margin-bottom: clamp(16px, 3vw, 24px);
  line-height: 1.4;
}

.carousel-text {
  font-family: 'Mukta Vaani', sans-serif;
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 600;
  color: #6B5544;
  line-height: 1.6;
}

.carousel-img {
  flex: 0 0 auto;
  width: clamp(120px, 25vw, 300px);
  height: clamp(120px, 25vw, 300px);
}

.carousel-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.carousel-controls {
  position: absolute;
  bottom: clamp(10px, 2vw, 20px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(6px, 1vw, 12px);
  z-index: 10;
}

.carousel-dot {
  width: clamp(6px, 1.2vw, 12px);
  height: clamp(6px, 1.2vw, 12px);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--primary);
  width: clamp(10px, 2vw, 18px);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .carousel-text-block {
    max-width: 100%;
  }

  .carousel-img {
    width: clamp(100px, 20vw, 150px);
    height: clamp(100px, 20vw, 150px);
  }

  .carousel-controls {
    bottom: clamp(8px, 1.5vw, 15px);
    gap: clamp(4px, 0.8vw, 8px);
  }

  .carousel-dot {
    width: clamp(4px, 1vw, 8px);
    height: clamp(4px, 1vw, 8px);
  }

  .carousel-dot.active {
    width: clamp(6px, 1.5vw, 10px);
  }
}

@media (max-width: 480px) {
  .carousel-dot {
    width: clamp(3px, 0.8vw, 6px);
    height: clamp(3px, 0.8vw, 6px);
  }

  .carousel-dot.active {
    width: clamp(5px, 1.2vw, 8px);
  }
}
/* ================= FORM LOADER ================= */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(2px);
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #BF2440;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader-text {
  font-size: 14px;
  color: #555;
  font-weight: 500;
  margin: 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* ================= SUCCESS MODAL POPUP ================= */
.success-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.success-modal-overlay.show {
  opacity: 1;
}

.success-modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  width: 90%;
  overflow: hidden;
  animation: slideUp 0.4s ease-out;
}

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

.success-modal-header {
  background: linear-gradient(135deg, #BF2440 0%, #A01F33 100%);
  padding: 30px;
  text-align: center;
}

.success-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #BF2440;
  font-weight: bold;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(191, 36, 64, 0.2);
}

.success-modal-body {
  padding: 30px 25px;
  text-align: center;
}

.success-modal-body h2 {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px 0;
  font-family: 'Poppins', sans-serif;
}

.registration-id-text {
  background: #f5f5f5;
  padding: 12px 16px;
  border-radius: 6px;
  color: #555;
  font-size: 14px;
  margin: 0 0 20px 0;
  word-break: break-all;
}

.success-details {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 15px 0;
}

.success-details p {
  margin: 10px 0;
}

.success-modal-footer {
  padding: 20px 25px;
  background: #f9f9f9;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.modal-close-btn {
  background: linear-gradient(135deg, #BF2440 0%, #A01F33 100%);
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.modal-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(191, 36, 64, 0.3);
}

.modal-close-btn:active {
  transform: translateY(0);
}

/* Responsive modal */
@media (max-width: 480px) {
  .success-modal-content {
    width: 95%;
  }

  .success-modal-body {
    padding: 25px 20px;
  }

  .success-modal-body h2 {
    font-size: 20px;
  }

  .registration-id-text {
    font-size: 12px;
    padding: 10px 12px;
  }

  .success-details {
    font-size: 13px;
  }

  .modal-close-btn {
    padding: 10px 30px;
    font-size: 14px;
  }
}

/* ================= ERROR MESSAGE ALERT ================= */
.registration-error-message {
  margin-bottom: 20px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.error-alert {
  background: #ffebee;
  border: 1px solid #ef5350;
  border-left: 4px solid #f44336;
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.1);
}

.error-icon {
  font-size: 20px;
  color: #f44336;
  font-weight: bold;
  flex-shrink: 0;
  line-height: 1.4;
}

.error-content {
  color: #c62828;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
  font-family: 'Poppins', sans-serif;
}

.error-content strong {
  display: block;
  margin-bottom: 2px;
}

.error-close {
  background: none;
  border: none;
  color: #f44336;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  margin-left: 8px;
  flex-shrink: 0;
  transition: color 0.2s;
  line-height: 1;
}

.error-close:hover {
  color: #d32f2f;
}

/* Responsive error message */
@media (max-width: 480px) {
  .error-alert {
    padding: 12px 14px;
    gap: 10px;
  }

  .error-icon {
    font-size: 18px;
  }

  .error-content {
    font-size: 12px;
  }

  .error-close {
    font-size: 16px;
  }
}



/* OUTER WRAPPER */
.gallery-wrapper {
  width: 100%;
  overflow-x: hidden;
  padding: clamp(20px, 2.5vw, 40px) 0 clamp(32px, 4vw, 56px);
  background: #fff;
}

/*Desktop */
.desktop-layout {
  display: block;
}
/* SCALE CONTAINER */
.gallery-scale {
  position: relative;
  width: min(calc(100% - clamp(40px, 3.5vw, 72px)), 1440px);
  max-width: 1440px;
  aspect-ratio: 1440 / 774;
  margin: 0 auto;
}

/* TEXT */
#shetrunjay-heading{
font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(28px, 5vw, 48px);
    color: #003C1C;
    margin-bottom: 16px;
  text-align:center;
  
}
.gallery-scale > .heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 780px);
  padding-inline: clamp(16px, 2vw, 28px);
  text-align: center;
  z-index: 2;
}

.gallery-scale > .heading h2 {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(34px, 3.5vw, 72px);
  line-height: 1.08;
  color: #003C1C;
}

.gallery-scale > .heading p {
  margin: clamp(18px, 1.8vw, 24px) 0 0;
  font-size: clamp(20px, 1.7vw, 32px);
  line-height: 1.2;
  color: #8F6C4E;
}

/* IMAGE COMMON */
.img {
  position: absolute;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  z-index: 1;
}

/* EXACT POSITIONS (Figma) */

.img1 { width: 18.0389%; height: 38.035%; left: 1.8056%; top: 5.2972%; }
.img2 { width: 18.0389%; height: 51.5504%; left: 1.8056%; top: 46.3824%; }

.img3 { width: 18.0389%; height: 49.8114%; left: 21.3889%; top: 18.2171%; }
.img4 { width: 18.0389%; height: 22.6098%; left: 21.3889%; top: 71.1292%; }

.img5 { width: 18.0389%; height: 38.035%; left: 40.9722%; top: 23.385%; }
.img6 { width: 18.0389%; height: 33.4432%; left: 40.9722%; top: 64.4703%; }

.img7 { width: 18.0389%; height: 22.6098%; left: 60.5556%; top: 18.2171%; }
.img8 { width: 18.0389%; height: 49.8114%; left: 60.5556%; top: 43.9264%; }

.img9 { width: 18.0389%; height: 49.4574%; left: 80.1389%; top: 5.2972%; }
.img10 { width: 18.0389%; height: 40.0517%; left: 80.1389%; top: 57.8811%; }


/* Mobile */
.mobile-layout {
  display: none;
  padding: 20px;
}

/* mobile heading */
.mobile-layout .heading {
  position: static;
  transform: none;
  width: 100%;
  margin-bottom: 20px;
}

.mobile-layout h2 {
  font-size: 22px;
}

.mobile-layout p {
  font-size: 14px;
}

/* masonry layout */
.mobile-grid {
  column-count: 2;
  column-gap: 12px;
}

.mobile-grid img {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 6px;
  display: block;
}

@media (max-width: 1024px) {
  .desktop-layout {
    display: none;
  }

  .mobile-layout {
    display: block;
  }
}

@media (max-width: 480px) {
  .mobile-grid {
    column-count: 1;
  }
}

