

html,body{
  margin: 0;
  padding: 0;
}
html,body{
  width:100%;
  overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {

   background: linear-gradient(to bottom, #ffdb65, #eeecec);
  
  overflow-x: hidden;
}

/* ===== TOP STRIP ===== */
.top-strip {
  background: #f4c430;
  font-size: 13px;
}

.top-strip-inner {
  width: 100%;
  padding: 6px 8%;
  padding: 6px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}

.strip-item {
  display: flex;
  align-items: center;
  color: #4a1c1c;
  font-weight: 500;
}

.strip-item .icon {
  margin-right: 6px;
}

/* ===== HEADER ===== */
#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(107, 15, 26, 0.92);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  padding: 18px 20px;
}


#main-header.shrink {
  padding: 8px 20px;
}
.nav-list{
  display: flex;
  gap:35px;
  list-style:none;
  margin: 0;
  padding: 0;
}



.header-inner {
  width:100%;
  padding: 0 50px;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.logo-text{
  margin-right: 70px;
}
.nav-list{
  display: flex;
  align-items:center;
  gap: 40px;
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
}

.prahlad { color: orange;
 }
.kids, .gurukulam { color: rgb(248, 192, 248); }
 /* color: rgb(245, 16, 245);  */

/* ===== NAVIGATION ===== */
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}


.main-nav a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

/* underline hover */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #f4c430;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ===== DROPDOWNS ===== */
.has-dropdown {
  position: relative;
}

.arrow {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #4a1f1f;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  padding: 8px 0;
  z-index: 1000;
  animation: fadeDown 0.3s ease forwards;
}

.has-dropdown:hover .dropdown-panel {
  display: flex;
}

.dropdown-panel a {
  padding: 10px 18px;
  font-size: 14px;
  color: #fff;  /* white text */
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.dropdown-panel a:hover {
  background: rgba(244,196,48,0.2);
  font-weight: 600;
}

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

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
  margin-left:8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #f4c430;
  margin: 4px 0;
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(rgba(107,15,26,0.65), rgba(107,15,26,0.65)),
    url("https://images.unsplash.com/photo-1508672019048-805c876b67e2");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  pointer-events: auto;
  z-index: 1;
}

.hero h1 { font-size: 32px; margin-bottom: 12px; }

/* ===== SECTIONS ===== */
.section {
  width: 100%;
  margin: auto;
  padding: 50px 8%;
}

.section-title {
  text-align: center;
  font-size: 26px;
  color: #6b0f1a;
  margin-bottom: 30px;
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.content-block img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.content-block img:hover {
  transform: scale(1.03);
}

/* ===== FEATURES ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

.feature-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.feature-card h3 {
  margin: 18px 12px 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0 16px 22px;
  font-size: 0.95rem;
  color: #555;
}

/* ===== FORM AND ADMIN HELPERS ===== */
.form-card {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-weight: 600;
  color: #4a1c1c;
}

.form-group input,
.form-group textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.btn {
  background: #6b0f1a;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}
/* .main-nav{
  margin-left: auto;
} */
.btn:hover {
  background: #4a0b12;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .top-strip { display: none; }

  /* Minimal mobile nav behavior (used by JS toggling `.active` / `.open`). */
  .main-nav { display: none; }
  .main-nav.active { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .dropdown-panel {
    position: static;
    box-shadow: none;
    transform: none;
    display: none;
    background: #3a1818;
  }

  .has-dropdown.open .dropdown-panel {
    display: flex;
    flex-direction: column;
  }

  .content-block {
    grid-template-columns: 1fr;
  }

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

  .feature-card img { height: 200px; }

  .footer-columns { grid-template-columns: 1fr; text-align: center; }

  .footer-col { margin-bottom: 30px; }

  .footer-col ul li:hover { transform: none; }
}

/* ===== HEADER DIVIDER ===== */
#main-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(244,196,48,0.6),
    transparent
  );
}

.dropdown {
  position: relative;
}


.dropdown-menu {
  background: linear-gradient(145deg, #1c0f2e, #2b1646);
  border-radius: 10px;
  padding: 8px 0;

  box-shadow: 0 14px 40px rgba(0,0,0,0.45);

  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);

  transition: all 0.3s ease;
  z-index: 9999;
}

/* Show on hover (desktop) */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown links */
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;

  color: #ffffff;           
  text-decoration: none;

  transition: background-color 0.25s ease, padding-left 0.25s ease;
}

