/*     
    :root{
  --bg-deep:#0e1a32;          
  --bg-deeper:#0b1530;
  --card-line:#253152;       
  --muted:#9aa6c1;             
  --title:#eaf0ff;             
  --accent1:#7b5bf9;     
  --accent2:#d3a0e6;         
  --btn-dark:#1a2749;
} */

 h1, h2, h3, h4, h5 {
    font-family: "Kumbh Sans", sans-serif;
  }
  /* General */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #0a0b1a 0%, #141b33 50%, #1a1c35 100%);
  color: #fff;
  overflow-x: hidden;
  margin: 0;
  :root{
  --nav-h: 72px;
  --ink: #ffffff;
  --muted: #cfd7ff;
  /* --overlay-blue: #122644;
  --brand-bg-1:#0a0b1a;
  --brand-bg-2:#141b33;
  --brand-bg-3:#1a1c35; */
  --accent:#ff9f2e; /* orange for About contact */
}

/* base */
body{
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: linear-gradient(to bottom, var(--brand-bg-1) 0%, var(--brand-bg-2) 50%, var(--brand-bg-3) 100%);
  overflow-x:hidden;
  margin:0;
}

a{ text-decoration:none; }

.container{
  padding: 0px 40px;
}

/* NAVBAR (glass over hero) */
.glass-nav{
  min-height: var(--nav-h);
  padding: 12px 0;
  /* background: rgba(10,11,26,0.25); */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .25s ease, box-shadow .25s ease;
}
.glass-nav.scrolled{
  background: rgba(10,11,26,0.9);
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
}
.navbar-nav .nav-link{
  color: rgba(255,255,255,.85);
  margin: 0 12px;
  font-weight: 600;
}
.navbar-nav .nav-link:hover{ color:#fff; }

.nav-cta{
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.35);
  color:#fff;
  font-weight:700;
}
.glass-nav.scrolled .nav-cta{
  background:#fff; color:#0c1730;
}

/* HERO */

.hero-overlay{
  position:absolute; inset:0;
  /* bluish gradient overlay like your mock */
  /* background:
    linear-gradient(to top, rgba(18,38,68,0.92) 0%, rgba(18,38,68,0.75) 40%, rgba(18,38,68,0.35) 70%, rgba(18,38,68,0.05) 100%); */
  z-index:0;
background: linear-gradient(
  to top,
  rgba(143, 47, 111, 0.92) 0%,   
  rgba(143, 47, 111, 0.75) 40%,  
  rgba(143, 47, 111, 0.35) 70%,  
  rgba(143, 47, 111, 0) 100%     
);
}
.logo-image{

    max-width:160px;
}
	@media(max-width:321px){
		.logo-image{
		            max-width: 110px;
		}}
/* layout container that keeps card + copy positioned */
.hero-inner{
  position: relative;
  z-index:1;
  padding-top: calc(var(--nav-h) + 24px); /* keeps text clear under nav */
  padding-bottom: 64px;
  height: 100%;
}

/* copy sits on RIGHT like the screenshot */
.hero-copy{
  margin-left: auto;               /* push to the right */
  max-width: 580px;
  text-align: left;                /* keep left-aligned text */
  padding: 24px 0;
  margin-top: 118px;
}

.hero-copy .eyebrow{
  color: var(--muted);
  letter-spacing:.5px;
  display:block;
  margin-bottom: 8px;
  font-weight:600;
  opacity:.95;
}
.hero-copy h1{
  font-size: clamp(1.9rem, 2.2rem + 1.2vw, 3rem);
  line-height: 1.2;
  font-weight:800;
  margin-bottom: 14px;
}
.hero-copy p{
  color: #d9defa;
  margin-bottom: 10px;
}
.see-more{
  color:#fff;
  font-weight:600;
  opacity:.95;
}
.see-more:hover{ opacity:1; }

