
    .hero-section {
        background: #111e3b;
        min-height: 90vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("{% static 'images/hero-bg.svg' %}") center/cover no-repeat;
        opacity: 0.1;
        z-index: 0;
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: #f2eb52;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        opacity: 0.9;
        margin-bottom: 2rem;
    }

    .service-card {
        transition: var(--transition);
        height: 100%;
        border: none;
        box-shadow: var(--box-shadow);
    }
    .service-card .card-body {
        display: flex;
        flex-direction: column;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .stats-section {
        background: var(--light-color);
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: var(--primary-color);
    }

    .testimonial-card {
        background: white;
        border-radius: var(--border-radius);
        padding: 2rem;
        box-shadow: var(--box-shadow);
        margin-bottom: 1rem;
    }

    .rating {
        color: #f2eb52;
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .stat-number {
            font-size: 2rem;
        }
    }



/* Make the buttons align horizontally in Mobile View*/

@media (max-width: 576px) {
  .hero-section .d-flex,
  .cta-buttons {
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    justify-content: center;
    gap: 0.75rem;
  }

  .hero-section .btn,
  .cta-buttons .btn {
    flex: 1 1 auto;
    white-space: nowrap;
  }
}



/* Testimonials Section (Fix Card effect) */

.testimonial-card {
  background-color: #1e293b;       /* Keep your dark theme */
  color: #fff;                     /* Text color */
  border-radius: 10px;             /* Smooth rounded corners */
  padding: 20px;                   /* Inner spacing */
  height: 250px;                   /* 🔹 Fixed height */
  overflow-y: auto;                /* 🔹 Enable scrolling if content overflows */
  box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Soft shadow for depth */
  scrollbar-width: thin;           /* Slim scrollbar for Firefox */
  scrollbar-color: #2563eb #1e293b;/* Custom scrollbar color */
}


/* Horizontal scroll layout for testimonials on desktop */
@media (min-width: 769px) {
  .row-view.g-4 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 1rem;
  }

  .row-view.g-4 > .col-lg-4,
  .row-view.g-4 > .col-md-6 {
    flex: 0 0 auto;
    width: 350px; /* Adjust width as needed */
  }

  .row-view.g-4::-webkit-scrollbar {
    height: 8px;
  }

  .row-view.g-4::-webkit-scrollbar-thumb {
    background-color: #2563eb;
    border-radius: 4px;
  }

  .row-view.g-4::-webkit-scrollbar-track {
    background: #1e293b;
  }
}


/* Optional: Customize scrollbar for WebKit browsers (Chrome, Edge, Safari) */
.testimonial-card::-webkit-scrollbar {
  width: 6px;
}
.testimonial-card::-webkit-scrollbar-thumb {
  background-color: #2563eb;
  border-radius: 5px;
}
.testimonial-card::-webkit-scrollbar-track {
  background: #1e293b;
}

/* Ensure blockquote text scrolls within card */
.testimonial-card blockquote {
  margin: 0;
  font-style: italic;
}

/* Optional: make it responsive for smaller screens */
@media (max-width: 768px) {
  .testimonial-card {
    height: 240px; /* slightly shorter on mobile */
  }
}





