html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  background: #FFFAEA;
}
li{
  margin: 10px 0;
  font-size: 16px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0px 40px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  /*border: 1px solid #98312b;*/
  max-width: 100%;
  margin: 0 auto;
  position: fixed;
  /* Added */
  top: 0;
  /* Added */
  left: 0;
  /* Added */
  right: 0;
  /* Added */
  width: 100%;
  /* Added */
  z-index: 1000;
  /* Added */
  transition: background 0.3s ease, box-shadow 0.3s ease;
  /* Add transition */
}

.navbar-logo {
  max-height: 80px;
  margin-right: 40px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 1.2s cubic-bezier(.4, 0, .2, 1), box-shadow 0.5s;
  box-shadow: none;
  /* background color & shadow removed */
  animation: logoPulse 2.8s infinite alternate;
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
  }

  60% {
    transform: scale(1.07) rotate(-2deg);
  }

  100% {
    transform: scale(1);
  }
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 31px;
  flex: 1;
  z-index: 999;
}

.navbar-menu-item {
  font-size: 16px;
  font-weight: 600;
  color: #B6483D !important;
  /* Logo ke according color */
  text-decoration: none;
  position: relative;
  transition:
    color 0.3s,
    transform 0.2s;
  padding: 8px 8px;
  font-family: "Quicksand", sans-serif;
}

.navbar-menu-item::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #B6483D;
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  left: 0;
  bottom: -6px;
}

.navbar-menu-item:hover {
  color: #B6483D;
  transform: translateY(-2px) scale(1.08);
}

.navbar-menu-item:hover::after {
  width: 100%;
}

.dropdown-arrow {
  margin-left: 6px;
  font-size: 1.1rem;
}

.navbar-book {
  background: #B6483D;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  /* Width thodi kam ki */
  margin-left: 40px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(233, 103, 95, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.3s,
    box-shadow 0.3s,
    transform 0.2s;
}

/* Social Media Icons for Navbar */
.navbar-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-right: 60px;
}

.navbar-social-icon {
  /*color: #e9675f;*/
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(199, 122, 74, 0.07);
  text-decoration: none;
}

.fa-facebook-f{
    color: #1877F2;
}

.fa-instagram{
    color: #ff7171;
}

.fa-youtube{
    color: #ff0000;
}

.fa-pinterest-p{
    color: #E60023;
}


.navbar-social-icon:hover {
  background: #ffe5d1;
  color: #ff8f5f;
}

@media (max-width: 900px) {
  .navbar-social {
    margin-left: 0;
    margin-top: -6px;
    justify-content: flex-start;
    gap: 0;
    z-index: 999;
  }
}

.navbar-book::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 150%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 100%);
  transform: skewX(-20deg);
  transition: left 0.5s;
  z-index: 1;
}

.navbar-book:hover {
  background: #B6483D;
  box-shadow: 0 12px 32px rgba(233, 103, 95, 0.28), 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px) scale(1.06);
}

.navbar-book:hover::before {
  left: 100%;
}

.navbar-book:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(233, 103, 95, 0.12);
}

.navbar-menu-item {
  position: relative;
  cursor: pointer;
}

.navbar-dropdown .dropdown-arrow {
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
  display: inline-block;
}

.navbar-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg) scale(1.2);
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 16px 48px rgba(233, 103, 95, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
  border-radius: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.97);
  transition:
    opacity 0.38s cubic-bezier(.4, 0, .2, 1),
    transform 0.38s cubic-bezier(.4, 0, .2, 1);
  z-index: 99;
  padding: 18px 0 14px 0;
  border: 1px solid #ffe7e3;
}

.navbar-dropdown:hover .dropdown-menu,
.navbar-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Dropdown menu arrow pointer */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 32px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(233, 103, 95, 0.10);
  transform: rotate(45deg);
  border-top: 1px solid #ffe7e3;
  border-left: 1px solid #ffe7e3;
  z-index: 2;
}

/* Dropdown links - premium look */
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  color: #E9675F;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 12px;
  margin: 2px 0;
  position: relative;
  background: transparent;
  box-sizing: border-box;
  /* Add this to keep background inside box */
  transition:
    background 0.28s cubic-bezier(.4, 0, .2, 1),
    color 0.28s cubic-bezier(.4, 0, .2, 1),
    transform 0.22s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.22s cubic-bezier(.4, 0, .2, 1);
}

.dropdown-menu a::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  width: 4px;
  height: 6px;
  /* background: black; */
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: opacity 0.22s, transform 0.22s;
}

.dropdown-menu a:hover {
  background:
    #B6483D;
  color: #fff;
  /* transform: scale(1.07) translateX(6px); */
  box-shadow: 0 4px 24px rgba(233, 103, 95, 0.13), 0 2px 8px rgba(255, 215, 0, 0.10);
  border: 1.5px solid #fff2ee;
  outline: 0.5px solid #ffe7e3;
}

.dropdown-menu a:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

/* Responsive dropdown for mobile (optional) */
@media (max-width: 900px) {
  .navbar-menu {
    gap: 20px;
  }
  .dropdown-menu {
    min-width: 140px;
  }
}

/* Hamburger button for mobile */
.navbar-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 10px;
  background: #B6483D;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 200;
  transition: background 0.3s;
}

.navbar-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.4s cubic-bezier(.4, 0, .2, 1);
}

.navbar-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.navbar-toggle.open span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.navbar-toggle.open:hover span {
  background: #dc3545;
}

@media (max-width: 900px) {
  .navbar {
    position: fixed;
    flex-wrap: wrap;
    padding: 0px 0px;
  }

  /* Transparent navbar on mobile */
  .navbar.transparent {
    background: rgba(255, 255, 255, 0);
    /* Fully transparent */
    box-shadow: none;
  }

  /* White navbar after scroll on mobile */
  .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .navbar-logo {
    max-height: 56px;
    margin-right: 16px;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-menu {
    flex-direction: column;
    gap: 0;
    width: 70vw;
    max-width: 320px;
    background: #fff;
    position: fixed;
    right: -100vw;
    top: 0;
    height: 100vh;
    box-shadow: -2px 0 32px rgba(233, 103, 95, 0.12);
    border-radius: 0 0 18px 18px;
    z-index: 150;
    padding: 32px 0 14px 40px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: right 0.38s cubic-bezier(.4, 0, .2, 1);
  }

  .navbar-menu.open {
    right: 0;
    top: 30px;
  }

  .navbar-menu-item,
  .navbar-dropdown {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.08rem;
    border-bottom: 1px solid #ffe7e3;
  }

  .navbar-book {
    width: 90%;
    margin: 18px auto 0 auto;
    display: block;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0 0 12px 12px;
    min-width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 0;
    margin: 0;
    border: none;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    display: none;
  }

  .dropdown-menu.open {
    display: block;
  }

  .dropdown-menu a {
    padding: 12px 32px;
    font-size: 1rem;
    border-radius: 0;
    margin: 0;
  }

  .dropdown-menu::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .navbar-logo {
    max-height: 80px;
    /* Height increased for mobile */
    margin-right: 16px;
    z-index: 9999;
  }
}

.hero-section {
  background: #FFFAEA;
  /* padding: 60px 0 0 0; */
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 30px;
}

.hero-left {
  z-index: 2;
}

.hero-tagline {
  color: #e9675f;
  font-size: 1rem;
  margin-bottom: 8px;
}

.hero-heading {
  font-size: 25px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.15;
}

.hero-btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #e9675f;
  background: #fff;
  border: 2px solid #e9675f;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.hero-btn:hover {
  background: linear-gradient(90deg, #e9675f 0%, #ff8a65 100%);
  color: #fff;
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 30px;
}

.hero-img-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 48px rgba(233, 103, 95, 0.18);
  border: 6px solid #fff;
  position: relative;
  z-index: 3;
}

.hero-svg-bg {
  position: absolute;
  width: 204%;
  height: 245%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.hero-svg-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-svg-bg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../image/blobs_large.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .hero-svg-bg {
    width: 300%;
    height: 245%;
  }
}

