
    /* CSS Variables for Theme Consistency */
    :root {
      --primary-color: #01aaee; /* Cyan/Blue */
      --secondary-color: #4fb81f; /* Kelly Green */
      --dark-bg: #1a202c; /* Tailwind gray-900 equivalent */
      --light-bg: #f5f8fa; /* Near-white background */
      --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }
    body {
      font-family: 'Poppins', sans-serif;
    }
    .btn-primary {
      background-color: var(--primary-color);
      color: white;
      transition: all 0.3s ease;
    }
    .btn-primary:hover {
      background-color: #0190ce; /* Slightly darker */
      transform: translateY(-2px);
    }
    .btn-secondary {
      background-color: transparent;
      border: 2px solid white;
      color: white;
      transition: all 0.3s ease;
    }
    .btn-secondary:hover {
      background-color: white;
      color: var(--primary-color);
      border-color: white;
    }
    .card-shadow {
      box-shadow: var(--card-shadow);
      transition: all 0.3s ease;
    }
    .card-shadow:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.15);
    }

    /* Carousel Styles */
    .carousel-container {
        overflow: hidden;
        border-radius: 12px;
    }
    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .carousel-item {
        min-width: 100%; /* Default for mobile */
        padding: 0 1rem;
        box-sizing: border-box;
    }
    .testimonial-card {
        background-color: white;
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    }
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.4);
        color: white;
        border: none;
        padding: 10px;
        z-index: 10;
        cursor: pointer;
        border-radius: 50%;
        transition: background 0.3s;
    }
    .carousel-btn:hover {
        background: rgba(0, 0, 0, 0.6);
    }
    .carousel-btn.prev { left: 0; margin-left: 0.5rem; }
    .carousel-btn.next { right: 0; margin-right: 0.5rem; }

    @media (min-width: 640px) {
        .carousel-item {
            min-width: calc(100% / 3); /* Show 3 per slide on desktop */
        }
    }
    .profile-img {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--secondary-color);
    }

    /* Simple animation for appearance */
    @keyframes slideInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .animate-slide-up {
      animation: slideInUp 0.6s ease-out forwards;
    }
    /* Styles for the "Why Choose Us" cards */
    .feature-card {
        background-color: white;
        padding: 1rem;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
        border-left: 4px solid var(--primary-color);
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    }
    .feature-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    }
    /* Add this CSS inside your <style> block or in styles.css */
/* Update this CSS inside your <style> block or in styles.css */

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 280px; /* Adjust width as needed */
    height: 100%;
    background-color: var(--primary-color); /* Uses your theme blue */
    /* Remove padding-top from here, and apply it to content if needed */
    padding: 20px; /* Reduced overall padding for better fit */
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
    transform: translateX(100%); /* Start off-screen */
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Space between links */
    overflow-y: auto; /* Important: allow scrolling if content overflows */
}

.nav-drawer.active {
    transform: translateX(0); /* Slide fully into view */
}

/* Styles for the links inside the drawer */
.nav-drawer .drawer-link {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s;
}

.nav-drawer .drawer-link:hover {
    color: var(--secondary-color); /* Use theme green for hover */
}

/* Close button style - Refined positioning */
.nav-drawer .close-btn {
    position: absolute; /* Keep it absolute within the drawer */
    top: 15px; /* Adjust as needed, e.g., 10px or 20px */
    right: 35px; /* Adjust as needed */
    background: none;
    border: none;
    font-size: 1.8rem; /* Make it a bit larger for visibility */
    color: white;
    cursor: pointer;
    line-height: 1; /* Prevents extra line height from pushing it */
    padding: 5px; /* Add some padding for easier clicking */
    transition: color 0.2s;
}

.nav-drawer .close-btn:hover {
    color: var(--secondary-color); /* Match drawer links hover */
}


/* Overlay to dim the background */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    visibility: hidden; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}
