/*--------------------------------------------------------------
# Courses Hero Section
--------------------------------------------------------------*/
.courses-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 60px;
}

.courses-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.courses-hero .hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .courses-hero .hero-text h1 {
    font-size: 2.5rem;
  }
}

.courses-hero .hero-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses-hero .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .courses-hero .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

.courses-hero .hero-stats .stat-item {
  text-align: center;
}

.courses-hero .hero-stats .stat-item .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.courses-hero .hero-stats .stat-item .label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.courses-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .courses-hero .hero-buttons {
    flex-direction: column;
  }
}

.courses-hero .hero-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.courses-hero .hero-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.courses-hero .hero-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.courses-hero .hero-buttons .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.courses-hero .hero-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.courses-hero .hero-features {
  display: flex;
  gap: 2rem;
}

@media (max-width: 768px) {
  .courses-hero .hero-features {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.courses-hero .hero-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.courses-hero .hero-features .feature i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.courses-hero .hero-features .feature span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--default-color);
}

.courses-hero .hero-image {
  position: relative;
}

.courses-hero .hero-image .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.courses-hero .hero-image .main-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.courses-hero .hero-image .floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.courses-hero .hero-image .floating-cards .course-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 200px; 
}

@keyframes jack {
   0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0px, -5px);
  }
}

.courses-hero .hero-image .floating-cards .course-card:nth-child(1) {
  top: 20%;
  left: -10%;
  animation: jack 3s linear infinite;
}

.courses-hero .hero-image .floating-cards .course-card:nth-child(2) {
  top: 50%;
  right: -15%;
  animation: jack 5s linear infinite;
}

.courses-hero .hero-image .floating-cards .course-card:nth-child(3) {
  bottom: 20%;
  left: -5%;
  animation: jack 4s linear infinite;
}

.courses-hero .hero-image .floating-cards .course-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.courses-hero .hero-image .floating-cards .course-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.courses-hero .hero-image .floating-cards .course-card .card-content h6 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.2;
}

.courses-hero .hero-image .floating-cards .course-card .card-content span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .courses-hero .hero-image .floating-cards .course-card {
    display: none;
  }
}

