/* Reset & Base */
:root {
    --bg-color: #4d3c91; /* Deep Purple */
    --text-color: #F3E5AB; /* Vanilla/Light Gold */
    --gold-primary: #f6ba18;
    --gold-bright: #FDD017;
    --gold-dark: #AA6C39;
    --purple-light: #6258a6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    background-image: url('images/bgfinal.jpeg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    background-repeat: repeat-y;
    
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    font-weight: 300;
    opacity: 0.9;
}

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2; /* Ensure content is above decorative images */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, var(--gold-dark), var(--gold-bright), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    width: 100%;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Border Patterns */
.border-pattern {
    height: 40px;
    width: 100%;
    background-image: url('images/border patern.png');
    background-repeat: repeat-x;
    background-size: contain;
    position: fixed;
    z-index: 10;
    left: 0;
    pointer-events: none;
}

.border-pattern.top {
    top: 0;
    transform: rotate(180deg);
}

.border-pattern.bottom {
    position: absolute;
    bottom: 0;
    height: 60px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 0;
}

.navbar.scrolled {
    background: rgba(15, 8, 32, 0.514)  ;
    
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(30, 52, 96, 0.1);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 100px;
    transition: transform 0.3s ease, opacity 0.5s ease;
    opacity: 0;
    position: relative;
    transform-origin: center;
}

.logo img {
    width: 100%;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-white {
    display: block;
}

.logo-color {
    display: none;
}

.navbar.scrolled .logo{
     transform: scale(0.8);      
}

.navbar.scrolled .logo-white {
    display: none;
}

.navbar.scrolled .logo-color {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu li {
    opacity: 0;
}

.nav-link {
    text-decoration: none;
    color: #ECE5C9;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.navbar:not(.scrolled) .nav-link {
    color: #ECE5C9;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ECE5C9;
    margin: 4px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.navbar.scrolled .menu-toggle span {
    background: #ECE5C9;
}

.menu-toggle.active span{
    background: #ECE5C9;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(11px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -5px);
}

/* Hero Section */
.hero {
    max-width: 100vw;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-content{
    margin-top: 200px;
}

.logo-container {
    position: relative;
    margin-bottom: 9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    isolation: isolate;
}

/* Rotating Border Logic */
.rotating-border {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; /* Slightly larger than the logo */
    height: 400px;
    transform-origin: center; /* ensures perfect rotation */
    animation: spin 60s linear infinite;
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(253, 208, 23, 0.3));
    position: relative;
    z-index: 3;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 430px;
    height: 430px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.463) 0%, rgba(0,0,0,0) 70%);
    /* background: radial-gradient(
        circle,
        rgba(255, 215, 100, 0.9) 0%,   
        rgba(255, 200, 80, 0.4) 20%,   
        rgba(255, 180, 60, 0.15) 40%,  
        rgba(0,0,0,0) 75%              
    ); */
    z-index: 1;
}
    
.hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.cta-button {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}












/* ═══════════════════════════════════════════
   TAALI TATTVA — VIDEO SECTION STYLES
   Prefix: ttvs-  (no collisions)
══════════════════════════════════════════ */

.ttvs-section {
  width: 100%;
  background: #000;
  display: block;
}

.ttvs-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  cursor: pointer;
}

.ttvs-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Bottom gradient ── */
.ttvs-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 100px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ttvs-wrapper:hover .ttvs-overlay {
  opacity: 1;
}

