/* Custom Color Palette */
:root {
  --color-dark-gray: #202020;
  --color-white: #ffffff;
  --color-purple: #9648e5;
  --color-light-blue: #a2eafd;
  --color-pink: #ec5c9f;
  --color-yellow: #ffca34;
  --color-dark: #161616;
  --color-bright-pink: #ff41be;
  --color-darker: #1f1f1f;
  --color-black: #000000;
  --color-orange: #ffc000;
}

/* Override Bootstrap Variables */
:root {
  --bs-primary: #9648e5;
  --bs-secondary: #ec5c9f;
  --bs-success: #a2eafd;
  --bs-warning: #ffca34;
  --bs-dark: #202020;
  --bs-light: #ffffff;
  --bs-white: #ffffff;
  --bs-black: #161616;
}

/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.8s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

/*** Common CSS Start ***/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

body {
  font-family: "Mulish", sans-serif;
  overflow-x: hidden;
}

/* Topbar Custom Styles */
.topbar-custom {
  background: linear-gradient(90deg, #9648e5 0%, #a2eafd 100%);
  position: relative;
}

.topbar-custom::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #9648e5;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.topbar-left {
  position: relative;
  z-index: 1;
}

.topbar-address {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.topbar-right {
  position: relative;
  z-index: 1;
}

.topbar-contact {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #202020;
  transition: opacity 0.3s ease;
}

.topbar-contact:hover {
  opacity: 0.8;
  color: #202020;
}

.topbar-divider {
  display: inline-block;
  width: 2px;
  height: 20px;
  background-color: #202020;
}

/* Navbar Custom Styles */
.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.navbar-transparent {
  background: transparent !important;
  position: relative;
  z-index: 10;
}

.navbar-logo {
  height: 50px;
  width: auto;
  max-width: 200px;
  display: block;
}

.nav-link-custom {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-link-custom:hover {
  color: #ffffff !important;
}

.nav-link-custom.active-home {
  background: #ffca34;
  border-radius: 25px;
  padding: 0.6rem 1.5rem !important;
  color: #202020 !important;
}

/* ===== Custom Mega Menu (no Bootstrap) ===== */
.custom-dropdown {
  position: relative;
}

/* The mega menu container */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) rotateX(-75deg);
  transform-origin: top center;
  z-index: 1050;
  display: flex;
  background: #202020;
  border: 2px solid #9648e5;
  border-radius: 15px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease;
  min-width: 560px;
}

.custom-dropdown:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) rotateX(0deg);
  pointer-events: auto;
}

/* Left column: parent categories */
.mega-parents {
  list-style: none;
  margin: 0;
  padding: 0.8rem 0;
  min-width: 260px;
  border-right: 1px solid rgba(150, 72, 229, 0.3);
}

.mega-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.3rem;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
  transition: all 0.25s ease;
}

.mega-parent i {
  font-size: 10px;
  opacity: 0.4;
  transition: opacity 0.25s ease;
}

.mega-parent:hover,
.mega-parent.active {
  background: #9648e5;
  color: #fff;
}

.mega-parent:hover i,
.mega-parent.active i {
  opacity: 1;
}

/* Right column: child courses */
.mega-children {
  min-width: 290px;
  padding: 0.8rem 0;
}

.mega-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}

.mega-sub.active {
  display: block;
}

.mega-sub li a {
  display: block;
  padding: 0.7rem 1.5rem;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #ddd;
  text-decoration: none;
  transition: all 0.25s ease;
}

.mega-sub li a:hover {
  background: rgba(150, 72, 229, 0.25);
  color: #fff;
}

