/* ============================================
   Pages Styles
============================================ */

/* Page Hero Section */
.page-hero-section {
  color: var(--color-deep-indigo);
  padding: 80px 0 60px;
  text-align: center;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-deep-indigo);
}

.page-subtitle {
  font-size: 20px;
  color: var(--color-graphite-gray);
  opacity: 0.9;
}

/* Courses Listing */
.courses-listing-section {
  padding: 80px 0;
  background: var(--color-soft-ivory);
}

.course-category-block {
  margin-bottom: 80px;
}

.course-category-block:last-child {
  margin-bottom: 0;
}

.category-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-deep-indigo);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--color-mint-breeze);
  text-align: center;
  position: relative;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color-coral-peach);
}

.courses-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.course-card-item {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(24, 26, 63, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.course-card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(168, 245, 227, 0.05),
    rgba(255, 140, 120, 0.05)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.course-card-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(24, 26, 63, 0.15);
  border-color: var(--color-mint-breeze);
}

.course-card-item:hover::before {
  opacity: 1;
}

.course-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    rgba(168, 245, 227, 0.8)
  );
  color: var(--color-deep-indigo);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  width: fit-content;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(168, 245, 227, 0.3);
  transition: all 0.3s ease;
}

.course-card-item:hover .course-badge {
  transform: translateX(8px);
}

.course-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.course-card-item:hover .course-title {
  color: var(--color-coral-peach);
}

.course-summary {
  color: var(--color-graphite-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.course-highlights-list {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.course-highlights-list li {
  color: var(--color-deep-indigo);
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.course-highlights-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  color: white;
  font-weight: bold;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.course-card-item:hover .course-highlights-list li::before {
  transform: translateY(-50%) rotate(360deg);
}

.course-enroll-btn {
  background: var(--color-deep-indigo);
  color: var(--color-soft-ivory);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.4s ease;
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.course-enroll-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.course-enroll-btn:hover::before {
  left: 100%;
}

.course-enroll-btn:hover {
  background: var(--color-coral-peach);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 120, 0.4);
}

/* CTA Action Section */
.cta-action-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--color-coral-peach) 0%,
    #ff6b54 100%
  );
}

.cta-content-box {
  text-align: center;
  color: #fff;
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-large-btn {
  background: #fff;
  color: var(--color-coral-peach);
  padding: 18px 48px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: var(--transition-smooth);
  display: inline-block;
}

.cta-large-btn:hover {
  background: var(--color-deep-indigo);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Directions Page */
.direction-detail-section {
  padding: 80px 0;
}

.direction-detail-block {
  margin-bottom: 80px;
}

.direction-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  text-align: center;
}

.direction-icon-large {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(168, 245, 227, 0.2),
    rgba(255, 140, 120, 0.2)
  );
}

.direction-header-text {
  text-align: center;
}

.direction-header-text h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-deep-indigo);
  margin-bottom: 8px;
  text-align: center;
}

.direction-header-text p {
  font-size: 18px;
  color: var(--color-graphite-gray);
  text-align: center;
}

.direction-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.direction-content-layout {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 40px;
  align-items: start;
}

.direction-skills-column {
  flex: 1;
}

.direction-image-column {
  position: relative;
}

.direction-detail-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(24, 26, 63, 0.15);
  border: 3px solid #a8f5e3;
  transition: all 0.3s ease;
}

.direction-detail-image:hover {
  transform: scale(1.02);
  border-color: #ff8c78;
  box-shadow: 0 15px 40px rgba(168, 245, 227, 0.3);
}

.direction-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-graphite-gray);
  margin-bottom: 32px;
}

.skills-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.skill-item-box {
  background: var(--color-soft-ivory);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--color-coral-peach);
}

.skill-item-box h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 8px;
}

.skill-item-box p {
  color: var(--color-graphite-gray);
  font-size: 14px;
  line-height: 1.6;
}

/* Programs Page */
.program-info-section {
  padding: 80px 0;
}

.programs-container {
  display: grid;
  gap: 40px;
}

.program-detail-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.program-detail-card:hover {
  box-shadow: var(--shadow-hover);
}

.program-header-bar {
  background: linear-gradient(
    135deg,
    var(--color-deep-indigo) 0%,
    #2a2d5a 100%
  );
  color: #fff;
  padding: 32px 40px;
}

.program-header-bar h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.program-meta-info {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0.9;
}

.meta-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.program-body-content {
  padding: 40px;
}

.program-description-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-graphite-gray);
  margin-bottom: 32px;
}

.curriculum-list {
  list-style: none;
  margin-bottom: 32px;
}

.curriculum-list li {
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: start;
  gap: 16px;
}

.curriculum-list li:last-child {
  border-bottom: none;
}

.module-number {
  background: var(--color-mint-breeze);
  color: var(--color-deep-indigo);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.module-content h4 {
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 4px;
}

.module-content p {
  color: var(--color-graphite-gray);
  font-size: 14px;
}

/* Contacts Page */
.contacts-main-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #faf7f2 0%, #fff 100%);
}

/* Contact Methods Section */
.contact-methods-section {
  padding: 100px 0;
  background: white;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.contact-method-card {
  background: white;
  border: 2px solid #faf7f2;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #a8f5e3 0%, #ff8c78 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.contact-method-card:hover::before {
  transform: scaleX(1);
}

.contact-method-card:hover {
  border-color: #a8f5e3;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(168, 245, 227, 0.3);
}

.method-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #a8f5e3 0%, #ff8c78 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.contact-method-card:hover .method-icon-wrapper {
  transform: scale(1.1) rotate(360deg);
}

