@charset "UTF-8";
:root {
  --primary: #0f172a;
  --accent: #f97316;
  --light: #f8fafc;
  --text-main: #334155;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: #fff;
  color: var(--text-main);
  line-height: 1.6;
}

/* --- Navigation --- */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-area img {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-bottom: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

/* --- Hero Section --- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 5rem 5%;
  background: linear-gradient(135deg, #f97316 0%, #e79862 100%);
  gap: 2rem;
}

.hindi-tagline {
  font-family: "Tiro Devanagari Hindi", serif;
  color: #fff;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3.5rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  color: #fff;
}
.hero .btn-orange {
  background: #ffffff;
  color: #154060;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.cta-group {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
  display: inline-block;
}

.btn-orange {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.hero-viz img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 20px 20px 60px #d1d5db;
}

/* --- Sections General --- */
section {
  padding: 5rem 5%;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-item {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--light);
  border-radius: 15px;
  transition: var(--transition);
}

.feature-item:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* --- Program Cards --- */
.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.program-cards h3 {
  font-size: 15px;
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
}

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

.card-body {
  padding: 1.5rem;
  text-align: center;
}

/* --- Stats Section --- */
.stats {
  background: var(--primary);
  color: white;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.stat-box h2 {
  font-size: 3rem;
  color: var(--accent);
}

/* --- Footer --- */
footer {
  background: #020617;
  color: #94a3b8;
  padding: 5rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about h3 {
  color: white;
  margin-bottom: 1rem;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid var(--accent);
}

.quote-icon {
  color: var(--accent);
  opacity: 0.2;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.client-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* --- Blog --- */
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-section .blog-post {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.blog-section .blog-post:hover {
  transform: translateY(-5px);
}
.blog-section .blog-image {
  height: 200px;
  overflow: hidden;
}
.blog-section .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-section .blog-content {
  padding: 1.5rem;
}
.blog-section .tag {
  background: #ffedd5;
  color: var(--accent);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.blog-section .blog-content h4 {
  margin: 1rem 0 0.5rem;
  color: var(--primary);
}
.blog-section .blog-content h4 a {
  color: inherit;
}
.blog-section .read-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

/* --- Breadcrumb Section --- */
.bread-sec {
  background-image: linear-gradient(45deg, #212121, rgba(0, 0, 0, 0.7882352941)), url(img//top.jpg);
  padding: 4rem 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bread-sec::before {
  /* Optional: Adds a subtle pattern or overlay effect */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--accent), transparent 40%);
  opacity: 0.1;
}
.bread-sec h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.bread-sec .lists {
  list-style: none;
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  z-index: 1;
  display: flex;
  align-self: center;
  justify-content: center;
}
.bread-sec .lists li {
  display: inline-block;
  font-size: 1rem;
  color: #cbd5e1;
  list-style: none;
}
.bread-sec .lists li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.bread-sec .lists li::after {
  content: "/";
  margin: 0 10px;
  color: var(--accent);
}
.bread-sec .lists li:last-child::after {
  display: none;
}

/* --- About Intro Section --- */
.about-intro-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-intro-text p {
  color: var(--text-main);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  text-align: justify;
}

.about-img-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 15px 15px 0px var(--accent); /* Creative accent border */
}

/* --- Vision & Mission Cards --- */
.vm-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--primary);
  transition: var(--transition);
  height: 100%;
}

.vm-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
}

.vm-card i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  background: #fff7ed; /* Light orange bg */
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
}

.vm-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

/* --- Core Beliefs (Feel The Difference) --- */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.belief-item {
  background: var(--light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}

.belief-item:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.belief-item h4 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

/* --- Programs Page Specifics --- */
.programs-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.programs-intro h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.programs-intro .sub-head {
  font-family: "Tiro Devanagari Hindi", serif; /* Keeping the theme consistency */
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  display: block;
}

.program-details-section {
  padding-bottom: 2rem;
}

.program-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5rem;
}

/* This creates the Zig-Zag effect: every second row flips the image to the right */
.program-row:nth-child(even) {
  flex-direction: row-reverse;
}

.program-img {
  flex: 1;
  position: relative;
}

.program-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  /* Decorative border effect */
  border: 8px solid white;
}

/* Optional: Adds a colored blob behind image for depth */
.program-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--light);
  top: 20px;
  left: 20px;
  z-index: -1;
  border-radius: 20px;
}

.program-row:nth-child(even) .program-img::before {
  left: -20px; /* Adjust blob for reversed rows */
}

.program-text {
  flex: 1;
}