@media (max-width: 900px) {
  .hero-section {
    padding-top: 50px;
  }

  .hero-container {
    flex-direction: column-reverse;
    padding: 0 8px;
    min-height: unset;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    top: 0px;
  }

  .hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-img-wrap {
    width: 220px;
    height: 220px;
    margin: 0 auto 18px auto;
  }

  .hero-heading {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .hero-desc {
    font-size: 15px;
    margin-bottom: 22px;
    padding: 0 6px;
  }

  .hero-tagline {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .hero-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

.about-section {
  background: #fff;
}

.about-container {
  display: flex;
  gap: 48px;
  max-width: 1265px;
  margin: 0 auto;
  align-items: flex-start;
  padding: 48px 32px;
}

.about-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90%;
  margin-left: 27px;
}

.about-card {
  background: #e9675f;
  color: #fff;
  border-radius: 18px;
  padding: 38px 24px 28px 24px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(168, 50, 58, 0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100%;
}

.about-card-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.about-card-text {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  font-family: 'Quicksand', sans-serif;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 18px;
  width: 100%;
  position: relative;
}

.about-img {
  border-radius: 16px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  box-shadow: 0 4px 24px rgba(168, 50, 58, 0.10);
  border: 3px solid #fff;
}

.main-img {
  grid-column: 1 / span 2;
  grid-row: 1 / span 1;
  height: 273px;
}

.side-img {
  height: 180px;
}

.about-right {
  flex: 2;
}

.about-subtitle {
  color: #e9675f;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1,h2,h3,h4 {
  font-family: "Quicksand", sans-serif;
}

.about-title {
  font-weight: 700;
  color: #000;
  font-size: 25px;
  margin-top: 8px;
  margin-bottom: -18px !important;
  line-height: 1.15;
}

p {
  font-family: 'Nunito', sans-serif !important;
  line-height: 1.8 !important;
  font-size: 16px !important;
  color: black !important;
  text-align: justify !important;
}



/* Global Paragraph Styling */
p {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
  text-align: justify;
}

p a {
    color: #000000;
  /*color: #e9675f;*/
  /* Accent color for links */
  text-decoration: none;
  /*font-weight: bold;*/
}

p a:hover {
  text-decoration: underline;
}

/* Global Heading Styling */
h1,h2,h3,h4,h5,h6 {
  font-family: "Inter", Sans-serif;
  color: #B6483D;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
/* Decorative Divider for Headings */
h2 {
  text-align: center;
}

/*h2::after {*/
/*  content: "";*/
/*  display: block;*/
/*  width: 60px;*/
/*  height: 4px;*/
/*  background-color: #d15350;*/
/*  margin: 10px auto 0;*/
/*}*/

h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 32px; /* image ke liye thoda height badhao */
  background-image: url("../svg/logo1.png");
  background-size: contain;   /* image distort nahi hogi */
  background-repeat: no-repeat;
  background-position: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  p {
    font-size: 16px;
    line-height: 1.6;
  }

  h1,h2,h3 {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 12px;
  }

  .about-card {
    min-width: 80%;
    max-width: 260px;
    padding: 28px 12px 18px 12px;
    margin-bottom: 18px;
    margin-top: 35px;
    margin-right: 20px;
  }

  .about-images {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 120px 120px;
    max-width: 280px;
    gap: 10px;
  }

  .main-img,
  .side-img {
    height: 154px;
  }

  .about-right {
    padding-top: 30px;
  }

  .about-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .about-desc {
    font-size: 0.98rem;
    margin-bottom: 12px;
  }
}

.icon-slider-section {
  width: 100%;
  background: #fbeeee;
  padding: 24px 0 18px 0;
  overflow: hidden;
  margin-bottom: 18px;
}

.icon-slider {
  display: flex;
  gap: 48px;
  align-items: center;
  width: max-content;
  animation: iconSliderMove 28s linear infinite;
}

.icon-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  max-width: 120px;
  padding: 8px 0;
}

.icon-slide img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(233, 103, 95, 0.10);
  border: 2px solid #ffe7e3;
}

.icon-slide span {
  font-size: 1rem;
  color: #e9675f;
  font-weight: 600;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}

@keyframes iconSliderMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-20%);
  }
}

@media (max-width: 900px) {
  .icon-slider-section {
    padding: 12px 0 10px 0;
  }

  .icon-slider {
    gap: 24px;
  }

  .icon-slide {
    min-width: 80px;
    max-width: 80px;
  }

  .icon-slide img {
    width: 36px;
    height: 36px;
  }

  .icon-slide span {
    font-size: 1rem;
  }
}

/* -------------------------- */
/*      SUPER ATTRACTIVE      */
/*        MOBILE VIEW         */
/* -------------------------- */
@media (max-width: 480px) {

  .carousel-container {
    padding: 5px;
  }

  /* Faster smooth loop */
  .carousel-track {
    gap: 12px;
    animation: scrollLoop 10s linear infinite;
  }

  .carousel-slide {
    width: 165px;
    height: 125px;
    border-radius: 22px;

    /* ✨ Mobile Special Glow */
    box-shadow:
      0 0 8px rgba(255, 132, 0, 0.4),
      0 4px 18px rgba(0, 0, 0, 0.4);
    position: relative;
  }

  .carousel-slide img {
    transform: scale(1.1);
    /* Zoom for premium look */
  }

  /* Divider */
  .teachers-intro-divider {
    margin: 8px auto 15px auto !important;
  }

  /* Lines thinner */
  .teachers-intro-line {
    height: 1px !important;
    background: #ff7a5a !important;
    width: 40px !important;
  }

  /* Heading */
  .about-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
  }
}

/* Modal Container */
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  backdrop-filter: blur(5px);
}

/* Zoom Image */
.image-modal img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  animation: zoomIn 0.35s ease;
}

/* Animation */
@keyframes zoomIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Navigation Buttons */
.modal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 35px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(3px);
  transition: 0.3s;
}

.modal-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Left Button */
#modalPrev {
  left: 20px;
}

/* Right Button */
#modalNext {
  right: 20px;
}

/* Close Button */
#modalClose {
  top: 30px;
  right: 20px;
  font-size: 32px;
  padding: 8px 14px;

  background: rgba(230, 99, 99, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

#modalClose:hover {
  background: rgba(255, 0, 0, 0.8);
}

/* Mobile Optimization */
@media(max-width:480px) {
  .modal-btn {
    font-size: 28px;
    padding: 8px 12px;
  }

  #modalClose {
    top: 42px;
    right: 15px;
  }
}

/* Course Cards Container */
.course-cards-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
}

/* Course Card */
.course-card {
  position: relative;
  /* background: #fff; */
  border-radius: 15px;
  overflow: visible;
  /* Changed from hidden to visible */
  width: 360px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 60px;
  /* Added space for overlapping badge */
}

.course-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Course Card Background Image */
.course-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* Add a semi-transparent overlay */
.course-card-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* Dark overlay */
}

.course-card:hover .course-card-bg {
  opacity: 0.6;
  /* Increased opacity */
}

/* Course Card Content */
.course-card-content {
  position: relative;
  padding: 70px 30px 30px 30px;
  /* Increased top padding */
  z-index: 2;
  border: 2px solid wheat;
}

/* Course Badge - Overlapping style */
.course-badge {
  position: absolute;
  top: -60px;
  /* Position above card */
  left: 20px;
  /* Position from left */
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.course-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Course Title */
.course-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #e9675f;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Course Details List */
.course-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.course-card li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #2c3e50;
  font-family: 'Nunito', sans-serif;
}

.course-card li span {
  color: #b71c2a;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Course Button */
.course-btn {
  display: block;
  width: 50%;
  padding: 12px 20px;
  background: #B6483D;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.course-btn:hover {
  background: #a01623;
}

/* Responsive */
@media (max-width: 768px) {
  .course-cards-container {
    flex-direction: column;
    align-items: center;
  }

  .course-card {
    width: 100%;
    max-width: 360px;
    margin-top: 80px;
  }

  .course-badge {
    width: 100px;
    height: 100px;
    top: -50px;
  }

  .course-card-content {
    padding: 60px 20px 20px 20px;
  }
}

/* Certification */

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  section h2 {
    font-size: 15px !important;
  }

  section p {
    font-size: 1rem !important;
  }

  .certificates-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Add this new class for transparent navbar */
.navbar.transparent {
  background: transparent;
  box-shadow: none;
}


/* Footer */

/* Footer Main Styles */
.fbg {
  position: relative;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  background-image: url('../gallery/fbg.jpg');
  background-size: cover;
  background-position: center;
}


.fbg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 248, 235, 0.607);
  /* soft beige overlay */
  z-index: 1;
}