/* glass info card bottom-left */
.hero-card{
  position:absolute; left: 3.5%; bottom: 34px;
  width: min(320px, 86vw);
  padding:18px;
  

}
.hero-card small{ color:#c9cff7; }
.hero-card h5{ font-weight:700; margin:8px 0 14px; }
.btn-ticket{
  display:inline-block;
  padding:9px 22px;
  border-radius:999px;
  border:1px solid #fff;
  color:#fff;
  font-weight:700;
  background: transparent;
}
.btn-ticket:hover{
  background:#16345f; border-color:#5c7efc;
}

/* WHO WE ARE */
/* WHO WE ARE */
.about-section {
  position: relative;
  padding: 110px 0;
        background: #8f2f6f;
  color: #fff;
  overflow: hidden;
  z-index: 1;

  /* soft top shadow so it separates from hero */
box-shadow: 0 -8px 25px #8f2f6f59;
}

.about-section .section-title {
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.about-section p {
  color: #e9ecf9;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* button */
.about-cta {
  background: linear-gradient(90deg, #f27e00, #f27e00);
  color: white;
  font-weight:600;
  border-radius: 25px;
  padding: 8px 35px;
}

/* right image */
.about-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-image-wrap img {
  width: clamp(240px, 40vw, 380px);
  height: auto;
  border-radius: 50%;

}

/* RESPONSIVE TWEAKS */
@media (max-width: 992px){
  .hero-card{ left: 5%; }
}
@media (max-width: 768px){
  .hero-inner{ padding-top: calc(var(--nav-h) + 16px); }
  .hero-copy{ margin: 0 auto; text-align: center; }   /* center on small for readability */
  .hero-card{ left: 50%; transform: translateX(-50%); width: min(360px, 92vw); }
}
@media (max-width:768px) {
  .hero-copy{
    margin-top:60px;
    text-align: start;
  }
  .hero-copy h1{
font-size: 35px !important;
            margin-top: 51px !important;
        }
  }
  
}
.btn-contact {
  background: linear-gradient(90deg, #6a5af9, #d3a0e6);
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
}

.features-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 130px); /* 4 boxes, each 200px wide */
 /* space between boxes */
  justify-content: center; /* optional: center the grid horizontally */
}

.feature-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid white;
  padding: 35px 30px;
  text-align: center;
  border-radius: 0px;
  transition: all 0.3s ease;
}

.feature-box i {
  font-size: 28px;
  color: #d3a0e6;
  margin-bottom: 10px;
}

.feature-box h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

.feature-box:hover {
  background: rgba(211,160,230,0.1);
  border-color: #d3a0e6;
}



    /* Responsive */
    @media(max-width: 991px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }
      .hero-left {
        height: 400px;
        width: 100%;
      }
      .hero .content {
        padding: 20px;
      }
      .info-box {
        position: relative;
        margin: 20px auto 0;
        left: 0;
      }
    }



    /* General Reset */

/* Counter Section */


.counter-container h4 {
  font-size: 22px;
  font-weight: 800;

  color: #122644;
  text-align: center
}

.counter-container h1 {
  font-size: 35px;
  font-weight: 800;
  margin: 0px 0;
  word-spacing: 4px;
  text-align: center;
   background: #7b96d1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
}

.counter-container h1 span {
  color: #3d3d99;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0px 0;
}
   @media(max-width:768px)
   {
    .countdown{
      gap: 0;
    }
   }
.time-box {
  text-align: center;
  margin: 10px 0px 10px 0px;
}

.time-box span {
  font-size: 40px;
  font-weight: bold;
        color: #97407b;
}

.time-box p {
  font-size: 14px;
  margin-top: 5px;
  color: #7b96d1;
  font-weight: 600;
  margin-right: 15px;
}

/* Event Info */
.event-info {
  margin: 0px 0 0px;
  font-size: 15px;
  color: #7b96d1;
  text-align: center;
  font-weight: 600;
}

/* Buttons */
.buttons {
  margin-top: 20px;
}