/* ── Nudge ── */
.ttvs-nudge {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.ttvs-wrapper.ttvs--started .ttvs-nudge {
  opacity: 0;
}
.ttvs-nudge__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ttvs-nudge__icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  margin-left: 4px;
}
.ttvs-nudge__text {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Tap to unmute prompt ── */
.ttvs-unmute-prompt {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-family: system-ui, sans-serif;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  z-index: 10;
}
.ttvs-unmute-prompt:hover {
  background: rgba(0,0,0,0.8);
}
.ttvs-unmute-prompt.ttvs--visible {
  display: flex;
}

/* ── Controls bar ── */
.ttvs-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ttvs-wrapper:hover .ttvs-controls,
.ttvs-wrapper:focus-within .ttvs-controls {
  opacity: 1;
}

/* ── Play / Pause button ── */
.ttvs-btn-play {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  outline: none;
}
.ttvs-btn-play:hover  { background: rgba(255,255,255,0.28); transform: scale(1.1); }
.ttvs-btn-play:active { transform: scale(0.94); }
.ttvs-btn-play svg    { width: 18px; height: 18px; fill: #fff; }

.ttvs-icon-pause { display: none; }
.ttvs-btn-play.ttvs--playing .ttvs-icon-play  { display: none; }
.ttvs-btn-play.ttvs--playing .ttvs-icon-pause { display: block; }

/* ── Progress bar ── */
.ttvs-progress {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  position: relative;
  transition: height 0.2s ease;
}
.ttvs-progress:hover { height: 6px; }
.ttvs-progress__fill {
  height: 100%;
  border-radius: 2px;
  background: #fff;
  width: 0%;
  pointer-events: none;
}

/* ── Time ── */
.ttvs-time {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-family: system-ui, sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Mute button ── */
.ttvs-btn-mute {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  outline: none;
  transition: opacity 0.2s;
}
.ttvs-btn-mute:hover { opacity: 0.7; }
.ttvs-btn-mute svg   { width: 20px; height: 20px; fill: #fff; }

.ttvs-icon-muted { display: none; }
.ttvs-btn-mute.ttvs--muted .ttvs-icon-sound { display: none; }
.ttvs-btn-mute.ttvs--muted .ttvs-icon-muted { display: block; }

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 768px) {
  .ttvs-controls { padding: 10px 14px; gap: 10px; }
  .ttvs-btn-play { width: 38px; height: 38px; }
  .ttvs-btn-play svg { width: 15px; height: 15px; }
  .ttvs-time { font-size: 11px; }
  .ttvs-nudge__icon { width: 56px; height: 56px; }
  .ttvs-nudge__icon svg { width: 24px; height: 24px; }
  .ttvs-unmute-prompt { font-size: 12px; padding: 5px 12px; top: 12px; right: 12px; }
}

@media (max-width: 480px) {
  .ttvs-time { display: none; }
  .ttvs-nudge__text { font-size: 11px; }
  .ttvs-unmute-prompt { font-size: 11px; padding: 4px 10px; top: 10px; right: 10px; }
}











/* Vision Section */
.vision-section {
    width: 100vw;
    padding: 8rem 0;
    background: rgba(15, 8, 32, 0.514);
    text-align: center;
    position: relative;
    overflow: hidden; /* Keep decorative images contained */
}

/* Decorative Images in Vision Section */
.deco-img {
    position: absolute;
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5));
    transition: transform 0.5s ease;
}

.deco-img.shehnai {
    width: 200px;
    bottom: 140px;
    left: 50px;
    transform: rotate(25deg);
    filter: brightness(0) invert(1);
    transform: scaleX(-1) rotate(20deg);
    opacity: 0.3;
}
.deco-img.tabla {
    width: 300px;
    bottom: 20px;
    left: 50px;
    transform: rotate(25deg);
    filter: brightness(0) invert(1);
    transform: scaleX(-1) rotate(20deg);
    opacity: 0.3;
}

.deco-img.music {
    width: 100px;
    bottom: 240px;
    left: 250px;
    transform: rotate(25deg);
    filter: brightness(0) invert(1);
    transform: scaleX(-1) rotate(20deg);
    opacity: 0.3;
}

.deco-img.diya {
   
    width: 550px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* centers it */
    opacity: 0.02;
    /* animation: float 6s ease-in-out infinite; */
}

.deco-img.dhol {
    width: 250px;
    bottom: 20px;
    right: 20px;
    transform: rotate(-15deg);
    
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.vision-section .text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 2;
}

.vision-section p {
    margin-bottom: 2rem;
}

.ornament {
    font-size: 2rem;
    color: var(--gold-dark);
    margin-top: 2rem;
}







/* Preparation Section */
.preparation-section {
    padding: 6rem 0;
    /* background: rgba(40, 10, 50, 0.6); */
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}
.card-icon i {
    width: 48px;
    height: 48px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Highlights Section & Popups */
.highlights-section {
    padding: 8rem 0;
    text-align: center;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative; /* For popup positioning */
    cursor: pointer;
}

.pillar-icon-wrapper {
    width: 100px;
    height: 100px;
    border: 1px solid var(--gold-primary);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(45deg);
    transition: all 0.5s ease;
    background: rgba(0,0,0,0.2);
    z-index: 2; /* Keep above popup initially */
}

.pillar-icon {
    width: 40px;
    height: 40px;
    color: var(--gold-primary);
    transform: rotate(-45deg);
}

.pillar-item:hover .pillar-icon-wrapper {
    background: var(--gold-primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.pillar-item:hover .pillar-icon {
    color: var(--bg-color);
}

.pillar-item h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 1rem;
    transition: opacity 0.3s;
}

/* Popup Styling */
.pillar-popup {
    position: absolute;
    bottom: 100%; /* Position above the item */
    left: 50%;
    transform: translateX(-50%) translateY(20px); /* Start slightly lower */
    width: 250px;
    background: rgb(50, 29, 100);
    border: 1px solid var(--gold-primary);
    padding: 1.5rem;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    pointer-events: none; /* Prevent flickering on hover */
}

/* Arrow for popup */
.pillar-popup::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background:  rgb(50, 29, 100);
    border-bottom: 1px solid var(--gold-primary);
    border-right: 1px solid var(--gold-primary);
}

.pillar-popup h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--gold-bright);
}