.method-icon-wrapper img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(13%) saturate(3264%)
    hue-rotate(212deg) brightness(93%) contrast(94%);
}

.method-title {
  font-size: 22px;
  font-weight: 700;
  color: #181a3f;
  margin-bottom: 12px;
}

.method-description {
  font-size: 15px;
  line-height: 1.6;
  color: #6c6f7f;
  margin-bottom: 20px;
}

.method-action-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #a8f5e3;
  text-decoration: none;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.method-action-link:hover {
  color: #ff8c78;
  transform: translateX(5px);
}

.method-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #6c6f7f;
  padding-top: 16px;
  border-top: 1px solid #faf7f2;
}

.method-availability img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(16%) saturate(1062%)
    hue-rotate(105deg) brightness(99%) contrast(97%);
}

/* Contact Info & Form Grid */
.contacts-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contacts-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
}

.contact-info-block {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 2px solid #faf7f2;
  order: 1;
  transition: all 0.3s ease;
}

.contact-info-block:hover {
  border-color: #a8f5e3;
  box-shadow: 0 10px 30px rgba(168, 245, 227, 0.2);
}

.info-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #faf7f2;
}

.info-block-header img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(16%) saturate(1062%)
    hue-rotate(105deg) brightness(99%) contrast(97%);
}

.info-block-header h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #181a3f;
  margin: 0;
}

.contact-info-list {
  list-style: none;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: start;
  padding: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: #faf7f2;
  transform: translateX(5px);
}

.contact-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a8f5e3 0%, #ff8c78 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-wrapper {
  transform: scale(1.1) rotate(10deg);
}

.contact-icon-wrapper img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(13%) saturate(3264%)
    hue-rotate(212deg) brightness(93%) contrast(94%);
}

.contact-icon-wrapper svg {
  color: #181a3f;
}

.contact-details h3 {
  font-weight: 600;
  color: #181a3f;
  margin-bottom: 4px;
  font-size: 18px;
}

.contact-details p,
.contact-details a {
  color: #6c6f7f;
  text-decoration: none;
  line-height: 1.6;
}

.contact-details a:hover {
  color: #ff8c78;
}

.social-media-block {
  padding-top: 24px;
  border-top: 2px solid #faf7f2;
}

.social-media-block h4 {
  font-size: 18px;
  font-weight: 600;
  color: #181a3f;
  margin-bottom: 16px;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.social-icon-link {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a8f5e3 0%, #ff8c78 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-link:hover {
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 20px rgba(168, 245, 227, 0.4);
}

.social-icon-link img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(13%) saturate(3264%)
    hue-rotate(212deg) brightness(93%) contrast(94%);
}

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 2px solid #faf7f2;
  transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
  border-color: #a8f5e3;
  box-shadow: 0 10px 30px rgba(168, 245, 227, 0.2);
}

.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.form-header img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(16%) saturate(1062%)
    hue-rotate(105deg) brightness(99%) contrast(97%);
}

.form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #181a3f;
  margin: 0;
}

.form-description {
  font-size: 15px;
  color: #6c6f7f;
  margin-bottom: 28px;
}

.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit-btn img {
  filter: brightness(0) saturate(100%) invert(100%);
}

/* FAQ Section */
.contact-faq-section {
  padding: 100px 0;
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.faq-card {
  background: linear-gradient(135deg, #faf7f2 0%, white 100%);
  padding: 32px;
  border-radius: 20px;
  border: 2px solid #faf7f2;
  transition: all 0.4s ease;
}

.faq-card:hover {
  border-color: #a8f5e3;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(168, 245, 227, 0.3);
}

.faq-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #a8f5e3 0%, #ff8c78 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-card:hover .faq-icon {
  transform: scale(1.1) rotate(360deg);
}

.faq-icon img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(13%) saturate(3264%)
    hue-rotate(212deg) brightness(93%) contrast(94%);
}

.faq-question {
  font-size: 20px;
  font-weight: 700;
  color: #181a3f;
  margin-bottom: 12px;
}

.faq-answer {
  font-size: 15px;
  line-height: 1.7;
  color: #6c6f7f;
  margin: 0;
}

/* Map Section */
.map-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #faf7f2 0%, #fff 100%);
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.map-header img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(16%) saturate(1062%)
    hue-rotate(105deg) brightness(99%) contrast(97%);
}

.map-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: #181a3f;
  margin: 0;
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 26, 63, 0.15);
  border: 3px solid #a8f5e3;
  margin-bottom: 32px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-info-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.map-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 16px 24px;
  border-radius: 50px;
  border: 2px solid #a8f5e3;
  font-size: 15px;
  font-weight: 600;
  color: #181a3f;
  transition: all 0.3s ease;
}

.map-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(168, 245, 227, 0.4);
  background: #a8f5e3;
}

.map-badge img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(16%) saturate(1062%)
    hue-rotate(105deg) brightness(99%) contrast(97%);
  transition: all 0.3s ease;
}

.map-badge:hover img {
  transform: scale(1.2);
}

