* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
body, html {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to top right, rgb(245, 255, 192)  ,#ed9bc3,#631935);
    color: #222;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

.dark-mode {
    background: linear-gradient(to right, #111, #444);
    color: #eee;
}
  /* Header Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-height: 100px;
    border-radius: 5px;
}
  
  header {
    position: sticky;
    top: 0;
    background: #ffd8f7;
    /* background-image:linear-gradient(to top right,#ffd8f7,#ed9bc3,#631935) ; */
    background: linear-gradient(to left, rgb(245, 255, 192),#ec9ac2, #ffd8f7); 
    padding: 1rem 2rem;
    z-index: 999;
    border-bottom: 1px solid #ddd;
  }
  
  .dark-mode header {
    background: rgba(20, 20, 20, 0.95);
    border-color: #333;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00bcd4;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .nav-links a[href="index.html"] {
    background: linear-gradient(to right, #631935, #ec9ac2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}
  .nav-links a[href="index.html"]:hover {
    background: pink; /* Slightly lighter hover effect */
}
  
  .nav-links a, .nav-links button {
    text-decoration: none;
    color: #631935;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 5px;
  }
  
  .nav-links a::after,
  .nav-links button::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #631935;
    transition: width 0.3s;
  }
  
  .nav-links a:hover::after,
  .nav-links button:hover::after {
    width: 100%;
  }
  /* Hamburger */

  /* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ec9ac2;
  border-radius: 2px;
  transition: 0.4s;
}

/* Animate into an X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(to right, #631935, #ec9ac2);
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-links a, .nav-links button {
    font-size: 1.5rem;
    color: white;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
    position: relative;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.4s;
  }

  /* X Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}



  /* Hero section */
  .hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
    /* background: linear-gradient(to right, #ec9ac2, #ffd8f7); */
    background: linear-gradient(to right, rgb(245, 255, 192)  ,#ed9bc3,#631935);
    color:white;
  transition: background 0.3s ease;
}

.dark-mode .hero {
  background: linear-gradient(to right, #1a1a1a, #2a2a2a);
  color: #eee;
}

.hero h1 {
  font-size: 3rem;
  color: #5a0a23;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: #954465;
}

.dark-mode .hero p {
  color: #ccc;
}

.scroll-down {
  font-size: 2rem;
  margin-top: 2rem;
  animation: bounce 2s infinite;
  color: #631935;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.hero-register {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  background-color: #954465;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}



/* Divider */

/* Clean Line Divider (like footer) */





  /* Highlights Section Styling */
.highlights-section {
  padding: 60px 20px;
  /* background-color: #f9f9f9; */
  background: linear-gradient(to right, #f0faff, #e0f7ff);
  transition: background 0.3s ease;
  text-align: center;
}

.dark-mode .highlights-section {
  background-color: #111;
  color: #eee;
}

.highlights-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.dark-mode .highlights-section h2{
  background-color: #111;
  color: #eee;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* .stat-item {
  background-color: #eee2e2;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
} */

.stat-item {
  background-color: #dedada;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-item h3 {
  font-size: 2rem;
  color: #631935;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 1rem;
  color: #666;
}
/* new */
/* Contact Us page */
/* CONTACT SECTION */
.contact-section {
  padding: 60px 20px;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color:#631935;
}

.dark-mode .contact-section h2 {
  color: #eee;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 20px;
}

.form-group {
  position: relative;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.2rem 1rem 0.6rem;
  font-size: 1rem;
  border: 2px solid #631935;
  border-radius: 10px;
  outline: none;
  transition: border 0.3s ease, background 0.3s ease;
  background-color: pink;
  color: #333;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #631935;
  background-color: #f9f9f9;
}

.contact-form label {
  position: absolute;
  top: 1.1rem;
  left: 1rem;
  font-size: 1rem;
  color: #888;
  pointer-events: none;
  transition: all 0.3s ease;
  background: pink;
  padding: 0 5px;
}

.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.8rem;
  color: #631935;
  background: pink;
}

.contact-form button {
  background-color: #631935;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: pink;
}

/* DARK MODE SUPPORT */
.dark-mode .contact-form input,
.dark-mode .contact-form textarea {
  background: #222;
  color: #fff;
  border-color: #444;
}

.dark-mode .contact-form label {
  background: #222;
  color: #bbb;
}

.dark-mode .contact-form input:focus + label,
.dark-mode .contact-form input:not(:placeholder-shown) + label,
.dark-mode .contact-form textarea:focus + label,
.dark-mode .contact-form textarea:not(:placeholder-shown) + label {
  color: #631935;
  background: #222;
}

.dark-mode .contact-form button {
  background: #631935;
  color: white;
}

.dark-mode .contact-form button:hover {
  background: #631935;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .contact-section h2 {
    font-size: 2rem;
  }

  .contact-form {
    gap: 1rem;
  }
}
/* Register now button */

.hero-register {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  /* background-color: #00bcd4; */
  background: linear-gradient(to right, #631935, #ec9ac2);

  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-register:hover {
  background-color: #0097a7;
}

/* .dark-mode .hero-register {
  background-color: #00bcd4;
  color: white;
}

.dark-mode .hero-register:hover {
  background-color: #0097a7;
} */
/* Register popup modal */
/* .popup-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: pink;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s ease;
} */

.popup-form {
  position: fixed;
  top: 50%;
  left: 50%;
  max-height: 90vh;               /* Limit height to viewport */
  overflow-y: auto;               /* Enable scroll if needed */
  transform: translate(-50%, -50%) scale(0);
  background: pink;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s ease;
}

.popup-form::-webkit-scrollbar {
  width: 8px;
}

.popup-form::-webkit-scrollbar-thumb {
  background-color: #631935;
  border-radius: 10px;
}


.popup-form.show {
  transform: translate(-50%, -50%) scale(1);
}

.popup-form input,
.popup-form button {
  display: block;
  width: 100%;
  margin: 1rem 0;
  padding: 10px;
  border: 1px solid #ccc;
}

.popup-form button {
  /* background: #00bcd4; */
  background: linear-gradient(to right, #631935, #ec9ac2);

  border: none;
  color: white;
  font-weight: bold;
}

#closePopup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}

.dark-mode .popup-form {
  background: #222;
  color: white;
}

.popup-form label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #631935;
}

.popup-form textarea {
  min-height: 80px;
  resize: vertical;
}

@media (max-width: 600px) {
  .popup-form {
    width: 90vw; /* Fill most of the screen */
    max-height: 95vh;
    overflow-y: auto;
    padding: 1.5rem;
    font-size: 0.95rem;
  }

  .popup-form input,
  .popup-form textarea,
  .popup-form button {
    font-size: 1rem;
  }

  .popup-form h2 {
    font-size: 1.4rem;
  }

  .popup-form label {
    font-size: 0.95rem;
  }
}


/* Contact Us styling */

#contactUsHeadingTwo {
  /* font-size: 1.25rem; */
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  margin-bottom: 30px;
  color: #631935;
  
}

/* About Us page */
.about-preview {
  padding: 60px 20px;
  background: linear-gradient(to right, rgb(245, 255, 192)  ,#ed9bc3,#631935);
  text-align: center;
  transition: background 0.3s ease;
}

.dark-mode .about-preview {
  background: #1a1a1a;
  color: #eee;
}

.about-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #631935;
}

.about-preview p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #333;
}

.dark-mode .about-preview p {
  color: #ccc;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  color: #631935;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: #631935;
}

.read-more-link .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more-link:hover .arrow {
  transform: translateX(6px);
}
/* about page */
.about-page {
  max-width: 1000px;
  margin: 80px auto;
  padding: 2rem;
  background: pink;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease, color 0.3s ease;
}

.dark-mode .about-page {
  background: #1e1e1e;
  color: #eee;
}

.about-page h1 {
  font-size: 2.75rem;
  margin-bottom: 1.2rem;
  color: #631935;
  text-align: center;
}

.about-page p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.2rem;
}

.dark-mode .about-page p {
  color: #ccc;
}

.about-page img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .about-page {
    margin: 40px 20px;
    padding: 1.5rem;
  }

  .about-page h1 {
    font-size: 2rem;
  }

  .about-page p {
    font-size: 1rem;
  }
}
/* Events */
/* Events Preview Section */
.events-preview {
  padding: 60px 20px;
  /* background: linear-gradient(to right, #f0faff, #e0f7ff); */
  background: linear-gradient(to right, rgb(245, 255, 192)  ,#ed9bc3,#631935);
  text-align: center;
  transition: background 0.3s ease;
}

.dark-mode .events-preview {
  background: #1a1a1a;
  color: #eee;
}

.events-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #631935;
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.event-card {
  background: linear-gradient();
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  transition: transform 0.3s ease;
  cursor: pointer;
}


.event-info {
  padding: 1rem;
  text-align: left;
}

.event-info h3 {
  color: #631935;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.event-info p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.3rem;
}

.event-pdf {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #631935;
  text-decoration: underline;
  font-weight: 500;
}

.event-pdf:hover {
  color: #ec9ac2;
}


.dark-mode .event-card {
  background: #222;
  color: #eee;
}

.dark-mode .event-info p {
  color: #ccc;
}

/* Read More Link (shared with about section) */
.read-more-link {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  color: #631935;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: pink;
}

.read-more-link .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more-link:hover .arrow {
  transform: translateX(6px);
}
/* Footer */

/*footer {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(to right, #631935, #ec9ac2);

  border-top: 1px solid #ccc;
  font-size: 0.95rem;
}

.dark-mode footer {
  background: #1a1a1a;
  color: #eee;
}

footer .socials {
  margin-top: 0.5rem;
}

footer .socials a {
  color: #00bcd4;
  margin: 0 5px;
  text-decoration: none;
}

footer .socials a:hover {
  text-decoration: underline;
}*/

/* Carousel */
.carousel-section {
  padding: 60px 0;
  background: linear-gradient(to right, rgb(245, 255, 192), #ed9bc3, #631935);
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-img {
  aspect-ratio: 16 / 9;
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.carousel-img:hover {
  transform: scale(1.03);
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  font-size: 2rem;
  color: #631935;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: #ffd8f7;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

@media (max-width: 768px) {
  .carousel-img {
    height: 250px;
  }

  .carousel-btn {
    font-size: 1.5rem;
    padding: 0.4rem 0.8rem;
  }
}
.carousel-track-wrapper {
  overflow: hidden;
}

.carousel-dots {
  text-align: center;
  margin-top: 1rem;
}

.carousel-dots button {
  background: #fff;
  border: 2px solid #631935;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots button.active {
  background: #631935;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.carousel-gallery {
  padding: 60px 20px;
  background: linear-gradient(to right, rgb(245, 255, 192), #ed9bc3, #631935);
  text-align: center;
}

.carousel-gallery h2 {
  font-size: 2.5rem;
  color: #631935;
  margin-bottom: 40px;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-img {
  aspect-ratio: 16 / 9;
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2rem;
  color: #631935;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: #ffd8f7;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

/* Carousel dots */
.carousel-dots {
  text-align: center;
  margin-top: 1rem;
}

.carousel-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: #fff;
  border: 2px solid #631935;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots .dot.active {
  background: #631935;
}


@media (max-width: 768px) {
  .carousel-img {
    height: 200px;
  }
  .carousel-btn {
    font-size: 1.5rem;
    padding: 0.4rem 0.8rem;
  }
}


ol {
  padding-left: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
  color: #631935;
}

ol li {
  margin-bottom: 1rem;
}

.image-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.image-card {
  background: pink; /* 🌸 PINK background */
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(99, 25, 53, 0.2); /* Soft maroon shadow */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 2px solid #ec9ac2;
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(99, 25, 53, 0.25);
}

.image-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffd8f7; /* Light pink background inside */
  overflow: hidden;
}

.image-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 10px;
}

.image-card-info {
  padding: 1rem;
  text-align: center;
}

.image-card-info h3 {
  color: #631935; /* Maroon header */
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.image-card-info p {
  font-size: 0.95rem;
  color: #5a0a23; /* Slightly deeper pink-brown text */
}

.video-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.video-card {
  background: pink;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(99, 25, 53, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 2px solid #ec9ac2;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(99, 25, 53, 0.25);
}

.video-card-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ffd8f7;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.video-card-info {
  padding: 1rem;
  text-align: center;
}

.video-card-info h3 {
  color: #631935;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.video-card-info p {
  font-size: 0.95rem;
  color: #5a0a23;
}

/* Optional dark mode */
.dark-mode .video-card {
  background: #2a2a2a;
  color: white;
}

.dark-mode .video-card-info h3,
.dark-mode .video-card-info p {
  color: white;
}

/* Dropdown container */
.nav-links .dropdown {
  position: relative;
}

/* Toggle link */
.nav-links .dropdown-toggle {
  cursor: pointer;
  position: relative;
  padding: 5px;
  color: #631935;
}

/* Dropdown menu hidden by default */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: pink;
  border-radius: 8px;
  display: none;
  flex-direction: column;
  min-width: 160px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Style individual links */
.dropdown-menu li a {
  padding: 10px 15px;
  color: #631935;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
  background: #ec9ac2;
  color: white;
}

/* Optional caret icon styling */
.dropdown-toggle i {
  margin-left: 5px;
}
.navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-policy-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  background: pink;
  color: #222;
  border-radius: 12px;
  line-height: 1.7;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-policy-section h2,
.privacy-policy-section h3 {
  color: #631935;
  margin-bottom: 1rem;
}

.privacy-policy-section p {
  margin-bottom: 1.2rem;
}

.privacy-policy-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.privacy-policy-section a {
  color: #631935;
  text-decoration: underline;
}


/* Acceptance Details Table */
.acceptance-section {
  padding: 60px 20px;
  background: linear-gradient(to right, rgb(245, 255, 192), #ed9bc3, #631935);
  color: #222;
  text-align: center;
}

.acceptance-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #631935;
}

.table-wrapper {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.acceptance-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.acceptance-table th,
.acceptance-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.acceptance-table th {
  background: #ec9ac2;
  color: white;
  font-weight: bold;
  width: 40%;
}

.acceptance-table td {
  background: #fff;
  color: #444;
}

.acceptance-table tr:last-child td,
.acceptance-table tr:last-child th {
  border-bottom: none;
}

@media (max-width: 600px) {
  .acceptance-table th,
  .acceptance-table td {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
}


/* Modern Footer Styles */
.modern-footer {
  background: linear-gradient(to right, #631935, #ec9ac2);
  color: white;
  padding: 3rem 1.5rem 1rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
}

/* .footer-section {
  flex: 1 1 250px; 
  min-width: 200px;
  max-width: 300px;
} */


.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #fdfdfd;
  border-bottom: 2px solid white;
  display: inline-block;
}

.footer-section p,
.footer-section a {
  color: #f0f0f0;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 0.5rem;
}

.social-icons a {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: white;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffd8f7;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 0.4rem 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #ffffff55;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #fdfdfd;
}

.footer-section.footer-info {
  background-color: rgba(0, 0, 0, 0.2); /* Darker than others */
  border-radius: 10px;
  padding: 1rem;
}

.footer-section.footer-info h3 {
  color: #fff;
  border-bottom: 2px solid #fff;
  margin-bottom: 1rem;
}

.footer-section.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section.footer-info li {
  margin-bottom: 0.5rem;
}

.footer-section.footer-info a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section.footer-info a:hover {
  color: #ffd8f7;
}




@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    width: 100%;
  }

  .social-icons a {
    margin: 0 0.5rem;
  }
}