.fbg * {
  position: relative;
  z-index: 2;
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Footer Column Styles */
.footer-column {
  animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(2) {
  animation: fadeInUp 0.8s ease-out;
}

.footer-column:nth-child(3) {
  animation: fadeInUp 1s ease-out;
}

.footer-column:nth-child(4) {
  animation: fadeInUp 1.2s ease-out;
}

/* Logo Styles */
.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo {
  height: 100px;
}

/* Text Styles */
.footer-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 20px 0;
}

/* Social Icons */
.social-icons-wrapper {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon-footer {
  width: 35px;
  height: 35px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  border-radius: 50%;
  transition: all 0.3s ease !important;
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.social-icon-footer:nth-child(1) {
  animation-delay: 0.1s;
}

.social-icon-footer:nth-child(2) {
  animation-delay: 0.2s;
}

.social-icon-footer:nth-child(3) {
  animation-delay: 0.3s;
}

.social-icon-footer:nth-child(4) {
  animation-delay: 0.4s;
}

.social-icon-footer svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.social-icon-footer:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon-footer.facebook {
  background: #1877f2;
}

.social-icon-footer.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon-footer.youtube {
  background: #ff0000;
}

.social-icon-footer.pinterest {
  background: #bd081c;
}

/* Footer Heading */
.footer-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-heading-underline {
  display: block;
  width: 40px;
  height: 3px;
  background: #e9675f;
  margin-top: 5px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: black;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.footer-link i {
  color: #e9675f;
}

.footer-link img {
  width: 30px;
  height: 24px;
}

.footer-link:hover {
  color: #e9675f !important;
  transform: translateX(5px);
}

/* Contact Information */
.contact-item {
  margin-bottom: 20px;
}

.contact-info {
  color: #666;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-info i {
  color: #e9675f;
  margin-top: 17px;
}

.contact-info span {
  color: #e9675f;
}

.contact-info a {
  color: #666;
  text-decoration: none;
  word-break: break-all;
}

/* Query Button */
.query-btn {
  display: inline-block;
  background: white;
  color: #333;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #e9675f;
  transition: all 0.3s ease;
}

.query-btn:hover {
  background: #e9675f !important;
  color: white !important;
  border-color: #e9675f !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 103, 95, 0.3);
}

/* Quick Links Section */
.quick-links-section {
  text-align: center;
  margin: 0px 0 40px 0;
}

.quick-links-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.quick-links-underline {
  display: block;
  width: 60px;
  height: 4px;
  background: #e9675f;
  margin: 8px auto 0;
  border-radius: 2px;
}

.quick-links-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.quick-link-btn {
  background: #dc2626;
  color: white;
  padding: 8px 20px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.quick-link-btn:hover {
  background: #e9675f !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(233, 103, 95, 0.3);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.footer-bottom-text {
  color: #666;
  margin: 0;
  font-size: 16px;
}


/* WhatsApp Button Container */
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  animation: entranceBounce 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* WhatsApp Ripple Effects */
.whatsapp-ripple-1,
.whatsapp-ripple-2,
.whatsapp-ripple-3 {
  position: absolute;
  width: 70px;
  height: 70px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
}

.whatsapp-ripple-1 {
  animation: rippleWave 3s ease-out infinite;
}

.whatsapp-ripple-2 {
  animation: rippleWave 3s ease-out infinite 1s;
}

.whatsapp-ripple-3 {
  animation: rippleWave 3s ease-out infinite 2s;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: relative;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.1) inset;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: floatBounce 4s ease-in-out infinite, rotateShine 8s linear infinite;
}

.whatsapp-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(37, 211, 102, 0.5), transparent);
  animation: spinGlow 3s linear infinite;
  filter: blur(4px);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  fill: white;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.whatsapp-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(135deg, #ff3838 0%, #ff6b6b 100%);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255, 56, 56, 0.4), 0 0 0 2px white;
  animation: badgePulse 2s ease-in-out infinite, badgeShake 10s ease-in-out infinite;
}

.sparkle-1,
.sparkle-2 {
  position: absolute;
  background: white;
  border-radius: 50%;
}

.sparkle-1 {
  width: 3px;
  height: 3px;
  top: 10%;
  right: 10%;
  animation: sparkle 3s linear infinite;
}

.sparkle-2 {
  width: 2px;
  height: 2px;
  bottom: 15%;
  left: 15%;
  animation: sparkle 3s linear infinite 1.5s;
}

.whatsapp-tooltip {
  position: absolute;
  bottom: 65px;
  left: 0;
  background: linear-gradient(135deg, #333 0%, #444 100%);
  color: white;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #444;
}

/* WhatsApp Hover Effects */
.whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg) !important;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6), 0 0 0 3px rgba(255, 255, 255, 0.2) inset !important;
}

.whatsapp-container:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.whatsapp-btn:active {
  transform: scale(0.95) !important;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }

  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes rippleWave {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  25% {
    transform: translateY(-8px) scale(1.05) rotate(5deg);
  }

  75% {
    transform: translateY(3px) scale(0.95) rotate(-5deg);
  }
}

@keyframes rotateShine {
  0% {
    filter: brightness(1) hue-rotate(0deg);
  }

  50% {
    filter: brightness(1.2) hue-rotate(10deg);
  }

  100% {
    filter: brightness(1) hue-rotate(0deg);
  }
}

@keyframes spinGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(255, 56, 56, 0.4), 0 0 0 2px white;
  }

  50% {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(255, 56, 56, 0.6), 0 0 0 2px white, 0 0 20px rgba(255, 56, 56, 0.4);
  }
}

