/* Kian Kashfi Children's Club Website */
/* Author: Based on Figma design */

:root {
  /* Color Palette */
  --primary-dark-purple: #3B0B3D;
  --primary-purple: #7209b7;
  --primary-yellow: #fbbf24;
  --accent-pink: #FF78A6;
  --accent-red: #B83360;
  --light-purple: #e9d5ff;
  --gray: #e5e5e5;
  --white: #ffffff;
  --black: #1e1e1e;

  /* Typography */
  --font-family: 'Doran', 'Yekan Bakh', 'Inter', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;

  /* Spacing */
  --container-padding: 0 20px;
  --section-padding: 80px 0;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--black);
  background-color: var(--white);
  margin: 0;
  padding: 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Header/Navigation */
.header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 40px;
}

.btn-login {
  background: var(--primary-dark-purple);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-brand {
  font-weight: 900;
  font-size: 25px;
  color: var(--primary-dark-purple);
  text-decoration: none;
}

.nav-link {
  color: var(--primary-dark-purple);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-purple);
}

.nav-link.dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Hero Section */
.hero {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
  overflow: hidden;
}



.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-dark-purple);
  margin-bottom: 20px;
  line-height: 1.2;
  padding-right: 10px;
}

.hero-subtitle {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-dark-purple);
  padding-right: 10px;

}

.hero-image {
  display: flex;
  justify-content: center;
}

.image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  object-fit: cover;
}

.orbit-lines {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--primary-purple);
  border-radius: 50%;
  opacity: 0.3;
}

.orbit-lines::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid var(--primary-purple);
  border-radius: 50%;
  opacity: 0.5;
}

/* Section Titles */
.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-dark-purple);
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--primary-dark-purple);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
}



/* Section Dots - Between Hero and Services */
.section-dots {
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  width: 20%;
  height: 18%;
  background-image: 
    radial-gradient(circle, var(--light-purple) 4px, transparent 2px);
  background-size: 25px 25px;
  background-position: 0 0, 10px 10px;
  z-index: 1;
  pointer-events: none;
}

/* Section Dots - Between Hero and Services */
.section-dots-2 {
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  width: 20%;
  height: 36%;
  background-image: 
    radial-gradient(circle, var(--light-purple) 4px, transparent 2px);
  background-size: 25px 25px;
  background-position: 0 0, 10px 10px;
  z-index: 1;
  pointer-events: none;
}

 /* Decorative Circles */
 .circle-decoration {
  position: absolute;
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 1;
}

.circle-decoration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 1px solid #cccccc;
  border-radius: 50%;
  opacity: 0.5;
}

.circle-decoration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border: 1px solid #cccccc;
  border-radius: 50%;
  box-shadow: 
    inset 0 0 0 0 transparent,
    inset 0 0 0 0 transparent,
    inset 0 0 0 0 transparent;
opacity: 0.5;
}

.circle-decoration .inner-circle-1,
.circle-decoration .inner-circle-2,
.circle-decoration .inner-circle-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #cccccc;
  border-radius: 50%;
  opacity: 0.5;
}

.circle-decoration .inner-circle-1 {
  width: 60%;
  height: 60%;
}

.circle-decoration .inner-circle-2 {
  width: 40%;
  height: 40%;
}

.circle-decoration .inner-circle-3 {
  width: 20%;
  height: 20%;
}

.circle-decoration-left {
  left: -230px;
  top: 50%;
  transform: translateY(-30%);
}

.circle-decoration-right {
  right: -200px;
  top: 30%;
  transform: translateY(-50%);
}

.circle-decoration-center {
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  opacity: 0.5;
}

/* Services Section */
.services {
  background: var(--white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 220x;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  padding: 15px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-dark-purple);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--primary-dark-purple);
  font-weight: 500;
  line-height: 1.6;
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  z-index: 2;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  background: var(--primary-dark-purple);
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--primary-dark-purple);
  margin-bottom: 30px;
  text-align: justify;
}

/* Classes Section */
.classes {
  background: var(--white);
}

.classes-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.classes-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  z-index: 2;
}

.class-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-width: 350px;
  transition: transform 0.3s ease;
}

.class-card:hover {
  transform: translateY(-5px);
}

.class-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.class-card h3 {
  padding: 20px 20px 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark-purple);
  text-align: center;
}

.class-details {
  padding: 0 20px 20px;
}

.class-details p {
  margin-bottom: 8px;
  color: var(--primary-dark-purple);
  font-weight: 500;
  text-align: center;
}

.class-details strong {
  color: var(--primary-purple);
}

.class-card .btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