.btn-outline {
  border: 2px solid #7b96d1;
  padding: 6px 20px;
  border-radius: 25px;
  color: #7b96d1;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.btn-outline:hover {
     background: linear-gradient(90deg, #7b96d1 1%, #7b96d1 94%);
  color: #fff;
  
}

.btn-filled {
   background: linear-gradient(90deg,  #7b96d1 1%,  #7b96d1   94%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

/* events */

.events-section{
  position: relative;
  padding: 80px 24px 60px;
  background: #8f2f6f;
  overflow: hidden;
  color:#fff;
}

/* decorative springs */
.events-section::before,
.events-section::after{
  content:"";
  position:absolute;
  background-repeat:no-repeat;
  background-size:contain;
  pointer-events:none;
  opacity:.22;
}
.events-section::before{
  left:-120px; top:-60px; width:420px; height:420px;
  background-image:url("assets/images/spring-left.svg");
}
.events-section::after{
  right:-140px; bottom:-120px; width:520px; height:520px;
  background-image:url("assets/images/spring-right.svg");
}

.events-wrap{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:48px;
}

/* top label on left */
.events-label{
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:600;
  font-size:13px;
  color:#c9d3f9;
  margin-bottom:24px;
}

/* right top filter */
.filter-wrap{
  display:flex;
  justify-content:flex-end;
}
.filter{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background:#0f2247;
  color:#cbd6ff;
  border:1px solid #2a3a62;
  border-radius:8px;
  padding:10px 36px 10px 14px;
  font-size:14px;
  position:relative;
}
.filter-wrap::after{
  content:"\f107"; /* FA chevron-down */
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  position:relative;
  left:-28px; top:10px;
  pointer-events:none; color:#cbd6ff;
}

/* left list */
.events-list{
  border-left:1px solid transparent; /* alignment helper */
}
.event-item{
  display:grid;
  grid-template-columns: 92px auto;
  align-items:flex-start;
  gap:22px;
  padding:15px 0;
  border-bottom:1px solid var(--card-line);
}
.event-item:first-of-type{ padding-top:0; }

/* date badge */
.date-badge{
  width:92px; height:92px; border-radius:50%;
  position:relative; display:grid; place-items:center;
  /* background: radial-gradient(120% 120% at 30% 30%, var(--accent2) 0%, var(--accent1) 55%, #3b2c7a 100%); */
  /* box-shadow:0 10px 26px rgba(0,0,0,.28); */
}
.date-badge::after{
  content:"";
  position:absolute; inset:8px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.45);
}
.date-day{ font-size:30px; font-weight:800; line-height:1; padding-left: 5px; }
.date-sub{ text-transform:uppercase; font-size:11px; opacity:.95; margin-top:2px; }

/* content */
.event-title{
  color:var(--title);
  font-size:17px;
  font-weight:700;
  letter-spacing:.02em;
  margin:4px 0 12px;
  text-transform:uppercase;
}
.meta-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-bottom:10px;
}
.meta{
  display:flex; align-items:center; gap:8px;
  font-size:13px; color:var(--muted);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.meta i{ color:#a8b4d9; font-size:14px; }

/* small pill button */
.btn-ticket{
  display:inline-block;
  margin-top:10px;
  font-size:12px; letter-spacing:.05em;
  font-weight:700;
  padding:10px 18px;
  border-radius:20px;
  border:1px solid #6b78ff;
  color:#fff;
  border: 1px solid white;

  box-shadow:0 8px 20px rgba(123,91,249,.28);
  text-decoration:none;
}

/* right visual */
.visual{
  display:flex; flex-direction:column; gap:20px;
}

.image-frame img{
  display:block; width:80%;  object-fit:contain; margin-top: 40px;
}

/* pagination dots */
.pager{
  display:flex; justify-content:center; align-items:center; gap:10px;
  margin-top:24px;
}
.dot{
  width:8px; height:8px; border-radius:50%;
  background:#50608e; opacity:.7;
}
.dot.active{
  width:22px; height:8px; border-radius:10px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  opacity:1;
}



/* responsive */
@media (max-width: 992px){
  .events-wrap{ grid-template-columns: 1fr; gap:28px; }
  .filter-wrap{ justify-content:flex-start; }
  .image-frame img{ height:380px; }
}
@media (max-width: 520px){
  .event-item{ grid-template-columns: 56px auto; }
  .date-badge{ width:80px; height:80px; }
  .image-frame img{ height:300px; }
}

}

.gallery-section {
  /* background: radial-gradient(70% 90% at 20% 0%, #122644 0%, #284a92 55%, #122644 100%); */
  color: #fff;
  padding: 80px 0;
}

.gallery-header h4 {
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 285px;   /* same height for all */
  object-fit: cover; /* fills container evenly */
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 38, 68, 0.7); /* dark overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .overlay p {
  color: #f27e00;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

/* communiy section */
  .community-section {
      position: relative;
      height: 380px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      color: #5a85e1;
      overflow: hidden;
      background: linear-gradient(95deg, #ffffff, #eedaf6);
    }


    .community-section h1 {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 10px;
      z-index: 2;
    }

    .community-section p {
      font-size: 16px;
      color:#5a85e1;
      margin-bottom: 20px;
      z-index: 2;
    }

    .community-section .btn {
      display: inline-block;
      padding: 12px 30px;
      background: #ffffff;
      border-radius: 25px;
      text-decoration: none;
      color: #8f2f6f;
      font-weight: bold;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
      z-index: 2;
      transition: 0.3s ease;
    }

    .community-section .btn:hover {
      background: #8f2f6f;;
      color: #fff;
    }

    /* blog */
    .sponsors-section {
  padding: 60px 40px;
  text-align: center;
  position: relative;
  background: #4267B2; /* Blue background */
  overflow: hidden;
}

.sponsors-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('wave-overlay.png'); /* replace with your wave background image/SVG */
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.4;
  z-index: 1;
}

.sponsors-section h3,
.sponsors-section p {
  position: relative;
  z-index: 2;
  color: white;
}

.sponsors-section p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 14px;
  color: #dcdcdc;
}

.sponsor-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 30px;
  justify-items: center;
  position: relative;
  z-index: 2;
}

