/* About Us Page Styles */

/* Hero Section Styles */
.about-hero-section {
  background-color: #f8f9fa;
  padding: 120px 0 100px;
  position: relative;
  text-align: center;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.85)
    ),
    url("../image/yoga_2.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

  .mobile_div{
    display: none;
  }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  border-radius: 10px;
}

.about-hero-title {
  color: #fa6e32;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  animation: fadeInDown 1s ease-out;
}

.hero-divider {
  width: 80px;
  height: 4px;
  background-color: #fa6e32;
  margin: 0 auto 25px;
  position: relative;
  animation: fadeInUp 1s ease-out;
}

.hero-divider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 4px;
  background-color: #fa6e32;
  left: -30px;
  top: 0;
}

.hero-divider::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 4px;
  background-color: #fa6e32;
  right: -30px;
  top: 0;
}

.about-hero-subtitle {
  font-size: 1.3rem;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out;
}

.hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,208C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Company Section Styles */
.about-company-section {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.section-subtitle {
  color: #fa6e32;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  color: #333;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2.8rem;
  position: relative;
}

.section-divider {
  width: 80px;
  height: 3px;
  background-color: #fa6e32;
  margin-bottom: 30px;
  position: relative;
}

.about-text {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlight {
  padding: 20px 25px;
  border-left: 4px solid #fa6e32;
  background-color: rgba(250, 110, 50, 0.05);
  margin: 30px 0;
  position: relative;
}

.about-highlight i {
  color: #fa6e32;
  font-size: 1.5rem;
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 10px;
}

.about-highlight p {
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  margin: 0;
  padding-left: 20px;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background-color: rgba(250, 110, 50, 0.05);
}

.stat-item h3 {
  color: #fa6e32;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-item p {
  color: #555;
  font-size: 1rem;
  margin: 0;
}

.about-image-container {
  position: relative;
  padding: 20px;
}

.about-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
}

.about-image {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #fa6e32;
  color: white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(250, 110, 50, 0.3);
}

.experience-badge span {
  font-size: 0.9rem;
}

.experience-badge strong {
  font-size: 1.8rem;
  line-height: 1;
}

.image-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(250, 110, 50, 0.3);
  border-radius: 10px;
  transform: translate(15px, 15px);
  z-index: 1;
}

/* Team Section Styles */
.team-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(250, 110, 50, 0.08) 0%,
    rgba(250, 110, 50, 0.02) 40%,
    rgba(250, 110, 50, 0) 70%
  );
  border-radius: 50%;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.team-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(250, 110, 50, 0.08) 0%,
    rgba(250, 110, 50, 0.02) 40%,
    rgba(250, 110, 50, 0) 70%
  );
  border-radius: 50%;
  z-index: 1;
  animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.team-intro {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.9;
  margin-bottom: 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.team-intro::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: rgba(250, 110, 50, 0.2);
  font-family: serif;
}

.team-intro::after {
  content: '"';
  position: absolute;
  bottom: -40px;
  right: 50%;
  transform: translateX(50%);
  font-size: 3rem;
  color: rgba(250, 110, 50, 0.2);
  font-family: serif;
}

/* Team Profile Card Styles */
.team-profile-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(250, 110, 50, 0.1);
}

.team-profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fa6e32, #ff8a50, #fa6e32);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 200% 0;
  }
  50% {
    background-position: 0% 0;
  }
}

.team-profile-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(250, 110, 50, 0.15),
    0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(250, 110, 50, 0.2);
}

.team-profile-card:hover::before {
  animation-duration: 1.5s;
}

.profile-header {
  height: 45px;
  position: relative;
  background: white;
}

