/* Root Variables */
:root {
  --primary-dark: #c2185b;
  --primary-light: #f8bbd0;
  --primary: #e91e63;
  --secondary: #607d8b;
  --light: #f5f5f5;
  --dark: #212121;
  --white: #ffffff;
  --black: #000000;
  --gradient-pink: linear-gradient(135deg, #ffe6f0, #ffd6eb);
  --gradient-primary: linear-gradient(135deg, var(--primary-light), var(--primary));
  --gradient-dark: linear-gradient(135deg, var(--primary-dark), var(--primary));
  --gradient-hero: linear-gradient(135deg, rgba(233, 30, 99, 0.9), rgba(194, 24, 91, 0.9));
  --light-pink: #ffe0eb;
  --medium-pink: #ffb6c1;
  --dark-pink: #c2185b;
  --shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
  --shadow-hover: 0 8px 25px rgba(233, 30, 99, 0.3);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Utility Classes */
.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.slide-in {
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* Top Bar */
.top-bar {
  background: var(--gradient-dark);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.top-bar .contact-info span {
  display: inline-block;
  margin-right: 1rem;
}

.top-bar .social-links a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  padding: 0.25rem;
  border-radius: 50%;
}

.top-bar .social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.navbar-brand .logo {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.navbar-brand .logo:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.75rem 1rem;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--gradient-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-item {
  height: 60vh;
  min-height: 400px;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.carousel-caption h5 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  font-size: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary);
  border-radius: 50%;
  padding: 1rem;
}

/* Quick Links */
.quick-links {
  background: var(--gradient-pink);
  padding: 3rem 0;
}

.quick-link-card {
  transition: var(--transition);
  height: 100%;
}

.quick-link-card .card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
}

.quick-link-card:hover .card {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.quick-link-card .card-body i {
  color: var(--primary);
  transition: var(--transition);
}

.quick-link-card:hover .card-body i {
  animation: pulse 1s infinite;
}

.quick-link-card .card-title {
  color: var(--dark);
  font-weight: 600;
}

.quick-link-card .card-text {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background: var(--white);
}

.section-title {
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.lead {
  font-size: 1.1rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.icon-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.icon-img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

/* Owner Thoughts Section */
.owner-thoughts-section {
  background: var(--gradient-pink);
  padding: 4rem 0;
}

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

.owner-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 4px solid var(--primary-light);
  transition: var(--transition);
}

.owner-img:hover {
  transform: scale(1.05);
  border-color: var(--primary);
}

.owner-name {
  color: var(--primary-dark);
  font-weight: 700;
  margin-top: 1rem;
}

.owner-role {
  color: var(--secondary);
  font-style: italic;
}

.owner-message {
  background: var(--white);
  border-left: 4px solid var(--primary);
  position: relative;
}

.owner-message::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 3rem;
  color: var(--primary-light);
  font-family: serif;
}

/* Vision Mission */
.vision-mission-container {
  padding: 3rem 0;
}

.vision-mission-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  height: 100%;
}

.vision-mission-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.icon-container {
  margin-bottom: 1.5rem;
}

.icon-container img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: hue-rotate(320deg);
}

.vision-text, .mission-text {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

/* Courses Section */
.courses-section {
  background: var(--light);
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--secondary);
  font-size: 1.1rem;
}

.course-card {
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.course-card .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.course-card:hover .card-img-top {
  transform: scale(1.1);
}

.course-card .card-title {
  color: var(--primary-dark);
  font-weight: 600;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.course-meta .badge {
  background: var(--gradient-primary);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.duration {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* News Section */
.news-section {
  padding: 4rem 0;
  background: var(--white);
}

.news-card {
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.news-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  z-index: 2;
  min-width: 60px;
}

.news-card .card-img-top {
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .card-img-top {
  transform: scale(1.1);
}

.news-card .card-title {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1.1rem;
}

.news-card .btn-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.news-card .btn-link:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--gradient-pink);
  padding: 4rem 0;
}

.testimonial-item {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 3rem;
  color: var(--primary-light);
  font-family: serif;
}

.testimonial-name {
  color: var(--primary-dark);
  font-weight: 600;
}

.testimonial-designation {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* Partners Section */
.partners-section {
  padding: 4rem 0;
  background: var(--white);
}

.partner-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
  background: var(--white);
  box-shadow: var(--shadow);
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.partner-logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid var(--primary-light);
  transition: var(--transition);
}

.partner-logo:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.partner-name {
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: 1rem;
}

.partner-title {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* Important Links Section */
.important-links-section {
  padding: 4rem 0;
  background: var(--light);
  text-align: center;
}

.important-links-section h2 {
  color: var(--primary-dark);
  margin-bottom: 3rem;
  font-weight: 700;
}

.link-card {
  display: block;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  height: 100%;
}

.link-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
}

.link-card img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
  transition: var(--transition);
}

.link-card:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-title {
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-light);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-contact li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact i {
  color: var(--primary-light);
  width: 20px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

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

.footer-bottom-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: var(--shadow);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  color: var(--white);
  text-decoration: none;
}

/* Buttons */
.btn {
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--white);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Responsive Design - Mobile First */
@media (max-width: 576px) {
  .carousel-item {
    height: 50vh;
    min-height: 300px;
  }
  
  .carousel-caption {
    padding: 1rem;
  }
  
  .carousel-caption h5 {
    font-size: 1.2rem;
  }
  
  .carousel-caption p {
    font-size: 0.9rem;
  }
  
  .quick-links {
    padding: 2rem 0;
  }
  
  .about-section,
  .courses-section,
  .news-section,
  .testimonials-section,
  .partners-section {
    padding: 3rem 0;
  }
  
  .owner-img {
    width: 150px;
    height: 150px;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .partner-logo {
    width: 100px;
    height: 100px;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .back-to-top {
    width: 45px;
    height: 45px;
    line-height: 45px;
    bottom: 20px;
    right: 20px;
  }
  .contact-card {
    margin-bottom: 2rem;
  }
  
  .page-header {
    text-align: center;
  }
  
  .page-header-icon {
    margin-top: 2rem;
  }
  
  .accordion-button {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .accordion-body {
    padding: 1rem;
  }
  .founder-message {
    padding: 1.5rem;
  }
  
  .quote-icon {
    position: relative;
    top: 0;
    left: 0;
    background: transparent;
    padding: 0;
    text-align: center;
    display: block;
    margin-bottom: 1rem;
  }
  
  .feature-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .top-bar .contact-info span {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
  
  .owner-thoughts-section .row {
    flex-direction: column-reverse;
  }
  
  .owner-message {
    margin-bottom: 2rem;
  }
  
  .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  
  .carousel-item {
    height: 70vh;
    min-height: 500px;
  }
  
  .carousel-caption h5 {
    font-size: 2rem;
  }
  
  .carousel-caption p {
    font-size: 1.2rem;
  }
  
  .about-section,
  .courses-section,
  .news-section,
  .testimonials-section,
  .partners-section {
    padding: 5rem 0;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 1140px;
  }
  
  .navbar-nav .nav-link {
    padding: 1rem 1.5rem;
  }
  
  .quick-links {
    padding: 4rem 0;
  }
}

/* AOS Animation Overrides */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Custom AOS Animations */
[data-aos="fade-up-custom"] {
  transform: translate3d(0, 40px, 0);
  opacity: 0;
}

[data-aos="fade-up-custom"].aos-animate {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

[data-aos="zoom-in-custom"] {
  transform: scale(0.8);
  opacity: 0;
}

[data-aos="zoom-in-custom"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

/* Loading Animation */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease-out;
}

.loading.hide {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 1001;
  transition: width 0.1s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
a:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .top-bar,
  .header,
  .back-to-top,
  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .section-title {
    color: black !important;
  }
}


/* About Page Specific Styles */
.page-header {
  background: var(--gradient-pink);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.page-title {
  color: var(--primary-dark);
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--primary-dark);
}

.page-header-icon {
  opacity: 0.7;
}

.highlight-box {
  background: var(--gradient-pink);
  border-left: 4px solid var(--primary);
  border-radius: var(--border-radius);
}

.mission-points {
  margin: 2rem 0;
}

.point-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.point-item:hover {
  transform: translateX(10px);
  background: var(--light-pink);
}

.cta-buttons .btn {
  min-width: 140px;
}

.about-image-section {
  position: relative;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.6);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

/* Stats Section */
.stats-section {
  background: var(--white);
  position: relative;
}

.stat-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.stat-icon {
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: var(--secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

/* Vision Mission Enhanced */
.vision-mission-section {
  background: var(--light);
}

.card-content {
  flex-grow: 1;
}

.hindi-text {
  font-style: italic;
  border-left: 3px solid var(--primary-light);
}

/* Founder Section */
.founder-section {
  background: var(--white);
}

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

.founder-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border: 4px solid var(--primary-light);
  border-radius: 50%;
  transition: var(--transition);
}

.founder-img:hover {
  transform: scale(1.05);
  border-color: var(--primary);
}

.founder-name {
  color: var(--primary-dark);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.founder-role {
  color: var(--secondary);
  font-style: italic;
  margin-bottom: 1rem;
}

.social-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin: 0 5px;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--white);
}

.founder-message {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 30px;
  background: var(--white);
  padding: 0 10px;
  font-size: 2rem;
}

.founder-quote {
  margin: 0;
  font-style: italic;
}

.founder-signature {
  border-top: 2px solid var(--primary-light);
  padding-top: 1rem;
  margin-top: 2rem;
}

/* Why Choose Section */
.why-choose-section {
  background: var(--gradient-pink);
}

.feature-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.feature-icon {
  transition: var(--transition);
}

.feature-card:hover .feature-icon i {
  animation: pulse 1s infinite;
}

.feature-title {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--secondary);
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-header {
    text-align: center;
  }
  
  .page-header-icon {
    margin-top: 2rem;
  }
  
  .founder-img {
    width: 200px;
    height: 200px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .point-item {
    flex-direction: column;
    text-align: center;
  }
  
  .point-item i {
    margin-bottom: 0.5rem;
  }
}



/* Contact Page Specific Styles */
.page-subtitle {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* Quick Contact Cards */
.quick-contact-section {
  background: var(--light);
}

.contact-card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.contact-icon {
  transition: var(--transition);
}

.contact-card:hover .contact-icon i {
  animation: pulse 1s infinite;
}

.contact-title {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-detail {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-detail a {
  color: var(--primary);
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--primary-dark);
}

.contact-description {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Main Contact Section */
.main-contact-section {
  background: var(--white);
}

.contact-form-wrapper {
  background: var(--light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form .form-floating {
  position: relative;
}

.contact-form .form-control {
  border: 2px solid var(--light);
  border-radius: var(--border-radius);
  transition: var(--transition);
  background: var(--white);
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.contact-form .form-floating > label {
  color: var(--secondary);
  font-weight: 500;
}

.contact-form .form-control:focus ~ label,
.contact-form .form-control:not(:placeholder-shown) ~ label {
  color: var(--primary);
}

.contact-form .form-select {
  border: 2px solid var(--light);
  border-radius: var(--border-radius);
  transition: var(--transition);
  background: var(--white);
}

.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.contact-form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.contact-form .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.contact-form .btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
  background: var(--gradient-pink);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.office-info {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.office-title {
  color: var(--primary-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.5rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  padding: 0.75rem;
  background: var(--light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.detail-item:hover {
  background: var(--light-pink);
  transform: translateX(5px);
}

.detail-item i {
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-item strong {
  color: var(--primary-dark);
}

.detail-item a {
  color: var(--primary);
  transition: var(--transition);
}

.detail-item a:hover {
  color: var(--primary-dark);
}

/* Social Media Section */
.social-media-section {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.social-title {
  color: var(--primary-dark);
  font-weight: 600;
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.5rem;
}

.social-links-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--light);
  border-radius: var(--border-radius);
  text-decoration: none;
  transition: var(--transition);
  color: var(--dark);
}

.social-link:hover {
  background: var(--light-pink);
  transform: translateX(10px);
  color: var(--primary);
}

.social-link i {
  width: 25px;
  font-size: 1.2rem;
  margin-right: 1rem;
}

.social-link.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-link.youtube:hover {
  background: #ff0000;
  color: white;
}

/* WhatsApp CTA */
.whatsapp-cta .btn-success {
  background: #25d366;
  border-color: #25d366;
  font-weight: 600;
  padding: 1rem;
  transition: var(--transition);
}

.whatsapp-cta .btn-success:hover {
  background: #128c7e;
  border-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Map Section */
.map-section {
  background: var(--light);
}

.map-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
  pointer-events: none;
}

.map-container:hover::before {
  opacity: 0.1;
}

/* FAQ Section */
.faq-section {
  background: var(--white);
}

.accordion-item {
  border: 2px solid var(--light);
  border-radius: var(--border-radius) !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--white);
  color: var(--dark);
  font-weight: 500;
  border: none;
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-pink);
  color: var(--primary-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e91e63'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  background: var(--white);
  color: var(--secondary);
  line-height: 1.6;
  padding: 1.5rem;
}

/* Form Validation Styles */
.was-validated .form-control:valid {
  border-color: #28a745;
}

.was-validated .form-control:invalid {
  border-color: #dc3545;
}

.was-validated .form-select:valid {
  border-color: #28a745;
}

.was-validated .form-select:invalid {
  border-color: #dc3545;
}

.was-validated .form-check-input:valid {
  border-color: #28a745;
}

.was-validated .form-check-input:invalid {
  border-color: #dc3545;
}

/* Success Message */
.alert-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 2px solid #28a745;
  color: #155724;
  border-radius: var(--border-radius);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 1.5rem;
  }
  
  .office-info,
  .social-media-section {
    padding: 1rem;
  }
  
  .detail-item {
    flex-direction: column;
    text-align: center;
  }
  
  .detail-item i {
    margin-bottom: 0.5rem;
  }
  
  .social-links-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .social-link {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
  
  .social-link span {
    display: none;
  }
  
  .social-link i {
    margin-right: 0;
    font-size: 1.5rem;
  }
}

 .courses-section .course-card {
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  background: #fff;
}

.courses-section .course-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.courses-section .card-img-top {
  height: 180px;
  object-fit: cover;
  transition: var(--transition);
}

.courses-section .card-title {
  color: var(--primary-dark);
  font-weight: 600;
}

.courses-section .course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}

.courses-section .badge {
  background: var(--gradient-primary);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.courses-section .duration {
  color: var(--secondary);
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .courses-section .card-img-top {
    height: 130px;
  }
  .courses-section .card-title {
    font-size: 1.05rem;
  }
  .courses-section .course-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.hair1 {
  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */            /* full screen height */
  text-align: center;
  margin-top: 20px;
}

.hair1 h1 {
  font-size: 2.5rem;
  margin-bottom: 3px;
}

.hair1 p {
  font-size: 1.2rem;
}

/* ===== News & Events Page: Required Custom CSS ===== */

/* Hero Section */
.news-hero {
  min-height: 60vh;
  position: relative;
  
  overflow: hidden;
  padding: 60px 0 40px 0;
  z-index: 1;
}
.news-hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/img/news-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
  z-index: 0;
}
.news-hero .container {
  position: relative;
  z-index: 2;
}
.news-hero h1,
.news-hero p,
.news-hero .btn {
  position: relative;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .news-hero {
    min-height: 40vh;
    padding: 40px 0 24px 0;
  }
  .news-hero h1 {
    font-size: 2rem;
  }
  .news-hero p {
    font-size: 1.05rem;
  }
}

/* Featured News Carousel */
.featured-news-section .carousel-inner {
  border-radius: 1rem;
  overflow: hidden;
}
.featured-news-section .carousel-item img {
  max-height: 260px;
  object-fit: cover;
}
.featured-news-section .carousel-caption {
  background: rgba(255,255,255,0.85);
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
@media (max-width: 767.98px) {
  .featured-news-section .carousel-caption {
    padding: 0.8rem;
    margin: 0.5rem 0;
    font-size: 0.97rem;
  }
  .featured-news-section .carousel-item img {
    max-height: 140px;
  }
}

/* News Grid Section */
.news-grid-section {
  background: #fdf6fa;
}
.news-grid-section .news-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(226,24,99,0.07);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-grid-section .news-card:hover {
  box-shadow: 0 6px 32px rgba(226,24,99,0.13);
  transform: translateY(-6px);
}
.news-grid-section .card-img-top {
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.news-grid-section .news-date.badge {
  background: linear-gradient(90deg, #c2185b 0%, #e91e63 100%);
  color: #fff;
  font-weight: 500;
  border-radius: 1rem;
  font-size: 0.92rem;
  padding: 0.5em 1em;
}
@media (max-width: 767.98px) {
  .news-grid-section .card-img-top {
    height: 120px;
  }
  .news-grid-section .news-card {
    font-size: 0.97rem;
  }
}

/* Animate Fade-in (optional, for wow-fadein) */
.wow-fadein {
  opacity: 0;
  transform: translateY(24px);
  animation: fadein-up 0.7s forwards;
}
@keyframes fadein-up {
  to {
    opacity: 1;
    transform: none;
  }
}



/* Utility: Hide scroll progress bar by default */
.scroll-progress {
  display: none;
}

/* ===== Loading Spinner ===== 
.loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-spinner {
  border: 4px solid #f8bbd0;
  border-top: 4px solid #c2185b;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
}*/
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== Top Bar ===== */
.top-bar {
  background: linear-gradient(90deg, #c2185b 0%, #e91e63 100%);
  font-size: 0.97rem;
}
.top-bar .contact-info i,
.top-bar .social-links i {
  color: #fff;
}

/* ===== Header/Navbar ===== */
.header .navbar {
  box-shadow: 0 2px 12px rgba(226,24,99,0.07);
}
.header .logo {
  height: 52px;
  border-radius: 0.7rem;
}
.header .nav-link.active,
.header .nav-link:focus,
.header .nav-link:hover {
  color: #c2185b !important;
  font-weight: 600;
}
.header .navbar-toggler {
  border: none;
}
.header .navbar-toggler:focus {
  box-shadow: none;
}

/* ===== Partners Hero Section ===== */
.partners-hero {
  background: linear-gradient(120deg, #f8bbd0 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.partners-hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/img/news-bg.jpg') center/cover no-repeat;
  opacity: 0.07;
  z-index: 0;
}
.partners-hero .container {
  position: relative;
  z-index: 2;
}
.trust-bar .trust-logo {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #e91e63;
  background: #fff;
  box-shadow: 0 2px 8px rgba(226,24,99,0.08);
  transition: transform 0.2s;
}
.trust-bar .trust-logo:hover {
  transform: scale(1.08);
}
.btn-gradient-primary {
  background: linear-gradient(90deg, #c2185b 0%, #e91e63 100%);
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-gradient-primary:hover,
.btn-gradient-primary:focus {
  background: linear-gradient(90deg, #ad1457 0%, #d81b60 100%);
  color: #fff;
  box-shadow: 0 2px 16px rgba(226,24,99,0.10);
}
.pulse {
  animation: pulse 1.2s infinite alternate;
}
@keyframes pulse {
  to { box-shadow: 0 0 0 6px rgba(233,30,99,0.10); }
}
@media (max-width: 767.98px) {
  .partners-hero h1 {
    font-size: 2rem;
  }
  .partners-hero p {
    font-size: 1.05rem;
  }
  .trust-bar .trust-logo {
    width: 54px;
    height: 54px;
  }
}

/* ===== Partner Cards Grid ===== */
.partners-section {
  background: #fdf6fa;
}
.partner-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(226,24,99,0.07);
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 2rem 1.3rem 1.3rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.partner-card:hover {
  box-shadow: 0 6px 32px rgba(226,24,99,0.13);
  transform: translateY(-6px);
}
.partner-logo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 3px solid #e91e63;
  background: #fff;
  margin-bottom: 1rem;
}
.partner-name {
  font-weight: 600;
  color: #c2185b;
  margin-bottom: 0.2rem;
}
.partner-title {
  font-size: 1.05rem;
  color: #e91e63;
  margin-bottom: 0.7rem;
}
.partner-description {
  font-size: 0.97rem;
  color: #444;
  margin-bottom: 1rem;
}
.partner-links .partner-social {
  color: #c2185b;
  font-size: 1.2rem;
  margin: 0 0.4rem;
  transition: color 0.2s;
}
.partner-links .partner-social:hover {
  color: #e91e63;
}
@media (max-width: 991.98px) {
  .partner-card {
    padding: 1.5rem 0.8rem 1rem 0.8rem;
  }
  .partner-logo {
    width: 72px;
    height: 72px;
  }
}
@media (max-width: 575.98px) {
  .partner-card {
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
    font-size: 0.97rem;
  }
  .partner-logo {
    width: 54px;
    height: 54px;
  }
}

/* ===== Blockquote ===== */
.blockquote {
  border-left: 4px solid #e91e63;
  padding-left: 1.2rem;
  font-style: italic;
  color: #c2185b;
  background: #f8bbd01a;
  display: inline-block;
  margin: 0 auto;
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(90deg, #c2185b 0%, #e91e63 100%);
  color: #fff;
  font-size: 1rem;
}
.footer-logo img {
  border-radius: 0.7rem;
  background: #fff;
  padding: 0.3rem;
}
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-links a,
.footer-contact li {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.98rem;
}
.footer-links a:hover {
  color: #ffd6e3;
  text-decoration: underline;
}
.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 1.2em;
  font-size: 0.95rem;
}
.footer-bottom-links a {
  color: #fff;
  opacity: 0.85;
}
.footer-bottom-links a:hover {
  color: #ffd6e3;
  opacity: 1;
}
.bg-dark-pink {
  background: #c2185b !important;
}
@media (max-width: 767.98px) {
  .footer {
    font-size: 0.97rem;
  }
  .footer-title {
    font-size: 1rem;
  }
}

/* ===== Utility: Fade-in Animation for .fade-in-up ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadein-up 0.7s forwards;
}
@keyframes fadein-up {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ====== Gallery Page Remaining CSS ====== */

/* Banner/Header Section */
.header-banner {
  background: linear-gradient(120deg, #f8bbd0 0%, #fff 100%);
  padding: 60px 0 30px 0;
  text-align: center;
}
.header-banner h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #c2185b;
  margin-bottom: 0.5rem;
  font-size: 2.4rem;
}
.header-banner p {
  color: #e91e63;
  font-size: 1.15rem;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .header-banner {
    padding: 36px 0 18px 0;
  }
  .header-banner h1 {
    font-size: 1.5rem;
  }
  .header-banner p {
    font-size: 1rem;
  }
}

/* Gallery Section */
.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #c2185b;
  margin: 2rem 0 1.5rem 0;
  text-align: center;
  letter-spacing: 0.01em;
}
.gallery {
  margin-bottom: 2.5rem;
}
.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(226,24,99,0.07);
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.gallery-item:hover {
  box-shadow: 0 6px 32px rgba(226,24,99,0.13);
  transform: translateY(-6px) scale(1.02);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.2s;
}
.gallery-item a {
  display: block;
}
@media (max-width: 991.98px) {
  .gallery-item img {
    height: 180px;
  }
}
@media (max-width: 575.98px) {
  .gallery-title {
    font-size: 1.25rem;
  }
  .gallery-item img {
    height: 110px;
  }
}

/* Lightbox Customization (optional for better integration) */
.lb-data .lb-caption {
  color: #c2185b !important;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}
.lb-outerContainer {
  border-radius: 1.1rem !important;
  box-shadow: 0 8px 32px rgba(226,24,99,0.18) !important;
}

/* Footer Section */
.footer {
  background: linear-gradient(90deg, #c2185b 0%, #e91e63 100%);
  color: #fff;
  font-size: 1rem;
}
.footer-logo img {
  border-radius: 0.7rem;
  background: #fff;
  padding: 0.3rem;
}
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-links a,
.footer-contact li {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.98rem;
}
.footer-links a:hover {
  color: #ffd6e3;
  text-decoration: underline;
}
.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 1.2em;
  font-size: 0.95rem;
}
.footer-bottom-links a {
  color: #fff;
  opacity: 0.85;
}
.footer-bottom-links a:hover {
  color: #ffd6e3;
  opacity: 1;
}
.bg-dark-pink {
  background: #c2185b !important;
}
@media (max-width: 767.98px) {
  .footer {
    font-size: 0.97rem;
  }
  .footer-title {
    font-size: 1rem;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 100;
  display: none;
  background: linear-gradient(90deg, #c2185b 0%, #e91e63 100%);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(226,24,99,0.12);
  transition: background 0.2s, box-shadow 0.2s;
}
.back-to-top:hover {
  background: linear-gradient(90deg, #ad1457 0%, #d81b60 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(226,24,99,0.17);
}
@media (max-width: 575.98px) {
  .back-to-top {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    right: 10px;
    bottom: 12px;
  }
}

/* Top Product Images */
.top-img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(226,24,99,0.08);
  margin-bottom: 1rem;
  background: #fff;
}
@media (max-width: 767.98px) {
  .top-img {
    height: 150px;
    margin-bottom: 0.7rem;
  }
}

/* Curriculum Section */
.icon-title {
  font-weight: 600;
  color: #c2185b;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.card.p-3 ul {
  padding-left: 1.3em;
  margin-bottom: 0;
}
.card.p-3 ul li {
  font-size: 1.04rem;
  margin-bottom: 0.45em;
  color: #444;
}
.section-title {
  color: #e91e63;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
@media (max-width: 767.98px) {
  .icon-title {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.01rem;
  }
  .card.p-3 ul li {
    font-size: 0.97rem;
  }
}

/* ===== Bottom Image Slider (Carousel) Styles ===== */
#bottomCarousel {
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(226,24,99,0.07);
  background: #fff;
  margin-top: 2.5rem;
  position: relative;
}

#bottomCarousel .carousel-inner {
  border-radius: 1.1rem;
}

#bottomCarousel .carousel-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.7rem;
  display: block;
  transition: transform 0.2s;
}

#bottomCarousel .carousel-item.active img {
  transform: scale(1.01);
}

#bottomCarousel .carousel-control-prev,
#bottomCarousel .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  transition: opacity 0.2s;
}

#bottomCarousel .carousel-control-prev:hover,
#bottomCarousel .carousel-control-next:hover {
  opacity: 1;
}

#bottomCarousel .carousel-control-prev-icon,
#bottomCarousel .carousel-control-next-icon {
  background-size: 60% 60%;
  background-color: #c2185b;
  border-radius: 50%;
  padding: 0.7em;
  box-shadow: 0 2px 8px rgba(226,24,99,0.12);
}

@media (max-width: 767.98px) {
  #bottomCarousel .carousel-item img {
    height: 110px;
  }
  #bottomCarousel {
    margin-top: 1.2rem;
  }
  #bottomCarousel .carousel-control-prev,
  #bottomCarousel .carousel-control-next {
    width: 36px;
    height: 36px;
  }
  #bottomCarousel .carousel-control-prev-icon,
  #bottomCarousel .carousel-control-next-icon {
    padding: 0.4em;
  }
}

/* ===== Yoga Therapy Course Page Remaining CSS ===== */

/* Hero Section */
.hero-section-yoga {
  min-height: 60vh;
  background: linear-gradient(120deg, #f8bbd0 0%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-section-yoga .btn.pulse {
  animation: pulse 1.5s infinite alternate;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(226, 24, 99, 0.4);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(226, 24, 99, 0);
  }
}

/* Highlights Section */
.course-highlights .highlight-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1rem;
  box-shadow: 0 2px 16px rgba(226, 24, 99, 0.07);
  transition: box-shadow 0.3s ease;
}
.course-highlights .highlight-card:hover {
  box-shadow: 0 6px 32px rgba(226, 24, 99, 0.13);
}
.highlight-card i {
  color: #c2185b;
}
.highlight-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}
.highlight-desc {
  color: #666;
  font-size: 1rem;
}

/* Options Cards */
.options-section .option-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(226, 24, 99, 0.07);
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: center;
  user-select: none;
}
.options-section .option-card h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #c2185b;
}
.options-section .option-card p {
  color: #777;
  font-size: 0.95rem;
}
.options-section .option-card.active,
.options-section .option-card:hover {
  box-shadow: 0 6px 32px rgba(226, 24, 99, 0.13);
  transform: translateY(-6px);
}

/* Stepper Section */
.stepper {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
}
.step {
  text-align: center;
  flex: 1 1 120px;
  cursor: default;
}
.step-circle {
  width: 60px;
  height: 60px;
  background: #f8bbd0;
  border-radius: 50%;
  margin: 0 auto 0.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c2185b;
  font-size: 1.5rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.step.active .step-circle {
  background: #c2185b;
  color: #fff;
}
.step-label {
  font-weight: 600;
  color: #444;
}
.step.active .step-label {
  color: #c2185b;
}

/* Tabs Section */
.tabs-section .nav-pills .nav-link {
  font-weight: 600;
  color: #c2185b;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.tabs-section .nav-pills .nav-link.active {
  background: #c2185b;
  color: #fff;
}
.syllabus-list li,
.tab-content ul.list-group li {
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 1px solid #eee;
  color: #444;
}
.syllabus-list li i,
.tab-content ul.list-group li i {
  color: #c2185b;
}

/* FAQ Section */
.faq-section .section-title {
  font-weight: 700;
  color: #c2185b;
  font-size: 2rem;
}
.accordion-button {
  font-weight: 600;
  color: #c2185b;
  background-color: #fff;
  border: none;
  box-shadow: none;
  transition: background-color 0.3s ease;
}
.accordion-button:not(.collapsed) {
  background-color: #f8bbd0;
  color: #c2185b;
}
.accordion-body {
  font-size: 1rem;
  color: #444;
}

/* Footer */
.footer {
  background: linear-gradient(90deg, #c2185b 0%, #e91e63 100%);
  color: #fff;
  font-size: 1rem;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}
.footer-logo img {
  border-radius: 0.7rem;
  background: #fff;
  padding: 0.3rem;
  max-height: 60px;
}
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-links a,
.footer-contact li {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.98rem;
}
.footer-links a:hover {
  color: #ffd6e3;
  text-decoration: underline;
}
.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1.2em;
  font-size: 0.95rem;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: #fff;
  opacity: 0.85;
}
.footer-bottom-links a:hover {
  color: #ffd6e3;
  opacity: 1;
}
.bg-dark-pink {
  background: #c2185b !important;
}
@media (max-width: 767.98px) {
  .footer {
    font-size: 0.95rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  .footer-title {
    font-size: 1rem;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 100;
  display: none;
  background: linear-gradient(90deg, #c2185b 0%, #e91e63 100%);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(226, 24, 99, 0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.back-to-top:hover {
  background: linear-gradient(90deg, #ad1457 0%, #d81b60 100%);
  box-shadow: 0 4px 16px rgba(226, 24, 99, 0.17);
}
@media (max-width: 575.98px) {
  .back-to-top {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    right: 10px;
    bottom: 12px;
  }
}

/* Loading Spinner */
.loading {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-spinner {
  border: 4px solid #f8bbd0;
  border-top: 4px solid #c2185b;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Utility */
.scroll-progress {
  display: none;
}