/* Hover effect */
.dropdown-menu a:hover {
  background: rgba(255,255,255,0.12);
  padding-left: 26px;
  font-weight: 600;
}


.dropdown:hover .arrow {
  transform: rotate(180deg);
}


.dropdown-panel .panel-item {
  padding: 12px 18px;
  font-size: 14px;
  color: #ffffff;             
  cursor: pointer;
  transition: background-color 0.25s ease, padding-left 0.25s ease;
}

.dropdown-panel .panel-item:hover {
  background-color: rgba(255,255,255,0.12);
  padding-left: 26px;
  font-weight: 600;
}
.has-dropdown:hover .arrow{
  transform: rotate(180deg);
}
.dropdown-panel{
  position:absolute;
  z-index: 10000;
}



.has-dropdown {
  position: relative;
}

.has-dropdown .arrow {
  cursor: pointer;
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.has-dropdown.open .arrow {
  transform: rotate(180deg);
}
.has-dropdown.open .dropdown-panel {
  display: block;
}

.arrow {
  transition: transform 0.3s ease;
}

.has-dropdown.open .arrow {
  transform: rotate(180deg);
}






.top-slider {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.8s ease;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
}

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

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 0.6;
}

.dot.active {
  opacity: 1;
  background-color: #f4c430;
}
:root {
  --primary-color: #6b0f1a;
  --text-dark: #2d2d2d;
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.principal-section {
  padding: 80px 10%;
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
}


.section-divider {
  width: 100px;
  height: 4px;
  background: var(--primary-color);
  margin-bottom: 50px;
}

.principal-container {
  display: flex;
  align-items: center;
  gap: 60px;
  opacity: 0; 
  transform: translateY(30px);
  animation: fadeInUp 1s forwards ease-out;
}

.principal-image-wrapper {
  position: relative;
  flex: 1;
  max-width: 500px;
}

.principal-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
  z-index: 2;
  position: relative;
  transition: var(--transition-smooth);
}

.image-accent {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  z-index: 1;
}

/* Text Content Styling */
.principal-content {
  flex: 1.5;
}

.sub-title {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
}

.principal-name {
  font-size: 36px; 
  font-weight: 700;
  color: var(--primary-color);
  margin: 10px 0;
  letter-spacing: 0.5px;
}

.principal-designation {
  font-size: 18px;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
}

.content-line {
  width: 50px;
  height: 3px;
  background: var(--primary-color);
  margin-bottom: 25px;
}

.principal-description {
  line-height: 1.8;
  color: var(--text-dark);
  font-size: 17px;
}

/* Subtle Hover Animation */
.principal-image-wrapper:hover .principal-img {
  transform: scale(1.03);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .principal-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .content-line { margin: 0 auto 25px; }
}
/* Admission box */
.admission-box {
  position: absolute;
margin-top: 40px;
right:10px;
bottom: -220px;
  background: #6b0f1a;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  width: 320px;

  box-shadow: 0 18px 40px rgba(0,0,0,0.30);
  color: #fff;
  border: 2px solid rgba(255,215,0.0.4);
}

.admission-box img {
  width: 180px;
  height:180px;
  margin-bottom: 15px;
  border-radius: 12px;
  border:3px solid #ffd700;
  padding:8px;
  background: #fff;
}

.admission-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  background: #f4c430;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.admission-btn:hover {
  background: #ffb347;
}

/* Responsive */
@media(max-width:768px) {
  .top-slider { height: 42vh;
  width: 100%; }

  .principal-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .admission-box {
    position: static;
    margin: 30px auto 0;
  }
}