/* Responsive Styles for Directions Page */
@media (max-width: 992px) {
  .direction-content-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .direction-image-column {
    order: -1;
  }

  .direction-detail-image {
    height: 400px;
  }

  .skills-grid-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .direction-content {
    padding: 28px;
  }

  .direction-content-layout {
    gap: 24px;
  }

  .direction-detail-image {
    height: 300px;
  }

  .skill-item-box {
    padding: 20px;
  }

  .skill-item-box h4 {
    font-size: 16px;
  }
}

/* Responsive Styles for Contacts Page */
@media (max-width: 992px) {
  .contact-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-methods-section,
  .contacts-main-section,
  .contact-faq-section,
  .map-section {
    padding: 60px 0;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-block,
  .contact-form-wrapper {
    padding: 28px;
  }

  .social-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .map-container {
    height: 350px;
  }

  .map-info-badges {
    flex-direction: column;
    align-items: center;
  }

  .info-block-header h2,
  .form-header h3 {
    font-size: 22px;
  }

  /* Center contact details on mobile */
  .contact-info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-details h3 {
    text-align: center;
  }

  .contact-details p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-method-card {
    padding: 28px 20px;
  }

  .method-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .method-title {
    font-size: 18px;
  }

  .faq-icon {
    width: 50px;
    height: 50px;
  }

  .faq-question {
    font-size: 18px;
  }

  .map-badge {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Reviews Page */
.reviews-showcase-section {
  padding: 80px 0;
}

.reviews-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.review-card-item {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.review-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.review-header {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}

.reviewer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-deep-indigo);
}

.reviewer-info h4 {
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 4px;
}

.reviewer-course {
  color: var(--color-graphite-gray);
  font-size: 14px;
}

.review-rating {
  color: #ffb800;
  font-size: 18px;
  margin-bottom: 16px;
}

.review-text {
  color: var(--color-graphite-gray);
  line-height: 1.7;
  font-size: 15px;
}

/* About Page */
.about-content-section {
  padding: 80px 0;
}

.about-intro-block {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.about-intro-block h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-deep-indigo);
  margin-bottom: 24px;
}

.about-intro-block p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-graphite-gray);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.value-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--color-mint-breeze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 12px;
}

.value-card p {
  color: var(--color-graphite-gray);
  line-height: 1.7;
}

/* Policy Pages */
.policy-content-section {
  padding: 80px 0;
  background: #fff;
}

.policy-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-deep-indigo);
  margin-bottom: 16px;
  margin-top: 40px;
}

.policy-content-wrapper h2:first-child {
  margin-top: 0;
}

.policy-content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-graphite-gray);
  margin-bottom: 20px;
}

.policy-content-wrapper ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.policy-content-wrapper li {
  color: var(--color-graphite-gray);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* Thank You Page */
.thankyou-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #e8f4f0 0%, var(--color-soft-ivory) 100%);
}

.thankyou-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.success-icon svg {
  color: var(--color-deep-indigo);
}

.thankyou-content h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-deep-indigo);
  margin-bottom: 20px;
}

.thankyou-content p {
  font-size: 18px;
  color: var(--color-graphite-gray);
  line-height: 1.7;
  margin-bottom: 40px;
}

.thankyou-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Policy Pages Styles */
.policy-content-section {
  padding: 80px 0;
  background: var(--color-soft-ivory);
}

.policy-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.policy-block {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--color-mint-breeze);
}

.policy-block:last-child {
  margin-bottom: 0;
}

.policy-block h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 20px;
}