.courses-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.courses-hero .hero-background .bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.courses-hero .hero-background .bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.courses-hero .hero-background .bg-shapes .shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.courses-hero .hero-background .bg-shapes .shape.sparkle {
  height: 300px;
  width: 250px;
  background: #f0d6ff;
  mask: radial-gradient(#0000 71%, #000 72%) 10000% 10000%/99.5% 99.5%;
  /* if you will use a different unit than px consider round()
   height: round(__,1px);
   width: round(__,1px);
  */
  top: 65%;
  right: -5%;
  animation: float 6s ease-in-out infinite;
}

.courses-hero .hero-background .bg-shapes .shape.arc {
  --b: 40px; /* the boder thickness */
  --a: 240deg; /* control the progression */

  width: 200px;
  aspect-ratio: 1;
  padding: var(--b);
  border-radius: 50%;
  background: #f5fae1;
  --_g: /var(--b) var(--b) no-repeat radial-gradient(50% 50%, #000 97%, #0000);
  mask: top var(--_g),
    calc(50% + 50% * sin(var(--a))) calc(50% - 50% * cos(var(--a))) var(--_g),
    linear-gradient(#0000 0 0) content-box intersect,
    conic-gradient(#000 var(--a), #0000 0);
  top: 7%;
  right:40%;
  animation: float 6s ease-in-out infinite;
}

.courses-hero .hero-background .bg-shapes .shape.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

.courses-hero .hero-background .bg-shapes .shape.star {
  width: 300px;
  aspect-ratio: 1;
  background: #f3f5ff;
  clip-path: polygon(
    50% 0,
    calc(50% * (1 + sin(0.4turn))) calc(50% * (1 - cos(0.4turn))),
    calc(50% * (1 - sin(0.2turn))) calc(50% * (1 - cos(0.2turn))),
    calc(50% * (1 + sin(0.2turn))) calc(50% * (1 - cos(0.2turn))),
    calc(50% * (1 - sin(0.4turn))) calc(50% * (1 - cos(0.4turn)))
  );
  bottom: 10%;
  left: -5%;
  animation: grow 5s ease-in-out infinite reverse;
  /* or more simple
  clip-path: polygon(50% 0,79% 90%,2% 35%,98% 35%,21% 90%); 
   */
}

.courses-hero .hero-background .bg-shapes .shape.shape-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 30%;
  animation: float 7s ease-in-out infinite;
}

.courses-hero .hero-background .bg-shapes .shape.spiral {
  --b: 15px; /* border thickness */
  --s: 300px; /* preferred size shape */
  --c: #fff9f1;

  width: round(var(--s), 4 * var(--b));
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(
        calc(2 * var(--b)) at top,
        #0000 -1px,
        var(--c) 0 calc(50% - 1px),
        #0000 50% calc(100% - 1px)
      )
      calc(50% + var(--b)) 100%,
    repeating-radial-gradient(
        calc(2 * var(--b)) at bottom,
        var(--c) -1px,
        #0000 0 calc(50% - 1px),
        var(--c) 50% calc(100% - 1px)
      )
      50% 0;
  background-size: 150% 50%;
  background-repeat: no-repeat;
  mask: radial-gradient(
        calc(1.5 * var(--b)) at calc(100% - var(--b) / 2) 0,
        #0000 calc(100% / 3),
        #000 calc(100% / 3 + 1px) 110%,
        #0000 0
      )
      calc(50% + var(--b) / 2) 100% / calc(3 * var(--b)) 50% exclude no-repeat,
    conic-gradient(#000 0 0);

  top: 16%;
  left: 30%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}
@keyframes grow {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}


@media (max-width: 992px) {
  .courses-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .courses-hero .hero-text {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .courses-hero {
    text-align: center;
  }

  .courses-hero .hero-stats {
    justify-content: center;
  }

  .courses-hero .hero-features {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 1.5rem;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 1.5rem;
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 1.5rem;
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Course Categories Section
--------------------------------------------------------------*/
.course-categories .category-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.course-categories .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.course-categories .category-card .category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.course-categories .category-card .category-icon i {
  font-size: 30px;
  color: var(--contrast-color);
}

.course-categories .category-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.course-categories .category-card .course-count {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.course-categories .category-card.category-tech .category-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.course-categories .category-card.category-tech:hover {
  border-color: #3b82f6;
}

.course-categories .category-card.category-business .category-icon {
  background: linear-gradient(135deg, #10b981, #047857);
}

.course-categories .category-card.category-business:hover {
  border-color: #10b981;
}

.course-categories .category-card.category-design .category-icon {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.course-categories .category-card.category-design:hover {
  border-color: #8b5cf6;
}

.course-categories .category-card.category-health .category-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}

.course-categories .category-card.category-health:hover {
  border-color: #ef4444;
}

.course-categories .category-card.category-language .category-icon {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.course-categories .category-card.category-language:hover {
  border-color: #f97316;
}

.course-categories .category-card.category-science .category-icon {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.course-categories .category-card.category-science:hover {
  border-color: #06b6d4;
}

.course-categories .category-card.category-marketing .category-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.course-categories .category-card.category-marketing:hover {
  border-color: #ec4899;
}

.course-categories .category-card.category-finance .category-icon {
  background: linear-gradient(135deg, #059669, #047857);
}

.course-categories .category-card.category-finance:hover {
  border-color: #059669;
}

.course-categories .category-card.category-photography .category-icon {
  background: linear-gradient(135deg, #64748b, #475569);
}

.course-categories .category-card.category-photography:hover {
  border-color: #64748b;
}

.course-categories .category-card.category-music .category-icon {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.course-categories .category-card.category-music:hover {
  border-color: #7c3aed;
}

.course-categories .category-card.category-engineering .category-icon {
  background: linear-gradient(135deg, #6b7280, #4b5563);
}

.course-categories .category-card.category-engineering:hover {
  border-color: #6b7280;
}

.course-categories .category-card.category-law .category-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.course-categories .category-card.category-law:hover {
  border-color: #f59e0b;
}

.course-categories .category-card.category-culinary .category-icon {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.course-categories .category-card.category-culinary:hover {
  border-color: #f43f5e;
}

.course-categories .category-card.category-sports .category-icon {
  background: linear-gradient(135deg, #84cc16, #65a30d);
}

.course-categories .category-card.category-sports:hover {
  border-color: #84cc16;
}

.course-categories .category-card.category-writing .category-icon {
  background: linear-gradient(135deg, #6366f1, #4338ca);
}

.course-categories .category-card.category-writing:hover {
  border-color: #6366f1;
}

.course-categories .category-card.category-psychology .category-icon {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.course-categories .category-card.category-psychology:hover {
  border-color: #14b8a6;
}

.course-categories .category-card.category-environment .category-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.course-categories .category-card.category-environment:hover {
  border-color: #22c55e;
}

.course-categories .category-card.category-communication .category-icon {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.course-categories .category-card.category-communication:hover {
  border-color: #0ea5e9;
}

@media (max-width: 576px) {
  .course-categories .category-card {
    padding: 20px 15px;
  }

  .course-categories .category-card .category-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .course-categories .category-card .category-icon i {
    font-size: 24px;
  }

  .course-categories .category-card h5 {
    font-size: 14px;
  }

  .course-categories .category-card .course-count {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(
    135deg,
    var(--surface-color) 0%,
    color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%
  );
  border-radius: 1.5rem;
  padding: 0;
  height: 100% !important;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), var(--heading-color) 30%)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%,
    var(--surface-color) 100%
  );
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .card {
  box-shadow: none;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  height: 100%;
  background-color: var(--surface-color);
  border-radius: 1.5rem;
}

.recent-blog-posts .card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.recent-blog-posts .card .card-top {
  padding: 1rem;
}

.recent-blog-posts .card .card-top img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.recent-blog-posts .card .card-top .author-name {
  font-size: 0.9rem;
  color: var(--heading-color);
}

.recent-blog-posts .card .card-top .likes {
  font-size: 0.9rem;
  color: var(--accent-color);
}

.recent-blog-posts .card .card-top .likes i {
  margin-right: 0.25rem;
}

.recent-blog-posts .card .card-img-wrapper {
  overflow: hidden;
  max-height: 250px;
}

.recent-blog-posts .card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.recent-blog-posts .card .card-body {
  padding: 1.5rem;
}

.recent-blog-posts .card .card-body .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  font-weight: 600;
}

.recent-blog-posts .card .card-body .card-title a {
  color: inherit;
}

.recent-blog-posts .card .card-body .card-title:hover {
  color: var(--accent-color);
}

.recent-blog-posts .card .card-body .card-text {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .intro-content {
  margin-bottom: 2rem;
}

.stats .intro-content .section-heading {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  /* background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
}

@media (max-width: 768px) {
  .stats .intro-content .section-heading {
    font-size: 2rem;
  }
}

.stats .intro-content .section-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.stats .metric-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.stats .metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stats .metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px
    color-mix(in srgb, var(--accent-color), transparent 85%);
}

.stats .metric-card:hover::before {
  transform: scaleX(1);
}

.stats .metric-card:hover .metric-icon-wrapper {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--heading-color)
  );
  transform: rotate(360deg);
}

.stats .metric-card:hover .metric-icon-wrapper i {
  color: var(--contrast-color);
}

.stats .metric-card .metric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.stats .metric-card .metric-header .metric-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.stats .metric-card .metric-header .metric-icon-wrapper i {
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.stats .metric-card .metric-header .metric-value {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1;
}

.stats .metric-card .metric-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.stats .metric-card .metric-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.stats .highlights-section .highlights-content {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .stats .highlights-section .highlights-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.stats .highlights-section .highlights-content .highlights-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .stats .highlights-section .highlights-content .highlights-title {
    font-size: 1.8rem;
  }
}

.stats .highlights-section .highlights-content .highlights-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.stats .highlights-section .highlights-content .highlights-features {
  margin-bottom: 2.5rem;
}

.stats
  .highlights-section
  .highlights-content
  .highlights-features
  .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.stats
  .highlights-section
  .highlights-content
  .highlights-features
  .feature-item
  i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 1rem;
}

.stats
  .highlights-section
  .highlights-content
  .highlights-features
  .feature-item
  span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--default-color);
}

.stats .highlights-section .highlights-content .highlights-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.stats
  .highlights-section
  .highlights-content
  .highlights-cta
  .cta-btn.primary {
  background-color: var(--accent-color);
  /* background: linear-gradient(135deg, var(--accent-color), var(--heading-color)); */
  color: var(--contrast-color);
  border: 2px solid transparent;
}

.stats
  .highlights-section
  .highlights-content
  .highlights-cta
  .cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px
    color-mix(in srgb, var(--accent-color), transparent 70%);
}

.stats
  .highlights-section
  .highlights-content
  .highlights-cta
  .cta-btn.secondary {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.stats
  .highlights-section
  .highlights-content
  .highlights-cta
  .cta-btn.secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.stats .highlights-section .highlights-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 400px;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.stats
  .highlights-section
  .highlights-gallery
  .gallery-grid
  .gallery-item.large {
  grid-row: 1/3;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.stats
  .highlights-section
  .highlights-gallery
  .gallery-grid
  .gallery-item
  .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.stats
  .highlights-section
  .highlights-gallery
  .gallery-grid
  .gallery-item
  .gallery-overlay
  h5,
.stats
  .highlights-section
  .highlights-gallery
  .gallery-grid
  .gallery-item
  .gallery-overlay
  h6 {
  color: var(--contrast-color);
  margin: 0;
  font-weight: 600;
}

.stats
  .highlights-section
  .highlights-gallery
  .gallery-grid
  .gallery-item
  .gallery-overlay
  h5 {
  font-size: 1.1rem;
}

.stats
  .highlights-section
  .highlights-gallery
  .gallery-grid
  .gallery-item
  .gallery-overlay
  h6 {
  font-size: 0.95rem;
}

.stats
  .highlights-section
  .highlights-gallery
  .gallery-grid
  .gallery-item:hover
  img {
  transform: scale(1.05);
}

.stats
  .highlights-section
  .highlights-gallery
  .gallery-grid
  .gallery-item:hover
  .gallery-overlay {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .stats .highlights-section .highlights-gallery .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 200px);
    height: auto;
  }

  .stats
    .highlights-section
    .highlights-gallery
    .gallery-grid
    .gallery-item.large {
    grid-row: auto;
  }
}