@keyframes badgeShake {

  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }

  92%,
  96% {
    transform: rotate(-10deg);
  }

  94%,
  98% {
    transform: rotate(10deg);
  }
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes entranceBounce {
  0% {
    transform: translateX(100px) scale(0);
    opacity: 0;
  }

  60% {
    transform: translateX(-10px) scale(1.1);
    opacity: 1;
  }

  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    
    /* WhatsApp Ripple Effects */
.whatsapp-ripple-1,
.whatsapp-ripple-2,
.whatsapp-ripple-3 {
  left: 8%;
}
    
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .footer-column {
    text-align: left !important;
    padding: 0 20px;
  }

  .footer-logo-wrapper {
    justify-content: flex-start !important;
  }

  .social-icons-wrapper {
    justify-content: flex-start !important;
  }

  .footer-heading {
    text-align: left !important;
    margin-bottom: 25px !important;
  }

  .footer-heading-underline {
    margin: 8px 0 0 0 !important;
  }

  .footer-link {
    justify-content: flex-start !important;
    padding: 5px 0;
  }

  .contact-info {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .query-btn {
    display: inline-block !important;
    margin: 20px 0 0 0 !important;
    text-align: center;
  }

  .quick-links-section {
    margin: 40px 0 30px 0 !important;
    padding: 0 10px;
    text-align: center !important;
  }

  .quick-links-wrapper {
    gap: 8px !important;
  }

  .quick-link-btn {
    font-size: 12px !important;
    padding: 6px 12px !important;
    margin: 2px !important;
  }

  .fbg {
    padding: 50px 0 30px 0 !important;
  }

  .whatsapp-container {
    bottom: 15px !important;
    right: 15px !important;
  }

  .whatsapp-btn {
    width: 50px !important;
    height: 50px !important;
  }

  .whatsapp-icon {
    width: 28px !important;
    height: 28px !important;
  }

  .whatsapp-badge {
    width: 20px !important;
    height: 20px !important;
    font-size: 10px !important;
  }

  .whatsapp-tooltip {
    display: none !important;
  }

  .scroll-top-btn {
    width: 45px !important;
    height: 45px !important;
    bottom: 110px !important;
    right: 15px !important;
  }

  .footer-bottom {
    text-align: center !important;
  }

  .footer-bottom-text {
    font-size: 12px !important;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .footer-column {
    padding: 0 15px !important;
    text-align: left !important;
  }

  .footer-logo {
    height: 80px !important;
    margin: 0 !important;
  }

  .footer-text {
    font-size: 16px !important;
    text-align: left !important;
  }

  .footer-heading {
    font-size: 18px !important;
    text-align: left !important;
  }

  .footer-link {
    font-size: 16px !important;
    justify-content: flex-start !important;
  }

  .quick-link-btn {
    font-size: 11px !important;
    padding: 5px 10px !important;
  }

  .quick-links-heading {
    font-size: 20px !important;
  }
}

/* Enhanced AOS Animations */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* Custom animation for cards hover */
.course-card {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.course-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Smooth parallax effect for hero background */
.hero-section {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  padding-top: 0px !important;
}

/* Add subtle floating animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Stagger animation for social icons */
.social-icon-footer {
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.social-icon-footer:nth-child(1) {
  animation-delay: 0.1s;
}

.social-icon-footer:nth-child(2) {
  animation-delay: 0.2s;
}

.social-icon-footer:nth-child(3) {
  animation-delay: 0.3s;
}

.social-icon-footer:nth-child(4) {
  animation-delay: 0.4s;
}

/* Enhanced AOS Animations - Optimized for faster loading */
[data-aos] {
  pointer-events: none;
  will-change: transform, opacity;
  transition-duration: 600ms !important;
  /* Override default duration */
}

[data-aos].aos-animate {
  pointer-events: auto;
  will-change: auto;
}

/* Reduce complexity of animations for faster rendering */
[data-aos="fade-up"] {
  transform: translateY(30px);
  /* Reduced from default 100px */
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
  /* Reduced from default -100px */
}

[data-aos="fade-left"] {
  transform: translateX(30px);
  /* Reduced from default 100px */
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
  /* Reduced from default -100px */
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
  /* Closer to 1 for faster animation */
}

[data-aos="flip-left"] {
  transform: perspective(2500px) rotateY(-50deg);
  /* Reduced rotation */
}

/* Preload animations for critical elements */
.hero-section[data-aos],
.about-section[data-aos],
.course-cards-container>*[data-aos] {
  transition-duration: 400ms !important;
  /* Even faster for important sections */
}

/* Disable animations on very slow devices */
@media (max-width: 768px) {
  [data-aos] {
    transition-duration: 400ms !important;
  }
}

/* Performance optimization */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition: none !important;
    animation: none !important;
  }
}



/* Google Translate Widget Styles */
.translate-wrapper {
  display: none;
}

#google_translate_element {
  display: inline-block;
}

/* Style the Google Translate dropdown */
.goog-te-gadget {
  font-family: 'Quicksand', sans-serif !important;
}

.goog-te-gadget-simple {
  background-color: transparent !important;
  border: 1px solid #E9675F !important;
  padding: 5px 10px !important;
  border-radius: 20px !important;
  font-size: 14px !important;
}

.goog-te-gadget-simple:hover {
  background-color: #E9675F !important;
}

.goog-te-gadget-simple:hover .goog-te-menu-value span {
  color: #fff !important;
}

.goog-te-menu-value span {
  color: #e9675f !important;
}

/* Hide Google Translate banner */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .translate-wrapper {
    text-align: center;
    padding: 5px 0;
  }

  .goog-te-gadget-simple {
    font-size: 12px !important;
    padding: 3px 8px !important;
  }
}

/* Google Translate Icon Button Styles */
.translate-icon-wrapper {
  position: fixed;
  top: 20px;
  right: 200px;
  z-index: 1002;
}

.translate-icon-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #B6483D;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(233, 103, 95, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.translate-icon-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(233, 103, 95, 0.4);
}

.translate-icon-btn:active {
  transform: scale(0.95);
}

.translate-icon-btn i {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.translate-icon-btn:hover i {
  transform: rotate(20deg);
}

/* Translate Dropdown */
.translate-dropdown {
  position: absolute;
  top: 55px;
  right: 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 15px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.translate-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Arrow for dropdown */
.translate-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 15px;
  width: 16px;
  height: 16px;
  background: white;
  transform: rotate(45deg);
  box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.05);
}

/* Floating animation for button */
@keyframes translateFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.translate-icon-btn {
  animation: translateFloat 3s ease-in-out infinite;
}

/* Style Google Translate within dropdown */
.translate-dropdown #google_translate_element {
  display: block;
}

.translate-dropdown .goog-te-gadget {
  font-family: 'Quicksand', sans-serif !important;
  color: #333 !important;
}

.translate-dropdown .goog-te-gadget-simple {
  background-color: #f8f9fa !important;
  border: 1px solid #e0e0e0 !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  width: 100%;
  display: block !important;
}

.translate-dropdown .goog-te-gadget-simple:hover {
  background-color: #E9675F !important;
  border-color: #E9675F !important;
}

/* Hide Google Translate banner */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .translate-icon-wrapper {
    top: 15px;
    right: 95px;
    /* Adjust to not overlap with mobile menu */
  }

  .translate-icon-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .translate-icon-btn i {
    font-size: 20px;
  }

  .translate-dropdown {
    right: -50px;
    min-width: 180px;
  }
}

/* Blog Section */

/* Blog Section Styles */
.blog-section {
  background: #FFFAEA;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Elements */
.blog-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(233, 103, 95, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}

.blog-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(116, 97, 60, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}

.blog-container {
  max-width: 1265px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.blog-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-badge {
  display: inline-block;
  background: #B6483D;
  padding: 8px 25px;
  border-radius: 50px;

}

.blog-badge span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.blog-title {
  font-size: 30px;
  font-weight: 700;
  color: #ca6363;
  margin-bottom: 4px;
  margin-top: 20px;

}

/* Decorative Divider */
.blog-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.blog-divider-line {
  height: 2px;
  width: 120px;
}

.blog-divider-line.left {
  background: linear-gradient(to right, transparent, #E9675F, transparent);
}

.blog-divider-line.right {
  background: linear-gradient(to left, transparent, #E9675F, transparent);
}

.blog-divider-icon {
  position: relative;
  margin: 0 30px;
}

.blog-divider-icon img {
  width: 80px;
  filter: drop-shadow(0 5px 15px rgba(233, 103, 95, 0.3));
}

.blog-divider-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(233, 103, 95, 0.15) 0%, transparent 60%);
  filter: blur(20px);
}

.blog-description {
  font-size: 1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.9;
  font-weight: 400;
}

.blog-tagline {
  font-size: 1rem;
  color: #E9675F;
  margin-top: 25px;
  font-weight: 600;
  letter-spacing: 1px;
}

.blog-tagline i {
  margin: 0 8px;
}

/* Blog Cards Grid */
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Blog Card */
.blog-card {
  position: relative;
  /* background: #fff; */
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* Card Badge */
.blog-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  z-index: 2;
  animation: badgePulse 2s ease-in-out infinite;
}

.blog-card-badge span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-card-badge.featured span {
  color: #E9675F;
}

.blog-card-badge.new span {
  color: #4CAF50;
}

.blog-card-badge.popular span {
  color: #FF6B6B;
}

/* Card Image */
.blog-card-image {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.1);
  transition: transform 0.6s ease;
}

.blog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Decorative SVG Wave */
.blog-card-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
}

/* Card Content */
.blog-card-content {
  padding: 15px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.blog-card-category {
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-card-category.sutras {
  /* background: #fef5f3; */
  color: #B6483D;
}

.blog-card-category.philosophy {
  background: #f0f8ff;
  color: #B6483D;
}

.blog-card-category.practice {
  /* background: #fff5f5; */
  color: #B6483D;
}

.blog-card-readtime {
  color: #999;
  font-size: 0.85rem;
}

.blog-card-title {
  font-size: 1rem;

  color: #e9675f;
  margin-bottom: 18px;
  line-height: 1.5;
}

.blog-card-excerpt {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Read Article Link */
.blog-card-link {
  display: inline-flex;
  align-items: center;
  color: #E9675F;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.blog-card-link-text {
  position: relative;
}

.blog-card-link-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #E9675F;
  transition: width 0.3s;
}

.blog-card-link:hover .blog-card-link-underline {
  width: 100%;
}

.blog-card-link i {
  margin-left: 10px;
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.blog-card-link:hover i {
  transform: translateX(5px);
}

/* Explore Button */
.blog-explore-wrapper {
  text-align: center;
  margin-top: 40px;
}

.blog-explore-btn {
  position: relative;
  display: inline-block;
  padding: 18px 50px;
  background: #B6483D;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(233, 103, 95, 0.3);
  overflow: hidden;
}

.blog-explore-btn span {
  position: relative;
  z-index: 2;
}

.blog-explore-btn-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff8a65, #E9675F);
  opacity: 0;
  transition: opacity 0.4s;
}

.blog-explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(233, 103, 95, 0.4);
}

.blog-explore-btn:hover .blog-explore-btn-gradient {
  opacity: 1;
}

/* Animations */
@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blog-section {
    padding: 60px 0;
  }

  .blog-title {
    font-size: 2.5rem;
  }

  .blog-cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-description {
    font-size: 1rem;
    padding: 0 15px;
  }

  .blog-card-content {
    padding: 25px;
  }

  .blog-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .blog-title {
    font-size: 2rem;
  }

  .blog-divider-icon img {
    width: 60px;
  }

  .blog-card-image {
    height: 220px;
  }
}