.program-text h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.program-text .age-badge {
  display: inline-block;
  background: #ffedd5; /* Light orange */
  color: var(--accent);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.program-text p {
  color: var(--text-main);
  font-size: 1.05rem;
  text-align: justify;
  line-height: 1.8;
}

.enroll-cta {
  margin-top: 1.5rem;
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: var(--transition);
}

.enroll-cta:hover {
  color: var(--accent);
}

/* --- Franchise Page Specifics --- */
/* Advantages Grid */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.adv-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid var(--accent);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.adv-card h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.adv-card h4 i {
  color: var(--accent);
}

/* Support Section */
.support-section {
  background-color: var(--primary);
  color: white;
  position: relative;
  overflow: hidden;
}

/* Decorative circle behind support */
.support-section::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.support-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.support-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.support-list i {
  background: var(--accent);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: -5px;
}

/* Requirements Box */
.req-box {
  background: #fff7ed; /* Light orange */
  border: 2px dashed var(--accent);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 4rem;
}

.req-box h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.req-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.req-single {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.req-single i {
  font-size: 2rem;
  color: var(--primary);
}

/* Franchise Form */
.franchise-form-section {
  background: white;
  padding-top: 2rem;
}

.form-wrapper {
  background: var(--light);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.form-label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

/* --- Contact Page Specifics --- */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: white;
  margin-bottom: 4rem;
}

/* Left Side: Contact Info */
.contact-info-side {
  background: var(--primary);
  color: white;
  flex: 1;
  min-width: 300px;
  padding: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Decorative circle overlay */
.contact-info-side::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--accent);
  opacity: 0.2;
  border-radius: 50%;
}

.contact-head-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-head-text p {
  color: #cbd5e1;
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-right: 1.5rem;
  margin-top: 5px;
  width: 30px;
  text-align: center;
}

.info-item h5 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: #fff;
}

.info-item p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin: 0;
}

.social-links-contact {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.social-links-contact a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-links-contact a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* Right Side: Form */
.contact-form-side {
  flex: 1.5;
  min-width: 350px;
  padding: 3rem;
  background: white;
}

.contact-form-side h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Reuse existing form controls but ensure specific spacing */
.contact-form-side .form-control {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
}

.contact-form-side .form-control:focus {
  background-color: white;
  border-color: var(--accent);
}

/* --- Parent Info Page Specifics --- */
/* Partnership Section */
.parent-intro-img {
  position: relative;
}

.parent-intro-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 20px 20px 0 var(--light); /* Subtle shadow offset */
}

/* Info Cards (Hours, Uniform, etc) */
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--accent);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card h4 i {
  color: var(--accent);
}

/* Nutrition Section with Image */
.nutrition-viz img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  min-height: 300px;
}

.nutrition-content {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 20px;
  height: 100%;
}

/* Behaviour Section */
.behaviour-wrapper {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 3rem;
}

.behaviour-box {
  padding: 2.5rem;
  height: 100%;
}

.behaviour-preferred {
  background: #f0fdf4; /* Light Green Tint */
  border-right: 1px solid #dcfce7;
}

.behaviour-prohibited {
  background: #fef2f2; /* Light Red Tint */
}

.behaviour-box h4 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.behaviour-preferred h4 {
  color: #15803d;
}

.behaviour-prohibited h4 {
  color: #b91c1c;
}

.behaviour-list {
  list-style: none;
  padding: 0;
}

.behaviour-list li {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.behaviour-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

/* --- Testimonials Page Specifics --- */
/* Creative Intro */
.testi-intro {
  text-align: center;
  padding-bottom: 3rem;
  position: relative;
}

.testi-intro h2 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.testi-intro p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-main);
  font-size: 1.1rem;
}

/* Masonry Grid Layout */
.masonry-grid {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.testi-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem; /* Spacing between items vertically */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  -moz-column-break-inside: avoid;
       break-inside: avoid; /* Prevents card from splitting across columns */
  position: relative;
  transition: all 0.4s ease;
  border-bottom: 5px solid transparent;
}

.testi-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-bottom-color: var(--accent);
}

/* Quote Icon Decoration */
.testi-card::before {
  content: "\f10d"; /* FontAwesome Quote Left */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.1;
  transition: 0.3s;
}

.testi-card:hover::before {
  opacity: 0.2;
  transform: scale(1.1);
}

/* Card Content */
.user-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.user-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--accent); /* Glowing Ring Effect */
}

.user-info h5 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
}

.user-info span {
  font-size: 0.85rem;
  color: #64748b;
  display: block;
}

.verified-badge {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
  font-weight: 600;
}

.testi-text {
  font-size: 1rem;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
}

/* Featured / Video Card */
.video-card {
  background: var(--primary);
  color: white;
  text-align: center;
}

.video-card .user-info h5 {
  color: white;
}

.video-card .user-info span {
  color: #94a3b8;
}