.policy-block p {
  color: var(--color-graphite-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-block p:last-child {
  margin-bottom: 0;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.policy-list li {
  color: var(--color-graphite-gray);
  line-height: 1.8;
  padding: 12px 0 12px 32px;
  position: relative;
}

.policy-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-coral-peach);
  font-weight: 600;
}

.policy-contact {
  background: linear-gradient(135deg, var(--color-deep-indigo), #2a2d5a);
  color: var(--color-soft-ivory);
  border-left-color: var(--color-coral-peach);
}

.policy-contact h2 {
  color: var(--color-soft-ivory);
}

.policy-contact p {
  color: var(--color-soft-ivory);
  opacity: 0.9;
}

.policy-link {
  color: var(--color-mint-breeze);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.policy-link:hover {
  color: var(--color-coral-peach);
  text-decoration: underline;
}

.contact-info {
  margin-top: 24px;
}

.contact-info p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Thank You Page Enhanced */
.thankyou-message {
  text-align: center;
  margin-bottom: 48px;
}

.thankyou-text {
  max-width: 600px;
  margin: 0 auto;
}

.next-steps {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}

.next-steps h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 24px;
  text-align: center;
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps-list li {
  color: var(--color-graphite-gray);
  line-height: 1.8;
  padding: 16px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(168, 245, 227, 0.3);
}

.steps-list li:last-child {
  border-bottom: none;
}

/* Logo icon in header */
.logo-icon {
  margin-right: 8px;
  vertical-align: middle;
}

/* Visual placeholders */
.visual-placeholder {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.visual-large {
  max-width: 800px;
  max-height: 500px;
}

.about-visual {
  text-align: center;
  margin-bottom: 60px;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .courses-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .contacts-grid-layout {
    grid-template-columns: 1fr;
  }

  .contacts-visual {
    order: 1;
    margin-bottom: 40px;
  }

  .contact-info-block {
    order: 2;
  }

  .skills-grid-layout {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-block {
    padding: 32px;
  }

  .about-visual {
    margin-bottom: 40px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .page-title {
    font-size: 36px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .courses-grid-container {
    grid-template-columns: 1fr;
  }

  .category-title {
    font-size: 28px;
  }

  .reviews-grid-layout {
    grid-template-columns: 1fr;
  }

  .cta-heading {
    font-size: 32px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 350px;
  }

  .policy-block {
    padding: 24px;
  }

  .policy-block h2 {
    font-size: 24px;
  }

  .next-steps {
    padding: 24px;
  }

  .visual-large {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 28px;
  }

  .cta-heading {
    font-size: 24px;
  }

  .direction-header {
    flex-direction: column;
    align-items: start;
  }

  .thankyou-actions {
    flex-direction: column;
  }

  .thankyou-actions a {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   Courses Page - New Interactive Sections
============================================ */

/* Why Choose Our Courses Section */
.why-choose-courses-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--color-soft-ivory) 0%,
    rgba(168, 245, 227, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}

.why-choose-courses-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(168, 245, 227, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.section-main-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-deep-indigo);
  margin-bottom: 16px;
}

.section-subtitle-text {
  font-size: 18px;
  color: var(--color-graphite-gray);
  max-width: 600px;
  margin: 0 auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.why-choose-card {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(24, 26, 63, 0.08);
  position: relative;
  overflow: hidden;
}

.why-choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.why-choose-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(24, 26, 63, 0.15);
}

.why-choose-card:hover::before {
  transform: scaleX(1);
}

.why-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(
    135deg,
    rgba(168, 245, 227, 0.2),
    rgba(255, 140, 120, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.why-choose-card:hover .why-icon-wrapper {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
}

.why-icon-wrapper img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(14%) saturate(2548%)
    hue-rotate(206deg) brightness(95%) contrast(94%);
  transition: filter 0.4s ease;
}

.why-choose-card:hover .why-icon-wrapper img {
  filter: brightness(0) invert(1);
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 12px;
}

.why-card-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-graphite-gray);
}

/* Learning Process Section */
.learning-process-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  opacity: 0.8;
  transform: scale(1.1);
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--color-soft-ivory);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.process-step:hover .step-icon-box {
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  border-color: white;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(168, 245, 227, 0.4);
}

.step-icon-box img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(14%) saturate(2548%)
    hue-rotate(206deg) brightness(95%) contrast(94%);
  transition: filter 0.4s ease;
}

.process-step:hover .step-icon-box img {
  filter: brightness(0) invert(1);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 12px;
}

.step-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-graphite-gray);
}

/* Course Benefits Section */
.course-benefits-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(24, 26, 63, 0.03) 0%,
    var(--color-soft-ivory) 100%
  );
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-text-column {
  position: relative;
}

.benefits-intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-graphite-gray);
  margin-bottom: 40px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(24, 26, 63, 0.1);
  border-left-color: var(--color-mint-breeze);
}

.benefit-icon-circle {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(
    135deg,
    rgba(168, 245, 227, 0.2),
    rgba(255, 140, 120, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon-circle {
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  transform: rotate(360deg);
}

.benefit-icon-circle img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(14%) saturate(2548%)
    hue-rotate(206deg) brightness(95%) contrast(94%);
  transition: filter 0.3s ease;
}

.benefit-item:hover .benefit-icon-circle img {
  filter: brightness(0) invert(1);
}

.benefit-text {
  flex: 1;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 8px;
}

.benefit-description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-graphite-gray);
}

.benefits-visual-column {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits-decoration-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-main-icon {
  filter: brightness(0) saturate(100%) invert(21%) sepia(14%) saturate(2548%)
    hue-rotate(206deg) brightness(95%) contrast(94%);
  opacity: 0.1;
  animation: pulse 3s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(24, 26, 63, 0.15);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  animation: float 4s ease-in-out infinite;
}

.floating-badge img {
  filter: brightness(0) saturate(100%) invert(77%) sepia(48%) saturate(434%)
    hue-rotate(101deg) brightness(101%) contrast(96%);
}

.badge-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.badge-2 {
  top: 50%;
  right: 0;
  animation-delay: 1.5s;
}

.badge-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 3s;
}

/* Student Success Section */
.student-success-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--color-deep-indigo) 0%,
    rgba(24, 26, 63, 0.95) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.student-success-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(168, 245, 227, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.student-success-section .section-main-title {
  color: white;
}

.student-success-section .section-subtitle-text {
  color: rgba(255, 255, 255, 0.8);
}

.success-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 1;
}