/* Premium Blog Card Hover Effects */
div[style*="position: relative; background: #fff; border-radius: 25px"]:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12) !important;
}

/* Read Article Link Hover */
a[style*="display: inline-flex; align-items: center; color: #E9675F"]:hover {
  width: 100% !important;
}

a[style*="display: inline-flex; align-items: center; color: #E9675F"]:hover i {
  transform: translateX(5px);
}

/* Explore Button Hover */
a[style*="position: relative; display: inline-block; padding: 18px 50px"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(233, 103, 95, 0.4) !important;
}

a[style*="position: relative; display: inline-block; padding: 18px 50px"]:hover div {
  opacity: 1 !important;
}

/* Image Zoom on Card Hover */
div[style*="position: relative; background: #fff; border-radius: 25px"]:hover div[style*="background-image"] {
  transform: scale(1.1);
  transition: transform 0.6s ease;
}

/* Badge animations */
div[style*="position: absolute; top: 20px; left: 20px"] {
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  div[style*="display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr))"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  h2[style*="font-size: 3.5rem"] {
    font-size: 2.5rem !important;
  }
}


/* Rating Section Styles */
.rating-section {
  padding: 40px 0;
  /* background: #f8f9fa; */
}

.rating-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.rating-header {
  text-align: center;
  margin-bottom: 30px;
}

.rating-badge {
  display: inline-block;
  background: #B6483D;
  padding: 8px 25px;
  border-radius: 50px;

}

.rating-badge span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rating-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0;
}

/* Rating Content Grid */
.rating-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Overall Rating Card */
.rating-overall-card {
  position: relative;
  /* background: #fff; */
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.rating-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, #E9675F 50%, #ff8a80 50%);
  border-radius: 20px 20px 50% 50%;
  opacity: 0.4;
}

.rating-circle {
  width: 200px;
  height: 200px;
  background:  #FFFAEA;
  border-radius: 50%;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.rating-number {
  font-size: 2rem;
  font-weight: 700;
  color: #e9675f;
  line-height: 1;
}

.rating-text {
  font-size: 1rem;
  color: #666;
  margin: 5px 0 10px;
}

.rating-stars {
  color: #FFB400;
  font-size: 0.8rem;
}

.rating-stars i {
  margin: 0 2px;
}

.rating-overall-heading {
  font-size: 1.5rem;
  color: #e9675f;
  margin-bottom: 20px;
  font-weight: 600;
}

.rating-overall-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

/* Rating Buttons */
.rating-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.rating-btn {
  padding: 10px 9px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.rating-btn.primary {
  background: #B6483D;
  color: #fff;
}

.rating-btn.primary:hover {
  background: #d4524a;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(233, 103, 95, 0.3);
}

.rating-btn.secondary {
  background: #B6483D;
  color: #fff;
}

.rating-btn.secondary:hover {
  background: #5e4d30;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(116, 97, 60, 0.3);
}

/* Platform Ratings */
.rating-platforms {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.platform-rating-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  /* background: #fff; */
  border-radius: 15px;
  /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
  transition: all 0.3s ease;
}

.platform-rating-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Platform Icons */
.platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
}

/*.platform-icon.facebook {*/
/*  background: #1877f2;*/
/*}*/

/* .platform-icon.google {
  background: #4285f4;
}

.platform-icon.yoga-alliance {
  background: #E9675F;
} */

.platform-icon.yoga-alliance img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.platform-icon.trustpilot {
  background: #d4524a;
}

/* Platform Content */
.platform-content {
  flex: 1;
}

.platform-stars {
  color: #FFB400;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.platform-score {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e9675f;
  display: block;
  margin-bottom: 3px;
}

.platform-name {
  font-size: 0.9rem;
  color: #666;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .rating-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rating-overall-card {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .rating-title {
    font-size: 2rem;
  }

  .rating-circle {
    width: 160px;
    height: 160px;
  }

  .rating-number {
    font-size: 2.5rem;
  }

  .rating-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .rating-btn {
    width: 65%;
    text-align: center;
  }

  .platform-rating-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .rating-overall-card {
    padding: 30px 20px;
  }

  .rating-overall-heading {
    font-size: 1.2rem;
  }

  .platform-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}



/* Popup Styles */
#offerPopup {
  display: none;
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  max-width: 1100px;
  width: 70%;
  padding: 10px 0;
}

.popup-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}

.popup-left {
  flex: 1;
  padding: 0 40px;
}

.popup-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.popup-logo {
  height: 54px;
}

.popup-badge {
  height: 54px;
  border-radius: 50%;
}

.popup-title {
  color: #b71c2a;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.popup-title span {
  font-size: 1.5rem;
  color: #b71c2a;
  font-weight: 900;
}

.popup-date {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
}

.popup-desc {
  font-size: 1.1rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 18px;
}

.popup-btns {
  display: flex;
  gap: 18px;
}

.popup-btn {
  background: linear-gradient(135deg, #E9675F, #ff8a65);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 38px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s;
}

.popup-btn:hover {
  background: #daa7ac;
}

.popup-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

.popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #E86A66;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  #offerPopup {
    max-width: 98vw;
    padding: 18px 30px;
    left: 50%;
    top: 210px;
    transform: translateX(-50%);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(168, 50, 58, 0.18);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
  }

  .popup-flex {
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 12px;
  }

  .popup-left {
    width: 100%;
    padding: 0 8px;
    text-align: center;
  }

  .popup-title {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .popup-title span {
    font-size: 2.2rem;
  }

  .popup-date {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .popup-desc {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .popup-btns {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
  }

  .popup-btn {
    width: 90%;
    padding: 14px 0;
    font-size: 1.1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(233, 103, 95, 0.10);
  }

  .popup-header {
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .popup-logo,
  .popup-badge {
    height: 40px;
  }

  .popup-close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
  }

  .popup-right {
    display: none !important;
  }

  .popup-img {
    display: none !important;
  }
}

.fixed-enquire-btn {
  position: fixed;
  right: 18px;
  bottom: 32px;
  z-index: 10001;
}

.enquire-now-animated {
  display: flex;
  align-items: center;
  background: #B6483D;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 18px 10px 12px;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(233, 103, 95, 0.14);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: enquireBounce 1.8s infinite;
  font-family: 'Quicksand', sans-serif;
}

.enquire-now-animated:hover {
  box-shadow: 0 6px 20px rgba(233, 103, 95, 0.22);
  transform: scale(1.04);
}

.enquire-icon {
  background: #fff;
  color: #e9675f;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(233, 103, 95, 0.10);
}

.enquire-pulse {
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(233, 103, 95, 0.13);
  animation: enquirePulse 1.5s infinite;
  z-index: 0;
}

.enquire-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@keyframes enquirePulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  70% {
    opacity: 0.2;
    transform: scale(1.3);
  }

  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@keyframes enquireBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@media (max-width: 900px) {
  .fixed-enquire-btn {
    right: 6px;
    bottom: 16px;
  }

  .enquire-now-animated {
    font-size: 0.92rem;
    padding: 8px 12px 8px 10px;
    border-radius: 22px;
  }

  .enquire-icon {
    width: 16px;
    height: 16px;
    font-size: 0.9rem;
    margin-right: 6px;
  }

  .enquire-pulse {
    width: 18px;
    height: 18px;
    left: -3px;
  }
}



/* Hero Section */
.hero-left {
  /* background-image: url(../image/7.png); */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}


/* Carousel Section */
.carousel-section {
  padding: 0px 0;
}

.carousel-section .carousel-container {
  max-width: 1265px;
  margin: 0 auto;
  padding: 0 20px;
}

.carousel-section h2 {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #e9675f;
  /* margin-bottom: 40px; */
  margin-right: 35px;
}

/* About Section */


/* Intro Video Section */
.intro-video-section {
  margin: 48px 0;
  padding: 0px 10px;
}

.intro-video-section .intro-video-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(168, 50, 58, 0.10);
  background: #fff;
}

.intro-video-section .video-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.intro-video-section .video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Student Review Videos Section */
.student-review-section {
  max-width: 1265px;
  margin: 48px auto 0 auto;
  padding: 0 5px;
}

.student-review-section h2 {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 32px;
  letter-spacing: 1px;
  color: #e9675f;
}

.student-review-section .review-videos {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.student-review-section .review-video-card {
  flex: 1 1 320px;
  max-width: 420px;
  border-radius: 18px;
  padding: 16px;
}

.student-review-section .review-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
}

.student-review-section .review-video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.student-review-section .review-video-title {
  text-align: center;
  margin-top: 16px;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  color: #e9675f;
}

/* Yoga Teacher Training Courses Section */
.yttc-section {
  /* background: #fde9e6; */
  padding: 48px 0 32px 0;
}

.yttc-section .yttc-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.yttc-section .yttc-svg {
  margin-bottom: 18px;
}

.yttc-section .yttc-svg img {
  width: 14rem;
}

.yttc-section h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.yttc-section #yttcType {
  font-family: 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #425563;
  margin-bottom: 0;
  min-height: 48px;
}