/* Slider Arrows */
.slider-arrow {
  background: var(--primary-purple);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.slider-arrow:hover {
  background: var(--primary-dark-purple);
}

/* Testimonials Section */
.testimonials {
  padding: var(--section-padding);
  background: var(--white);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}

.testimonials-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  width: 100%;
  max-width: 100%;
  justify-content: flex-start;
  margin: 0 auto;
  scrollbar-width: thin;
  scrollbar-color: var(--light-purple) transparent;
  box-sizing: border-box;
}

.testimonials-container::-webkit-scrollbar {
  height: 8px;
}

.testimonials-container::-webkit-scrollbar-track {
  background: transparent;
}

.testimonials-container::-webkit-scrollbar-thumb {
  background: var(--light-purple);
  border-radius: 4px;
}

.testimonials-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary-purple);
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 400px;
  min-height: 280px;
  padding: 30px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  flex-grow: 1;
  margin-bottom: 20px;
}

.testimonial-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
  text-align: right;
  direction: rtl;
  font-family: var(--font-family);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  direction: rtl;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--primary-purple);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex-grow: 1;
  text-align: right;
}

.testimonial-info h4 {
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark-purple);
  font-family: var(--font-family);
}

.testimonial-info span {
  font-size: 14px;
  color: var(--primary-purple);
  font-family: var(--font-family);
}

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

.news-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.news-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 300px;
  min-height: 500px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.news-image {
  width: 100%;
  height: 200px;
  background: var(--gray);
}

.news-content {
  padding: 20px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-tag {
  background: var(--accent-pink);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.news-content h3 {
  margin: 15px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark-purple);
  flex-grow: 1;
}

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.read-more {
  color: var(--primary-purple);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family);
}

.read-more:hover {
  color: var(--primary-dark-purple);
}

.news-share-icon {
  color: var(--primary-purple);
  cursor: pointer;
  font-size: 16px;
}

.news-share-icon:hover {
  color: var(--primary-dark-purple);
}

/* Footer */
.footer {
  background: var(--white);
  color: var(--white);
  position: relative;
  margin-top: auto;
}

.footer-gradient-box {
  background: linear-gradient(180deg, var(--accent-pink) 0%, var(--primary-dark-purple) 100%);
  position: relative;
  overflow: visible;
  padding: 20px 40px 0px 40px;
}



.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0); /* Makes icons black */
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: #FF4D89;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  border: 2px solid var(--white);
  color: #1e1e1e;
}

.social-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0); /* Makes icons black */
}

.social-icon:hover {
  transform: scale(1.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-textarea {
  padding: 10px;
  border: 2px solid var(--white);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-family);
  background: transparent;
  color: var(--white);
  margin-bottom: 8px;
  text-align: right;
  direction: rtl;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--white);
  opacity: 0.8;
}

.form-textarea {
  height: 80px;
  resize: vertical;
}

.footer-image {
  position: relative;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: visible;
}

.footer-image::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ff14b2cf 0%, #AA9EA7 100%);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 2;
}

.footer-image img {
  width: 100%;
  object-fit: contain;
  border-radius: 16px;
  position: relative;
  z-index: 4;
  height: 400px;
  margin-top: -80px;
  overflow: visible;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: var(--font-family);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #FF4D89;
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark-purple);
}

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

.btn-outline:hover {
  background: var(--primary-purple);
  color: var(--white);
}

/* Icons (Placeholder - you'll need to add actual icon fonts) */
.icon-user::before { content: "👤"; }
.icon-arrow-down::before { content: "v"; }
.icon-arrow-left::before { content: "<"; }
.icon-arrow-right::before { content: ">"; }
.icon-karate::before { content: "🥋"; }
.icon-pregnancy::before { content: "🤰"; }
.icon-fitness::before { content: "💪"; }
.icon-home::before { content: "🏠"; }
.icon-corrective::before { content: "🧘"; }
.icon-assessment::before { content: "📋"; }
.icon-phone::before { content: "📞"; }
.icon-email::before { content: "📧"; }
.icon-location::before { content: "📍"; }
.icon-whatsapp::before { content: "📱"; }
.icon-twitter::before { content: "🐦"; }
.icon-facebook::before { content: "📘"; }
.icon-instagram::before { content: "📷"; }
.icon-share::before { content: "↗"; }

/* Login Modal Styles */
.login-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  direction: rtl;
}

.login-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.login-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray);
}

.login-modal-header h3 {
  margin: 0;
  color: var(--primary-dark-purple);
  font-size: 24px;
  font-weight: 700;
}

.login-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--primary-dark-purple);
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.login-modal-close:hover {
  background-color: var(--gray);
}

.login-step {
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
  text-align: right;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark-purple);
  font-weight: 600;
  font-size: 16px;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--gray);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  text-align: center;
  color: var(--black);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-purple);
}

.verification-info {
  background: var(--light-purple);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  text-align: center;
}

.verification-info p {
  margin: 0;
  color: var(--primary-dark-purple);
  font-size: 14px;
}

.verification-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
}

