:root {
    /* Brand blues (from logo) */
    --primary-blue: #0A2A66;      /* Deep navy (logo text) */
    --secondary-blue: #0D4EA6;    /* Royal blue */
    --accent-blue: #2BB4FF;       /* Sky / cyan highlight */

    /* UI backgrounds */
    --light-blue: #EAF4FF;        /* Soft blue background */
    --section-blue: #F5FAFF;

    /* Text */
    --text-dark: #0F172A;         /* Dark navy text */
    --text-light: #64748B;        /* Muted gray-blue */

    /* Borders & dividers */
    --border-color: #D6E4F0;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header & Navigation */
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-blue) !important;
}

.navbar-brand span {
    color: var(--accent-teal);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

/* Hero Section */
.hero-section {
   background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        var(--bg-image);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Form */
.search-container {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.search-form .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Section Styling */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Styling */
.card-custom {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body-custom {
    padding: 25px;
}

.card-title-custom {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card-text-custom {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--light-blue);
    padding: 80px 0;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* How It Works Section */
.step-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* FAQ Section */
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.faq-question {
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: var(--text-light);
    padding-top: 10px;
    display: none;
}

/* Footer */
.footer {
    background-color: var(--secondary-blue);
    color: var(--light-blue);
    padding: 60px 0 30px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--light-blue);
}

.footer-link {
    color:var(--light-blue);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent-blue);
}

.copyright {
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color:var(--light-blue);
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