.video-card .testi-text {
  color: #e2e8f0;
}

.play-btn-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.play-btn-wrapper img {
  width: 100%;
  transition: 0.3s;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.video-card:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent);
  color: white;
}

/* Submit Story Section */
.submit-story-sec {
  background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 4rem;
  border: 1px solid #ffedd5;
}

/* --- Gallery Page Specifics --- */
.gallery-section {
  padding: 5rem 0;
  background: var(--light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 250px; /* Fixed height for uniform look */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Overlay Effect */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6); /* Dark Blue overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay i {
  color: var(--accent);
  font-size: 2rem;
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Hamburger Button (Hidden on Desktop) */
.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary);
  border: 2px solid var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: var(--primary);
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .masonry-grid {
    -moz-column-count: 2;
         column-count: 2;
  }
  /* Show Toggle Button */
  .mobile-toggle {
    display: flex;
    order: 3; /* Places it after the Login button */
    margin-left: 15px;
  }
  /* Adjust Navigation Bar Layout */
  nav {
    flex-wrap: wrap; /* Allows menu to drop down */
    padding: 1rem 5%;
  }
  /* Hide Links by default on Mobile */
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    text-align: center;
    padding: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f1f5f9;
    order: 4; /* Forces it to be the last item */
    gap: 0;
  }
  /* Active State (Class added via JS) */
  .nav-links.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }
  .nav-links li {
    width: 100%;
    margin: 0;
  }
  .nav-links a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
    width: 100%;
  }
  .nav-links a:hover {
    background: var(--light);
    color: var(--accent);
  }
}
/* Dropdown Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 600px) {
  .masonry-grid {
    -moz-column-count: 1;
         column-count: 1;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .behaviour-preferred {
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
}
/* --- Responsive Design --- */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero p {
    margin: 0 auto 2rem;
  }
  .cta-group {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .program-row, .program-row:nth-child(even) {
    flex-direction: column;
    gap: 2rem;
  }
  .program-img, .program-text {
    width: 100%;
  }
  .program-img::before {
    display: none; /* Hide decorative blob on mobile */
  }
}
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-info-side, .contact-form-side {
    padding: 2rem;
  }
}
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* --- Add to style.css --- */
/* =========================================
   SINGLE BLOG PAGE STYLES - FULL
   ========================================= */
/* --- 1. Header & Meta Data --- */
.single-blog-header {
  padding: 0 0 40px 0;
  position: relative;
}

.single-blog-header .post-meta {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping on small screens */
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #888;
  font-family: var(--theme-font);
}