.success-stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.success-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(168, 245, 227, 0.1),
    rgba(255, 140, 120, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.success-stat-card:hover {
  transform: translateY(-12px);
  border-color: var(--color-mint-breeze);
  box-shadow: 0 12px 40px rgba(168, 245, 227, 0.2);
}

.success-stat-card:hover::before {
  opacity: 1;
}

.stat-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.success-stat-card:hover .stat-icon-wrapper {
  transform: rotate(360deg) scale(1.15);
}

.stat-icon-wrapper img {
  filter: brightness(0) invert(1);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

/* What You'll Get Section */
.what-youll-get-section {
  padding: 100px 0;
  background: var(--color-soft-ivory);
}

.youll-get-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.get-item {
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.get-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(168, 245, 227, 0.05),
    rgba(255, 140, 120, 0.05)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.get-item:hover {
  transform: translateY(-8px);
  border-color: var(--color-mint-breeze);
  box-shadow: 0 12px 40px rgba(24, 26, 63, 0.12);
}

.get-item:hover::before {
  opacity: 1;
}

.get-item-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
  background: linear-gradient(
    135deg,
    rgba(168, 245, 227, 0.15),
    rgba(255, 140, 120, 0.15)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.get-item:hover .get-item-icon {
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  transform: scale(1.1) rotate(-5deg);
}

.get-item-icon img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(14%) saturate(2548%)
    hue-rotate(206deg) brightness(95%) contrast(94%);
  transition: filter 0.4s ease;
}

.get-item:hover .get-item-icon img {
  filter: brightness(0) invert(1);
}

.get-item-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.get-item-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-graphite-gray);
  position: relative;
  z-index: 1;
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
  .section-main-title {
    font-size: 36px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .benefits-visual-column {
    order: -1;
  }

  .success-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .youll-get-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-main-title {
    font-size: 32px;
  }

  .section-subtitle-text {
    font-size: 16px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .benefits-decoration-box {
    height: 300px;
  }

  .success-stats-grid {
    grid-template-columns: 1fr;
  }

  .youll-get-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .why-choose-courses-section,
  .learning-process-section,
  .course-benefits-section,
  .student-success-section,
  .what-youll-get-section {
    padding: 60px 0;
  }

  .section-main-title {
    font-size: 28px;
  }

  .why-choose-card,
  .get-item {
    padding: 32px 24px;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon-circle {
    margin: 0 auto;
  }

  .step-number {
    font-size: 48px;
  }
}

/* ============================================
   Directions Page - New Interactive Sections
============================================ */

/* Direction Overview Section */
.direction-overview-section {
  padding: 100px 0;
  background: var(--color-soft-ivory);
  position: relative;
}

.direction-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.overview-card {
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(24, 26, 63, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(168, 245, 227, 0.05),
    rgba(255, 140, 120, 0.05)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.overview-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(24, 26, 63, 0.15);
  border-color: var(--color-mint-breeze);
}

.overview-card:hover::before {
  opacity: 1;
}

.overview-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: linear-gradient(
    135deg,
    rgba(168, 245, 227, 0.2),
    rgba(255, 140, 120, 0.2)
  );
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.overview-card:hover .overview-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
}

.overview-icon-wrapper img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(14%) saturate(2548%)
    hue-rotate(206deg) brightness(95%) contrast(94%);
  transition: filter 0.4s ease;
}

.overview-card:hover .overview-icon-wrapper img {
  filter: brightness(0) invert(1);
}

.overview-card-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-deep-indigo);
  margin-bottom: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.overview-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-graphite-gray);
  text-align: center;
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.overview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 2px solid rgba(24, 26, 63, 0.1);
  border-bottom: 2px solid rgba(24, 26, 63, 0.1);
  position: relative;
  z-index: 1;
}

.overview-stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-coral-peach);
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--color-graphite-gray);
}

.overview-link {
  font-weight: 600;
  color: var(--color-deep-indigo);
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.overview-link:hover {
  color: var(--color-coral-peach);
  transform: translateX(4px);
}

/* Career Paths Section */
.career-paths-section {
  padding: 100px 0;
  background: white;
}

.career-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.career-path-card {
  background: var(--color-soft-ivory);
  padding: 32px 28px;
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.career-path-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.career-path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(24, 26, 63, 0.12);
  border-color: var(--color-mint-breeze);
}

.career-path-card:hover::before {
  transform: scaleX(1);
}

.career-path-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -16px;
}

.career-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(24, 26, 63, 0.08);
}

.career-path-card:hover .career-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
}

.career-icon img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(14%) saturate(2548%)
    hue-rotate(206deg) brightness(95%) contrast(94%);
  transition: filter 0.4s ease;
}

.career-path-card:hover .career-icon img {
  filter: brightness(0) invert(1);
}

.career-path-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 12px;
}

.career-path-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-graphite-gray);
  margin-bottom: 16px;
}

.career-path-salary {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-coral-peach);
  margin-bottom: 12px;
}

.career-path-companies {
  font-size: 13px;
  color: var(--color-graphite-gray);
  padding-top: 12px;
  border-top: 1px solid rgba(24, 26, 63, 0.1);
}

/* Skills You'll Get Section */
.skills-youll-get-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(24, 26, 63, 0.03) 0%,
    var(--color-soft-ivory) 100%
  );
}

.skills-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.skills-intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-graphite-gray);
  margin-bottom: 40px;
}

.skills-categories {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.skill-category-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.skill-category-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(24, 26, 63, 0.1);
  border-left-color: var(--color-coral-peach);
}

.skill-category-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(
    135deg,
    rgba(168, 245, 227, 0.2),
    rgba(255, 140, 120, 0.2)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.skill-category-item:hover .skill-category-icon {
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  transform: rotate(360deg);
}

.skill-category-icon img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(14%) saturate(2548%)
    hue-rotate(206deg) brightness(95%) contrast(94%);
  transition: filter 0.3s ease;
}

.skill-category-item:hover .skill-category-icon img {
  filter: brightness(0) invert(1);
}

.skill-category-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 8px;
}

.skill-category-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-graphite-gray);
}

.skills-progress-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.skill-progress-item {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(24, 26, 63, 0.08);
}

.skill-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.skill-name {
  font-weight: 600;
  color: var(--color-deep-indigo);
  font-size: 15px;
}

.skill-percentage {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-coral-peach);
}