.pillar-popup p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #fff;
    opacity: 0.9;
}

/* Hover State */
.pillar-item:hover .pillar-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-20px); /* Move up into place */
}











/* Contact Section (Updated) */
.contact-section {
    padding: 5rem 0;
    background: rgba(15, 8, 32, 0.514);
}

.contact-wrapper {
    /* max-width: 1000px; */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    /* background: rgba(26, 5, 36, 0.8); */
    /* border: 1px solid rgba(212, 175, 55, 0.1); */
    border-radius: 4px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.3); */
}

.contact-image {
    position: relative;
    height: 100%;
}

.contact-image img {
    
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.contact-image .overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to right, rgba(26, 5, 36, 0.2), rgba(26, 5, 36, 0.9)); */
}

.contact-form-container {
    padding: 3rem;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.8rem 1rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-bright);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    margin-top: 1rem;
    background: rgba(212, 175, 55, 0.1);
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--gold-primary);
}


















/* Organizer Section */

/* .organizer-section {
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.organizer-box {
    border: 1px solid var(--gold-primary);
    display: inline-block;
    padding: 3rem 5rem;
    position: relative;
}

.organizer-box::before, .organizer-box::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid var(--gold-primary);
    background: var(--bg-color);
    transition: all 0.3s ease;
}

.organizer-box::before { top: -5px; left: -5px; }
.organizer-box::after { bottom: -5px; right: -5px; }

.org-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
} */






/* Sponsors Section */