/* Course Cards */

.course-card-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Yoga Alliance Credentials Section */
.yoga-alliance-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.yoga-alliance-section .yoga-alliance-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../image/DSC04136 crop.jpg') center/cover fixed;
  z-index: -1;
}

.yoga-alliance-section .yoga-alliance-container {
  max-width: 1265px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.yoga-alliance-section .yoga-alliance-svg {
  margin-bottom: 20px;
}

.yoga-alliance-section .yoga-alliance-svg img {
  width: 120px;
  filter: brightness(0) invert(1);
}

.yoga-alliance-section h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.yoga-alliance-section .yoga-alliance-desc {
  color: #fff;
  text-align: justify;
  margin: 0 60px;
  background: #0000002e;
  display: block;
  padding: 10px;
}

.yoga-alliance-section .yoga-alliance-stars {
  margin-bottom: 30px;
  color: #FFD700;
  font-size: 2rem;
}

.yoga-alliance-section .yoga-alliance-id {
  background: #B6483D;
  color: #fff;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 50px;
}

.yoga-alliance-section .yoga-alliance-certificates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.yoga-alliance-section .yoga-alliance-certificate-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  /*transform: perspective(1000px) rotateY(5deg);*/
}

.yoga-alliance-section .yoga-alliance-certificate-card img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* Add to CSS/style.css */
.enquiry-form-popup {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}

.enquiry-form-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 40, 40, 0.45);
  backdrop-filter: blur(2px);
}

.enquiry-form-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(233, 103, 95, 0.13);
  padding: 32px 24px 24px 24px;
  max-width: 370px;
  width: 95vw;
  animation: enquiryFormFadeIn 0.4s;
}

@keyframes enquiryFormFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%) scale(0.95);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.enquiry-form-title {
  text-align: center;
  font-size: 1.5rem;
  color: #e9675f;
  font-family: 'Quicksand', sans-serif;
  margin-bottom: 18px;
  font-weight: 700;
}

.enquiry-form-close {
  position: absolute;
  right: 5px;
  top: 1px;
  background: #B6483D;
  color: #fff;
  border: none;
  font-size: 1.4rem;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(233, 103, 95, 0.10);
  transition: background 0.2s;
}

.enquiry-form-close:hover {
  background: #e9675f;
}

.enquiry-form-logo-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.enquiry-form-logo {
  max-width: 100%;
  height: auto;
}

.enquiry-form-row-flex {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.enquiry-form-row {
  flex: 1;
}

.enquiry-form-row input,
.enquiry-form-row select,
.enquiry-form-row textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #e1e4e8;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
  background: #f9f9f9;
  transition: border 0.2s;
}

.enquiry-form-row input:focus,
.enquiry-form-row select:focus,
.enquiry-form-row textarea:focus {
  border-color: #e9675f;
  outline: none;
}

.enquiry-form-submit {
  width: 100%;
  background: #B6483D;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  margin-top: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(233, 103, 95, 0.10);
  transition: background 0.2s;
  font-family: 'Quicksand', sans-serif;
}

.enquiry-form-submit:hover {
  background: #e9675f;
}

#enquiryFormMsg {
  margin-top: 10px;
  text-align: center;
  font-size: 1rem;
  color: #e9675f;
  font-weight: 600;
}

@media (max-width: 600px) {
  .enquiry-form-content {
    padding: 18px 8px 16px 8px;
    max-width: 98vw;
  }

  .enquiry-form-title {
    font-size: 1.1rem;
  }
}

/* Hand Paned Written Review Style */

.hand-penned-reviews {
  padding: 40px 20px;
  text-align: center;
  /* background-color: #f9f9f9; */
}

.reviews-title {
  font-size: 28px;
  /* Increased font size */
  font-weight: bold;
  margin-bottom: 20px;
  /* color: #e9675f; */
  text-transform: uppercase;
  /* Added uppercase styling */
  letter-spacing: 2px;
  /* Added letter spacing */
  position: relative;
}

/*.reviews-title::after {*/
/*  content: "";*/
/*  display: block;*/
/*  width: 60px;*/
/*  height: 4px;*/
/*  background-color: #ed663cff;*/
  
/*  margin: 10px auto 0;*/
/*}*/

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  /* Allow wrapping for responsiveness */
}

.review-card {
  width: 360px;
  /* Increased width */
  height: 420px;
  /* Increased height */
  overflow: hidden;
  border-radius: 20px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}

.review-image {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Mobile View: One image per row */
@media (max-width: 768px) {
  .reviews-grid {
    flex-direction: column;
    /* Stack images vertically */
    align-items: center;
    /* Center images */
  }

  .review-card {
    width: 100%;
    /* Full width for mobile */
    max-width: 400px;
    /* Optional: Limit max width */
  }

  .yoga-alliance-section .yoga-alliance-desc {
    margin: 0;
  }
}



/*faq-section*/
.faq-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.faq-title {
  font-size: 28px;
  font-weight: bold;
  color: #e9675f;
  margin-bottom: 10px;
}

.faq-subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.faq-divider span {
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ed663c;
  margin: 0 auto 20px;
}

.faq-items {
  max-width: 1040px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ed663c;
  transition: background-color 0.3s ease;
}

.faq-item:hover {
  background-color: #f1f1f1;
}

.faq-question {
  background: none;
  border: none;
  font-weight: bold;
  color: #B6483D;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  transition: color 0.3s ease;
  font-size: 16px;
}

.faq-question:hover {
  color: #ed663c;
}

.faq-icon {
  font-size: 16px;
  color: #ed663c;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  padding: 10px 0;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Empowering Section style*/

.empower-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;

}

.empower-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.empower-content {
  flex: 1;
  text-align: left;
  padding: 0 111px;
}

.empower-title {
  font-size: 24px;
  font-weight: bold;
  color: #72332f;
  margin-bottom: 10px;
}

.empower-subtitle {
  font-size: 20px;
  font-weight: bold;
  /* color: #ed663c; */
  margin-bottom: 20px;
}

.empower-description {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

.empower-call-to-action {
  font-size: 18px;
  font-weight: bold;
  color: #e9675f;
  margin-top: 20px;
}

.empower-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.empower-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;

}

@media (max-width: 768px) {
  .empower-container {
    flex-direction: column;
    text-align: center;
  }

  .empower-image {
    margin-top: 20px;
  }

  .empower-content {

    padding: 0px;
  }
}

/* How to Reach and map section */

.reach-us-section {
  padding: 40px 20px;
  /* background-color: #f9f9f9; */
}

.reach-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reach-us-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
}

.reach-us-content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.reach-us-options {
  flex: 1;
}

.reach-us-option {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #e9675f;
  padding-bottom: 20px;
}

.reach-us-icon {
  font-size: 40px;
  color: #e9675f;
}