.skill-progress-bar {
  height: 12px;
  background: rgba(24, 26, 63, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.skill-progress-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  border-radius: 20px;
  transition: width 1s ease;
  box-shadow: 0 2px 8px rgba(168, 245, 227, 0.4);
}

/* Learning Format Section */
.learning-format-section {
  padding: 100px 0;
  background: white;
}

.format-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.format-option-card {
  background: var(--color-soft-ivory);
  padding: 40px 32px;
  border-radius: 24px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.format-option-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(168, 245, 227, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: transform 0.4s ease;
}

.format-option-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(24, 26, 63, 0.12);
  border-color: var(--color-mint-breeze);
}

.format-option-card:hover::before {
  transform: translate(30%, -30%) scale(1.5);
}

.format-icon-badge {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.format-option-card:hover .format-icon-badge {
  transform: scale(1.1) rotate(-5deg);
}

.format-icon-badge img {
  filter: brightness(0) invert(1);
}

.format-option-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.format-features-list {
  list-style: none;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.format-features-list li {
  padding: 12px 0 12px 32px;
  color: var(--color-graphite-gray);
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  transition: all 0.3s ease;
}

.format-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  color: white;
  font-weight: bold;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.format-option-card:hover .format-features-list li {
  transform: translateX(4px);
}

.format-badge {
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Why Choose Direction Section */
.why-choose-direction-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--color-soft-ivory) 0%,
    rgba(168, 245, 227, 0.1) 100%
  );
}

.why-direction-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.direction-feature-item {
  background: white;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(24, 26, 63, 0.08);
}

.direction-feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(24, 26, 63, 0.15);
  border-color: var(--color-mint-breeze);
}

.direction-feature-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(
    135deg,
    rgba(168, 245, 227, 0.2),
    rgba(255, 140, 120, 0.2)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.direction-feature-item:hover .direction-feature-icon {
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  transform: scale(1.1) rotate(-5deg);
}

.direction-feature-icon img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(14%) saturate(2548%)
    hue-rotate(206deg) brightness(95%) contrast(94%);
  transition: filter 0.4s ease;
}

.direction-feature-item:hover .direction-feature-icon img {
  filter: brightness(0) invert(1);
}

.direction-feature-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-deep-indigo);
  margin-bottom: 12px;
}

.direction-feature-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-graphite-gray);
}

/* ============================================
   Learning Programs Section (Courses Page)
============================================ */

.learning-programs-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--color-soft-ivory) 0%,
    rgba(168, 245, 227, 0.08) 100%
  );
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.program-card {
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(24, 26, 63, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(168, 245, 227, 0.03),
    rgba(255, 140, 120, 0.03)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.program-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(24, 26, 63, 0.15);
  border-color: var(--color-mint-breeze);
}

.program-card:hover::before {
  opacity: 1;
}

.featured-program {
  border-color: var(--color-mint-breeze);
  transform: scale(1.05);
}

.featured-program:hover {
  transform: translateY(-12px) scale(1.05);
}

.program-badge-top {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--color-coral-peach), #ff6b54);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(255, 140, 120, 0.3);
}

.featured-badge {
  background: linear-gradient(135deg, var(--color-mint-breeze), #7de8c8);
  color: var(--color-deep-indigo);
}

.program-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: linear-gradient(
    135deg,
    rgba(168, 245, 227, 0.15),
    rgba(255, 140, 120, 0.15)
  );
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.program-card:hover .program-icon-wrapper {
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  transform: scale(1.1) rotate(-5deg);
}

.program-icon-wrapper img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(14%) saturate(2548%)
    hue-rotate(206deg) brightness(95%) contrast(94%);
  transition: filter 0.4s ease;
}

.program-card:hover .program-icon-wrapper img {
  filter: brightness(0) invert(1);
}

.program-card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-deep-indigo);
  text-align: center;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.program-duration {
  text-align: center;
  font-size: 14px;
  color: var(--color-coral-peach);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.program-description {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-graphite-gray);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.program-features {
  flex-grow: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.program-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--color-graphite-gray);
  transition: all 0.3s ease;
}

.program-feature-item img {
  filter: brightness(0) saturate(100%) invert(77%) sepia(48%) saturate(434%)
    hue-rotate(101deg) brightness(101%) contrast(96%);
  transition: filter 0.3s ease;
}

.program-card:hover .program-feature-item {
  transform: translateX(4px);
}

.program-card:hover .program-feature-item img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(70%) saturate(2535%)
    hue-rotate(321deg) brightness(103%) contrast(101%);
}

.program-price {
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid rgba(24, 26, 63, 0.08);
  border-bottom: 2px solid rgba(24, 26, 63, 0.08);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.price-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--color-mint-breeze),
    var(--color-coral-peach)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.price-period {
  display: block;
  font-size: 13px;
  color: var(--color-graphite-gray);
}

.program-cta-btn {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: var(--color-deep-indigo);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.program-cta-btn:hover {
  background: var(--color-coral-peach);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 120, 0.4);
}

.programs-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: white;
  border-radius: 12px;
  font-size: 15px;
  color: var(--color-graphite-gray);
  box-shadow: 0 2px 12px rgba(24, 26, 63, 0.06);
}

.benefits-note img {
  filter: brightness(0) saturate(100%) invert(77%) sepia(48%) saturate(434%)
    hue-rotate(101deg) brightness(101%) contrast(96%);
}