/* .section-subtitle {
            text-align: center;
            font-family: var(--font-body);
            font-size: 1rem;
            color: var(--text-color);
            opacity: 0.8;
            font-weight: 400;
            letter-spacing: 0.05em;
            margin-bottom: 2rem;
            font-style: italic;
        } */
        .sponsors-section {
            padding: 6rem 0;
            /* background: rgba(15, 8, 32, 0.514); */
            position: relative;
            overflow: hidden;
        }



          .contact-person {
            text-align: center;
            margin-bottom: 4rem;
        }

        .contact-box {
            display: inline-block;
            border: 2px solid var(--gold-primary);
            padding: 1.5rem 3rem;
            border-radius: 0px;
            background: rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .contact-box::before,
        .contact-box::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            border: 2px solid var(--gold-primary);
            background: var(--bg-color);
        }

        .contact-box::before {
            top: -6px;
            left: -6px;
            border-right: none;
            border-bottom: none;
        }

        .contact-box::after {
            bottom: -6px;
            right: -6px;
            border-left: none;
            border-top: none;
        }

        .contact-name {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: #fff;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .contact-phone {
            font-size: 1.2rem;
            color: var(--gold-bright);
            font-weight: 500;
            letter-spacing: 0.05em;
        }

        .sponsors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .sponsor-card {
            background: #ECE5C9;
            border-radius: 12px;
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .sponsor-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(246, 186, 24, 0.1), rgba(170, 108, 57, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .sponsor-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold-primary);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .sponsor-card:hover::before {
            opacity: 1;
        }

        .sponsor-logo {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            transition: transform 0.4s ease;
        }

        .sponsor-card:hover .sponsor-logo {
            transform: scale(1.1);
        }

        .sponsor-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .sponsor-name {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            color: var(--bg-color);
            font-weight: 600;
            text-align: center;
            letter-spacing: 0.02em;
            position: relative;
            z-index: 1;
        }

        /* Fade-in animation */
        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            animation: fadeInUp 0.8s ease forwards;
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .sponsors-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contact-box {
                padding: 1rem 2rem;
            }

            .contact-name {
                font-size: 1.2rem;
            }

            .contact-phone {
                font-size: 1rem;
            }

            .sponsor-card {
                padding: 2rem 1.5rem;
            }
        }

















/* Footer (Updated) */
footer {
    padding: 5rem 0 2rem;
    background: rgb(32, 17, 65);
    position: relative;
    border-top: 5px solid var(--gold-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.8fr 2fr 1.2fr; /* Adjusted for Left | Center | Right */
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Left: Logo */
.logo-col {
    align-items: flex-start;
}

.footer-logo {
    width: 200px;
    filter: brightness(1.2);
}

/* Center: Description */
.desc-col {
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
}

.footer-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 500px;
}

/* Right: Contact & Social */
.contact-col {
    align-items: flex-end;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-end; /* Align right */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--gold-primary);
    width: 18px;
    height: 18px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold-primary);
    color: var(--bg-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.5;
}


















/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }









/* Responsive */


@media (max-width: 1200px){


    
.deco-img.shehnai {
    width: 150px;
    bottom: 140px;
    left: 50px;
   
}
.deco-img.tabla {
    width: 250px;
    bottom: 20px;
    left: 50px;
   
}

.deco-img.music {
    width: 70px;
    bottom: 240px;
    left: 200px;
    
}



.deco-img.dhol {
    width: 200px;
    bottom: 20px;
    right: 20px;
    transform: rotate(-15deg);
    
}




.contact-section.container {
    max-width: 100vw;
    margin: 0;
    padding: 0 0rem !important;

}

.contact-wrapper {    
    grid-template-columns: 1fr 1fr;
    gap: 0px;
   
}

}




@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }

    .nav-link {
        font-size: 1.5rem;
        color: var(--bg-color) !important;
        text-shadow: none;
    }

    .nav-link::after {
        bottom: -10px;
    }

    .nav-container {
        padding: 0 2rem;
    }



    .deco-img.shehnai {
   display: none;
   
}
.deco-img.tabla {
   
      display: none;

}

.deco-img.music {
    
       display: none;

}



.deco-img.dhol {
    
       display: none;

}



 .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-image {
        height: auto;
    }
    .contact-form-container {
        padding: 2rem;
    }





    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .logo-col, .desc-col, .contact-col {
        align-items: center;
        border: none;
        padding: 0;
    }

    .contact-details {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .vision-section {
        padding: 4rem 0;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .pillars-grid {
        grid-template-columns: 1fr 1fr;
    }
      
   
   
}



@media (max-width: 560px) {
    .hero {
        padding: 10px;
    }

    .rotating-border {
        width: 300px;
        height: 300px;
    }

    .hero-logo {
        width: 150px;
    }

    .contact-form-container {
        padding: 2rem 0rem;
    }

}