footer {
  background: linear-gradient(135deg, #3a0a11, #6b0f1a);
  color: #fff;
  padding: 80px 8% 30px;
  /* margin-top: 100px; */
  position: relative;
  overflow: hidden;
  width:100%;
  margin-top: auto;
}

/* subtle top glow */
footer::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,215,0,0.2), transparent 70%);
  filter: blur(60px);
}

/* Grid layout */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* Column styling */
.footer-column {
  background: rgba(255,255,255,0.04);
  padding: 30px;
  border-radius: 18px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

/* Lift effect */
.footer-column:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.06);
}

/* Headings */
.footer-column h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #ffd700;
  letter-spacing: 1px;
  position: relative;
}

.footer-column h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #ffd700;
  position: absolute;
  bottom: -10px;
  left: 0;
}

/* Links & text */
.footer-column p,
.footer-column a {
  font-size: 15px;
  color: #ddd;
  line-height: 1.9;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

/* Link hover */
.footer-column a:hover {
  color: #ffd700;
  transform: translateX(8px);
}

/* Contact CTA Button */
.footer-cta {
  margin-top: 20px;
}

.footer-cta a {
  display: inline-block;
  padding: 12px 24px;
  background: #ffd700;
  color: #6b0f1a;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.footer-cta a:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255,215,0,0.4);
}

/* Bottom Strip */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  color: #ccc;
}

.ad-section {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  height: 100px;
  position: relative;
  transition: height 0.6s ease;
}



/* Navbar Base */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: relative;
}

.navbar > .nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

/* First Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 220px;
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 10px 0;
  border-radius: 8px;
}

.dropdown-menu li {
  padding: 10px 20px;
}

/* Second Level Dropdown */
.dropdown-submenu {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
  min-width: 220px;
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-radius: 8px;
}

/* Hover Effects */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-sub:hover .dropdown-submenu {
  display: block;
}

/* Smooth hover effect */
.nav-links a:hover {
  opacity: 0.7;
}




body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

/* Headings  */
h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Navbar */
.navbar a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Buttons */
button, .btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}




@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
  }
}




.register-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #000000, #2a5298);
  color: white;
  margin-bottom: 40px;
}

.register-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.register-text {
  flex: 1;
}

.register-text h2 {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 700;
}

.register-text p {
  font-size: 17px;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

.register-btn {
  padding: 14px 32px;
  background: #ffcc00;
  color: black;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}


.register-btn:hover {
  background: #ffcc00;
  box-shadow: 
    0 0 10px rgba(255, 204, 0, 0.6),
    0 0 20px rgba(255, 204, 0, 0.5),
    0 0 30px rgba(255, 204, 0, 0.4);
  transform: translateY(-3px);
}

.register-form {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.register-form iframe {
  width: 100%;
  height: 650px;
  border-radius: 8px;
}















body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins' , sans-serif;
}

footer {
    margin-top: auto;
}


footer {
    position: relative;
    overflow: hidden;
}


footer::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    
    width: 550px;
    height: 260px;

    background: radial-gradient(
        ellipse at center,
        rgba(255, 210, 120, 0.55) 0%,
        rgba(255, 170, 60, 0.35) 30%,
        rgba(255, 120, 30, 0.2) 50%,
        rgba(255, 0, 0, 0) 75%
    );

    filter: blur(55px);
    pointer-events: none;
    z-index: 1;
    animation: glowBreath 5s ease-in-out infinite;
}

footer::after {
    content: "";
    position: absolute;
    top: -170px;
    left: 50%;
    transform: translateX(-50%);
    
    width: 850px;
    height: 380px;
}

footer .footer-container,
footer .footer-bottom {
    position: relative;
    z-index: 3;
}


footer .footer-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;

    background: linear-gradient(
        to right,
        transparent,
        rgb(255, 238, 0),
        transparent
    );

    filter: blur(1px);
    pointer-events: none;
}