.sponsor-logos img {
  width: 60px;
  height: auto;
  filter: brightness(0) invert(1); /* makes them white */
}

/* Blog section */
.blog-section {
  background: #5a85e1;  /* flat bluish background */
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Optional wave overlay */
.blog-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/waves.png") no-repeat center;
  background-size: cover;
  opacity: 0.2;
  pointer-events: none;
}

.blog-header h4 {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Blog Cards */
/* Sponsors Section */
/* Combined Sponsors + Blog Section */
.sponsors-blog-section {
  /* background: #5a85e1; */
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Sponsors */
.sponsor-icon {
  max-width: 60px;
  margin-bottom: 10px;
/* makes icons white */
  transition: transform 0.3s ease;
}

.sponsor-icon:hover {
  transform: scale(1.1);
}

/* Blog */
.blog-card {
  background: transparent;
  border: none;
  color: #fff;
}

/* Default images */
.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* First blog larger */
.blog-card.featured img {
  height: 250px;
}

.blog-card .date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.blog-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.blog-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .sponsor-icon {
    max-width: 50px;
  }
  .blog-card img {
    height: 180px;
  }
  .blog-card.featured img {
    height: 220px; /* smaller on mobile */
  }
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 icons per row */
  gap: 30px 20px; /* row gap, column gap */
  justify-items: center;
  align-items: center;
}

.sponsor-icon {
  max-width: 60px;
  margin-bottom: 10px;
  /* filter: brightness(0) invert(1); */
  transition: transform 0.3s ease;
}

.sponsor-icon:hover {
  transform: scale(1.1);
}

/* Responsive: On tablets → 3 per row, on mobile → 2 per row */
@media (max-width: 992px) {
  .sponsors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* faq */

.faq-section {
  background-color: #f8f3fb;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.faq-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #8f2f6f;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 20px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid #ccc;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: bold;
  font-size: 16px;
  padding: 15px 0;
  color: #8f2f6f;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '▼';
  position: absolute;
  right: 0;
  top: 15px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 15px;
  color: #555;
}

.faq-answer p {
  margin: 0;
}

.faq-button {
  margin-top: 30px;
}

.read-more {
  background-color: #8f2f6f;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

.read-more:hover {
  background-color: #7a95d0;
}



/* footer */
 .footer {
      background: #8f2f6f;
      color: #fff;
      padding: 30px 20px 20px;
    }
    .footer-heading{
       font-size: 37px;
       max-width: 470px;
       font-weight: 700;


    }
    .footer-links-heading {
      font-weight: 600;
      margin-bottom: 13px;
      color: white;
    }
    .footer a {
      display: block;
      color: #ddd;
      text-decoration: none;
      margin-bottom: 8px;
    }
    .footer a:hover {
      color: #fff;
    }
    .newsletter-input {
      border: none;
      padding: 10px;
      border-radius: 5px;
      flex: 1;
    }
    .subscribe-btn {
      background:#7a95d0;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      color: #fff;
      width: 100%;

    }
    .subscribe-btn:hover{
background-color: #7a95d0;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.3);
      margin-top: 30px;
      padding-top: 15px;
      text-align: center;
      font-size: 14px;
      color: #ccc;
    }
    .footer-logo img {
      max-width: 210px;
    }

    .newsletter-input {
  background: transparent;      /* Transparent background */
  border: none;                 /* Remove all borders */
  border-bottom: 1px solid #fff;/* Only bottom border */
  border-radius: 0;             /* No rounded corners */
  color: #fff;                  /* White text (change as needed) */
  outline: none;                /* Remove blue outline */
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.7); /* Light placeholder */
}

.subscribe-btn {
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 600;
}   

.footer-heading-description{
      text-align: justify;
    font-size: 15px;
    color: #ccc;
    max-width: 250px;
  
}
.newsletter-box{
  line-height: 4px;
}

/* about page */

    .why-shankus h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .why-shankus h5 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .why-shankus p {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 25px;
    }

    .counter-box {
      text-align: center;
      margin-top: 50px;
    }

    .counter {
      font-size: 2rem;
      font-weight: 700;
      color:#7b96d1;
    }

    .counter-box p {
      margin-top: 5px;
      font-size: 14px;
    }

    .logo-box {
      text-align: center;
      margin-top: 50px;
    }

    .logo-box img {
      max-width: 350px;
    }
    /* gallery */
.about-gallery-section .about-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.about-gallery-section .about-gallery-item img {
  width: 100%;
    min-height: 377px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-gallery-section .about-gallery-item:hover img {
  transform: scale(1.1); /* zoom on hover */
}

.about-gallery-section .about-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(154, 37, 110, 0.85); /* purple overlay */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.about-gallery-section .about-gallery-item:hover .about-gallery-overlay {
  opacity: 1;
}

.about-gallery-section .about-gallery-overlay h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}



/* events details page */
.event-details-cta {
  position: relative;
  background: url('./images/events-input.webp') no-repeat center center/cover;
  padding: 80px 0;
  color: #fff;
}

.event-details-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(208, 27, 133, 0.5); /* purple overlay */
  z-index: 1;
}



.event-details-cta .container {
  position: relative;
  z-index: 2; /* Keep content above overlay */
}

.event-details-heading {
  font-size: 32px;
  font-weight: 800;
  
  line-height: 1.4;
}

.event-details-subtext {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: left;
}

/* Input field clean style */
.event-details-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  outline: none;
  width: 200px;
}