.reach-us-info h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.reach-us-info p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.reach-us-map {
  flex: 1;
  height: 850px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

@media (max-width: 768px) {
  .reach-us-content {
    flex-direction: column;
  }

  .reach-us-map {
    height: 300px;
    width: 100%;
  }
}

/* Journey */

/* Journey (dates & fees) — match design */
.journey-section {
  max-width: 1100px;
  margin: 48px auto;
  padding: 28px;

}

.journey-title {

  text-align: center;

  margin: 6px 0;
  color: #7b5b3a;
}

.journey-sub {
  text-align: center;
  color: #7b5b3a;
  margin-bottom: 18px;
  opacity: 0.95;
}

.journey-card {
  display: flex;
  gap: 0px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(30, 30, 40, 0.06);
  padding: 22px;
  align-items: stretch;
}

.journey-dates {
  flex: 1 1 60%;
  display: flex;
  gap: 18px;
}

.dates-col {
  flex: 1;
}

.dates-col ul {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  border-right: none;
}

.dates-col ul li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dates-col ul li i {
  color: #B6483D;
  font-size: 1.15rem;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 107, 74, 0.12);
  border-radius: 8px;
  background: rgba(255, 107, 74, 0.03);
}

.dates-col ul li div {
  display: flex;
  flex-direction: column;
}

.dates-col ul li strong {
  font-weight: 700;
  color: #333;
}

.dates-col ul li span {
  color: #c86b56;
  font-size: 0.95rem;
  margin-top: 4px;
}

.journey-fees {
  flex: 0 0 42%;
  max-width: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fees-inner {
  width: 100%;
  padding: 12px 8px;
  background: linear-gradient(180deg, #fff, #fbfaf9);
  border-radius: 8px;
  box-shadow: 0 6px 22px rgba(30, 30, 40, 0.04);
  border: 2px solid beige;
}

.fees-row {
  display: flex;
  /* justify-content: space-between; */
  gap: 55px !important;
  align-items: center;
  margin-bottom: 12px;
}

.fees-row .label {
  color: #7b7b7b;
  font-weight: 700;
}

.fees-row .value {
  font-weight: 800;
  color: #2f2f2f;
}

.fees-title {
  margin: 12px 0;
  color: #d56449;
  font-size: 1rem;
  letter-spacing: 0.4px;
}

.fees-block {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.fees-col {
  flex: 1 1 48%;
  min-width: 140px;
}

.fees-type {
  color: #d56449;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.fees-amount {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.fees-amount span {
  font-size: 16px;
  font-weight: 800;
  color: #333;
}

del {
  font-size: 14px;
  color: #a66b58;
}

.fees-amount small {
  color: #a66b58;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.fees-amount.alt span {
  color: #d56449;
}

.btn-book {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #B6483D;
  color: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(213, 100, 73, 0.12);
}

@media (max-width:980px) {
  .journey-card {
    flex-direction: column;
    gap: 18px;
  }

  .journey-fees {
    max-width: 100%;
  }
}

@media (max-width:600px) {
  .dates-col ul li {
    padding: 10px 6px;
  }

  .journey-title {
    font-size: 1.3rem;
  }

  .journey-sub {
    font-size: 0.95rem;
  }

  .s-img img {
    width: 12% !important;

    top: 165px !important;
    left: 17px !important;
  }
}

/* Complementary Section */
.complementary-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.complementary-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
}

.complementary-divider {
  width: 60px;
  height: 4px;
  background-color: #c0392b;
  margin: 0 auto 0px;
}

.complementary-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  padding: 0 30px 0 30px !important;
}

.complementary-items {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.complementary-item {
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.complementary-heading {
  background-color: #fff;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #c0392b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  width: 100%;
  text-align: left;
}

.complementary-icon {
  font-size: 13px;
  color: #c0392b;
  transition: transform 0.3s ease;
}

.complementary-content {
  padding: 0px 20px;
  font-size: 13px;
  color: #444;
  display: none;
}

.complementary-item.active .complementary-content {
  display: block;
}

.complementary-item.active .complementary-icon {
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .complementary-description {
    padding: 0 !important;
  }

  .unique-timeline-item {
    width: 138px !important;
    padding: 11px !important;
  }

  .unique-timeline-container {
    gap: 5px !important;
  }

}


.s-img img {

  width: 14%;
  position: absolute;
  top: 179px;
  z-index: 20;
  left: 20px;
  background-color: #FFFAEA;

}

/* Google Review Section */
.google-review-section {
  /* background: #f7f7f7; */
  padding: 20px 0;
  font-family: 'Roboto', sans-serif;
}

.gr-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.gr-info {
  width: 20%;
}

.gr-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #b61212;
}

.gr-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.gr-score {
  font-size: 28px;
  font-weight: 700;
}

.gr-stars {
  color: #fbbc04;
  font-size: 18px;
}

.gr-based {
  font-size: 14px;
  color: #555;
}

.gr-powered {
  margin: 10px 0;
}

.google-text {
  background: linear-gradient(90deg,
      #4285F4 0%,
      /* Blue */
      #4285F4 25%,
      #DB4437 25%,
      /* Red */
      #DB4437 50%,
      #F4B400 50%,
      /* Yellow */
      #F4B400 75%,
      #0F9D58 75%
      /* Green */
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.gr-btn {
  display: inline-block;
  background: #B71C1C;
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
}

.gr-btn span {
  font-weight: 700;
}

/* SLIDER */
.gr-slider {
  width: 80%;
  position: relative;
}

.gr-track {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.gr-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.gr-card {
  /* background: #fff; */
  min-width: 320px;
  height: 260px;
  /* 🔥 height increased */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
}


.gr-header {
  display: flex;
  gap: 10px;
  align-items: center;
}

.gr-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.gr-header h4 {
  font-size: 14px;
  margin: 0;
}

.gr-header span {
  font-size: 12px;
  color: #777;
}

.gr-google {
  margin-left: auto;
  width: 18px;
}

.gr-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  /* max-height: 140px; */
  overflow-y: auto;
  padding-right: 6px;
}



/* ARROWS */
.gr-arrow {
  position: absolute;
  top: 40%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #e0e0e0;
  cursor: pointer;
  font-size: 18px;
}

.gr-arrow.left {
  left: -20px;
}

.gr-arrow.right {
  right: -20px;
}

/* DOTS */
.gr-dots {
  text-align: center;
  margin-top: 15px;
}

.gr-dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 4px;
}

.gr-dots .active {
  background: #1a73e8;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .gr-container {
    flex-direction: column;
  }

  .gr-info,
  .gr-slider {
    width: 100%;
  }

  .gr-arrow {
    display: none;
  }
}

/* REVIEW TEXT SCROLL */
.gr-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  /* max-height:110px; */
  overflow-y: auto;
  padding-right: 5px;
}

.gr-text::-webkit-scrollbar {
  width: 4px;
}

.gr-text::-webkit-scrollbar-thumb {
  background: #cfcfcf;
  border-radius: 10px;
}

/* BIG GOOGLE G */
/* ORIGINAL GOOGLE G */
.google-g {
  margin-left: auto;
  font-size: 26px;
  /* thoda bada */
  font-weight: 700;
  font-family: 'Product Sans', Arial, sans-serif;
  background: linear-gradient(90deg,
      #4285F4 0%,
      /* Blue */
      #4285F4 25%,
      #DB4437 25%,
      /* Red */
      #DB4437 50%,
      #F4B400 50%,
      /* Yellow */
      #F4B400 75%,
      #0F9D58 75%
      /* Green */
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.big-g {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(90deg,
      #4285F4 0%,
      /* Blue */
      #4285F4 25%,
      #DB4437 25%,
      /* Red */
      #DB4437 50%,
      #F4B400 50%,
      /* Yellow */
      #F4B400 75%,
      #0F9D58 75%
      /* Green */
    );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===========================
   MOBILE RESPONSIVE FIX
=========================== */
@media (max-width: 768px) {

  .google-review-section {
    padding: 50px 15px;
  }

  /* TITLE */
  .testimonial-title {
    font-size: 22px;
    text-align: center;
    line-height: 1.4;
    padding: 0 10px;
  }

  .testimonial-divider {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }

  /* CONTAINER STACK */
  .gr-container {
    flex-direction: column;
    gap: 30px;
  }

  /* SLIDER FIRST */
  .gr-slider {
    width: 100%;
    order: 1;
  }

  /* TRACK */
  .gr-track {
    gap: 16px;
    padding-bottom: 5px;
  }

  /* CARD */
  .gr-card {
    min-width: 90%;
    height: auto;
    /* 🔥 important */
    padding: 16px;
    border-radius: 10px;
  }

  .gr-header h4 {
    font-size: 13px;
  }

  .gr-header span {
    font-size: 11px;
  }

  .google-g {
    font-size: 22px;
  }

  .gr-stars {
    font-size: 15px;
  }

  .gr-text {
    font-size: 13px;
    max-height: 140px;
  }

  /* HIDE ARROWS */
  .gr-arrow {
    display: none;
  }

  /* INFO SECTION */
  .gr-info {
    width: 100%;
    order: 2;
    text-align: center;
  }

  .gr-info h3 {
    font-size: 18px;
  }

  .gr-rating {
    justify-content: center;
  }
  .gr-btn {
    margin-top: 10px;
    padding: 12px 22px;
    font-size: 14px;
  }
  .gr-based,
  .gr-powered {
    text-align: center !important;
  }
}

.gr-track {
  scroll-snap-type: x mandatory;
}

.gr-card {
  scroll-snap-align: center;
}

/* Short Cources card */

    /* Container + header */
    .uni-services-section {
      padding: 56px 20px;
      /* background: #fff; */
    }

    .uni-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .uni-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .uni-title {

      letter-spacing: 1px;

      margin: 0 0 8px;
      font-weight: 700;
    }


    /* Grid layout */
    .uni-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      align-items: start;
    }

    /* Card base */
    .uni-card {
      /* background: #fff; */
      border-radius: 14px;
      overflow: visible;
      /* notch is outside the media area */
      box-shadow: 0 12px 28px rgba(100, 110, 120, 1.01);
      display: flex;
      flex-direction: column;
      transition: transform .28s cubic-bezier(.2, .9, .2, 1), box-shadow .28s ease;
      min-height: 360px;
      position: relative;
      border: 2px solid wheat;
    }

    /* Hover lift */
    .uni-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 22px 50px rgba(12, 16, 20, 0.12);
    }

    /* Media (image) */
    .uni-card-media {
      position: relative;
      border-top-left-radius: 14px;
      border-top-right-radius: 14px;
      overflow: hidden;
      min-height: 200px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      background: linear-gradient(180deg, #f9f5f3, #fff);
    }

    .uni-card-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      border-top-left-radius: 14px;
      border-top-right-radius: 14px;
      /* vertical-align: middle; */
    }

    /* triangular notch at bottom-left of the image (the white/shape) */
    .uni-notch {
      position: absolute;
      left: 18px;
      bottom: -18px;
      width: 58px;
      height: 58px;
      background: #FFFAEA;
      transform: rotate(45deg);
      box-shadow: 0 6px 14px rgba(12, 16, 20, 1.04);
      z-index: 5;
      border-radius: 4px;
    }

    /* Body: title + text */
    .uni-card-body {
      padding: 22px 20px 26px;
      flex: 1 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .uni-card-title {
      margin: 0 0 10px;
      /* color: #e76b48; */
      /* orange accent */
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 0.6px;
    }

    .uni-card-text {
      margin: 0;
      color: #37514f;
      font-size: 15px;
      line-height: 1.6;
      opacity: 0.95;
    }

    /* Small rounded subtle bottom glow strip to mimic screenshot */
    .uni-card::after {
      content: "";
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 12px;
      height: 10px;
      border-radius: 8px;
      background: linear-gradient(90deg, rgba(231, 107, 72, 0.06), rgba(17, 75, 72, 0.03));
      z-index: 1;
      pointer-events: none;
    }

    /* Rounded corners when image too tall on mobile */
    .uni-card-img.rounded {
      border-radius: 12px 12px 0 0;
    }

    /* Responsive */
    @media (max-width: 980px) {
      .uni-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      .uni-card {
        min-height: 340px;
      }
    }

    @media (max-width: 640px) {
      .uni-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .uni-card {
        min-height: 320px;
      }

      .uni-card-img {
        height: 200px;
      }

      .uni-notch {
        left: 14px;
        bottom: -14px;
        width: 48px;
        height: 48px;
      }

      .uni-title {
        font-size: 26px;
      }
    }

    /* Accessibility focus */
    .uni-card:focus-within {
      outline: 3px solid rgba(231, 107, 72, 0.12);
      outline-offset: 6px;
    }

/* Teacher Section */

    .teacher-section {
      text-align: center;
      padding: 40px 20px;
      background-color: #f9f9f9;
    }

    /*.teacher-title {*/
    /*  font-size: 28px;*/
    /*  font-weight: bold;*/
    /*  margin-bottom: 20px;*/
    /*  color: #e9675f;*/
    /*  text-transform: uppercase;*/
    /*  letter-spacing: 2px;*/
    /*}*/

    .teacher-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ed663c;
      margin: 10px auto 0;
    }

    .teacher-carousel-wrapper {
      overflow: hidden;
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
    }

    .teacher-carousel {
      display: flex;
      gap: 20px;
      animation: continuous-slide 20s linear infinite;
    }

    .teacher-card {
      flex: 0 0 25%;
      text-align: center;
      /* padding: 20px; */
      box-sizing: border-box;
      /*background-color: #fff;*/
      border-radius: 10px;
      /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
      color: black;
    }

    .teacher-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .teacher-name {
      font-size: 16px;
      font-weight: bold;
      margin-top: 10px;
    }

    .teacher-experience {
      font-size: 16px;
      color: #666;
      text-align: center !important;
      padding: 0 20px;
      margin: 0px;
    }

    /* Continuous Slide Animation */
    @keyframes continuous-slide {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-100%);
      }
    }

    /* Pause animation on hover */
    .teacher-carousel-wrapper:hover .teacher-carousel {
      animation-play-state: paused;
    }

    /* Mobile View */
    @media (max-width: 768px) {
      .teacher-card {
        flex: 0 0 70%;
      }

      .teacher-image {
        height: 200px;
      }

      .teacher-name {
        font-size: 18px;
      }

      .teacher-experience {
        font-size: 14px;
      }
    }
    
    

    /*Gurus Styles*/