footer .footer-container::after {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 500px;

    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.04) 0px,
        rgba(255,255,255,0.04) 2px,
        transparent 3px,
        transparent 50px
    );

    opacity: 0.35;
    filter: blur(3px);
    pointer-events: none;
}


@keyframes glowBreath {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}
.section-divider {
  width: 100%;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}

.section-divider path {
  fill: #f5f5f3;
 } 



.safe{
  background-color: whitesmoke;
  height:15vh;
  width:100%;

}




footer .footer-container,
footer .footer-bottom {
    position: relative;
    z-index: 3;
}


footer .footer-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;

    background: linear-gradient(
        to right,
        transparent,
        rgb(255, 238, 0),
        transparent
    );

    filter: blur(1px);
    pointer-events: none;
}


footer .footer-container::after {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 500px;

    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.04) 0px,
        rgba(255,255,255,0.04) 2px,
        transparent 3px,
        transparent 50px
    );

    opacity: 0.35;
    filter: blur(3px);
    pointer-events: none;
}


@keyframes glowBreath {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}
.section-divider {
  width: 100%;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}

.section-divider path {
  fill: #f5f5f3;
 } 



.safe{
  background-color: whitesmoke;
  height:15vh;
  width:100%;

}




.brand-name {
  display: flex;
  align-items: center;
   font-size: 22px;
}

.header-logo {
  height: 10px;   /* adjust size */
  margin-right: 9px;
  width:auto;
   
}

  .prahlad{
    font-size: 15px;
    margin-right: 4px;
    font-family: Playfair Display;
  }
  .kids{
    font-size: 15px;
    margin-right: 4px;
    font-family: Playfair Display;
  }
  .gurukulam{
    font-size: 15px;
    margin-right: 4px;
    font-family: Playfair Display;
  }
@media (max-width: 480px) {
  .prahlad{
    font-size: 16px;
    margin-right: 4px;
    font-family: Playfair Display;
  }
  .kids{
    font-size: 16px;
    margin-right: 4px;
    font-family: Playfair Display;
  }
  .gurukulam{
    font-size: 16px;
    margin-right: 4px;
    font-family: Playfair Display;
  }

  .header-logo {
    height: 10px;
    margin-left: 2px;
  }
}



.content-line{
  width:40vw;
}

.principal-section {
  padding: 80px 10%;
  background: #f9fbfd;
}

.principal-container {
  display: flex;
  align-items: center;
  gap: 70px;
}

.principal-image-wrapper {
  position: relative;
  width: 320px;
}