/* Responsive Design for Directions Page */
@media (max-width: 992px) {
  .direction-overview-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .career-paths-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .featured-program {
    transform: scale(1);
  }

  .featured-program:hover {
    transform: translateY(-12px) scale(1);
  }

  .skills-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .skills-visual-side {
    order: -1;
  }

  .format-options-grid {
    grid-template-columns: 1fr;
  }

  .why-direction-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .career-paths-grid {
    grid-template-columns: 1fr;
  }

  .overview-card,
  .career-path-card,
  .format-option-card {
    padding: 32px 24px;
  }

  .direction-feature-item {
    flex-direction: column;
    text-align: center;
  }

  .direction-feature-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .direction-overview-section,
  .career-paths-section,
  .skills-youll-get-section,
  .learning-format-section,
  .why-choose-direction-section {
    padding: 60px 0;
  }

  .overview-card-title,
  .career-path-title,
  .format-option-title {
    font-size: 20px;
  }

  .career-path-number {
    font-size: 36px;
  }
}

/* ==========================================
   ABOUT PAGE - NEW SECTIONS STYLES
   ========================================== */

/* Our Story Section */
.our-story-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #faf7f2 0%, #fff 100%);
  overflow: hidden;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text-column {
  padding-right: 20px;
}

.story-text {
  font-size: 17px;
  line-height: 1.8;
  color: #6c6f7f;
  margin-bottom: 20px;
}

.story-milestones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.milestone-item {
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid #a8f5e3;
  transition: all 0.3s ease;
}

.milestone-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(168, 245, 227, 0.3);
}

.milestone-year {
  font-size: 32px;
  font-weight: 700;
  color: #181a3f;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #a8f5e3 0%, #ff8c78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.milestone-text {
  font-size: 15px;
  color: #6c6f7f;
  font-weight: 500;
}

.story-visual-column {
  position: relative;
}

.story-image-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 26, 63, 0.15);
}

.story-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.story-stat-badge {
  position: absolute;
  background: white;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(24, 26, 63, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.story-stat-badge img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(16%) saturate(1062%)
    hue-rotate(105deg) brightness(99%) contrast(97%);
}

.badge-position-1 {
  top: 30px;
  right: -20px;
  animation-delay: 0s;
}

.badge-position-2 {
  bottom: 40px;
  left: -30px;
  animation-delay: 1.5s;
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-number {
  font-size: 24px;
  font-weight: 700;
  color: #181a3f;
  line-height: 1;
}

.badge-label {
  font-size: 13px;
  color: #6c6f7f;
  margin-top: 4px;
}

/* Our Team Section */
.our-team-section {
  padding: 100px 0;
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.team-member-card {
  background: white;
  border: 2px solid #faf7f2;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.team-member-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #a8f5e3 0%, #ff8c78 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.team-member-card:hover::before {
  transform: scaleX(1);
}

.team-member-card:hover {
  border-color: #a8f5e3;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(168, 245, 227, 0.3);
}

.member-avatar {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #a8f5e3;
  transition: all 0.3s ease;
}

.team-member-card:hover .member-avatar {
  border-color: #ff8c78;
  transform: scale(1.05);
}

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

.member-social {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(24, 26, 63, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.3s ease;
  overflow: hidden;
}

.team-member-card:hover .member-social {
  height: 50px;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a8f5e3;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ff8c78;
  transform: rotate(360deg);
}

.social-link img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(13%) saturate(3264%)
    hue-rotate(212deg) brightness(93%) contrast(94%);
}

.member-name {
  font-size: 22px;
  font-weight: 700;
  color: #181a3f;
  margin-bottom: 8px;
}

.member-role {
  font-size: 16px;
  color: #a8f5e3;
  font-weight: 600;
  margin-bottom: 6px;
}

.member-company {
  font-size: 14px;
  color: #6c6f7f;
  margin-bottom: 20px;
}

.member-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid #faf7f2;
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #6c6f7f;
}

.stat-item img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(16%) saturate(1062%)
    hue-rotate(105deg) brightness(99%) contrast(97%);
}

/* Achievements Section */
.achievements-section {
  padding: 100px 0;
  background: #181a3f;
  position: relative;
  overflow: hidden;
}

.achievements-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(168, 245, 227, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.achievements-section .section-label {
  color: #a8f5e3;
}

.achievements-section .section-main-title {
  color: white;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(168, 245, 227, 0.2);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 245, 227, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.achievement-card:hover::before {
  left: 100%;
}

.achievement-card:hover {
  border-color: #a8f5e3;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(168, 245, 227, 0.2);
  background: rgba(168, 245, 227, 0.1);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8f5e3 0%, #ff8c78 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.achievement-card:hover .achievement-icon {
  transform: scale(1.1) rotate(360deg);
}

.achievement-icon img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(13%) saturate(3264%)
    hue-rotate(212deg) brightness(93%) contrast(94%);
}

.achievement-number {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #a8f5e3 0%, #ff8c78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.achievement-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.achievement-text {
  font-size: 15px;
  line-height: 1.6;
  color: #a8f5e3;
  opacity: 0.8;
}

/* Learning Approach Section */
.learning-approach-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #faf7f2 0%, #fff 100%);
}

.approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach-visual-column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.approach-features-stack {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.feature-stack-item {
  background: white;
  padding: 24px 28px;
  border-radius: 16px;
  border: 2px solid #a8f5e3;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(24, 26, 63, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.feature-stack-item.item-1 {
  transform: translateX(-30px);
  animation: float 3s ease-in-out infinite;
  animation-delay: 0s;
}

.feature-stack-item.item-2 {
  transform: translateX(0);
  animation: float 3s ease-in-out infinite;
  animation-delay: 1s;
}

.feature-stack-item.item-3 {
  transform: translateX(30px);
  animation: float 3s ease-in-out infinite;
  animation-delay: 2s;
}

.feature-stack-item:hover {
  transform: translateX(0) scale(1.05);
  border-color: #ff8c78;
  box-shadow: 0 15px 40px rgba(255, 140, 120, 0.3);
}

.feature-stack-item img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(16%) saturate(1062%)
    hue-rotate(105deg) brightness(99%) contrast(97%);
  transition: all 0.3s ease;
}

.feature-stack-item:hover img {
  transform: rotate(360deg);
}

.feature-stack-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #181a3f;
  margin-bottom: 4px;
}

