html {
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  font-size: 'EudoxusSans-Medium', sans-serif !important;
}

body {
  zoom: 95%;
}

/* Top Bar */
.top-bar {
  background: #F2693B;
  color: #fff;
  font-size: 14px;
  padding: 1.5rem 1rem;
  max-width: 1200px;
  /* Or any max content width */
  margin-left: auto;
  margin-right: auto;
}

.fa-linkedin-in {
  height: 24 !important;
  width: 24;
}

.top-bar a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
}

.top-bar a:hover {
  color: #000;
}

/* Optional: Make sure icons do not overflow on small screens */
.contact-info,
.social-links {
  word-break: break-all;
  font-weight: bold;
}

.social-links a {
  text-decoration: none;
}


/* Navbar */
.custom-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.btn-success {
  border-radius: 20px;
  font-weight: bold;
  padding: 8px 18px;
  background-color: #450170;
  color: white !important;
  border: white;

}

.btn-success:hover {
  background-color: #F0649D;
  color: white !important;
  border: white;
}

.navbar-nav {
  font-weight: bold;
  width: 100%;
  justify-content: end;
  display: flex;
  gap: 20px;
  font-size: 18px;
  /* padding-left: 350px; */
}

.navbar-logo {
  width: 60px;
  height: auto;
  max-height: 70px;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #450170;
  /* Use your desired hover color here */
  transition: color 0.3s ease;
}

.dropdown-item {
  font-weight: bold !important;
  color: white !important;
}

.dropdown-item:hover {
  color: #450170 !important;
}

.dropdown-menu {
  background-color: #450170;
  /* or any contrasting color */
  transition: background-color 0.3s ease, color 0.3s ease;
}


@media (max-width: 991px) {
  .custom-navbar {
    position: fixed;
    width: 100%;
  }

  body {
    padding-top: 57px;
  }

  .top-bar {
    font-size: 12px;
  }


}



/* Show dropdown on hover */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* remove small gap */
  }

  .navbar .dropdown-toggle::after {
    transform: rotate(0deg);
    transition: transform 0.3s;
  }

  .navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}



/* Hero Section */
#heroCarousel {
  position: relative;
}

#heroCarousel img {
  height: 100vh;
  object-fit: cover;
}

#heroCarousel .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

#heroCarousel .carousel-caption {
  z-index: 2;
}

#heroCarousel h1 {
  font-size: 3rem;
}

@media (max-width: 767px) {
  #heroCarousel h1 {
    font-size: 1.8rem;
  }

  #heroCarousel img {
    height: 50vh;
  }
}

/* Cards Section */
.cards-section {
  margin-top: -8vh;
  z-index: 5;
  position: relative;
}

.custom-card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  color: #fff;
}

.custom-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.custom-card .card-body {
  padding: 20px;
  border-radius: 0 0 15px 15px;
}

.red-card .card-body {
  background: #f44336;
  border-top-left-radius: 50% 20px;
  border-top-right-radius: 50% 20px;
}

.yellow-card .card-body {
  background: #fbc02d;
  border-top-left-radius: 50% 20px;
  border-top-right-radius: 50% 20px;
}

.teal-card .card-body {
  background: #009688;
  border-top-left-radius: 50% 20px;
  border-top-right-radius: 50% 20px;
}

.custom-card:hover {
  transform: translateY(-10px);
}


/*  */
.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1 1 500px;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-text h2 span {
  color: #F3629E;
}

.underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #3c8d3c 50%, #ff6600 50%);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  border: 1px solid #ff6600;
  color: #ff6600;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  background-color: #ff6600;
  color: #fff;
}

.about-image {
  flex: 1 1 400px;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column-reverse;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }
}


/*  */
/*  */
.facts-section {
  position: relative;
  background: linear-gradient(135deg, #fdfbfb, #f6faff);
  padding: 5rem 1rem;
  text-align: center;
  border-top: 4px solid #4a90e2;
  border-bottom: 4px solid #4a90e2;
  overflow: hidden;
}

/* Left Image */
.facts-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 370px;
  height: 550px;
  background: url('assets/img/colourful_hand.png') no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
  opacity: 0.9;
}

/* Right Image */
.facts-section::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 180px;
  height: 250px;
  background: url('assets/img/happy_kids.png') no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
  opacity: 0.9;
}

.facts-section h2 {
  font-weight: 700;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  color: #450170;
  position: relative;
  z-index: 2;
}