.principal-img {
  width: 100%;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

.image-accent {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: #0d3b66; */
  background: #ffffff;
  top: 20px;
  left: 20px;
  z-index: 1;

  border-radius: 6px;
}

.principal-content {
  flex: 1;
}

.sub-title {
  color: #0d3b66;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.principal-name {
  font-size: 28px;
  margin: 5px 0;
}

.principal-designation {
  color: gray;
   /* color: rgb(253, 6, 6); */
  margin-bottom: 15px;
}

.content-line {
  width: 60px;
  height: 3px;
  background: #0d3b66;
  margin-bottom: 20px;
}

.principal-description {
  line-height: 1.7;
  color: #444;
}

.principal-more-text {
  display: none;
}

.principal-read-btn {
  margin-top: 18px;
  padding: 8px 22px;
  background: transparent;
  border: 1.5px solid #0d3b66;
  color: #0d3b66;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.principal-read-btn:hover {
  background: #0d3b66;
  color: #fff;
}

@media (max-width: 768px) {

  .principal-container {
    flex-direction: column;
    gap: 30px;
  }
  .main-nav{
    position: absolute;
    top: 70px;
    right: 20px;
    background: #6b0f1a;
    width: 240px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px
    rgba(0,0,0,0.25);
    display: none;

  }
.main-nav.active{
  display: block;
}
  .principal-image-wrapper {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .principal-content {
    width: 100%;
    text-align: center;
  }

  .principal-description {
    text-align: justify;
  }

}
.main-nav{
  display: flex;
  align-items: center;
  gap: 20px;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 0.2px;
  z-index: 1100;
  

}

.hamburger span {
  width:  20px;
  height: 2px;
  background: rgb(255, 238, 0);
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 900px) {

  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px;
    width: 100%;
    background: #6b0f1a;
    flex-direction: column;
    
  }
.main-nav .nav-list li a{
  color:  white;
}
  .main-nav.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}


.brand-name {
  display: flex;
  align-items: center;
   font-size: 22px;
}

.header-logo {
  height: 50px;   /* adjust size */
  margin-right: 8px;
  width:auto;
   
}

@media (max-width: 480px) {
  .prahlad{
    font-size: 15px;
  }
  .kids{
    font-size: 15px;
  }
  .gurukulam{
    font-size: 15px;
  }

  .header-logo {
    height: 40px;
  }
}



.india {
    border: 2px solid #333;
    padding: 20px;
    width: 320px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px;
}


.america {
    margin-top: 15px;
    padding: 10px;
    background-color: #f0f0f0;
    border-left: 4px solid #ff4757;
    color: #444;
}


.japan {
    display: block;
    background-color: #3a1818; 
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.japan:hover {
    background-color: #ff0000;
}



.content-line{
  width:40vw;
}

.principal-section {
  padding: 80px 10%;
  background: #f9fbfd;
}

.principal-container {
  display: flex;
  align-items: center;
  gap: 70px;
}

.principal-image-wrapper {
  position: relative;
  width: 320px;
}

.principal-img {
  width: 100%;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

.image-accent {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: #0d3b66; */
  background: #ffffff;
  top: 20px;
  left: 20px;
  z-index: 1;

  border-radius: 6px;
}

.principal-content {
  flex: 1;
}

.sub-title {
  color: #0d3b66;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.principal-name {
  font-size: 28px;
  margin: 5px 0;
}

.principal-designation {
  color: gray;
   /* color: rgb(253, 6, 6); */
  margin-bottom: 15px;
}

.content-line {
  width: 60px;
  height: 3px;
  background: #0d3b66;
  margin-bottom: 20px;
}

.principal-description {
  line-height: 1.7;
  color: #444;
}

.principal-more-text {
  display: none;
}

.principal-read-btn {
  margin-top: 18px;
  padding: 8px 22px;
  background: transparent;
  border: 1.5px solid #0d3b66;
  color: #0d3b66;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.principal-read-btn:hover {
  background: #0d3b66;
  color: #fff;
}

@media (max-width: 768px) {

  .principal-container {
    flex-direction: column;
    gap: 30px;
  }
  .main-nav{
    position: absolute;
    top: 70px;
    right: 20px;
    background: #6b0f1a;
    width: 240px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px
    rgba(0,0,0,0.25);
    display: none;

  }
.main-nav.active{
  display: block;
}
  .principal-image-wrapper {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .principal-content {
    width: 100%;
    text-align: center;
  }

  .principal-description {
    text-align: justify;
  }

}
/* Unified Mobile & Tablet Drawer */
@media (max-width: 1024px) {
  .top-strip { display: none !important; }
  .hamburger { display: flex !important; z-index: 1100; }

  /* THE DRAWER: Forces it to the RIGHT and kills the LEFT-side bug */
  .main-nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important; /* Start hidden on the right */
    left: auto !important;   /* This is critical to stop the left-side appearing */
    width: 280px !important;
    height: 100vh !important;
    background: #6b0f1a !important; /* Maroon matching your header */
    padding: 80px 20px 40px !important;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5) !important;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: block !important;
    z-index: 1050 !important;
    overflow-y: auto !important;
  }

  /* SLIDE IN LOGIC */
  .main-nav.active {
    right: 0 !important;
  }

  .nav-list {
    flex-direction: column !important;
    display: flex !important;
    gap: 0 !important;
  }

  /* WHITE LINKS ON MAROON BG */
  .main-nav a {
    color: #ffffff !important;
    font-size: 18px !important;
    display: block !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  }

  /* DROPDOWN: Pushes links down instead of floating */
  .dropdown-panel {
    position: static !important;
    display: none !important;
    background: rgba(0,0,0,0.2) !important;
    padding-left: 20px !important;
    box-shadow: none !important;
  }

  /* Toggle dropdown visibility */
  .has-dropdown.open .dropdown-panel {
    display: flex !important;
    flex-direction: column !important;
  }
}
/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* --- UNIFIED MOBILE & TABLET DRAWER --- */
@media (max-width: 1024px) {
  .top-strip { display: none !important; }

  .hamburger { 
    display: flex !important; 
    z-index: 1100; 
  }

  .main-nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important; /* Starts off-screen to the right */
    left: auto !important;   /* Fixes the "left-side" bug */
    width: 280px !important;
    height: 100vh !important;
    background: #6b0f1a !important; 
    padding: 80px 20px 40px !important;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5) !important;
    transition: right 0.4s ease-in-out !important;
    display: block !important;
    z-index: 1050 !important;
    overflow-y: auto !important;
    border-radius: 0 !important;
  }

  .main-nav.active {
    right: 0 !important; /* Slides in correctly */
  }

  .nav-list {
    flex-direction: column !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 0 !important;
  }

  .nav-list li { width: 100%; }

  .nav-list li a {
    color: #ffffff !important;
    font-size: 18px !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    display: block !important;
    width: 100%;
  }

  /* Sub-menu styling */
  .dropdown-panel {
    position: static !important;
    display: none !important;
    background: rgba(0,0,0,0.2) !important;
    padding-left: 20px !important;
    box-shadow: none !important;
  }

  .has-dropdown.open .dropdown-panel {
    display: flex !important;
    flex-direction: column !important;
  }

  .has-dropdown.open .arrow {
    transform: rotate(180deg);
  }
}