.feature-stack-text p {
  font-size: 14px;
  color: #6c6f7f;
  margin: 0;
}

.approach-text-column {
  padding-left: 20px;
}

.approach-intro {
  font-size: 17px;
  line-height: 1.8;
  color: #6c6f7f;
  margin-bottom: 40px;
}

.approach-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.approach-point-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.point-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8f5e3 0%, #ff8c78 100%);
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.approach-point-item:hover .point-icon {
  transform: scale(1.1) rotate(10deg);
}

.point-icon img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(13%) saturate(3264%)
    hue-rotate(212deg) brightness(93%) contrast(94%);
}

.point-content {
  flex: 1;
}

.point-title {
  font-size: 20px;
  font-weight: 700;
  color: #181a3f;
  margin-bottom: 8px;
}

.point-text {
  font-size: 15px;
  line-height: 1.7;
  color: #6c6f7f;
  margin: 0;
}

/* Partners & Recognition Section */
.partners-recognition-section {
  padding: 100px 0;
  background: white;
}

.partners-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.partner-category {
  background: linear-gradient(135deg, #faf7f2 0%, white 100%);
  padding: 40px;
  border-radius: 24px;
  border: 2px solid #faf7f2;
  transition: all 0.3s ease;
}

.partner-category:hover {
  border-color: #a8f5e3;
  box-shadow: 0 10px 30px rgba(168, 245, 227, 0.2);
}

.category-icon-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.category-icon-header img {
  border: 3px solid #a8f5e3;
  box-shadow: 0 5px 15px rgba(168, 245, 227, 0.3);
  transition: all 0.3s ease;
}

.partner-category:hover .category-icon-header img {
  transform: scale(1.05);
  border-color: #ff8c78;
}

.category-title {
  font-size: 24px;
  font-weight: 700;
  color: #181a3f;
  margin: 0;
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.partner-badge {
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #181a3f;
  border: 2px solid #faf7f2;
  transition: all 0.3s ease;
}

.partner-badge:hover {
  border-color: #a8f5e3;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(168, 245, 227, 0.3);
  color: #a8f5e3;
}

.recognition-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid #faf7f2;
}

.recognition-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #181a3f 0%, #2a2d5f 100%);
  padding: 20px 32px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.recognition-badge-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(168, 245, 227, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.recognition-badge-item:hover::before {
  left: 100%;
}

.recognition-badge-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(168, 245, 227, 0.4);
}

.recognition-badge-item img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(16%) saturate(1062%)
    hue-rotate(105deg) brightness(99%) contrast(97%);
}

/* Responsive Styles for About Page Sections */
@media (max-width: 992px) {
  .story-layout,
  .approach-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-text-column,
  .approach-text-column {
    padding: 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-categories {
    grid-template-columns: 1fr;
  }

  .partners-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .recognition-badges {
    flex-wrap: wrap;
  }

  .story-image-box {
    max-width: 100%;
    padding: 0 20px;
  }

  .story-main-image {
    max-height: 450px;
    object-fit: cover;
  }

  .story-stat-badge {
    padding: 14px 18px;
  }

  .badge-number {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .our-story-section,
  .our-team-section,
  .achievements-section,
  .learning-approach-section,
  .partners-recognition-section {
    padding: 60px 0;
  }

  .story-milestones {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: 1fr;
  }

  .partners-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .badge-position-1,
  .badge-position-2 {
    position: static;
    margin: 20px auto;
    justify-content: center;
  }

  .story-image-box {
    max-width: 100%;
    margin: 0 auto;
  }

  .story-main-image {
    max-height: 400px;
    object-fit: cover;
  }

  .feature-stack-item.item-1,
  .feature-stack-item.item-2,
  .feature-stack-item.item-3 {
    transform: translateX(0);
  }

  .recognition-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .milestone-year {
    font-size: 24px;
  }

  .achievement-number {
    font-size: 36px;
  }

  .partners-list {
    grid-template-columns: 1fr;
  }

  .partner-category {
    padding: 24px;
  }

  .recognition-badge-item {
    padding: 16px 24px;
    font-size: 14px;
  }

  .story-image-box {
    padding: 0 10px;
  }

  .story-main-image {
    max-height: 300px;
    border-radius: 16px;
  }

  .story-stat-badge {
    padding: 12px 16px;
    font-size: 12px;
  }

  .badge-number {
    font-size: 20px;
  }

  .badge-label {
    font-size: 11px;
  }

  .skill-category-item {
    flex-direction: column;
    text-align: center;
  }

  .skill-category-icon {
    margin: 0 auto;
  }
}
