:root {
    --primary: #1800ad;
    --primary-dark: #69b3e8;
    --secondary: #64748b;
    --light: #f8fafc;
    --dark: #1e293b;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: var(--light);
}

/* Navbar */
.navbar {
    padding: 1rem 2rem;
    box-shadow: var(--shadow);
    background-color: white;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    color: var(--dark);
}

.nav-link:hover {
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/banner.jpeg') center center/cover no-repeat;
    padding: 8rem 0;
    color: white;
    text-align: center;
    height: 80vh;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-weight: 700;
    color: var(--dark);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

/* About Section */
.about-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Services Section */
.service-card {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    opacity: 1;
    /* visible by default */
    transform: translateY(0);
    transition: var(--transition);
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-content {
    padding: 2rem;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
}

.service-img:hover {
    transform: scale(1.03);
}

/* Why Choose Us */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    background-color: white;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: 1rem;
    background-color: white;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.stars {
    color: var(--warning);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 4rem 0;
}

/* Contact Section */
.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-control {
    border-radius: var(--radius);
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 4rem 0 0;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    list-style: none;
    text-decoration: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.subscribe-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem;
    color: white;
    width: 100%;
    margin-bottom: 1rem;
}

.subscribe-input::placeholder {
    color: #cbd5e1;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 4rem;
}

/* Modal Styling */
.modal-content {
    border-radius: var(--radius);
    border: none;
}

.modal-header {
    background-color: var(--primary);
    color: white;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.service-feature-list {
    list-style: none;
    padding: 0;
}

.service-feature-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.service-feature-list li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--primary);
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-content,
    .service-img-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    section {
        padding: 3rem 0;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
}