.event-details-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.event-details-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* When active/focused */
.event-details-input:focus {
  border-bottom: 2px solid #4a90e2; /* highlight with blue */
  color: #fff;
  background: transparent;
  outline: none;
}

/* Button style */
.event-details-btn {
  background: #ffffff;
  border: none;
  padding: 8px 20px;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #7a95d0;
  border-radius: 25px;
  transition: 0.3s;
}

.event-details-btn:hover {
  background: #357ab7;
  color: white;
}

.event-details-footer {
  background: #f8f9fc; /* light gradient background */
  padding: 60px 0 20px;
  color: #333;
  font-size: 14px;
}

.footer-tagline {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #8f2f6f;
}

.footer-logo {
  font-size: 26px;
  font-weight: 800;
  color: #e56b2e;
}

.footer-logo span {
  color: #333;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #e56b2e;
}

.footer-bottom {
  border-top: 1px solid #ffffff;
  padding-top: 15px;
  margin-top: 30px;
  color: #888;
  font-size: 13px;
}
@media (max-width:426px) {
  .meta-row{
  display:grid !important;
  grid-template-columns: 1fr 
  !important;
  gap:12px;
  margin-bottom:10px;
}
  
}

@media (max-width:768px) {
  .container{
         padding: 0px 12px !important;
}
.logo-box img{
  max-width: 250px !important;
}
  
}
.btn-ticket:hover{
         background: linear-gradient(90deg, #f27e00, #f27e00) !important;
   border: 1px solid white !important;
}

@media(max-width:768px){
    
    .events-section{
        height:1200px;
    }
 
}