@media (max-width: 900px) {
  
  #mainNav {
    display: none; 
    width: 100%;
    background: #fff;
    position: absolute;
    top: 100%; 
    left: 0;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  #mainNav.active {
    display: block; 
  }

  /* Force the list to be VERTICAL */
  #mainNav ul {
    display: flex !important;
    flex-direction: column !important; 
    align-items: center !important;
    width: 100% !important;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #mainNav ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #fdf5e6; 
  }

  #mainNav ul li a {
    display: block;
    padding: 15px 20px;
    color: #6b0f1a; 
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.3s;
  }

  #mainNav ul li a:hover {
    background: #fff7da; /
  }

 
  .dropdown-panel {
    position: static !important; 
    display: none;
    background: #fffcf0;
    width: 100%;
    box-shadow: none !important;
  }

  .has-dropdown.open .dropdown-panel {
    display: block !important;
  }
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}




:root {
    --gurukul-maroon: #800000;
    --gurukul-gold: #f4c430;
    --soft-sun-yellow: #fff9e6; 
    --deep-text: #1a1a1a;
    --light-text: #555555;
}


.mango-wrapper {
    
    background: linear-gradient(180deg, var(--soft-sun-yellow) 0%, #ffffff 100%);
    padding: 120px 8% 0;
    display: flex;
    justify-content: center;
}

.apple-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    max-width: 1300px;
    align-items: center;
}

/* Typography Styles */
.pear-tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gurukul-maroon);
}

.apricot-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--deep-text);
    line-height: 1.1;
    margin: 20px 0;
}

.guava-script {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--gurukul-maroon);
}

.banana-text-box p {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--light-text);
}

.date-sign-box { margin-top: 40px; }
.berry-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 5px; }
.plum-title { font-family: 'Inter', sans-serif; color: var(--gurukul-maroon); font-weight: 700; font-size: 0.9rem; }

