* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #fff;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;

  background: url("../images/home-hero.png") center center/cover no-repeat;

  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;

 background: linear-gradient( 90deg, rgba(0, 18, 55, 0.92) 0%, rgba(0, 33, 95, 0.85) 25%, rgba(0, 23, 65, 0.65) 45%, rgba(0, 0, 0, 0.15) 70%, rgba(0, 0, 0, 0) 100% );
}
.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.hero-content {
  margin-top: 110px;
  max-width: 650px;
}

.hero-content h1 {
  color: #fff;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.hero-content h2 {
      color: #F4C542;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.9;
  max-width: 620px;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;

	  
  background: #2563eb;
  color: #fff;

  text-decoration: none;
  padding: 16px 28px;
  border-radius: 8px;

  font-size: 15px;
  font-weight: 600;

  transition: 0.3s;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: transparent;
  color: #fff;

  border: 2px solid rgba(255, 255, 255, 0.8);

  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;

  font-size: 15px;
  font-weight: 600;

  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #111827;
}

/* ==========================
   Laptop
========================== */

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 56px;
  }

  .hero-content h2 {
    font-size: 24px;
  }
}

/* ==========================
   Tablet
========================== */

@media (max-width: 992px) {
  .hero {
    min-height: 850px;
  }

  .hero-container {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 13px;
  }
}

/* ==========================
   Mobile
========================== */

@media (max-width: 768px) {
  .hero {
    min-height: 700px;
    background-position: 75% center;
  }

  .hero-container {
    padding: 0 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content h2 {
    font-size: 20px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================
   Small Mobile
========================== */

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content h2 {
    font-size: 18px;
  }
}

.about-sparc {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

/* TRUST BAR */

.trust-bar {
  width: 100%;
  background: #f5f8ff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e8eefc;
  border-bottom: 1px solid #e8eefc;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 30px;
  border-right: 1px solid #e8eefc;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item i {
  font-size: 34px;
  color: #3B82F6;
}

.trust-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
}

.trust-item p {
  color: #475569;
  font-size: 15px;
}

/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  padding: 30px 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.section-label {
  display: inline-block;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 54px;
  line-height: 1.1;
  color: #1e293b;
  margin-bottom: 20px;
}

.about-content p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-btn:hover {
  background: #1d4ed8;
}
.about-btn {
  display: inline-block;
  background: #3B82F6;
  color: #fff;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 10px;
}

/* WHY CHOOSE */

.why-box {
	 border-radius: 14px;
	max-width: 1400px;
  background: #f5f8ff;
  border: 1px solid #e8eefc;
  margin: 0 40px 80px;
  padding: 30px;
}

.center {
  display: block;
  text-align: center;
}

.why-box h2 {
  text-align: center;
  font-size: 44px;
  color: #1e293b;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.feature-item {
  display: flex;
  gap: 18px;
}

.feature-icon {
  min-width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  color: #3B82F6;
  font-size: 28px;
}

.feature-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1e293b;
}

.feature-item p {
  color: #64748b;
  line-height: 1.7;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .about-content h2 {
    font-size: 42px;
  }
}

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

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

  .about-grid {
    padding: 30px 20px;
  }

  .why-box {
    margin: 0 20px 50px;
    padding: 25px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .why-box h2 {
    font-size: 30px;
  }
}

.services-section {
  max-width: 1350px;
  margin: 40px auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title span {
  color: #2563eb;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title h2 {
  margin-top: 10px;
  font-size: 48px;
  color: #0f172a;
  font-weight: 700;
}
.services-grid {
    display: grid;
	
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch; /* Makes all grid items equal height */
}

.service-card {
    background: #f5f8ff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s ease;

    display: flex;
    flex-direction: column;
    height: 100%; /* Fill the grid cell */
}

.service-image {
    position: relative;
    height: 180px; /* Same image height for all cards */
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 40px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1; /* Takes remaining space */
}

.service-content h3 {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.2;
    font-weight: 700;

    min-height: 68px; /* Equal title area */
}

.service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;

    flex: 1; /* Makes descriptions stretch evenly */
}
.service-icon { position: absolute; bottom: -24px; left: 24px; width: 54px; height: 54px; border-radius: 50%; background: #3B82F6; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; border: 4px solid #fff; }
/* Tablet */

@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 38px;
  }
}

/* Mobile */

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

  .section-title h2 {
    font-size: 30px;
  }

  .service-content h3 {
    font-size: 22px;
  }
}

/* ==========================
   MAIN SECTION
========================== */

.recovery-section {
	
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 20px;
}