/* Mobile: stacked layout */
@media (max-width: 1199.98px) {
  .mega-menu {
    position: static;
    transform: none;
    flex-direction: column;
    border: none;
    background: #1a1a1a;
    border-radius: 0;
    min-width: 100%;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease,
      opacity 0.3s ease;
  }
  .custom-dropdown.open > .mega-menu {
    max-height: 800px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mega-parents {
    border-right: none;
    border-bottom: 1px solid rgba(150, 72, 229, 0.3);
    min-width: 100%;
  }
  .mega-children {
    min-width: 100%;
  }
}

.btn-login {
  width: 50px;
  height: 50px;
  background: #ec5c9f;
  border-radius: 50%;
  border: none;
  color: #ffffff;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-login:hover {
  background: #ff41be;
  transform: scale(1.05);
}

.btn-enroll {
  background: #ec5c9f;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-enroll:hover {
  background: #ff41be;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(236, 92, 159, 0.3);
}

/* Navbar & Topbar Responsive Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(32, 32, 32, 0.95);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }

  .nav-link-custom {
    padding: 0.75rem 1rem !important;
    text-align: center;
  }

  .nav-link-custom.active-home {
    padding: 0.75rem 1.5rem !important;
  }

  .navbar-nav {
    gap: 0.5rem;
  }

  .btn-login {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .btn-enroll {
    padding: 0.7rem 1.8rem;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .topbar {
    padding: 10px 0;
  }

  .topbar-address,
  .topbar-contact {
    font-size: 13px;
  }

  .topbar-divider {
    height: 16px;
  }

  .navbar {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .navbar-logo {
    max-width: 140px;
  }

  .nav-link-custom {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .topbar-info {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }

  .topbar-address {
    font-size: 12px;
  }

  .topbar-right {
    flex-wrap: wrap;
    gap: 8px;
  }

  .topbar-contact {
    font-size: 11px;
  }

  .topbar-divider {
    display: none;
  }

  .navbar-logo {
    max-width: 120px;
  }

  .btn-login {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .btn-enroll {
    padding: 0.6rem 1.5rem;
    font-size: 14px;
  }

  .navbar-nav .btn-login,
  .navbar-nav .btn-enroll {
    margin: 0.5rem 0;
  }
}

@media (max-width: 400px) {
  .topbar-address,
  .topbar-contact {
    font-size: 10px;
  }

  .navbar-logo {
    max-width: 100px;
  }

  .nav-link-custom {
    font-size: 14px;
    padding: 0.6rem 0.8rem !important;
  }
}

/* Hero Section Custom Styles */
.hero-section-custom {
  background-image: url("../img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 0 80px 0;
  position: relative;
  overflow: visible;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-section-custom .topbar-custom {
  position: relative;
  z-index: 10;
}

.hero-decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.stars-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 450px;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 1;
  z-index: 2;
}

.hero-heading {
  font-family: "Rowdies", cursive;
  font-weight: 300;
  font-size: 70px;
  color: #161616;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-description {
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #202020;
  line-height: 1.6;
  max-width: 600px;
}

.hero-search-wrapper {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  padding: 8px;
  max-width: 550px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-search-input {
  border: none;
  outline: none;
  padding: 12px 24px;
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  flex: 1;
  background: transparent;
}

.hero-search-input::placeholder {
  color: #999;
}

.hero-search-button {
  background: #ec5c9f;
  color: #ffffff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-search-button:hover {
  background: #ff41be;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(236, 92, 159, 0.3);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 100vh;
  height: 100%;
}

.hero-abstract {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120%;
  max-width: 700px;
  height: auto;
  z-index: 1;
}

.hero-girl {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  max-width: 550px;
  height: auto;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .stars-group {
    width: 350px;
  }

  .hero-girl {
    max-width: 450px;
  }
}

@media (max-width: 991px) {
  .hero-heading {
    font-size: 48px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 2rem;
  }

  .hero-image-wrapper {
    margin-top: 3rem;
    min-height: 70vh;
  }

  .stars-group {
    width: 280px;
  }

  .hero-girl {
    max-width: 380px;
  }

  .hero-abstract {
    max-width: 600px;
  }

  .btn-enroll,
  .btn-login {
    padding: 10px 24px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 40px;
  }

  .hero-heading {
    font-size: 40px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-image-wrapper {
    min-height: 60vh;
  }

  .stars-group {
    width: 220px;
  }

  .hero-girl {
    max-width: 320px;
  }

  .hero-abstract {
    max-width: 500px;
  }

  .topbar-info {
    font-size: 13px;
  }

  .topbar-social a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .hero-section {
    padding: 60px 0 30px;
  }

  .hero-heading {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 13px;
    margin-bottom: 1.5rem;
  }

  .hero-search-wrapper {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .hero-search-input {
    padding: 12px 16px;
    font-size: 14px;
    width: 100%;
  }

  .hero-search-button {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
  }

  .hero-image-wrapper {
    min-height: 50vh;
    margin-top: 2rem;
  }

  .stars-group {
    width: 180px;
  }

  .hero-girl {
    max-width: 250px;
  }

  .hero-abstract {
    max-width: 400px;
  }

  .topbar {
    padding: 8px 0;
  }

  .topbar-info {
    font-size: 11px;
  }

  .topbar-social a {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin-left: 8px;
  }

  .btn-enroll,
  .btn-login {
    padding: 8px 16px;
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .hero-heading {
    font-size: 28px;
  }

  .hero-description {
    font-size: 12px;
  }

  .stars-group {
    width: 150px;
  }

  .hero-girl {
    max-width: 200px;
  }
}

/* About Section Styles */
.about-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.about-circle-frame {
  position: relative;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid;
  border-image: linear-gradient(135deg, #a2eafd 0%, #9648e5 100%);
  border-image-slice: 1;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-children-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-decoration {
  position: absolute;
  z-index: 2;
}

.cap-decoration {
  width: 80px;
  height: 80px;
  top: 5%;
  left: 5%;
  animation: float 3s ease-in-out infinite;
}

.star1-decoration {
  width: 50px;
  height: 50px;
  top: 10%;
  right: 15%;
  animation: rotate 4s linear infinite;
}

.star2-decoration {
  width: 40px;
  height: 40px;
  bottom: 15%;
  right: 10%;
  animation: float 2.5s ease-in-out infinite;
}

.about-spiral-decoration {
  position: absolute;
  bottom: 10%;
  left: 10%;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.about-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 48px;
  color: #161616;
  line-height: 1.2;
}

.about-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #202020;
  line-height: 1.8;
}

.about-features {
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-number-pink {
  background: #ec5c9f;
  color: #ffffff;
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 32px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 3px dashed #202020;
  flex-shrink: 0;
}

.feature-number-yellow {
  background: #ffca34;
  color: #202020;
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 32px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 3px dashed #202020;
  flex-shrink: 0;
}

.feature-content h5 {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #161616;
}

.feature-content p {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #666;
}

.btn-read-more {
  background: #9648e5;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 50px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-read-more:hover {
  background: #7a35c7;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(150, 72, 229, 0.3);
}

.about-side-girl {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: none;
}

.side-girl-image {
  width: 350px;
  height: auto;
}

@media (max-width: 1200px) {
  .about-circle-frame {
    width: 400px;
    height: 400px;
  }

  .about-side-girl {
    width: 180px;
  }
}

@media (max-width: 991px) {
  .about-heading {
    font-size: 36px;
    line-height: 1.3;
  }

  .about-description {
    font-size: 14px;
  }

  .about-circle-frame {
    width: 350px;
    height: 350px;
  }

  .about-side-girl {
    display: none;
  }

  .feature-item {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-heading {
    font-size: 32px;
  }

  .about-description {
    font-size: 13px;
  }

  .about-circle-frame {
    width: 320px;
    height: 320px;
  }

  .about-image-wrapper {
    min-height: 400px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .about-section {
    padding: 40px 0;
  }

  .about-heading {
    font-size: 28px;
    margin-bottom: 1rem;
  }

  .about-description {
    font-size: 12px;
    margin-bottom: 1.5rem;
  }

  .about-circle-frame {
    width: 280px;
    height: 280px;
  }

  .about-image-wrapper {
    min-height: 350px;
  }

  .feature-number-pink,
  .feature-number-yellow {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .feature-content h4 {
    font-size: 18px;
  }

  .feature-content p {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .about-heading {
    font-size: 24px;
  }

  .about-circle-frame {
    width: 240px;
    height: 240px;
  }

  .feature-number-pink,
  .feature-number-yellow {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .feature-content h4 {
    font-size: 16px;
  }
}

/* Courses Section Styles */
.courses-section {
  background: linear-gradient(180deg, #ec5c9f 0%, #9648e5 50%, #484be5 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.courses-decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.decoration-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: auto;
  opacity: 0.7;
}

.decoration-top-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: auto;
  opacity: 0.7;
}

.courses-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 48px;
  color: #161616;
  line-height: 1.2;
}

.courses-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.course-card {
  background: linear-gradient(
    135deg,
    rgba(236, 92, 159, 0.3) 0%,
    rgba(150, 72, 229, 0.3) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.course-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  background: transparent;
  padding: 0;
}

.course-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-content {
  text-align: left;
}

.course-title {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #161616;
  margin-bottom: 15px;
  line-height: 1.3;
}

.course-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #202020;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-view-details {
  background: #ec5c9f;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-view-details:hover {
  background: #ff41be;
  color: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(236, 92, 159, 0.4);
}

.btn-view-details i {
  transition: transform 0.3s ease;
}

.btn-view-details:hover i {
  transform: translateX(5px);
}

/* Why Us Section Styles */
.why-us-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.why-us-decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.decoration-flower {
  position: absolute;
  top: 50px;
  left: 30px;
  width: 60px;
  height: auto;
  opacity: 0.8;
}

.decoration-star-outline {
  position: absolute;
  top: 100px;
  left: 150px;
  width: 50px;
  height: auto;
  opacity: 0.7;
}

.decoration-diamond {
  position: absolute;
  top: 50px;
  right: 100px;
  width: 70px;
  height: auto;
  opacity: 0.8;
}

.why-us-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 48px;
  color: #161616;
  line-height: 1.2;
}

.why-us-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.why-us-card {
  background: #a2eafd;
  border-radius: 25px;
  padding: 35px 25px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.why-us-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-us-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.why-us-icon img {
  width: 80px;
  height: auto;
}

.why-us-card-title {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #161616;
  margin-bottom: 15px;
  line-height: 1.3;
}

.why-us-card-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #202020;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .why-us-card {
    padding: 24px;
  }

  .why-us-icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 991px) {
  .why-us-heading {
    font-size: 36px;
    line-height: 1.3;
  }

  .why-us-description {
    font-size: 14px;
  }

  .why-us-card {
    padding: 20px;
    margin-bottom: 1.5rem;
  }

  .decoration-flower,
  .decoration-star-outline,
  .decoration-diamond {
    width: 40px;
  }
}

@media (max-width: 768px) {
  .why-us-section {
    padding: 60px 0;
  }

  .why-us-heading {
    font-size: 32px;
  }

  .why-us-card {
    padding: 18px;
  }

  .why-us-icon {
    width: 60px;
    height: 60px;
  }

  .why-us-card h4 {
    font-size: 18px;
  }

  .why-us-card p {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .why-us-section {
    padding: 40px 0;
  }

  .why-us-heading {
    font-size: 28px;
    margin-bottom: 1rem;
  }

  .why-us-description {
    font-size: 13px;
    margin-bottom: 2rem;
  }

  .why-us-card {
    padding: 16px;
  }

  .why-us-icon {
    width: 50px;
    height: 50px;
  }

  .why-us-card h4 {
    font-size: 16px;
  }

  .why-us-card p {
    font-size: 11px;
  }

  .decoration-flower,
  .decoration-star-outline,
  .decoration-diamond {
    display: none;
  }
}

@media (max-width: 400px) {
  .why-us-heading {
    font-size: 24px;
  }

  .why-us-card {
    padding: 14px;
  }
}

/* Team Section Styles */
.team-section {
  background: linear-gradient(180deg, #ec5c9f 0%, #9648e5 100%);
  padding: 80px 0;
}

.team-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 48px;
  color: #161616;
  line-height: 1.2;
}

.team-card {
  position: relative;
  height: 100%;
}

.team-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  border: 5px dashed #161616;
  margin-bottom: 20px;
}

.team-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffca34;
  padding: 12px 25px;
  border-radius: 50px;
  display: flex;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon {
  width: 35px;
  height: 35px;
  background: #161616;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: #9648e5;
  color: #ffffff;
  transform: translateY(-3px);
}

.team-info {
  text-align: center;
}

.team-name {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.team-role {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .team-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 991px) {
  .team-section {
    padding: 60px 0;
  }

  .team-heading {
    font-size: 36px;
    line-height: 1.3;
  }

  .team-card {
    margin-bottom: 2rem;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .team-social {
    gap: 10px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .team-section {
    padding: 50px 0;
  }

  .team-heading {
    font-size: 32px;
  }

  .team-name {
    font-size: 18px;
  }

  .team-role {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .team-section {
    padding: 40px 0;
  }

  .team-heading {
    font-size: 28px;
    margin-bottom: 2rem;
  }

  .team-name {
    font-size: 16px;
  }

  .team-role {
    font-size: 14px;
  }

  .team-card {
    margin-bottom: 1.5rem;
  }

  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .team-heading {
    font-size: 24px;
  }

  .team-name {
    font-size: 15px;
  }

  .team-role {
    font-size: 13px;
  }
}

/* Testimonials Section Styles */
.testimonials-section {
  background: #f8f8f8;
  padding: 80px 0;
}

.testimonials-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 48px;
  color: #161616;
  line-height: 1.2;
}

.testimonials-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonial-card {
  background: #ffffff;
  border: 3px solid #161616;
  border-radius: 0;
  padding: 35px 30px;
  height: 100%;
  position: relative;
  transform: rotate(-1deg);
  transition: all 0.3s ease;
}

.testimonial-card:nth-child(2) .testimonial-card {
  transform: rotate(1deg);
}

.testimonial-card:nth-child(3) .testimonial-card {
  transform: rotate(-0.5deg);
}

.testimonial-card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: #ec5c9f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar span {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 28px;
  color: #ffffff;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #161616;
  margin-bottom: 5px;
}

.testimonial-role {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #202020;
  margin-bottom: 0;
}

.testimonial-stars {
  display: flex;
  gap: 5px;
}

.testimonial-stars i {
  color: #ffca34;
  font-size: 16px;
}

.testimonial-text {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #202020;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-quote {
  position: absolute;
  bottom: 20px;
  right: 25px;
  opacity: 0.15;
}

.testimonial-quote i {
  font-size: 60px;
  color: #9648e5;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #9648e5;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav:hover {
  background: #ec5c9f;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
  left: -25px;
}

.testimonial-next {
  right: -25px;
}

.btn-view-all-reviews {
  background: #9648e5;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 40px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(150, 72, 229, 0.3);
}

.btn-view-all-reviews:hover {
  background: #ec5c9f;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(150, 72, 229, 0.4);
}

@media (max-width: 1200px) {
  .testimonial-card {
    padding: 30px 25px;
  }

  .testimonial-text {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-heading {
    font-size: 36px;
    line-height: 1.3;
  }

  .testimonials-description {
    font-size: 14px;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .testimonial-prev {
    left: 0;
  }

  .testimonial-next {
    right: 0;
  }

  .testimonial-nav {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-heading {
    font-size: 32px;
  }

  .testimonial-card {
    padding: 24px 20px;
    margin-bottom: 1.5rem;
  }

  .testimonial-avatar {
    width: 55px;
    height: 55px;
  }

  .testimonial-name {
    font-size: 16px;
  }

  .testimonial-role {
    font-size: 13px;
  }

  .btn-view-all-reviews {
    padding: 12px 32px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-heading {
    font-size: 28px;
    margin-bottom: 1rem;
  }

  .testimonials-description {
    font-size: 13px;
    margin-bottom: 2rem;
  }

  .testimonial-card {
    padding: 25px 20px;
    transform: rotate(0deg) !important;
    margin-bottom: 1rem;
  }

  .testimonial-text {
    font-size: 12px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  .testimonial-name {
    font-size: 15px;
  }

  .testimonial-role {
    font-size: 12px;
  }

  .testimonial-nav {
    display: none;
  }

  .btn-view-all-reviews {
    padding: 10px 28px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .testimonials-heading {
    font-size: 24px;
  }

  .testimonial-card {
    padding: 20px 16px;
  }
}

/* Blog Section Styles */
.blog-section {
  background: #a2eafd;
  padding: 80px 0;
}

.blog-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 48px;
  color: #161616;
  line-height: 1.2;
}

.btn-view-all-blogs {
  background: #9648e5;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 35px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(150, 72, 229, 0.3);
}

.btn-view-all-blogs:hover {
  background: #ec5c9f;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(150, 72, 229, 0.4);
}

.blog-card {
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  font-family: "Mulish", sans-serif;
  font-size: 14px;
  color: #202020;
}

.blog-author,
.blog-date,
.blog-category,
.blog-comments {
  font-weight: 400;
}

.blog-divider {
  color: #202020;
}

.blog-title {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #161616;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-excerpt {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #202020;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-read-more {
  background: #ec5c9f;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-read-more:hover {
  background: #ff41be;
  color: #ffffff;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(236, 92, 159, 0.4);
}

.btn-read-more i {
  transition: transform 0.3s ease;
}

.btn-read-more:hover i {
  transform: translateX(5px);
}

@media (max-width: 1200px) {
  .blog-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 991px) {
  .blog-section {
    padding: 60px 0;
  }

  .blog-heading {
    font-size: 36px;
    line-height: 1.3;
  }

  .blog-image {
    height: 250px;
  }

  .blog-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 50px 0;
  }

  .blog-heading {
    font-size: 32px;
  }

  .blog-image {
    height: 220px;
  }

  .blog-title {
    font-size: 22px;
  }

  .blog-content {
    padding: 22px;
  }

  .btn-view-all-blogs {
    padding: 12px 32px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .blog-section {
    padding: 40px 0;
  }

  .blog-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .btn-view-all-blogs {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding: 10px 28px;
    font-size: 13px;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-title {
    font-size: 20px;
  }

  .blog-meta {
    font-size: 12px;
  }

  .btn-read-more {
    padding: 10px 24px;
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .blog-heading {
    font-size: 24px;
  }

  .blog-image {
    height: 180px;
  }

  .blog-title {
    font-size: 18px;
  }
}

/* Admission Section Styles */
.admission-section {
  background-image: url("../img/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
}

.admission-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1;
}

.admission-section .container {
  position: relative;
  z-index: 2;
}

.admission-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 48px;
  color: #161616;
  line-height: 1.2;
}

.admission-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.admission-form {
  background: #ffca34;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.admission-input {
  border: none;
  border-radius: 50px;
  padding: 18px 25px;
  font-family: "Mulish", sans-serif;
  font-size: 15px;
  background: #ffffff;
  color: #202020;
  transition: all 0.3s ease;
}

.admission-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(150, 72, 229, 0.2);
  border: none;
}

.admission-input::placeholder {
  color: #666666;
}

.admission-input.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
}

textarea.admission-input {
  border-radius: 25px;
  resize: none;
  min-height: 150px;
}

.btn-submit-admission {
  background: #9648e5;
  color: #ffffff;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 60px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(150, 72, 229, 0.3);
  width: 100%;
}

.btn-submit-admission:hover {
  background: #ec5c9f;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(150, 72, 229, 0.4);
}

@media (max-width: 1200px) {
  .admission-form {
    padding: 45px 35px;
  }
}

@media (max-width: 991px) {
  .admission-section {
    padding: 60px 0;
  }

  .admission-heading {
    font-size: 36px;
    line-height: 1.3;
  }

  .admission-description {
    font-size: 14px;
  }

  .admission-form {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .admission-section {
    padding: 50px 0;
  }

  .admission-heading {
    font-size: 32px;
  }

  .admission-form {
    padding: 35px 25px;
  }

  .admission-input,
  .admission-textarea {
    padding: 14px 18px;
    font-size: 14px;
  }

  .btn-submit-admission {
    padding: 14px 36px;
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .admission-section {
    padding: 40px 0;
  }

  .admission-heading {
    font-size: 28px;
    margin-bottom: 1rem;
  }

  .admission-description {
    font-size: 13px;
    margin-bottom: 2rem;
  }

  .admission-form {
    padding: 30px 20px;
  }

  .admission-input,
  .admission-textarea {
    padding: 15px 20px;
    font-size: 13px;
  }

  .btn-submit-admission {
    padding: 15px 40px;
    font-size: 16px;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .admission-heading {
    font-size: 24px;
  }

  .admission-form {
    padding: 25px 16px;
  }
}

/* Instagram Section New Styles */
.instagram-section-new {
  background: #161616;
  padding: 80px 0;
}

.instagram-heading-new {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 48px;
  color: #ffffff;
  line-height: 1.2;
}

/* Contact Page Styles */
.contact-section {
  background: #ffffff;
}

.contact-info-wrapper {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 20px;
  height: 100%;
  border: 2px solid #9648e5;
}

.contact-info-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 36px;
  color: #202020;
  margin-bottom: 1rem;
}

.contact-info-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  opacity: 0.8;
  line-height: 1.8;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: #9648e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon img {
  width: 24px;
  height: 24px;
}

.contact-info-content h5 {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #202020;
  margin-bottom: 0.5rem;
}

.contact-info-content p,
.contact-info-content a {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #202020;
  opacity: 0.8;
  margin: 0;
  text-decoration: none;
  line-height: 1.6;
}

.contact-info-content a:hover {
  color: #9648e5;
  opacity: 1;
}

.contact-social h5 {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #202020;
}

.contact-social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}

.contact-social-icon.facebook {
  background: #1877f2;
  color: #ffffff;
}

.contact-social-icon.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: #ffffff;
}

.contact-social-icon.linkedin {
  background: #0077b5;
  color: #ffffff;
}

.contact-social-icon.twitter {
  background: #1da1f2;
  color: #ffffff;
}

.contact-social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(150, 72, 229, 0.3);
}

.contact-form-wrapper {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 20px;
  height: 100%;
  border: 2px solid #9648e5;
}

.contact-form-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 36px;
  color: #202020;
  margin-bottom: 2rem;
}

.contact-input {
  background: #ffffff;
  border: 2px solid #9648e5;
  border-radius: 15px;
  padding: 1rem 1.5rem;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #202020;
  transition: all 0.3s ease;
}

.contact-input:focus {
  background: #ffffff;
  border-color: #a2eafd;
  color: #202020;
  box-shadow: 0 0 0 0.2rem rgba(162, 234, 253, 0.25);
}

.contact-input::placeholder {
  color: rgba(32, 32, 32, 0.5);
}

.btn-submit-contact {
  background: linear-gradient(135deg, #9648e5 0%, #ec5c9f 100%);
  border: none;
  border-radius: 25px;
  padding: 1rem 3rem;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(150, 72, 229, 0.4);
}

.map-section iframe {
  filter: grayscale(100%) invert(92%) contrast(83%);
}

/* Blog Page Styles */
.blog-listing-section {
  background: #ffffff;
}

.blog-card-full {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card-full:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(150, 72, 229, 0.2);
}

.blog-card-full .blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-card-full .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card-full:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #9648e5 0%, #ec5c9f 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-full .blog-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-full .blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-card-full .blog-meta span {
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #9648e5;
}

.blog-card-full .blog-meta i {
  color: #ec5c9f;
}

.blog-card-full .blog-title {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 22px;
  color: #202020;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card-full .blog-excerpt {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #202020;
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 2px solid #f0f0f0;
}

.blog-stats {
  display: flex;
  gap: 1rem;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #202020;
  opacity: 0.6;
}

.blog-stats i {
  color: #9648e5;
}

.btn-read-more-blog {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #9648e5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-read-more-blog:hover {
  color: #ec5c9f;
  transform: translateX(5px);
}

/* Blog Pagination */
.blog-pagination .pagination {
  gap: 10px;
}

.blog-pagination .page-link {
  border: 2px solid #9648e5;
  border-radius: 10px;
  color: #9648e5;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
  background: #9648e5;
  color: #ffffff;
}

.blog-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #9648e5 0%, #ec5c9f 100%);
  border-color: #9648e5;
  color: #ffffff;
}

.blog-pagination .page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Newsletter Section */
.newsletter-section {
  background: #161616;
}

.newsletter-wrapper {
  background: linear-gradient(135deg, #9648e5 0%, #ec5c9f 100%);
  padding: 3rem 4rem;
  border-radius: 30px;
}

.newsletter-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 36px;
  color: #ffffff;
}

.newsletter-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  opacity: 0.9;
  line-height: 1.7;
}

.newsletter-input {
  background: #ffffff;
  border: none;
  border-radius: 25px 0 0 25px;
  padding: 1rem 2rem;
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #202020;
}

.newsletter-input:focus {
  box-shadow: none;
  border-color: transparent;
}

.btn-newsletter-submit {
  background: #202020;
  border: none;
  border-radius: 0 25px 25px 0;
  padding: 1rem 2.5rem;
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-newsletter-submit:hover {
  background: #ffffff;
  color: #9648e5;
}

.map-section iframe {
  filter: grayscale(100%) invert(92%) contrast(83%);
}

.instagram-grid-new {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.instagram-item-new {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.instagram-item-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-item-new:hover img {
  transform: scale(1.1);
}

.instagram-overlay-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(150, 72, 229, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item-new:hover .instagram-overlay-new {
  opacity: 1;
}

.instagram-overlay-new i {
  font-size: 50px;
  color: #ffffff;
}

/* Footer Section New Styles */
.footer-section-new {
  background: #1f1f1f;
  padding: 80px 0 40px;
}

.footer-logo-new {
  max-width: 150px;
  height: auto;
}

.footer-description-new {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #cccccc;
  line-height: 1.8;
}

.footer-social-new {
  display: flex;
  gap: 15px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-social-icon.facebook {
  background: #3b5998;
  color: #ffffff;
}

.footer-social-icon.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: #ffffff;
}

.footer-social-icon.linkedin {
  background: #0077b5;
  color: #ffffff;
}

.footer-social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-heading-new {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 25px;
}

.footer-links-new {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-new li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links-new .heart-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer-links-new a {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links-new a:hover {
  color: #ec5c9f;
}

.footer-contact-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon img {
  width: 24px;
  height: 24px;
}

.footer-contact-item p,
.footer-contact-item a {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #ec5c9f;
}

.footer-divider-new {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0 30px;
}

.footer-bottom-new p {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #cccccc;
}

.footer-highlight {
  color: #ffca34;
  font-weight: 700;
}

@media (max-width: 1200px) {
  .instagram-grid-new {
    gap: 15px;
  }

  .footer-section-new {
    padding: 70px 0 35px;
  }
}

@media (max-width: 991px) {
  .instagram-section-new {
    padding: 60px 0;
  }

  .instagram-grid-new {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .instagram-heading-new {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 2rem;
  }

  .instagram-overlay-new i {
    font-size: 40px;
  }

  .footer-section-new {
    padding: 60px 0 30px;
  }

  .footer-heading-new {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .instagram-section-new {
    padding: 50px 0;
  }

  .instagram-heading-new {
    font-size: 32px;
  }

  .instagram-grid-new {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .footer-logo-new {
    max-width: 130px;
    margin-bottom: 1rem;
  }

  .footer-col-new {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .instagram-section-new {
    padding: 40px 0;
  }

  .instagram-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .instagram-heading-new {
    font-size: 28px;
    margin-bottom: 1.5rem;
  }

  .instagram-overlay-new i {
    font-size: 32px;
  }

  .footer-section-new {
    padding: 50px 0 25px;
  }

  .footer-logo-new {
    max-width: 120px;
  }

  .footer-text-new {
    font-size: 13px;
  }

  .footer-heading-new {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .footer-links-new a,
  .footer-contact-item p,
  .footer-contact-item a {
    font-size: 13px;
  }

  .footer-social-new {
    gap: 10px;
  }

  .footer-social-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .footer-bottom-new p {
    font-size: 12px;
  }

  .footer-col-new {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 400px) {
  .instagram-heading-new {
    font-size: 24px;
  }

  .instagram-grid-new {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-logo-new {
    max-width: 100px;
  }

  .footer-heading-new {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .course-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 991px) {
  .courses-section {
    padding: 60px 0;
  }

  .courses-heading {
    font-size: 36px;
    line-height: 1.3;
  }

  .courses-description {
    font-size: 14px;
  }

  .decoration-top-left,
  .decoration-top-right {
    width: 120px;
  }

  .course-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .courses-section {
    padding: 50px 0;
  }

  .courses-heading {
    font-size: 32px;
  }

  .course-title {
    font-size: 20px;
  }

  .course-description {
    font-size: 13px;
  }

  .decoration-top-left,
  .decoration-top-right {
    width: 100px;
  }
}

@media (max-width: 575px) {
  .courses-section {
    padding: 40px 0;
  }

  .courses-heading {
    font-size: 28px;
    margin-bottom: 1rem;
  }

  .courses-description {
    font-size: 13px;
    margin-bottom: 2rem;
  }

  .decoration-top-left,
  .decoration-top-right {
    width: 80px;
  }

  .course-card {
    margin-bottom: 1.5rem;
  }

  .course-content {
    padding: 20px;
  }

  .course-title {
    font-size: 18px;
  }

  .course-description {
    font-size: 12px;
  }

  .course-features p {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .courses-heading {
    font-size: 24px;
  }

  .decoration-top-left,
  .decoration-top-right {
    width: 60px;
  }

  .course-title {
    font-size: 16px;
  }
}

h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-weight: 700;
  font-family: "Rowdies", cursive;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  font-weight: 600;
  font-family: "Mulish", sans-serif;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 700;
  font-family: "Rowdies", cursive;
}

.display-4,
.display-5,
.display-6 {
  font-weight: 700;
}

.wow,
.animated {
  animation-duration: 2s !important;
}
/*** Common CSS End ***/

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  border: 0;
  color: var(--bs-white);
}

.btn.btn-primary:hover {
  background: var(--bs-secondary);
  color: var(--bs-primary);
}

.btn-border-radius {
  border-radius: 25% 10%;
}

.img-border-radius {
  border-radius: 50% 20% / 10% 40%;
}

.title-border-radius {
  border-radius: 10% 30%;
}
/*** Button End ***/

/*** Topbar Start ***/
.topbar .top-info {
  font-size: medium;
  font-weight: 400;
  font-family: "Mulish", sans-serif;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.topbar .top-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar .top-link a {
  margin-right: 10px;
}

.topbar .top-link a:hover {
  background: var(--bs-secondary) !important;
}

.topbar .top-link a:hover i {
  color: var(--bs-primary) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .navbar-nav .nav-link {
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

/* Old Bootstrap dropdown overrides removed — using .custom-dropdown instead */

#searchModal .modal-content {
  background: rgba(255, 255, 255, 0.8);
}
/*** Navbar End ***/

/*** Hero Header ***/
.hero-header,
.page-header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05)),
    url(../img/hero-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
/*** Hero Header ***/

/*** About Start ***/
.video {
  position: relative;
  height: 100%;
  min-height: 400px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
    url(../img/about.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}

.video .btn-play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  border: none;
  outline: none;
  padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-secondary);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 100px;
  height: 100px;
  background: var(--bs-primary);
  border-radius: 50%;
  transition: all 200ms;
}

.video .btn-play img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video .btn-play span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid var(--bs-white);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

#videoModal {
  z-index: 99999;
}

#videoModal .modal-dialog {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0 auto;
}

#videoModal .modal-body {
  position: relative;
  padding: 0px;
}

#videoModal .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
  top: -30px;
  z-index: 999;
  font-size: 30px;
  font-weight: normal;
  color: #ffffff;
  background: #000000;
  opacity: 1;
}

.video.border {
  border-radius: 50% 20% / 10% 40%;
}

.about {
  background:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
    url(../img/background.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
/*** About End ***/

/*** service Start ***/
.service {
  background: linear-gradient(
    rgba(255, 72, 128, 0.05),
    rgba(255, 72, 128, 0.2)
  );
}

.service .service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  border-radius: 50% 20% / 10% 40%;
  transition: 0.5s;
  position: relative;
}

.service-content::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  right: auto;
  background: transparent;
  border-radius: 50% 20% / 10% 40%;
  transition: 0.5s;
}

.service-item:hover {
  border: 1px solid var(--bs-secondary) !important;
}

.service-item:hover .service-content::after {
  background: var(--bs-secondary);
  width: 100%;
  opacity: 1;
  z-index: 1;
}

.service-item .service-content .service-content-inner {
  position: relative;
  z-index: 2;
}

.service-item .service-content-inner i,
.service-item .service-content-inner p,
.service-item .service-content-inner a.h4 {
  transition: 0.5s;
}

.service-item:hover .service-content-inner i,
.service-item:hover .service-content-inner p {
  color: var(--bs-white) !important;
}
.service-item:hover .service-content-inner a.h4 {
  color: var(--bs-primary);
}

.service-item:hover .service-content-inner a.btn-primary {
  background: var(--bs-white) !important;
  color: var(--bs-primary) !important;
}

.service-item .service-content-inner a.btn-primary:hover {
  background: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}
/*** Service End ***/

/*** Programs Start ***/
.program {
  background: linear-gradient(rgba(255, 72, 128, 0.1), rgba(255, 72, 128, 0.1));
}

.program .program-item .program-img .program-rate {
  position: absolute;
  width: 100px;
  top: -20px;
  left: 50%;
  margin-left: -50px;
  border-radius: 10% / 50%;
}

.program .program-item .program-text {
  padding-top: 150px;
  margin-top: -125px;
}

.program .program-item .program-img img,
.program .program-item .program-teacher img,
.program .program-item:hover .program-text-inner a.h4 {
  transition: 0.5s;
}

.program .program-item:hover .program-img img,
.program .program-item:hover .program-teacher img {
  transform: scale(1.2);
}

.program .program-item:hover .program-text-inner a.h4 {
  color: var(--bs-primary) !important;
}
/*** Programs End ***/

/*** Events Start ***/
.events .events-item {
  width: 100%;
  height: 100%;
  border-radius: 30%;
  position: relative;
}

.events .events-item .events-inner .events-rate {
  position: absolute;
  width: 120px;
  top: -20px;
  left: 50%;
  margin-left: -60px;
  border-radius: 10% / 50%;
}

.events .events-item .events-inner .events-img .event-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  z-index: 1;
  opacity: 0;
}

.events .events-item .events-inner .events-img:hover .event-overlay {
  opacity: 1;
}

.events .events-item .events-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  bottom: auto;
  background: rgba(77, 101, 249, 0.7);
  border-radius: 10px;
  transition: 0.5s;
}

.events .events-item:hover .events-img::after {
  height: 100%;
  opacity: 1;
}

.events .events-item .events-text a.h4,
.events .events-item .events-img img {
  transition: 0.5s;
}

.events .events-item:hover .events-text a.h4 {
  color: var(--bs-primary) !important;
}

.events .events-item:hover .events-img img {
  transform: scale(1.3);
}
/*** Events End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  bottom: auto;
  background: rgba(77, 101, 249, 0.7);
  border-radius: 10px 10px 0 0;
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
  height: 100%;
  opacity: 1;
}

.blog .blog-item .blog-date-comments {
  padding-top: 150px !important;
  margin-top: -125px;
}

.blog .blog-item .blog-img img,
.blog .blog-item .blog-content img,
.blog .blog-item .blog-text-inner a.h4 {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.3);
}

.blog .blog-item:hover .blog-content img {
  transform: scale(1.3);
}

.blog .blog-item:hover .blog-text-inner a.h4 {
  color: var(--bs-primary);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.team .team-item .team-icon {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
}

.team .team-item .team-icon a.share-link {
  opacity: 0;
  transition: 0.5s;
}

.team .team-item:hover .team-icon a.share-link {
  opacity: 1;
}

.team .team-item .team-content,
.team .team-item .team-content h4,
.team .team-item .team-content p {
  transition: 0.5s;
}

.team .team-item:hover .team-content {
  background: var(--bs-primary) !important;
  border-radius: 0 0 10px 10px;
}

.team .team-item:hover .team-content h4 {
  color: var(--bs-white) !important;
}

.team .team-item:hover .team-content p {
  color: var(--bs-dark) !important;
}
/*** Team end ***/

/*** testimonial Start ***/
.testimonial .testimonial-carousel {
  position: relative;
}

.testimonial .testimonial-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-primary);
  border-radius: 10px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--bs-secondary);
}
/*** testimonial End ***/

/* Instagram Section Styles */
.instagram-section {
  background: #202020;
  padding: 60px 0;
}

.instagram-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 42px;
  color: #ffffff;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.instagram-item {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}

.instagram-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(150, 72, 229, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay i {
  font-size: 48px;
  color: #ffffff;
}

@media (max-width: 991px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-heading {
    font-size: 32px;
  }
}

/* Footer Section Styles */
.footer-section {
  background: #1f1f1f;
  color: #ffffff;
  padding: 80px 0 30px;
}

.footer-logo {
  height: auto;
  max-width: 150px;
}

.footer-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon.facebook {
  background: #3b5998;
  color: #ffffff;
}

.social-icon.facebook:hover {
  background: #2d4373;
  transform: translateY(-3px);
}

.social-icon.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  color: #ffffff;
}

.social-icon.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(188, 24, 136, 0.4);
}

.social-icon.linkedin {
  background: #0077b5;
  color: #ffffff;
}

.social-icon.linkedin:hover {
  background: #005885;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-links li i {
  color: #ec5c9f;
  font-size: 12px;
}

.footer-links li a {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-contact {
  font-family: "Mulish", sans-serif;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: #9648e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.contact-icon i {
  color: #ffffff;
  font-size: 18px;
}

.contact-item p,
.contact-item a {
  font-size: 15px;
  color: #b0b0b0;
  text-decoration: none;
  margin: 0;
  line-height: 1.6;
}

.contact-item a:hover {
  color: #ffffff;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1) !important;
  margin: 40px 0 30px;
}

.footer-bottom p {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #b0b0b0;
}

.footer-bottom .text-warning {
  color: #ffca34 !important;
  font-weight: 600;
}

@media (max-width: 991px) {
  .footer-section {
    padding: 60px 0 30px;
  }

  .footer-heading {
    font-size: 20px;
    margin-top: 30px;
  }
}

/*** Footer Start ***/
.footer {
  background:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1)),
    url(../img/background.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer .footer-galary-img img {
  width: 100%;
  border-style: dotted;
  border-color: var(--bs-primary);
  transition: 0.5s;
}

.footer .footer-galary-img img:hover {
  transform: scale(1.2);
}

.footer-item a.text-body:hover {
  color: var(--bs-secondary) !important;
}
/*** Footer End ***/

/* ============================================
   About Page Styles
   ============================================ */

/* Page Header About */
.page-header-about {
  background: linear-gradient(135deg, #9648e5 0%, #ec5c9f 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header-about::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.page-header-about::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.page-header-title {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 56px;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.page-header-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.breadcrumb-custom {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.breadcrumb-item {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
}

.breadcrumb-item a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb-item a:hover {
  opacity: 0.8;
}

.breadcrumb-item.active {
  color: #ffca34;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  margin-right: 10px;
  color: #ffffff;
}

/* About Story Section */
.about-story-section {
  background: #ffffff;
  padding: 100px 0;
  position: relative;
}

.about-story-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 48px;
  color: #161616;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.about-story-text {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-story-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, #a2eafd 0%, #9648e5 100%);
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 42px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
}

.about-story-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-story-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.about-story-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-story-decoration-1 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ec5c9f 0%, #ff41be 100%);
  border-radius: 30px;
  z-index: 1;
  transform: rotate(15deg);
}

.about-story-decoration-2 {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #a2eafd 0%, #9648e5 100%);
  border-radius: 50%;
  z-index: 1;
}

/* Mission Vision Section */
.mission-vision-section {
  background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
  padding: 100px 0;
}

.mission-card,
.vision-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.mission-icon-wrapper,
.vision-icon-wrapper {
  margin-bottom: 2rem;
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ec5c9f 0%, #9648e5 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(150, 72, 229, 0.3);
}

.mission-title,
.vision-title {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 32px;
  color: #161616;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.mission-description,
.vision-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #202020;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mission-list,
.vision-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li,
.vision-list li {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #202020;
  line-height: 2.5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.list-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Values Section */
.values-section {
  background: linear-gradient(180deg, #9648e5 0%, #ec5c9f 100%);
  padding: 100px 0;
}

.values-heading {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 48px;
  color: #ffffff;
  line-height: 1.2;
}

.values-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  opacity: 0.95;
}

.value-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  background: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #9648e5 0%, #ec5c9f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(360deg);
}

.value-title {
  font-family: "Rowdies", cursive;
  font-weight: 700;
  font-size: 22px;
  color: #161616;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.value-description {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #202020;
  line-height: 1.6;
}

/* About Page Responsive Styles */
@media (max-width: 1200px) {
  .about-story-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .about-story-decoration-1 {
    width: 120px;
    height: 120px;
  }

  .about-story-decoration-2 {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 991px) {
  .page-header-about {
    padding: 100px 0 60px;
  }

  .page-header-title {
    font-size: 44px;
  }

  .page-header-description {
    font-size: 16px;
  }

  .about-story-section {
    padding: 80px 0;
  }

  .about-story-heading {
    font-size: 36px;
  }

  .about-story-text {
    font-size: 15px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 13px;
  }

  .about-story-image-wrapper {
    margin-top: 3rem;
  }

  .mission-vision-section {
    padding: 80px 0;
  }

  .mission-card,
  .vision-card {
    padding: 40px 30px;
    margin-bottom: 2rem;
  }

  .mission-title,
  .vision-title {
    font-size: 28px;
  }

  .values-section {
    padding: 80px 0;
  }

  .values-heading {
    font-size: 36px;
  }

  .values-description {
    font-size: 16px;
  }

  .value-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .page-header-about {
    padding: 80px 0 50px;
  }

  .page-header-title {
    font-size: 36px;
  }

  .page-header-description {
    font-size: 15px;
  }

  .about-story-section {
    padding: 60px 0;
  }

  .about-story-heading {
    font-size: 32px;
  }

  .about-story-stats {
    gap: 1rem;
  }

  .stat-item {
    padding: 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }

  .mission-vision-section {
    padding: 60px 0;
  }

  .mission-card,
  .vision-card {
    padding: 35px 25px;
  }

  .mission-icon,
  .vision-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .mission-title,
  .vision-title {
    font-size: 26px;
  }

  .mission-description,
  .vision-description {
    font-size: 15px;
  }

  .values-section {
    padding: 60px 0;
  }

  .values-heading {
    font-size: 32px;
  }

  .value-card {
    padding: 35px 25px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .value-title {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .page-header-about {
    padding: 60px 0 40px;
  }

  .page-header-title {
    font-size: 32px;
    margin-bottom: 1rem;
  }

  .page-header-description {
    font-size: 14px;
    margin-bottom: 1.5rem;
  }

  .breadcrumb-custom {
    font-size: 13px;
  }

  .about-story-section {
    padding: 40px 0;
  }

  .about-story-heading {
    font-size: 28px;
    margin-bottom: 1.5rem;
  }

  .about-story-text {
    font-size: 14px;
    margin-bottom: 1rem;
  }

  .about-story-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .stat-item {
    padding: 18px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 11px;
  }

  .about-story-frame {
    border-radius: 20px;
  }

  .about-story-decoration-1,
  .about-story-decoration-2 {
    display: none;
  }

  .mission-vision-section {
    padding: 40px 0;
  }

  .mission-card,
  .vision-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .mission-icon,
  .vision-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
    border-radius: 15px;
  }

  .mission-title,
  .vision-title {
    font-size: 24px;
    margin-bottom: 1rem;
  }

  .mission-description,
  .vision-description {
    font-size: 14px;
    margin-bottom: 1.5rem;
  }

  .mission-list li,
  .vision-list li {
    font-size: 13px;
    line-height: 2.2;
  }

  .list-icon {
    width: 16px;
    height: 16px;
  }

  .values-section {
    padding: 40px 0;
  }

  .values-heading {
    font-size: 28px;
    margin-bottom: 1rem;
  }

  .values-description {
    font-size: 14px;
    margin-bottom: 2rem;
  }

  .value-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .value-icon {
    width: 55px;
    height: 55px;
    font-size: 24px;
    margin-bottom: 1rem;
  }

  .value-title {
    font-size: 18px;
  }

  .value-description {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .page-header-title {
    font-size: 28px;
  }

  .page-header-description {
    font-size: 13px;
  }

  .about-story-heading {
    font-size: 24px;
  }

  .about-story-text {
    font-size: 13px;
  }

  .stat-number {
    font-size: 24px;
  }

  .mission-title,
  .vision-title {
    font-size: 22px;
  }

  .values-heading {
    font-size: 24px;
  }

  .value-title {
    font-size: 16px;
  }

  /* Contact Page Responsive */
  .contact-info-wrapper,
  .contact-form-wrapper {
    padding: 2rem;
  }

  .contact-info-heading,
  .contact-form-heading {
    font-size: 24px;
  }

  /* Blog Page Responsive */
  .newsletter-wrapper {
    padding: 2rem;
  }

  .newsletter-heading {
    font-size: 24px;
  }

  .blog-card-full .blog-image {
    height: 220px;
  }
}

/* ===============================================
   Testimonials Page Styles
   =============================================== */

.testimonials-listing-section {
  background-color: #ffffff;
  padding: 60px 0;
}

/* Testimonial Stats Cards */
.testimonial-stat-card {
  background: linear-gradient(135deg, #9648e5 0%, #ec5c9f 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(150, 72, 229, 0.3);
}

.testimonial-stat-card .stat-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #ffffff;
}

.testimonial-stat-card .stat-number {
  font-family: "Rowdies", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.testimonial-stat-card .stat-label {
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  font-weight: 500;
}

/* Testimonial Card Full */
.testimonial-card-full {
  background-color: #f8f9fa;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.testimonial-card-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(150, 72, 229, 0.2);
  border-color: #9648e5;
}

.testimonial-card-full .testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-card-full .testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9648e5 0%, #ec5c9f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.testimonial-card-full .testimonial-avatar span {
  font-family: "Rowdies", sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 700;
}

.testimonial-card-full .testimonial-info {
  flex-grow: 1;
}

.testimonial-card-full .testimonial-name {
  font-family: "Rowdies", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #202020;
  margin-bottom: 0.25rem;
}

.testimonial-card-full .testimonial-role {
  font-family: "Mulish", sans-serif;
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.testimonial-card-full .testimonial-stars {
  display: flex;
  gap: 0.25rem;
}

.testimonial-card-full .testimonial-stars i {
  color: #ffca34;
  font-size: 0.9rem;
}

.testimonial-card-full .testimonial-text {
  font-family: "Mulish", sans-serif;
  font-size: 0.95rem;
  color: #202020;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-card-full .testimonial-date {
  font-family: "Mulish", sans-serif;
  font-size: 0.85rem;
  color: #9648e5;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.testimonial-card-full .testimonial-date i {
  font-size: 0.85rem;
}

/* Write Review Section */
.write-review-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.write-review-wrapper {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.write-review-heading {
  font-family: "Rowdies", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #202020;
  margin-bottom: 1rem;
}

.write-review-description {
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
}

.review-benefits {
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-family: "Mulish", sans-serif;
  font-size: 0.95rem;
  color: #202020;
}

.benefit-item i {
  color: #9648e5;
  font-size: 1.2rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.review-form {
  background-color: #f8f9fa;
  border-radius: 20px;
  padding: 2rem;
}

.review-label {
  font-family: "Mulish", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #202020;
  margin-bottom: 0.75rem;
  display: block;
}

.review-input {
  font-family: "Mulish", sans-serif;
  font-size: 0.95rem;
  color: #202020;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 0.9rem 1.2rem;
  transition: all 0.3s ease;
}

.review-input:focus {
  border-color: #9648e5;
  box-shadow: 0 0 0 0.2rem rgba(150, 72, 229, 0.15);
}

.rating-input {
  display: flex;
  gap: 0.5rem;
  cursor: pointer;
}

.rating-input i {
  color: #e0e0e0;
  font-size: 1.8rem;
  transition: all 0.2s ease;
}

.rating-input i:hover,
.rating-input i.active {
  color: #ffca34;
  transform: scale(1.1);
}

.btn-submit-review {
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #9648e5 0%, #ec5c9f 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit-review:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(150, 72, 229, 0.4);
}

/* Responsive Styles for Testimonials Page */
@media (max-width: 991px) {
  .testimonial-stat-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-stat-card .stat-number {
    font-size: 2.5rem;
  }

  .write-review-wrapper {
    padding: 2.5rem;
  }

  .write-review-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonial-stat-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }

  .testimonial-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .testimonial-stat-card .stat-number {
    font-size: 2.2rem;
  }

  .testimonial-card-full {
    padding: 1.75rem;
  }

  .write-review-wrapper {
    padding: 2rem;
  }

  .write-review-heading {
    font-size: 1.75rem;
  }

  .review-form {
    padding: 1.75rem;
  }
}

@media (max-width: 575px) {
  .testimonial-stat-card .stat-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .testimonial-stat-card .stat-number {
    font-size: 2rem;
  }

  .testimonial-stat-card .stat-label {
    font-size: 0.9rem;
  }

  .testimonial-card-full {
    padding: 1.5rem;
  }

  .testimonial-card-full .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  .testimonial-card-full .testimonial-avatar span {
    font-size: 1.3rem;
  }

  .write-review-wrapper {
    padding: 1.5rem;
  }

  .write-review-heading {
    font-size: 1.5rem;
  }

  .write-review-description {
    font-size: 0.9rem;
  }

  .review-form {
    padding: 1.5rem;
  }

  .btn-submit-review {
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
  }
}

@media (max-width: 400px) {
  .testimonial-stat-card {
    padding: 1.75rem 1.25rem;
  }

  .testimonial-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .testimonial-stat-card .stat-number {
    font-size: 1.8rem;
  }

  .testimonial-card-full .testimonial-name {
    font-size: 1rem;
  }

  .testimonial-card-full .testimonial-role {
    font-size: 0.85rem;
  }

  .write-review-heading {
    font-size: 1.35rem;
  }
}

/* ===============================================
   Instructors Page Styles
   =============================================== */

.instructors-grid-section {
  background-color: #ffffff;
  padding: 60px 0;
}

/* Instructor Stats Cards */
.instructor-stat-card {
  background: linear-gradient(135deg, #9648e5 0%, #ec5c9f 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.instructor-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(150, 72, 229, 0.3);
}

.instructor-stat-card .stat-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #ffffff;
}

.instructor-stat-card .stat-number {
  font-family: "Rowdies", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.instructor-stat-card .stat-label {
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  font-weight: 500;
}

/* Instructor Card Detailed */
.instructor-card-detailed {
  background-color: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 5px dashed #161616;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}

.instructor-card-detailed:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.instructor-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  border-radius: 20px 20px 0 0;
}

.instructor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instructor-card-detailed:hover .instructor-image {
  transform: scale(1.05);
}

.instructor-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffca34;
  padding: 12px 25px;
  border-radius: 50px;
  display: flex;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.instructor-social {
  display: flex;
  gap: 15px;
}

.social-icon-detailed {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-detailed:hover {
  background-color: #9648e5;
  color: #ffffff;
  transform: translateY(-3px);
}

.instructor-details {
  padding: 1.75rem;
}

.instructor-name {
  font-family: "Rowdies", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #202020;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.instructor-role {
  font-family: "Mulish", sans-serif;
  font-size: 0.95rem;
  color: #9648e5;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.instructor-info-items {
  margin-bottom: 1.25rem;
}

.instructor-info-items .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-family: "Mulish", sans-serif;
  font-size: 0.85rem;
  color: #6c757d;
}

.instructor-info-items .info-item i {
  color: #ec5c9f;
  font-size: 1rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
  width: 20px;
}

.instructor-bio {
  font-family: "Mulish", sans-serif;
  font-size: 0.9rem;
  color: #202020;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Why Choose Our Instructors Section */
.why-instructors-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.section-heading {
  font-family: "Rowdies", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #202020;
}

.section-description {
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.feature-card-instructor {
  background: linear-gradient(
    135deg,
    rgba(236, 92, 159, 0.3) 0%,
    rgba(150, 72, 229, 0.3) 100%
  );
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-card-instructor:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.feature-icon-instructor {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9648e5 0%, #ec5c9f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #ffffff;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-card-instructor:hover .feature-icon-instructor {
  transform: scale(1.1);
}

.feature-title-instructor {
  font-family: "Rowdies", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #202020;
  margin-bottom: 1rem;
}

.feature-description-instructor {
  font-family: "Mulish", sans-serif;
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Join Our Team Section */
.join-team-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.join-team-wrapper {
  background: linear-gradient(135deg, #9648e5 0%, #ec5c9f 100%);
  border-radius: 30px;
  padding: 4rem 3rem;
}

.join-team-heading {
  font-family: "Rowdies", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.join-team-description {
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
}

.join-team-benefits {
  margin-top: 1.5rem;
}

.benefit-item-join {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-family: "Mulish", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
}

.benefit-item-join i {
  color: #ffca34;
  font-size: 1.2rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.join-team-form-wrapper {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
}

.join-team-form {
  margin: 0;
}

.join-input {
  font-family: "Mulish", sans-serif;
  font-size: 0.95rem;
  color: #202020;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  padding: 0.9rem 1.2rem;
  transition: all 0.3s ease;
}

.join-input:focus {
  border-color: #9648e5;
  box-shadow: 0 0 0 0.2rem rgba(150, 72, 229, 0.15);
}

.btn-join-submit {
  font-family: "Mulish", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #9648e5 0%, #ec5c9f 100%);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-join-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(150, 72, 229, 0.4);
}

/* Responsive Styles for Instructors Page */
@media (max-width: 991px) {
  .instructor-stat-card {
    padding: 2rem 1.5rem;
  }

  .instructor-stat-card .stat-number {
    font-size: 2.5rem;
  }

  .instructor-image-wrapper {
    height: 260px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .join-team-wrapper {
    padding: 3rem 2.5rem;
  }

  .join-team-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .instructor-stat-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
  }

  .instructor-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .instructor-stat-card .stat-number {
    font-size: 2.2rem;
  }

  .instructor-image-wrapper {
    height: 300px;
  }

  .instructor-details {
    padding: 1.5rem;
  }

  .feature-card-instructor {
    padding: 2rem 1.5rem;
  }

  .feature-icon-instructor {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }

  .join-team-wrapper {
    padding: 2.5rem 2rem;
  }

  .join-team-heading {
    font-size: 1.75rem;
  }

  .join-team-form-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 575px) {
  .instructor-stat-card .stat-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .instructor-stat-card .stat-number {
    font-size: 2rem;
  }

  .instructor-stat-card .stat-label {
    font-size: 0.9rem;
  }

  .instructor-image-wrapper {
    height: 280px;
  }

  .instructor-name {
    font-size: 1.05rem;
  }

  .instructor-role {
    font-size: 0.9rem;
  }

  .instructor-info-items .info-item {
    font-size: 0.8rem;
  }

  .instructor-bio {
    font-size: 0.85rem;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 0.9rem;
  }

  .feature-card-instructor {
    padding: 2rem 1.5rem;
  }

  .feature-icon-instructor {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
  }

  .feature-title-instructor {
    font-size: 1.1rem;
  }

  .feature-description-instructor {
    font-size: 0.9rem;
  }

  .join-team-wrapper {
    padding: 2rem 1.5rem;
  }

  .join-team-heading {
    font-size: 1.5rem;
  }

  .join-team-description {
    font-size: 0.9rem;
  }

  .join-team-form-wrapper {
    padding: 1.75rem;
  }

  .btn-join-submit {
    font-size: 0.95rem;
    padding: 0.9rem 2rem;
  }
}

@media (max-width: 400px) {
  .instructor-stat-card {
    padding: 1.75rem 1.25rem;
  }

  .instructor-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .instructor-stat-card .stat-number {
    font-size: 1.8rem;
  }

  .instructor-image-wrapper {
    height: 250px;
  }

  .instructor-details {
    padding: 1.25rem;
  }

  .instructor-name {
    font-size: 1rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .feature-icon-instructor {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .join-team-heading {
    font-size: 1.35rem;
  }
}

/* Additional Responsive Fixes */
@media (max-width: 768px) {
  .topbar-custom .row > div {
    text-align: center;
    margin-bottom: 10px;
  }

  .topbar-left,
  .topbar-right {
    justify-content: center !important;
    width: 100%;
  }

  .topbar-right {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-heading {
    font-size: 36px;
    text-align: center;
  }

  .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-search-wrapper {
    margin: 0 auto;
  }

  .hero-image-wrapper {
    justify-content: center;
    align-items: center;
    min-height: auto;
    margin-top: 40px;
  }

  .hero-girl {
    position: relative;
    max-width: 80%;
  }

  .hero-abstract {
    width: 100%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 575px) {
  .topbar-address {
    font-size: 12px;
  }

  .topbar-contact {
    font-size: 12px;
  }

  .hero-heading {
    font-size: 28px;
  }

  .about-circle-frame {
    width: 280px;
    height: 280px;
  }
}