/* Image Arched Frame */
.lemon-frame { position: relative; display: flex; justify-content: flex-end; }
.plum-img {
    width: 100%;
    max-width: 450px;
    border-radius: 250px 250px 30px 30px;
    border: 15px solid #ffffff;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    z-index: 2;
}
.orange-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 150px; height: 150px;
    background: var(--gurukul-gold);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.3;
}

.fig-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #ffffff; 
    margin-top: -2px;
}

#parallax-wave {
    width: 100%;
    height: 120px;
    fill: #ffffff; 
    transform: scaleX(1.1);
}

/* --- SECTION: GRAPE (VISION & WHY) --- */
.grape-vision {
    background: #ffffff;
    padding: 80px 8% 120px;
}

.citrus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 120px;
}

.lychee-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    border: 1px solid #f2f2f2;
    text-align: center;
    padding-bottom: 30px;
}

.lychee-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(128,0,0,0.1); }
.lychee-card img { width: 100%; height: 260px; object-fit: cover; }
.pomegranate-info h3 { font-family: 'Playfair Display', serif; color: var(--gurukul-maroon); padding: 25px 20px 10px; font-size: 1.6rem; }
.pomegranate-info p { font-family: 'Inter', sans-serif; color: var(--light-text); padding: 0 30px; line-height: 1.7; }

/* WHY PRAHLAD GURUKULAM CONTENT */
.strawberry-why {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.coconut-img-box { position: relative; flex: 1; }
.coconut-img-box img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 30px 30px 0px var(--soft-sun-yellow);
}

.durian-content { flex: 1.2; }
.pineapple-title { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 30px; color: var(--deep-text); }
.lime-list { list-style: none; padding: 0; }
.lime-list li {
    font-family: 'Inter', sans-serif;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.15rem;
    color: var(--light-text);
}
.lime-list i { color: var(--gurukul-maroon); font-size: 1.6rem; margin-top: 4px; }

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .apple-container, .strawberry-why { 
        grid-template-columns: 1fr; 
        flex-direction: column; 
        text-align: center; 
    }
    .lemon-frame { justify-content: center; margin-top: 60px; }
    .pineapple-title { font-size: 2.5rem; }
    .lime-list li { text-align: left; }
}















.citrus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.lychee-card {
    perspective: 1000px;
}

.card-inner {
    background: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(244, 196, 48, 0.2); 
    position: relative;
}