.profile-role-badge {
  position: absolute;
  top: 12px;
  right: 20px;
  background: linear-gradient(135deg, #fa6e32 0%, #ff8a50 100%);
  color: white;
  padding: 4px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(250, 110, 50, 0.3);
  z-index: 2;
  transition: all 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(250, 110, 50, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(250, 110, 50, 0.4);
  }
}

.team-profile-card:hover .profile-role-badge {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(250, 110, 50, 0.5);
}

.profile-image-container {
  position: relative;
  margin: 25px auto;
  text-align: center;
}

.profile-image {
  width: 100%;
  max-width: 200px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #fa6e32, #ff8a50) border-box;
}

.team-profile-card:hover .profile-image {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 15px 35px rgba(250, 110, 50, 0.2);
}

.image-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15px;
  left: 15px;
  border: 2px dashed rgba(250, 110, 50, 0.4);
  border-radius: 15px;
  z-index: 1;
  transition: all 0.4s ease;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.team-profile-card:hover .image-decoration {
  transform: scale(1.1);
  border-color: rgba(250, 110, 50, 0.6);
}

.profile-content {
  padding: 25px;
}

.profile-name {
  color: #333;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1.9rem;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.profile-name::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #fa6e32, #ff8a50);
  transition: width 0.4s ease;
}

.team-profile-card:hover .profile-name::after {
  width: 100%;
}

.profile-position {
  color: #fa6e32;
  font-weight: 600;
  margin-bottom: 0px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.profile-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fa6e32, #ff8a50);
  margin-bottom: 20px;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.team-profile-card:hover .profile-divider {
  width: 80px;
  box-shadow: 0 2px 10px rgba(250, 110, 50, 0.3);
}

.profile-details {
  margin-bottom: 20px;
  background: linear-gradient(
    135deg,
    rgba(250, 110, 50, 0.05) 0%,
    rgba(250, 110, 50, 0.02) 100%
  );
  padding: 15px 20px;
  border-radius: 12px;
  border-left: 4px solid #fa6e32;
  transition: all 0.3s ease;
}

.team-profile-card:hover .profile-details {
  background: linear-gradient(
    135deg,
    rgba(250, 110, 50, 0.08) 0%,
    rgba(250, 110, 50, 0.03) 100%
  );
  border-left-width: 6px;
  transform: translateX(5px);
}

.profile-specialty,
.profile-experience {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 1rem;
}

.specialty-label,
.experience-label {
  color: #fa6e32;
  font-weight: 600;
  margin-right: 12px;
  display: flex;
  align-items: center;
  min-width: 120px;
}

.specialty-label i,
.experience-label i {
  margin-right: 8px;
  font-size: 1rem;
  background: linear-gradient(135deg, #fa6e32, #ff8a50);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.specialty-value,
.experience-value {
  color: #555;
  font-weight: 500;
  background: linear-gradient(135deg, #555 0%, #777 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Enhanced Profile Qualifications Section */
.profile-qualifications {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(250, 110, 50, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.profile-qualifications::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fa6e32, #ff8a50, #fa6e32);
  z-index: 1;
}

.profile-qualifications::after {
  content: "🎓 Qualifications & Certifications";
  position: absolute;
  top: -5px;
  left: 20px;
  background: linear-gradient(135deg, #fa6e32, #ff8a50);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(250, 110, 50, 0.3);
  z-index: 2;
}

.profile-qualifications li {
  margin-bottom: 15px;
  padding: 12px 0;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding-left: 15px;
}

.profile-qualifications li:hover {
  background: rgba(250, 110, 50, 0.05);
  transform: translateX(5px);
  padding-left: 20px;
  box-shadow: 0 3px 10px rgba(250, 110, 50, 0.1);
}

.profile-qualifications li::before {
  content: "✓";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #fa6e32, #ff8a50);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(250, 110, 50, 0.3);
}

.profile-qualifications li:hover::before {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(250, 110, 50, 0.4);
}

.profile-qualifications li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(250, 110, 50, 0.2),
    transparent
  );
}

/* Highlight key certifications */
.profile-qualifications li:nth-child(1),
.profile-qualifications li:nth-child(2) {
  font-weight: 600;
  color: #333;
}

.profile-qualifications li:nth-child(1)::before,
.profile-qualifications li:nth-child(2)::before {
  content: "🏆";
  background: linear-gradient(135deg, #ffd700, #ffaa00);
}

/* Animation for better visual engagement */
@keyframes qualificationFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-qualifications li {
  animation: qualificationFadeIn 0.6s ease-out;
  animation-fill-mode: both;
}

.profile-qualifications li:nth-child(1) {
  animation-delay: 0.1s;
}
.profile-qualifications li:nth-child(2) {
  animation-delay: 0.2s;
}
.profile-qualifications li:nth-child(3) {
  animation-delay: 0.3s;
}
.profile-qualifications li:nth-child(4) {
  animation-delay: 0.4s;
}
.profile-qualifications li:nth-child(5) {
  animation-delay: 0.5s;
}
.profile-qualifications li:nth-child(6) {
  animation-delay: 0.6s;
}
.profile-qualifications li:nth-child(7) {
  animation-delay: 0.7s;
}

.profile-bio {
  padding: 10px;
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.profile-social {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  color: #fa6e32;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fa6e32, #ff8a50);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.social-link i {
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link:hover {
  color: #fff;
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 25px rgba(250, 110, 50, 0.3);
}

/* Team hierarchy styling */
.team-main {
  border-bottom: 5px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #fa6e32, #ff8a50, #fa6e32) border-box;
  margin-bottom: 40px;
}

.team-main .profile-name {
  font-size: 2.4rem;
}

.team-main .profile-position {
  font-size: 1.4rem;
}

.team-main .profile-divider {
  width: 80px;
  height: 4px;
}

.team-main .profile-image {
  max-width: 320px;
}

.team-teacher {
  border-bottom: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(90deg, #fa6e32, #ff8a50) border-box;
}

.team-teacher .profile-name {
  font-size: 2rem;
}

.team-teacher .profile-position {
  font-size: 1.25rem;
}

.team-teacher .profile-image {
  max-width: 200px;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .team-main .profile-name {
    font-size: 1.8rem;
  }

  .team-main .profile-position {
    font-size: 1.1rem;
  }

  .profile-image {
    max-width: 150px;
  }

  /* Tablet responsive styles for profile qualifications */
  .profile-qualifications {
    padding: 22px 18px;
  }

  .profile-qualifications::after {
    font-size: 0.8rem;
    padding: 7px 18px;
  }

  .profile-qualifications li {
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .profile-image-container {
    margin: 10px auto;
  }

  .profile-name {
    font-size: 1.5rem;
  }

  .profile-position {
    font-size: 1rem;
  }

  .team-main .profile-name {
    font-size: 1.7rem;
  }

  .team-main .profile-position {
    font-size: 1.1rem;
  }

  .profile-bio {
    font-size: 0.9rem;
  }

  .profile-image {
    max-width: 120px;
  }

  /* Mobile responsive styles for profile qualifications */
  .profile-qualifications {
    padding: 20px 15px;
    margin: 15px 0 25px 0;
  }

  .profile-qualifications::after {
    font-size: 0.75rem;
    padding: 6px 15px;
    left: 15px;
    top: -3px;
  }

  .profile-qualifications li {
    font-size: 0.85rem;
    margin-bottom: 12px;
    padding: 10px 0;
    padding-left: 12px;
  }

  .profile-qualifications li:hover {
    padding-left: 16px;
  }

  .profile-qualifications li::before {
    width: 20px;
    height: 20px;
    font-size: 10px;
    left: -12px;
  }

  .profile-qualifications li:not(:last-child)::after {
    left: 10px;
    right: 10px;
  }
}

.member-badge {
  position: absolute;
  top: 0;
  right: 20px;
  background-color: #fa6e32;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(250, 110, 50, 0.2);
  z-index: 2;
}

.member-image-container {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 3px solid #fa6e32;
  transition: all 0.3s ease;
  position: relative;
}

.member-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(
    to bottom,
    rgba(250, 110, 50, 0),
    rgba(250, 110, 50, 0.2)
  );
}

.team-member:hover .member-image-container {
  border-color: #fa6e32;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(250, 110, 50, 0.15);
}

/* Adjust image sizes based on hierarchy */
.team-main .member-image-container {
  width: 220px;
  height: 220px;
}

.team-teacher .member-image-container {
  width: 180px;
  height: 180px;
}

.team-assistant .member-image-container {
  width: 150px;
  height: 150px;
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image {
  transform: scale(1.1);
}

.member-name {
  color: #333;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 5px;
}

/* Font size hierarchy */
.team-main .member-name {
  font-size: 2.2rem;
}

.team-teacher .member-name {
  font-size: 1.8rem;
}

.team-assistant .member-name {
  font-size: 1.5rem;
}

.member-position {
  color: #fa6e32;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
  position: relative;
  display: inline-block;
}

.member-position::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fa6e32;
  transition: width 0.3s ease;
}

.team-member:hover .member-position::after {
  width: 100%;
}

.team-main .member-position {
  font-size: 1.3rem;
}

.member-bio {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.member-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #fa6e32;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.member-social a:hover {
  background-color: #fa6e32;
  color: #fff;
  transform: translateY(-5px);
}

/* Yoga Classes Section Styles */
.yoga-classes-section {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}

.classes-intro {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.classes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.class-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.featured-card {
  border: 1px solid rgba(250, 110, 50, 0.1);
  box-shadow: 0 15px 40px rgba(250, 110, 50, 0.1);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #fa6e32;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(250, 110, 50, 0.2);
}

.class-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(250, 110, 50, 0.03);
  transition: height 0.5s ease;
  z-index: -1;
}

.class-card:hover::before {
  height: 100%;
}

.class-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(250, 110, 50, 0.1);
}

.class-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}

.class-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(250, 110, 50, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.class-icon::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px dashed rgba(250, 110, 50, 0.2);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.class-icon i {
  font-size: 35px;
  color: #fa6e32;
}

.class-card:hover .class-icon {
  background-color: #fa6e32;
}

.class-card:hover .class-icon i {
  color: white;
}

.class-title {
  color: #333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.class-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #fa6e32;
  transition: width 0.3s ease;
}

.class-card:hover .class-title::after {
  width: 80px;
}

.class-description {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
}

.class-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.class-features li {
  margin-bottom: 12px;
  color: #555;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.class-features li i {
  color: #fa6e32;
  margin-right: 10px;
  font-size: 14px;
}

.cta-button {
  display: inline-block;
  background-color: #fa6e32;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #fa6e32;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(250, 110, 50, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: white;
  transition: all 0.3s ease;
  z-index: -1;
}

.cta-button:hover {
  color: #fa6e32;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(250, 110, 50, 0.3);
}

.cta-button:hover::before {
  width: 100%;
}

.cta-button i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .about-hero-title {
    font-size: 3.2rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .team-main .member-name {
    font-size: 2rem;
  }

  .team-teacher .member-name {
    font-size: 1.7rem;
  }

  .team-assistant .member-name {
    font-size: 1.5rem;
  }

  .about-stats {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .about-hero-section {
    padding: 80px 0 70px;
  }

  .about-hero-title {
    font-size: 2.8rem;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .team-main {
    margin-bottom: 30px;
  }

  .team-member {
    padding: 30px 20px;
  }

  .team-main .member-image-container {
    width: 180px;
    height: 180px;
  }

  .team-teacher .member-image-container,
  .team-assistant .member-image-container {
    width: 140px;
    height: 140px;
  }

  .class-card {
    margin-bottom: 30px;
  }

  .about-stats {
    flex-direction: column;
  }

  .stat-item {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .experience-badge {
    width: 80px;
    height: 80px;
    font-size: 0.8rem;
  }

  .experience-badge strong {
    font-size: 1.5rem;
  }
}

/* Team Section Styles */
.team-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.team-intro {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.team-member {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(250, 110, 50, 0.1);
}

/* Team hierarchy styling */
.team-main {
  max-width: auto;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid #fa6e32;
}

.team-teacher {
  background-color: #fff;
  border-top: 2px solid #fa6e32;
}

.team-assistant {
  background-color: #fff;
  border-top: 1px solid #fa6e32;
}

.member-image-container {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid #fa6e32;
}

/* Adjust image sizes based on hierarchy */
.team-main .member-image-container {
  width: 220px;
  height: 220px;
}

.team-teacher .member-image-container {
  width: 180px;
  height: 180px;
}

.team-assistant .member-image-container {
  width: 150px;
  height: 150px;
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-name {
  color: #333;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 5px;
}

/* Font size hierarchy */
.team-main .member-name {
  font-size: 2.2rem;
}

.team-teacher .member-name {
  font-size: 1.8rem;
}

.team-assistant .member-name {
  font-size: 1.5rem;
}

.member-position {
  color: #fa6e32;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.team-main .member-position {
  font-size: 1.3rem;
}

.member-bio {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.member-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #fa6e32;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background-color: #fa6e32;
  color: #fff;
}

/* Yoga Classes Section Styles */
.yoga-classes-section {
  padding: 80px 0;
  background-color: #fff;
}

.classes-intro {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.classes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.class-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

.class-card:hover {
  transform: translateY(-10px);
}

.class-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(250, 110, 50, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.class-icon i {
  font-size: 30px;
  color: #fa6e32;
}

.class-title {
  color: #333;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.class-description {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

.class-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.class-features li {
  margin-bottom: 10px;
  color: #555;
  font-size: 0.95rem;
}

.class-features li i {
  color: #fa6e32;
  margin-right: 10px;
}

.cta-button {
  display: inline-block;
  background-color: #fa6e32;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #fa6e32;
  font-size: 1.1rem;
}

.cta-button:hover {
  background-color: #fff;
  color: #fa6e32;
  transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .about-hero-title {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .team-main .member-name {
    font-size: 1.9rem;
  }

  .team-teacher .member-name {
    font-size: 1.6rem;
  }

  .team-assistant .member-name {
    font-size: 1.4rem;
  }
}

@media (max-width: 767.98px) {
  .about-hero-title {
    font-size: 2.5rem;
  }

  .laptop_div {
    display: none;
  }

  .mobile_div{
    display: block;
    padding: 10px;
  }
  
  .about-hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .team-main {
    margin-bottom: 30px;
  }

  .team-member {
    padding: 20px;
  }

  .team-main .member-image-container {
    width: 180px;
    height: 180px;
  }

  .team-teacher .member-image-container,
  .team-assistant .member-image-container {
    width: 140px;
    height: 140px;
  }

  .class-card {
    margin-bottom: 20px;
  }
}