.section-tag {
  display: block;
  text-align: center;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.recovery-section h2 {
  text-align: center;
  color: #0f172a;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 35px;
}

/* ==========================
   CONDITIONS
========================== */
/* ==========================
   PARTNERS SECTION
========================== */
/* ==========================
   PARTNERS SECTION
========================== */

.partners-section {
    margin: 40px 0;
    padding: 30px 0;
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 40px;
}

.partners-header .section-tag {
    display: block;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.partners-header h2 {
    color: #0f172a;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 35px;
}

/* Slider */

.partners-slider {
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 20px;
    width: max-content;

    animation: scrollPartners 25s linear infinite;
    will-change: transform;
}

.partner-card {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;
    overflow: hidden;

    transition: all 0.4s ease;
}

.partner-card img {
    display: block;
    max-width: 160px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;

    transition: 0.4s ease;
}

.partner-card:hover img {
    transform: scale(1.08);
}

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

/* Infinite Animation */

@keyframes scrollPartners {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause on Hover */

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* ==========================
   PROCESS
========================== */
.process-section {
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: center;
  gap: 12px;
}

.process-card {

  border: 1px solid #e8edf5;
  border-radius: 10px;
  padding: 18px 20px;
  min-height: 135px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f5f8ff;
}

.step-number {
  min-width: 46px;
  width: 46px;
  height: 46px;
  background: #e8f0ff;
  color: #3B82F6;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  font-weight: 700;

  margin-bottom: 0;
  flex-shrink: 0;
}

.process-content {
  flex: 1;
}

.process-card h3 {
  font-size: 15px;
  line-height: 1.3;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.process-arrow {
  text-align: center;
  color: #2563eb;
  font-size: 22px;
}
/* ==========================
   FACILITY
=/* ==========================
   FACILITY SECTION
========================== */

.facility-section {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 18px;
  margin: 50px 0;
  align-items: stretch;
}

.facility-content {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px 24px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #fff;
}

.facility-content .section-tag {
  display: block;
  text-align: left;
  margin-bottom: 10px;

  font-size: 13px;
  font-weight: 700;
  color: #2563eb;
}

.facility-content h2 {
  text-align: left;
  font-size: 28px;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 15px;
}

.facility-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
}

.facility-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.facility-gallery img {
  width: 100%;
  height: 210px; /* reduced from 240px */
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: 0.3s ease;
}

.facility-gallery img:hover {
  transform: scale(1.02);
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px) {
  .facility-section {
    grid-template-columns: 1fr;
  }

  .facility-content {
    padding: 25px;
  }

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

  .facility-gallery img {
    height: 180px;
  }
}

/* ==========================
   MOBILE
========================== */

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

  .facility-gallery img {
    height: 220px;
  }

  .facility-content h2 {
    font-size: 24px;
  }

  .facility-content p {
    font-size: 14px;
  }
}
.facility-image {
  overflow: hidden;
  border-radius: 12px;
}

/* ==========================
   TESTIMONIALS
========================== */
/* ==========================
   TESTIMONIALS
========================== */

.testimonial-section {
    margin-bottom: 60px;
}

.testimonial-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.testimonial-slider {
    overflow: hidden;
    flex: 1;
}

.testimonial-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 14px);

    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;

    min-height: 220px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #f5f8ff;
}

.stars {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #334155;
    line-height: 1.7;
    font-size: 15px;
    flex-grow: 1;
}

.testimonial-card h4 {
    margin-top: 20px;
    color: #0f172a;
    font-size: 15px;
}

.testimonial-nav {
    width: 45px;
    height: 45px;

    border-radius: 50%;
    border: 2px solid #2563eb;

    background: #fff;
    color: #2563eb;

    cursor: pointer;
    flex-shrink: 0;

    transition: 0.3s;

    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav:hover {
    background: #2563eb;
    color: #fff;
}
/* ==========================
   TABLET
========================== */
@media (max-width: 992px) {

    .testimonial-container {
        display: block;
    }

    .testimonial-slider {
        overflow-x: auto;
        overflow-y: hidden;

        /* Smooth scrolling */
        scroll-behavior: smooth;

        /* Snap effect */
        scroll-snap-type: x mandatory;

        /* Hide scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .testimonial-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-track {
        gap: 15px;
        width: max-content;
    }

    .testimonial-card {
        flex: 0 0 calc(50vw - 25px);
        scroll-snap-align: start;
    }

    /* Hide navigation buttons */
    .testimonial-buttons,
    .testimonial-nav {
        display: none;
    }
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {

    .testimonial-slider {
        overflow-x: auto;
        overflow-y: hidden;

        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;

        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .testimonial-slider::-webkit-scrollbar {
        display: none;
    }

    .testimonial-track {
        gap: 15px;
        width: max-content;
    }

    .testimonial-card {
        flex: 0 0 calc(100vw - 50px);
        scroll-snap-align: center;
    }

    .testimonial-buttons,
    .testimonial-nav {
        display: none;
    }
}
/* ==========================
   CTA
========================== */

.bottom-cta {
  background: linear-gradient(90deg, #021b5c, #0039c7, #021b5c);

  border-radius: 10px;
  padding: 45px 50px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #fff;
}

.cta-content h2 {
  color: #fff;
  text-align: left;
  margin-bottom: 10px;
  font-size: 42px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 20px;
}

.cta-primary,
.cta-secondary {
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 600;
}

.cta-primary:hover {
  background: #1d4ed8;
}

.cta-primary {
  background: #2563eb;
  color: #fff;
}

.cta-secondary {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
}
.cta-secondary:hover {
  background: #fff;
  color: #111827;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .conditions-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .facility-section {
    grid-template-columns: 1fr;
  }

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

  .process-arrow {
    display: none;
  }

  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonial-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .conditions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .facility-gallery {
    grid-template-columns: 1fr;
  }

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

  .bottom-cta {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .cta-content h2 {
    text-align: center;
    font-size: 30px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }

  .recovery-section h2 {
    font-size: 30px;
  }
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}
.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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