.facts-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.fact-card {
  background: #fff;
  border-left: 6px solid var(--color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.fact-card .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.8rem;
}

.fact-card p {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
}

.callout {
  margin-top: 3rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1d3557;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 576px) {
  .facts-section h2 {
    font-size: 1.6rem;
  }

  .fact-card p {
    font-size: 1rem;
  }

  .callout {
    font-size: 1.1rem;
  }
}


/*  */
/* Programs Section */
.zigzag-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.zigzag-list li {
  transform: rotate(-2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.zigzag-list li:nth-child(even) {
  transform: rotate(2deg);
}

.zigzag-list li:hover {
  transform: scale(1.08) rotate(0deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.details {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
}

.details img {
  width: 64px;
  margin-bottom: 1rem;
}

.details h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #222;
}

.details .tagline {
  font-weight: bold;
  color: #7B2CBF;
  margin-bottom: 0.5rem;
}

.details .desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.btn-learn {
  display: inline-block;
  background: #7B2CBF;
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-learn:hover {
  background: #5a1999;
}




/*  */
/* Section styling */
.why-choose-us {
  background: #f9f9f9;
  padding: 40px 0;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.2rem;
  margin-bottom: 35px;
  color: #333;
}

/* Grid container for benefits - two items per row */
.benefits-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px 30px;
  text-align: left;
}

.benefit-item {
  border-radius: 12px;
  padding: 25px 30px;
  color: #fff;
  font-size: 1.05rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Different colors for each card */
.benefit-item:nth-child(1) {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  /* Purple → Blue */
}

.benefit-item:nth-child(2) {
  background: linear-gradient(135deg, #ff512f, #dd2476);
  /* Orange → Pink */
}

.benefit-item:nth-child(3) {
  background: linear-gradient(135deg, #00b09b, #96c93d);
  /* Green → Lime */
}

.benefit-item:nth-child(4) {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  /* Yellow → Gold */
}

/* Text styles */
.benefit-item strong {
  display: block;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.2rem;
}

.benefit-item p {
  margin: 0;
  color: #f9f9f9;
  line-height: 1.6;
}

/* Hover effect */
.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.benefit-item:hover {
  background-color: #e6f2ff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    padding: 0 15px;
  }
}










/*  */
/* .testimonials-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} */

a:link,
a:active,
a:visited,
a:hover {
  color: #3f51b5;
}

.outerdiv {
  /* width: 100%; */
  min-height: 100vh;
  /* background: #EDF2F8; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.innerdiv {
  transform: scale(0.9);
  margin: 1rem;
  display: grid;
  grid-gap: 1.5rem;
  grid-template-rows: repeat(2, 22rem);
  grid-template-columns: repeat(4, 17rem);
}

.eachdiv {
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  box-shadow: 5px 5px 20px #6d6b6b6b;
  color: white;
}

.div1 {
  background: #733FC8;
  grid-column: 1/3;
  grid-row: 1/2;
  background-image: url(https://raw.githubusercontent.com/RahulSahOfficial/testimonials_grid_section/5532c958b7d3c9b910a216b198fdd21c73112d84/images/bg-pattern-quotation.svg);
  background-repeat: no-repeat;
  background-position-x: 25rem;
}

.div2 {
  background: #49556B;
  grid-column: 3/4;
  grid-row: 1/2;
}

.div3 {
  background: white;
  grid-column: 4/5;
  grid-row: 1/3;
  color: black;
}

.div4 {
  background: white;
  grid-column: 1/2;
  grid-row: 2/3;
  color: black;
}

.div5 {
  background: #18202D;
  grid-column: 2/4;
  grid-row: 2/3;
}

.userdetails {
  display: flex;
}

.imgbox {
  margin-right: 1rem;
}

.imgbox img {
  border-radius: 50%;
  width: 2rem;
  border: 2px solid #cec5c5;
}

.detbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detbox p {
  margin: 0;
}

.detbox .name {
  color: hsl(0, 0%, 81%);
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
  font-weight: 600;
}

.detbox .name.dark {
  color: #49505A;
}

.detbox .designation {
  color: hsl(0, 0%, 81%);
  opacity: 50%;
  font-size: 0.8rem;
}

.detbox .designation.dark {
  color: #49505A;
}

.review h4 {
  font-size: 1.2rem;
  color: #F3DEFF;
  font-weight: 600;
  /* line-height: 1.5; */
  /* margin-bottom: 0.8rem; */
}

.review.dark h4 {
  color: #4B5258;
}

.review p {
  font-size: 0.95rem;
  color: #F3DEFF;
  font-weight: 500;
  opacity: 50%;
  /* line-height: 1.5; */
}

.review.dark p {
  color: #0e0e0e;
}

.attribution {
  font-size: 1rem;
  line-height: 1.5;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  text-align: right;
}

.attribution a {
  text-decoration: none;
}

@media only screen and (max-width: 1000px) {
  .innerdiv {
    transform: scale(0.7);
  }
}

@media only screen and (max-width: 800px) {
  .innerdiv {
    transform: scale(0.6);
  }
}

@media only screen and (max-width: 600px) {
  .div1 {
    background-position-x: 10rem;
  }

  .innerdiv {
    display: flex;
    flex-direction: column;
    transform: scale(1);
    margin: 2rem;
    margin-bottom: 5rem;
  }

  .attribution {
    position: relative;
  }
}





.testimonials-slider-wrapper {
  overflow-x: auto;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
}

.testimonials-slider-wrapper::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome, Safari and Opera */
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  scroll-snap-type: x mandatory;
}

.testimonial-item {
  flex: 0 0 320px;
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: grab;
}

.testimonial-item:active {
  cursor: grabbing;
}

.testimonial-item:hover {
  box-shadow: 0 8px 30px rgba(74, 144, 226, 0.25);
  transform: translateY(-10px);
}

.quote {
  font-style: italic;
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 22px;
}

.author {
  font-weight: 700;
  font-size: 1rem;
  color: #2c3e50;
  text-align: right;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .testimonial-item {
    flex: 0 0 280px;
    padding: 25px 20px;
  }

  .quote {
    font-size: 1.1rem;
  }
}





.cta-section {
  background-color: #D8B4E2;
}

.btn-light {
  color: #F7C65A;
  font-weight: 700;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-light:hover,
.btn-light:focus {
  background-color: #F7C65A;
  /* color: white; */
}

.btn-outline-light {
  background-color: white;
  color: #1C1C3A;
  /* border-color: white; */
  font-weight: 700;
  border-radius: 50px;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: #1C1C3A;
  color: white;
  text-decoration: none;
}

.button-group .btn {
  min-width: 200px;
}

@media (max-width: 575px) {
  .button-group {
    flex-direction: column;
    gap: 15px;
  }

  .button-group .btn {
    width: 100%;
    min-width: auto;
  }
}




.about-founder {
  background-color: #f2693a;
  /* orange shade */
  color: #fff;
  padding: 50px 20px;
  border-radius: 0 0 50px 0;
  /* optional curved style */
}

.about-founder h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.about-founder p {
  font-size: 16px;
  line-height: 1.7;
}

.founder-image {
  text-align: center;
}

.founder-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.founder-name {
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
}

.founder-title {
  font-style: italic;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-founder {
    text-align: center;
    border-radius: 0;
  }

  .about-founder h2 {
    text-align: center;
  }
}



/* Footer Base */
.site-footer {
  /* background: linear-gradient(154deg, #f7f7f7, #6a11cb); */
  background: radial-gradient(circle at 10% 20%, #fddde6 0%, transparent 40%),
    radial-gradient(circle at 80% 10%, #e4e0f9 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, #fff0d6 0%, transparent 40%),
    radial-gradient(circle at 20% 60%, #e1f7e7 0%, transparent 40%);
  background-color: #ffffff;

  /* color: black; */
  font-size: 15px;
  font-weight: bold;
}

/* Section Titles */
.footer-title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #fff;
  margin-top: 6px;
  border-radius: 2px;
}

/* Links */
.footer-link {
  /* color: rgba(255, 255, 255, 0.85); */
  color: #470270;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}

.footer-link:hover {
  /* color: #fff; */
  text-decoration: underline;
}

/* Social Icons */
.social-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  margin: 0 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* .social-icon:hover {
  background: #fff;
  color: #2575fc;
  transform: translateY(-3px);
} */

/* Divider */
.site-footer hr {
  border-color: rgba(255, 255, 255, 0.3);
}


/* ################################################################ */
/* ABOUT US PAGE */
/* ################################################################ */
/* Hero Section */
.about-hero {
  background: url('assets/img/about-hero.jpg') center/cover no-repeat;
  min-height: 60vh;
  /* default for desktops */
  position: relative;
  color: #fff;
  display: flex;
  /* centers content */
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  /* spacing for small devices */
}

/* Tablet screens */
@media (max-width: 1024px) {
  .about-hero {
    min-height: 50vh;
    padding: 1.5rem;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .about-hero {
    min-height: 40vh;
    padding: 1rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .about-hero {
    min-height: 35vh;
    padding: 0.8rem;
  }
}


/* .about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
} */

/* Mission Section */
.mission-section {
  background: linear-gradient(135deg, #f0fdf4, #e0f7fa);
}

/* Vision Section */
.vision-section {
  background: #ffffff;
}

/* Founder Section */
.founder-section {
  background: linear-gradient(135deg, #fff, #f3f4f6);
}

/* Core Values */
.core-values-section {
  background: #f9fafb;
}

.core-values-section .hover-shadow:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* What We Do */
.what-we-do-section {
  background-color: #ffffff;
}

/* Testimonials */
.testimonials-section {
  background: linear-gradient(135deg, #f0f9ff, #e0f7fa);
}

/* Promise */
.promise-section {
  background-color: #ffffff;
}

/* Call To Action */
.cta-section {
  background-color: #8b5cf6;
}











/* ################################################################ */
/*  Product Page PAGE */
/* ################################################################ */
.page-header {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #ff9966, #ff5e62);
  color: #fff;
  border-radius: 0 0 40px 40px;
  margin-bottom: 40px;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Pushes buttons to the bottom */
  flex: 1;
  /* Makes all cards take equal height */
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: #fff;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-img {
  /* height: 220px; */
  object-fit: cover;
  border-bottom: 3px solid #eee;
}

.card-body {
  padding: 25px;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #e63946;
  margin-top: 10px;
}

.btn-buy {
  background: linear-gradient(135deg, #ff9966, #ff5e62);
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}

.btn-buy:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.how-to-order {
  margin-top: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

















.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0d6efd;
  margin: 50px 0 30px;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 10 !important;
}

.card-header {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  padding: 20px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  margin-right: 10px;
  font-size: 1.3rem;
}

.card-body {
  padding: 20px;
  flex-grow: 1;
}

.card-body ul {
  padding-left: 1rem;
}

.card-body ul li {
  margin-bottom: 0.5rem;
}

.card-footer {
  background: #f1f5f9;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e2e8f0;
  border-radius: 0 0 20px 20px;
}

.price-badge,
.age-badge {
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 0.95rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.price-badge {
  background: #ffc107;
  color: #000;
}

.age-badge {
  background: #0d6efd;
  color: #fff;
}

/* Gradient headers */
.header-1 {
  background: linear-gradient(45deg, #ff6b6b, #ff8e72);
}

.header-2 {
  background: linear-gradient(45deg, #6bc1ff, #72d6ff);
}

.header-3 {
  background: linear-gradient(45deg, #ffdd6b, #ffd672);
}

.header-4 {
  background: linear-gradient(45deg, #8d6bff, #b072ff);
}

.header-5 {
  background: linear-gradient(45deg, #6bff91, #72ffb1);
}

.header-6 {
  background: linear-gradient(45deg, #ff6bf5, #ff72f5);
}

.header-7 {
  background: linear-gradient(45deg, #ff6b84, #ff7284);
}

.header-8 {
  background: linear-gradient(45deg, #6bfff7, #72fff0);
}

/* Staggered effect */
.stagger-card {
  position: relative;
}

.stagger-card:nth-child(odd) {
  margin-top: 0;
  z-index: 8;
}

.stagger-card:nth-child(even) {
  margin-top: 60px;
  z-index: 7;
}

@media (max-width: 767px) {
  .stagger-card {
    margin-top: 0 !important;
  }

  .card-body {
    font-size: 0.9rem;
  }
}



/* Blog Hero */
.blog-hero {
  background: url('assets/img/blogpage.jpeg') center/cover no-repeat;
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.blog-hero h1 {
  position: relative;
  font-size: 3rem;
  font-weight: 800;
  z-index: 2;
}

/* Blog Cards */
.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 600px;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.blog-card img {
  height: 320px;
  object-fit: cover;
}

.blog-meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 8px;
}

.read-more {
  color: #470270;
  font-weight: bold;
  text-decoration: none;
  transition: color .3s ease;
}

/* .read-more:hover {
      color: #f2693b;
    } */

/* Section Title */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #470270;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #470270, #f2693b);
  margin: 15px auto 0;
  border-radius: 3px;
}

/* Full Blog Section */
.full-blog {
  display: none;
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
}

.back-btn {
  display: inline-block;
  margin-bottom: 20px;
  color: #fff !important;
  background: #470270;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

/* .back-btn:hover {
      background: #f2693b;
      color: #fff;
    } */