.single-blog-header .post-meta .cat {
  color: var(--theme-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.single-blog-header .post-meta .dot {
  width: 5px;
  height: 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
}

.single-blog-header .post-title {
  font-size: 46px;
  color: var(--heading-color);
  line-height: 1.3;
  font-weight: 700;
  margin-top: 0;
}

/* --- 2. Main Content Typography --- */
.blog-main-image img {
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  width: 100%;
  height: auto;
}

.blog-content-body {
  font-family: var(--theme-font);
}

.blog-content-body p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

.blog-content-body .lead {
  font-size: 21px;
  font-weight: 500;
  color: #171616;
  margin-bottom: 30px;
}

.blog-content-body h2,
.blog-content-body h3,
.blog-content-body h4 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Blockquote Style */
.blog-content-body blockquote {
  font-size: 22px;
  color: var(--heading-color);
  font-style: italic;
  border-left: 4px solid var(--theme-color);
  padding: 25px 35px;
  background: #fffcf6; /* Light theme tint */
  margin: 35px 0;
  border-radius: 0 5px 5px 0;
}

/* Custom List Style (Bullets) */
.blog-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.blog-list li {
  font-size: 18px;
  color: #444;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.blog-list li::before {
  content: "•";
  color: var(--theme-color);
  font-weight: bold;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

/* --- 3. Author Box --- */
.author-box {
  background: #f9f9f9;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.author-box .author-img img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.author-box h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.author-box p {
  font-size: 15px;
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* --- 4. Sidebar Styles --- */
.sidebar-sticky {
  position: sticky;
  top: 100px; /* Sticks below header */
  padding-bottom: 40px;
}

.sidebar-widget {
  background: #fdfdfd;
  border: 1px solid #eee;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.sidebar-widget.bg-theme {
  background: #fffcf6;
  border-color: var(--theme-color);
}

.sidebar-widget .widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
  color: var(--heading-color);
}

/* Search Form */
.sidebar-search {
  display: flex;
  position: relative;
}

.sidebar-search input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
  outline: none;
  border-radius: 4px 0 0 4px;
}

.sidebar-search input:focus {
  border-color: var(--theme-color);
}

.sidebar-search button {
  background: var(--heading-color);
  color: #fff;
  border: none;
  padding: 0 18px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.sidebar-search button:hover {
  background: var(--theme-color);
}

/* Recent Posts List */
.recent-post-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.recent-post-item:last-child {
  margin-bottom: 0;
}

.recent-post-item .thumb {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.recent-post-item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.recent-post-item .content a {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  display: block;
  transition: color 0.3s;
  text-decoration: none;
}

.recent-post-item .content a:hover {
  color: var(--theme-color);
}

.recent-post-item .content .date {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
  display: block;
}

/* Category List */
.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-list li {
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
}

.cat-list li:last-child {
  border-bottom: none;
}

.cat-list li a {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #555;
  transition: color 0.3s;
  font-weight: 500;
}

.cat-list li a:hover {
  color: var(--theme-color);
}

.cat-list li a span {
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
  color: #888;
}

/* --- 5. Comment Form Area --- */
.contact-form-wrapper .form-control {
  background-color: #fafafa;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 4px;
  font-size: 15px;
}

.contact-form-wrapper .form-control:focus {
  background-color: #fff;
  border-color: var(--theme-color);
  box-shadow: none;
}

.contact-form-wrapper textarea {
  resize: vertical;
  min-height: 150px;
}

/* --- 6. Responsive (Mobile) --- */
@media (max-width: 991px) {
  /* Title Font Size */
  .single-blog-header .post-title {
    font-size: 32px;
  }
  /* Reset Sticky Sidebar */
  .sidebar-sticky {
    position: relative;
    top: 0;
    margin-top: 50px;
  }
  /* Stack Author Box */
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  .author-box .author-img img {
    width: 80px;
    height: 80px;
  }
  /* Text Sizes */
  .blog-content-body p,
  .blog-list li {
    font-size: 16px;
  }
  .blog-content-body blockquote {
    font-size: 18px;
    padding: 20px;
  }
}
/* =========================================
   INSIGHTS (BLOG CARD) SECTION CSS
   ========================================= */
.insights-section {
  background-color: #fff; /* or var(--bg-color) if you prefer grey */
  padding: 80px 0; /* Common spacing */
}

/* 1. The Card Container */
.insights-section .blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensures all cards in a row are same height */
  border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Hover Effect: Lift Up */
.insights-section .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* 2. Image Wrapper & Zoom Effect */
.insights-section .blog-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px; /* Fixed height for uniformity */
}

.insights-section .blog-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Effect: Image Zoom */
.insights-section .blog-card:hover .blog-img-wrapper img {
  transform: scale(1.1);
}

/* 3. Category Badge (Top Right) */
.insights-section .category-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  padding: 6px 14px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* 4. Content Area */
.insights-section .blog-content {
  padding: 30px;
}

.insights-section .blog-content .date {
  font-size: 13px;
  color: #888;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  font-family: var(--theme-font);
}

.insights-section .blog-content h3 {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.insights-section .blog-card:hover .blog-content h3 {
  color: var(--theme-color); /* Turns Gold on Hover */
}

.insights-section .blog-card .blog-content h3 a {
  color: var(--theme-color); /* Turns Gold on Hover */
  text-decoration: none;
}

.insights-section .blog-card .blog-content h3 a:hover {
  color: var(--accent);
}

.insights-section .blog-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 5. Read More Link */
.insights-section .read-link {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--heading-color);
  border-bottom: 2px solid var(--theme-color);
  padding-bottom: 2px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.insights-section .read-link:hover {
  color: var(--theme-color);
  border-bottom-color: transparent;
}

#popup-img {
  /* Overlay */
  /* Popup container */
  /* Close button */
}
#popup-img.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#popup-img .popup-container {
  position: relative;
  max-width: 600px;
  width: 90%;
  background: transparent;
}
#popup-img .popup-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
#popup-img .popup-close {
  position: absolute;
  top: -22px;
  right: -24px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 29px;
  line-height: 32px;
  text-align: center;
}
#popup-img .popup-close:hover {
  background: #333;
}

.founder-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}
.founder-section .founder-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.founder-section .founder-card {
  flex: 1 1 45%;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.founder-section .founder-card img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  margin-bottom: 15px;
  border: solid #f97316;
  -o-object-position: top;
     object-position: top;
}
.founder-section .founder-card h3 {
  margin: 10px 0 5px;
  font-size: 20px;
  font-weight: bold;
}
.founder-section .founder-card h4 {
  margin: 5px 0;
  color: #555;
  font-size: 16px;
}
.founder-section .founder-card p {
  margin: 5px 0;
  font-size: 14px;
}/*# sourceMappingURL=style.css.map */