* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Navbar */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
}

.hero img {
  width: 100vw;
}
/* Navbar base */
.navbar {
  background: linear-gradient(
    -180deg,
    /* dark orange */ #ff6000 0%,
    /* main orange */ #ff8c42 100% /* light orange */
  );
  border-bottom: 1px solid #eee;
}
.logo img {
  width: 25em;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 30px;
  z-index: 1000;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* === CHANGER EFFECT === */
.nav-links a::before,
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-links a::before {
  left: 50%;
}

.nav-links a::after {
  right: 50%;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::before,
.nav-links a:hover::after {
  width: 50%;
}

/* Active page */
.nav-links a.active {
  color: #ff6000;
}

.nav-links a.active::before,
.nav-links a.active::after {
  width: 50%;
}

/* Hamburger (unchanged logic) */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 5px 0;
}
section {
  padding: 3em 5em;
}
.mission-vision {
  display: flex;
  gap: 2em;
  background-color: #f0f0f0;
}
.mission-vision .col {
  width: 100%;
  margin-top: 5em;
}
.mission-vision .card {
  background-color: #ff6000;
  height: 600px;
  width: 350px;
  margin: 0 auto;
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
  padding: 2em;
  position: relative;
}
.card .icon {
  background-color: #ffffff;
  height: 125px;
  width: 125px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  top: -5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon img {
  width: 100px;
}
.col h3 {
  position: relative;
  color: #ffffff;
  text-align: center;
  top: 1em;
  font-size: 1.5em;
}
.col p {
  color: #eee;
  text-align: center;
  margin-top: 3.2em;
}
.card::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  top: 0;
  left: 0;
}
/* ===== AUTO SLIDER ===== */
/* ===== AUTO SLIDER (FIXED) ===== */

.slider {
  display: flex;
  transition: transform 1s ease-in-out;
}

.auto-slider {
  width: 100%;
  overflow: hidden;
  background: #000;
  padding: 0;
}

.slider img {
  width: 100vw;
  height: auto; /* ADD THIS */
  object-fit: cover;
  flex-shrink: 0;
}

.about-us {
  display: flex;
  align-items: center;
  gap: 3em;
}
.image-container {
  width: 50%;
}
.text-container {
  width: 50%;
}
.text-container h3 {
  color: #ff6000;
  font-size: 3em;
}
.text-container p {
  padding: 0.5em;
  color: #000000;
  margin-top: 2em;
  text-align: justify;
  line-height: 1.9;
}
.image-container img {
  width: 100%;
  border-radius: 1em;
}

.motto {
  padding: 1em 0;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(
    -180deg,
    /* dark orange */ #ff6000 0%,
    /* main orange */ #ff8c42 100% /* light orange */
  );
  line-height: 2em;
  text-align: center;
  border-top: 10px solid #ffffff;
}

/* base split */
.split span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

/* looping animation */
.loop span {
  animation: splitLoop 4s ease infinite;
}

/* delays for line sequence */
.loop span:nth-child(1) {
  animation-delay: 0s;
  color: #ffffff;
}

.loop span:nth-child(2) {
  animation-delay: 0.8s;
  color: #ffffff;
}

/* keyframes with pause */
@keyframes splitLoop {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  15% {
    opacity: 1;
    transform: translateY(0);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.panchasutra {
  background-color: #ffffff;
}
.pancha-card {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  gap: 3em;
  background-color: #ffffff;
  box-shadow: 0 0px 35px rgba(0, 0, 0, 0.12);
  padding: 2em;
  border-radius: 1em;
  align-items: center;
  width: 80%;
  max-width: 1000px;
  margin: 3em auto 0 auto;
}
.pancha-card p b {
  font-weight: 600;
  color: #ff6000;
}
.pancha-card .num {
  background-color: #ff6000;
  height: 100px;
  width: 100px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3em;
  color: #000000;
}
.pancha-con h3 {
  color: #ff6000;
  margin-bottom: 1em;
  font-size: 1.5em;
}
.pancha-con p {
  line-height: 2.2;
  font-weight: 400;
}
.panchasutra h3 {
  color: #000000;
  text-align: center;
  font-size: 2.5em;
}
.pancha-con {
  text-align: center;
}
.card-type-1 .pancha-con p {
  text-align: right;
}
.card-type-2 .pancha-con p {
  text-align: left;
}
footer {
  background-color: #ff6000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5em;
  padding: 2em;
  color: #ffffff;
}
.logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.social-icons {
  color: #000000;
  font-size: 1.7em;
}
.social-links {
  width: 100px;
  display: flex;
  justify-content: space-between;
}

/* LOGO → 15% */
footer img {
  width: 15%;
  max-width: 140px; /* keeps logo reasonable */
}

/* ABOUT → 60% */
footer .about {
  width: 40%;
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
  text-align: justify;
}

/* LINKS → 25% */
footer .links {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

footer .links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

footer .links a:hover {
  color: #000000;
}
footer .social-links a {
  color: #ffffff;
  font-size: 2em;
  margin-top: 1em;
}

.contact-heading {
  text-align: center;
  margin-top: 2em;
  font-size: 3em;
  color: #ff6000;
}
.contact-us-section {
  margin-top: 3em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-us-section img {
  width: 600px;
}
.form-box form {
  width: 500px;
  padding: 3em;
}
.form-box input {
  width: 100%;
  padding: 1em;
  margin-top: 1em;
  margin-bottom: 2em;
  border-radius: 0.5em;
}
.form-box label {
  font-weight: 600;
}
textarea {
  resize: none;
  width: 100%;
  padding: 1em;

  border-radius: 0.5em;
  margin-top: 1em;
}

.form-submit-btn {
  background-color: #ff6000;
  border: none;
  outline: none;
  border-radius: 0.5em;
  padding: 0.7em 3em;
  cursor: pointer;
  font-size: 16px;
  color: #ffffff;
}
.social-icons {
  position: fixed;
  background-color: #ffffff;
  bottom: 150px;
  right: 30px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  padding: 1em 0.5em;
  gap: 1.5em;
  border-radius: 0.3em;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}
.social-icons a {
  color: #000000;
}
.values-section {
  background-color: #f0f0f0;
  padding: 5em 2em;
  text-align: center;
}
.values-section p {
  color: #ffffff;
  margin: 2em 0 3em 0;
}
p.internal-note {
  color: #000000;
}
/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5em;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}

/* CARD */
.value-card {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 2.5em 1.5em;
  transition: all 0.35s ease;
  width: 300px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 30px rgba(255, 96, 0, 0.15);
}

/* ICON */
.value-card .icon {
  font-size: 3.2em;
  color: #ff6000;
  margin-bottom: 0.6em;
  height: 150px;
  width: 150px;
  margin: 0 auto;
  background-color: #ff6000;
}

/* TEXT */
.value-card p {
  color: #000000;
  font-size: 1.35em;
  line-height: 1.6;
  font-weight: 500;
}

.value-card:nth-child(5) {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff6000;
}
.value-card:nth-child(5) h3 {
  color: #ffffff;
  font-size: 3.5em;
}
.icon {
  background-color: #ffffff;
}
/* ===== JOURNEY SECTION ===== */
.journey-section {
  background: radial-gradient(circle at top, #222 0%, #000 70%);
  padding: 6em 2em;
  color: #fff;
}

.journey-title {
  text-align: center;
  color: #ff6000;
  font-size: 3em;
  font-weight: 700;
}

.journey-underline {
  width: 160px;
  height: 3px;
  background: #ff6000;
  margin: 0.7em auto 4em;
}

/* ===== TIMELINE ===== */
.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* CENTER LINE */
.timeline::before {
  content: "";
  position: absolute;
  left: 150px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(#ff6000, rgba(255, 96, 0, 0.2));
}

/* ITEM */
.timeline-item {
  display: flex;
  gap: 3em;
  margin-bottom: 3.5em;
  position: relative;
}

/* LEFT */
.timeline-left {
  width: 150px;
  text-align: right;
  position: relative;
}

.year {
  background: #1e1e1e;
  padding: 0.4em 1em;
  border-radius: 30px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 96, 0, 0.5);
}

.icon {
  font-size: 1.6em;
  background: #1e1e1e;
  padding: 0.4em 0.7em;
  border-radius: 50%;
  border: 1px solid rgba(255, 96, 0, 0.5);
}

/* DOT */
.dot {
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: #ff6000;
  border-radius: 50%;
  box-shadow: 0 0 20px #ff6000;
}

/* CONTENT */
.timeline-content {
  background: rgba(30, 30, 30, 0.95);
  padding: 1.6em 2em;
  border-radius: 12px;
  border: 1px solid rgba(255, 96, 0, 0.3);

  max-width: 650px;
}

.timeline-content h3 {
  color: #ff6000;
  margin-bottom: 0.6em;
  font-size: 1.3em;
}

.timeline-content p {
  color: #ddd;
  line-height: 1.8;
  font-size: 1em;
}

/* HIGHLIGHT ITEM */
.timeline-item.highlight .timeline-content {
  border-color: #ff6000;
}
.about-hero {
  padding: 5em;
  display: flex;
  align-items: center;
  gap: 3em;
}

.about-heading {
  text-align: center;
  color: #ff6000;
  font-size: 2em;
}
.about-subheading {
  text-align: center;
  color: #000000;
  font-size: 1.5em;
  line-height: 2em;
}
.about-hero img {
  height: 600px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}
.hero-container {
  padding: 3em;
}
.about-hero p {
  text-align: justify;
  color: #000000;
  margin-top: 2em;
  line-height: 2;
}
.about-hero-image {
  width: 50%;
  display: flex;
  justify-content: center;
}

/* RIGHT: Content */
.hero-container {
  width: 50%;
  padding: 3em;
}
.family {
  padding: 5em;
}
.family-heading {
  color: #ff6000;
  text-align: center;
  font-size: 2.5em;
}
.family-subheading {
  color: #000000;
  text-align: center;
  font-size: 2em;
}
.family-box {
  display: flex;
  align-items: center;
}
.image-box {
  width: 60%;
}
.image-box img {
  width: 350px;
  filter: drop-shadow(0px 8px 15px rgba(0, 0, 0, 0.25));
}
.contact-us-section {
  padding: 5em;
}
.text-box {
  width: 40%;
  text-align: justify;
  line-height: 1.9;
}
.flip-wrapper {
  width: 400px;
  margin: 4rem auto;
  text-align: center;
}

.book {
  position: relative;
  width: 100%;
  height: 550px;
  perspective: 1600px;
}

.page {
  position: absolute;
  inset: 0;
  background: #fff;
  transform-origin: left center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #e0e0e0;
}

/* initial states */
.page-1 {
  z-index: 2;
}

.page-2 {
  transform: rotateY(-180deg);
  z-index: 1;
}

/* active flip */
.page.flip-out {
  transform: rotateY(-180deg);
}

.page.flip-in {
  transform: rotateY(0deg);
}

/* buttons */
.controls {
  margin-top: 1.5rem;
}

button {
  padding: 0.6rem 1.4rem;
  margin: 0 0.5rem;
  background: #ff6000;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/* ===== GALLERY SECTION ===== */
.activity-gallery {
  background: #f4f4f4;
  padding: 4em 2em;
}

/* CATEGORY BLOCK */
.category {
  margin-bottom: 4em;
}

/* HEADER BAR */
.category-header {
  width: 500px;
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 1.5em;
  color: #fff;
  border-radius: 8px;
  background: #ff6000;
  clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

.category-header h2 {
  font-size: 2.2em;
  font-weight: 600;
}

.category-header .category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  height: 115px;
  width: 115px;
  border-radius: 50%;
}
.category-header .category-icon img {
  width: 50px;
}
/* COLORS */

/* PHOTO GRID */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2em;
  margin-top: 1.5em;
}

.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.photo-grid img:hover {
  transform: scale(1.04);
}

.janatecha-vishwas {
  padding: 60px 8%;
  background: #f0f0f0;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #ff6000;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 16px;
  color: #000000;
  margin-bottom: 40px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-card {
  border-radius: 14px;
  overflow: hidden;
  background-color: #ffffff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: left;
  box-shadow: 0 30px 35px rgba(0, 0, 0, 0.12);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.trust-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.trust-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background-color: #ff6000;
  margin-top: -0.4em;
  padding: 0.5em 1em;
}

.trust-card p {
  font-size: 14px;
  color: #000000;
  margin: 1em;
  line-height: 1.6;
}
.form-box label {
  color: #ff6000;
}

/* PAGE TITLE */
.video-grid {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.video-card {
  display: block;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.video-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.video-card span {
  display: block;
  padding: 10px;
  font-size: 14px;
  text-align: center;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 96, 0, 0.3);
}
.page-title h1 {
  font-size: 45px;
  text-align: center;
  color: #ff6000;
}
.page-title p {
  font-size: 20px;
  text-align: center;
}
.social-icons i {
  color: #000000;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  justify-content: space-between;
  gap: 25px;
  padding: 5em;
}

/* ===============================
   Instagram Card
================================ */
.insta-card {
  background-color: #000000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.insta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

.insta-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ===============================
   Image Styling
================================ */
.insta-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.insta-card:hover img {
  transform: scale(1.05);
}

/* ===============================
   Caption
================================ */
.caption {
  padding: 16px 14px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  background-color: #000000;
  color: #ffffff;
}
.prabhag-section h1 {
  font-size: 40px;
  color: #ff6000;
  text-align: center;
  margin-bottom: 3em;
}
.prabhag-section h1 span {
  font-size: 20px;
  display: block;
  color: #ffffff;
  margin-top: 0.5em;
}
.prabhag-section h3 {
  color: #ffffff;
  text-align: center;
  margin: 3em 0;
}
.youtube-grid {
  padding: 3em;
  display: grid;
  grid-template-columns: repeat(3, 350px);
  justify-content: space-around;
  gap: 2em;
}

.youtube-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.youtube-card img {
  width: 100%;
  display: block;
}

.youtube-card a {
  display: block;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: 0.3s ease;
}

.youtube-card:hover .overlay {
  opacity: 1;
}
.panchasutra p {
  color: #000000;
  margin: 2em 0 3em 0;
  text-align: center;
}
.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay h1 {
  font-size: 3rem;
  letter-spacing: 2px;
}

.overlay p {
  font-size: 1.2rem;
  margin: 10px 0 25px;
}
.flip-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center; /* ✅ Centers horizontally */
  justify-content: center;
  width: 100%;
  margin: 60px auto;
}

.book {
  position: relative;
  width: 350px;
  height: 500px;
  perspective: 1500px;
}

.page {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: left;
  transform-style: preserve-3d;
  transition: transform 1s ease;
  background: #fff;
}

.page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
}

.page.flipped {
  transform: rotateY(-180deg);
}

.controls {
  margin-top: 20px;
}

.controls button {
  padding: 10px 25px;
  margin: 0 10px;
  font-size: 16px;
  cursor: pointer;
}
.flip-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
}

/* BOOK SIZE */
.book {
  position: relative;
  width: 400px;
  height: 560px;
  perspective: 1500px;
  background: #ddd; /* temp background so you can see container */
}

/* EACH PAGE */
.page {
  position: absolute;
  inset: 0;
  background: white;
  transform-origin: left;
  transition: transform 1s ease;
}

/* PAGE IMAGE */
.page img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* FLIP EFFECT */
.page.flipped {
  transform: rotateY(-180deg);
}

/* BUTTON STYLE */
.controls {
  margin-top: 20px;
}

.controls button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}
.vijaydin-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}

.vijaydin-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.vijaydin-images img:hover {
  transform: scale(1.05);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: white;
  cursor: pointer;
}
.vijaydin-heading {
  color: #ff6000;
  font-size: 50px;
  text-align: center;
}
.vijaydin-subheading {
  font-size: 25px;
  text-align: center;
  margin-bottom: 3em;
}
.nivadnuk-title {
  text-align: center;
  margin-bottom: 2em;
  font-size: 35px;
  color: #ff6000;
}
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  background: #ff9933;
  border: none;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

.dropdown-btn:hover {
  background: #e88922;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  background: white;

  min-width: 180px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  overflow: hidden;
  z-index: 10;
}

.dropdown-menu a {
  color: #000000;
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  font-size: 15px;
}

.dropdown-menu a:hover {
  background: #ff6000;
  color: #000;
}
.video-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3em;
  padding: 5em;
}
.prachar-insta {
  padding: 5em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
.prachar-insta img {
  width: 100%;
}
.prachar-insta p {
  text-align: justify;
  color: #000000;
}
.prachar-insta a {
  padding: 1em;
  text-decoration: none;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  border-radius: 1em;
}

.slider {
  position: relative;
  width: 80%;
  max-width: 900px;
  overflow: hidden;
  border-radius: 12px;
}

.slider img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: none;
}

.slider img.active {
  display: block;
}

/* Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}
.vijaydivas-content {
  padding: 5em;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.vijaydivas-content h1 {
  font-size: 45px;
  color: #ff6000;
}
.vijaydivas-content p {
  margin-bottom: 4em;
}
.auto-slider {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.slider-new {
  display: flex;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.slider-new img {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}
/* ACTIVE NAV LINK */
.nav-links a.active {
  background-color: #ffffff;
  color: var(--baseShade1);
  border-radius: 5px;
  padding: 6px 10px;
}

.nav-links a.active::before {
  width: 100%;
  display: none;
}
.activity-gallery p {
  margin-top: 3em;
}
.video-box {
  width: 500px;
  aspect-ratio: 16 / 9; /* Keeps correct height automatically */
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px; /* optional */
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  font-size: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.prachar-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em;
  padding: 5em;
}
.prachar-images img {
  width: 100%;
  height: auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.karyaawhal-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 5em 10em;
  gap: 2em;
}
.karyaawhal-content h2 {
  font-size: 85px;
  color: #ff6000;
}
.karyaawhal-content a {
  display: block;
  width: 300px;
  background-color: #000000;
  color: #ff6000;
  text-decoration: none;
  padding: 1.5em 5em;
  margin-top: 2em;
  text-align: center;
  border-radius: 0.5em;
}
.vijaydivas-reels {
  display: flex;
  justify-content: space-around;
}
.vijaydivas-reels img {
  width: 350px;
}
.vijaydivas-reels p {
  width: 350px;
  margin-bottom: 6em;
  padding: 1em;
  text-align: justify;
}
.vijaydivas-reels a {
  margin-bottom: 5em;
  text-decoration: none;
  color: #000000;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
}
.vijaydivas-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