.follow
{
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 10%;
    padding-right: 10%;
    /* background:linear-gradient( rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0.5)100%),url("../img/bg3.webp"); */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.follow_container
{
    max-width: 1920px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.follow_c1 
{
    width: 100%;
}
.follow_c2 
{
    width:22%;
    text-align: center;
      box-shadow: rgba(236, 104, 96, 0.3) 0px 4px 8px 0px inset;
      padding-top: 16px;
      border-radius: 8px;
      border: 2px Solid wheat;
     

}
.follow_down 
{
    margin-top: 5%;
}
.follow_c1 h4 
{
    
    text-align: center !important;
    font-weight: 700;
    color: #e9675f;
}

.follow_c1 h2 
{

    text-align: center;  
}
.follow_c2 p 
{
   
    text-align: center !important;
    
}
.follow_c2 h3
{
  
    text-align: center !important; 
    padding-bottom: 5px; 
    padding-top: 5px; 
}
.follow_c2  img 
{
    width:60%;
    margin: auto;
    border-radius: 50%;
    border: 3px solid #EC6860;
    padding: 1%;
}

/* =========================
   RESPONSIVE STYLES
========================= */

/* Large screens (already fine) */
@media (min-width: 1200px) {
    .follow_c2 {
        width: 22%;
    }
}

/* Tablet view */
@media (max-width: 991px) {
    .follow {
        padding-left: 5%;
        padding-right: 5%;
    }

    .follow_container {
        gap: 20px;
        justify-content: center;
    }

    .follow_c2 {
        width: 45%;
    }

    .follow_down {
        margin-top: 0;
    }

    .follow_c2 img {
        width: 55%;
    }
}

/* Mobile view */
@media (max-width: 575px) {
    .follow {
        padding-left: 5%;
        padding-right: 5%;
        padding-top: 10%;
        padding-bottom: 10%;
    }

    .follow_container {
        flex-direction: column;
        gap: 20px;
    }

    .follow_c1 h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .follow_c1 p {
        font-size: 14px;
    }

    .follow_c2 {
        width: 100%;
        padding: 20px 0px;
    }

    .follow_c2 img {
        width: 50%;
        margin-bottom: 10px;
    }

    .follow_c2 h3 {
        font-size: 18px;
    }

    .follow_c2 p {
        font-size: 14px;
        line-height: 1.6;
    }

    .follow_down {
        margin-top: 0;
    }
}
.follow_c2:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}