.verification-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid var(--gray);
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.verification-input:focus {
  outline: none;
  border-color: var(--primary-purple);
}

.verification-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.verification-actions .btn {
  min-width: 120px;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-dark-purple);
  cursor: pointer;
  padding: 5px;
}

.mobile-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-header-right {
  display: flex;
  align-items: center;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  pointer-events: none;
}

.mobile-menu.active {
  display: block;
  pointer-events: auto;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: var(--white);
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  direction: rtl;
  pointer-events: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-dark-purple);
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-links li {
  margin-bottom: 20px;
}

.mobile-nav-links a {
  display: block;
  color: var(--primary-dark-purple);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links a:hover {
  color: var(--primary-purple);
}

.mobile-login-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Typography */
  :root {
    --section-padding: 40px 0;
    --container-padding: 0 15px;
  }
  
  /* Header Mobile */
  .header {
    padding: 15px 0;
  }
  
  .header .container {
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
  }
  
  .nav-right {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 8px;
    padding: 8px 12px;
    margin-left: 10px;
  }
  
  .nav-brand {
    font-size: 18px;
  }
  
  /* Mobile header containers remain the same */
  .mobile-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .mobile-header-right {
    display: flex;
    align-items: center;
  }
  
  .btn-login {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  /* Hero Mobile */
  .hero {
    padding: 40px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    display: flex;
    flex-direction: column;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-title, .hero-subtitle {
    font-size: 28px;
    margin-bottom: 15px;
    padding-right: 0;
  }
  
  .image-frame {
    max-width: 300px;
    margin: 0 auto;
  }
  
  /* Services Mobile - 2 columns per row */
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .service-card {
    padding: 20px 15px;
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }
  
  .service-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .service-card p {
    font-size: 12px;
    line-height: 1.4;
  }
  
  /* About Mobile */
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-image img {
    height: 250px;
  }
  
  .about-text p {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
  }
  
  /* Classes Mobile */
  .class-card {
    min-width: 280px;
  }
  
  .class-card img {
    height: 150px;
  }
  
  .class-card h3 {
    font-size: 18px;
    padding: 15px 15px 8px;
  }
  
  .class-details {
    padding: 0 15px 15px;
  }
  
  .class-details p {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .class-card .btn {
    margin: 0 15px 15px;
    width: calc(100% - 30px);
    padding: 10px;
    font-size: 14px;
  }
  
  /* Testimonials Mobile - Single card view */
  .testimonials-container {
    gap: 20px;
    padding: 15px 0;
    justify-content: flex-start;
  }
  
  .testimonial-card {
    width: 320px;
    min-height: 250px;
    padding: 25px;
    margin: 0;
  }
  
  .testimonial-text p {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }
  
  .testimonial-info h4 {
    font-size: 16px;
  }
  
  .testimonial-info span {
    font-size: 12px;
  }
  
  /* News Mobile */
  .news-card {
    width: 250px;
    min-height: 400px;
  }
  
  .news-image {
    height: 150px;
  }
  
  .news-content {
    padding: 15px;
  }
  
  .news-content h3 {
    font-size: 16px;
    margin: 10px 0;
  }
  
  .read-more {
    font-size: 12px;
  }
  
  .news-share-icon {
    font-size: 14px;
  }
  
  /* Slider arrows mobile */
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  /* Footer Mobile */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
  }
  
  /* Login Modal Mobile */
  .login-modal-content {
    width: 95%;
    padding: 25px 20px;
    margin: 20px;
  }
  
  .login-modal-header h3 {
    font-size: 20px;
  }
  
  .verification-inputs {
    gap: 8px;
  }
  
  .verification-input {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .verification-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .verification-actions .btn {
    width: 100%;
    max-width: 200px;
  }
  
  .footer-gradient-box {
    padding: 0;
  }
  
  /* Hide form on mobile */
  .footer-form {
    display: none;
  }
  
  /* Image on the left */
  .footer-image {
    order: 1;
  }
  
  /* Contact info on the right */
  .footer-contact {
    order: 2;
  }
  
  .contact-item {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .contact-icon {
    width: 20px;
    height: 20px;
  }
  
  .social-icons {
    gap: 10px;
    margin-top: 15px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
  }
  
  .social-icon img {
    width: 20px;
    height: 20px;
  }
  
  .footer-image img {
    height: 250px;
    margin-top: -40px;
  }
  
  .footer-image::before {
    width: 200px;
    height: 200px;
  }
  
  /* Section spacing mobile */
  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .circle-decoration-left{
    left: -80px;
    top: 120%;
    transform: translateY(-30%);
  }
  .circle-decoration{
    width: 200px;
    height: 200px;
  }
  /* Hide decorative dots on mobile */

  /* Orbit lines mobile */
  .orbit-lines,
  .orbit-lines::before {
    display: none;
  }
}