  /* CSS Variables */
  :root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
}




/* Hero Section */
/* .hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;

    padding: 120px 0;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
} */

/* Services Section */
.services-section {
    background-color: var(--light);
    padding-bottom: 80px; /* Adds space below the cards */
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
    text-align: left; /* <-- Ensures everything inside aligns left */
}
.service-content h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    text-align: left; /* <-- Forces left alignment */
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--secondary);
    margin-right: 10px;
}

.service-cta {
    display: block;
    margin: 20px auto 0;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: color 0.3s;
}

.service-cta:hover {
    color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials {
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary);
}

.dropbtn.active {
  color: #007bff; /* Your brand color */
  font-weight: bold;
}