.image-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gurukul-maroon);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Content Section */
.card-content {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--soft-sun-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -75px auto 20px; 
    position: relative;
    border: 5px solid #fff;
    color: var(--gurukul-maroon);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.gold-gradient-text {
    background: linear-gradient(45deg, #800000, #f4c430);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.card-content p {
    font-family: 'Inter', sans-serif;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer Interaction */
.card-footer {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: #ddd;
    font-size: 1.5rem;
}

.long-arrow {
    width: 40px;
    height: 2px;
    background: #ddd;
    position: relative;
    transition: all 0.4s ease;
}


.lychee-card:hover .card-inner {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 40px 80px rgba(128, 0, 0, 0.15);
    border-color: var(--gurukul-gold);
}

.lychee-card:hover .image-box img {
    transform: scale(1.1);
}

.lychee-card:hover .icon-circle {
    background: var(--gurukul-maroon);
    color: #fff;
    transform: scale(1.1);
}

.lychee-card:hover .long-arrow {
    width: 80px;
    background: var(--gurukul-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .citrus-grid { grid-template-columns: 1fr; padding: 40px 20px; }
}


















































:root {
    --deep-maroon: #5d0000;
    --antique-gold: #c5a059;
}

.blackberry-heritage {
    padding: 150px 10%;
    background: radial-gradient(circle at center, #ffffff 0%, #fff9e6 100%);
    position: relative;
    overflow-x: hidden;
    perspective: 2000px;
}

.silk-texture-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.05;
    background-image: url('https://www.transparenttextures.com/patterns/p6.png');
    pointer-events: none;
    z-index: 1;
}

.heritage-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.header-center { text-align: center; margin-bottom: 100px; }

.hero-statement {
    font-family: 'Bona Nova', serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    color: var(--deep-maroon);
    line-height: 1.1;
}

.royal-gold-text {
    font-style: italic;
    background: linear-gradient(135deg, #800000 0%, #c5a059 50%, #800000 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldGlide 5s infinite linear;
}

@keyframes goldGlide { to { background-position: 200% center; } }

.heritage-tag {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 6px;
    font-weight: 700;
    color: var(--antique-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: inline-block;
}


.intellectual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 120px;
    margin-bottom: 120px;
}

.intellectual-item { position: relative; border-left: 1px solid rgba(197, 160, 89, 0.2); padding-left: 30px; }

.index {
    font-family: 'Bona Nova', serif;
    color: var(--antique-gold);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.intellectual-item h3 {
    font-family: 'Bona Nova', serif;
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.intellectual-item p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

.reveal-left { opacity: 0; transform: translateX(-100px) rotateY(20deg); transition: 1.2s ease-out; }
.reveal-right { opacity: 0; transform: translateX(100px) rotateY(-20deg); transition: 1.2s ease-out; }
.reveal-bottom { opacity: 0; transform: translateY(50px); transition: 1s ease-out; }

.active-reveal { opacity: 1 !important; transform: translate(0) rotateY(0) !important; }

/* --- FOOTER & BUTTONS --- */
.heritage-signature { text-align: center; }
.gold-divider { width: 80px; height: 2px; background: var(--antique-gold); margin: 0 auto 30px; }
.quote { font-family: 'Bona Nova', serif; font-style: italic; font-size: 1.8rem; margin-bottom: 40px; color: #222; }

.btn-group { display: flex; gap: 20px; justify-content: center; }

.royal-btn-main {
    padding: 18px 40px;
    background: var(--deep-maroon);
    color: white !important;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    box-shadow: 10px 10px 0px var(--antique-gold);
    transition: 0.3s;
}

.ghost-btn-gold {
    padding: 18px 40px;
    border: 2px solid var(--antique-gold);
    color: var(--antique-gold) !important;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: 0.3s;
}

.royal-btn-main:hover { transform: translate(-5px, -5px); box-shadow: 15px 15px 0px #000; }

@media (max-width: 992px) {
    .intellectual-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-statement { font-size: 3rem; }
    .btn-group { flex-direction: column; align-items: center; }
}







:root {
    --deep-maroon: #5d0000;
    --antique-gold: #c5a059;
    --paper-white: #fffdf5;
}

.prahlad-why-us {
    padding: 120px 10%;
    background: var(--paper-white);
    position: relative;
    overflow: hidden;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.why-image-wrapper {
    position: relative;
}

.why-main-img {
    width: 100%;
    height: auto;
    border-radius: 80px 10px 80px 10px; 
    box-shadow: 25px 25px 50px rgba(0,0,0,0.08);
}

.image-accent-frame {
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    border: 1px solid var(--antique-gold);
    border-radius: 80px 10px 80px 10px;
    z-index: -1;
}

.badge-overlay {
    position: absolute;
    bottom: 30px; left: -20px;
    background: var(--deep-maroon);
    color: #fff;
    padding: 15px 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    box-shadow: 10px 10px 0px var(--antique-gold);
}

.feature-list { margin-top: 40px; }

.feature-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.flower-icon { font-size: 1.8rem; color: var(--antique-gold); line-height: 1; }

.card-info h3 {
    font-family: 'Bona Nova', serif;
    font-size: 1.5rem;
    color: var(--deep-maroon);
    margin-bottom: 5px;
}

.card-info p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #555;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .why-container { grid-template-columns: 1fr; text-align: center; }
    .feature-card { flex-direction: column; align-items: center; border: none; }
    .image-accent-frame { display: none; }
    .badge-overlay { position: static; display: inline-block; margin-top: 20px; }
}


































#lotus-stage{
position:relative;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:420px;
height:420px;
pointer-events:none;
z-index:2;
}