/* =================================
ALPHA INSURANCE WEBSITE STYLES
Primary Color: #006a9e
================================= */

:root {

    --primary: #006a9e;
    --primary-dark: #004f75;
    --primary-light: #1c88bf;

    --white: #ffffff;
    --light: #f5f7fb;
    --dark: #1a1a1a;

}

/* NAVBAR */

.navbar {
    background: #006a9e;
    transition: 0.3s;
}

.navbar-brand {
    font-size: 22px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin-left: 10px;
}

.nav-link:hover {
    color: #d9f2ff !important;
}


/* DROPDOWN */

.dropdown-menu {
    border-radius: 6px;
    background-color: #1c88bf;

}

.dropdown-item:hover {
    background: #006a9e;
    color: white;
}


/* TOP BAR */

.top-bar {
    background: #004f75;
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar a {
    color: white;
    margin-left: 10px;
}

/* TOP BAR */

.top-bar {
    background: #004f75;
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar a {
    color: white;
    margin-left: 10px;
}

.top-bar a:hover {
    color: #cdefff;
}


/* NAVBAR */

.navbar {
    background: #006a9e;
    padding: 15px 0;
}

.navbar-brand {
    font-size: 22px;
}

.nav-link {
    font-weight: 500;
}

.nav-link:hover {
    color: #d8f1ff !important;
}

/* ================================
GLOBAL
================================ */

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--light);
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 700;
}

h2 {
    color: var(--primary);
    margin-bottom: 30px;
}

section {
    padding: 70px 0;
}

/* ================================
NAVBAR
================================ */

.navbar {
    background: var(--primary);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 22px;
    font-weight: bold;
    color: white !important;
}

.navbar a {
    color: white !important;
    margin-left: 10px;
}

.navbar a:hover {
    color: #cdefff !important;
}

/* ================================
HERO SECTION
================================ */

.hero {

    background: linear-gradient(rgba(0, 106, 158, 0.9),
            rgba(0, 106, 158, 0.9)),
        url('../images/insurance_bg.webp');

    background-size: cover;
    background-position: center;

    color: white;
    padding: 140px 0;
    text-align: center;

}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: auto;
}

/* ================================
BUTTONS
================================ */

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 10px 25px;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

/* ================================
SERVICES
================================ */

.services {
    background: white;
}

.service-box {

    background: white;
    padding: 30px;
    border-radius: 10px;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);

    transition: 0.3s;

    border-top: 4px solid var(--primary);

    height: 100%;

}

.service-box h4 {
    margin-bottom: 15px;
}

.service-box:hover {
    transform: translateY(-6px);
}

/* ================================
INSURANCE CATEGORIES
================================ */

.categories {
    background: #f8fbff;
}

.categories h5 {

    background: white;

    padding: 20px;

    border-radius: 8px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

    transition: 0.3s;

}

.categories h5:hover {
    background: var(--primary);
    color: white;
}

/* ================================
WHY CHOOSE US
================================ */

.why-us ul {
    padding-left: 20px;
}

.why-us li {
    margin-bottom: 10px;
}

/* ================================
PARTNERS
================================ */

.partners {
    background: #f4f9fc;
}

.partners p {

    font-weight: 600;

    padding: 10px;

    background: white;

    border-radius: 6px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

}

/* ================================
CALL TO ACTION
================================ */

.cta {
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

/* ================================
FOOTER
================================ */

footer {
    background: var(--primary-dark);
    color: white;
    padding: 40px 0;
}

footer h5 {
    margin-bottom: 10px;
}

footer p {
    margin: 0;
}

/* ================================
RESPONSIVE
================================ */

@media(max-width:768px) {

    .hero h1 {
        font-size: 34px;
    }

    .hero {
        padding: 100px 20px;
    }

    section {
        padding: 50px 0;
    }

}

/* FOOTER */

footer {

    background: #004f75;
    color: white;
    padding: 60px 0 20px 0;

}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cfefff;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

/* FOOTER */

footer {

    background: #004f75;
    color: white;
    padding: 60px 0 20px 0;

}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cfefff;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

/* SOCIAL ICONS */

.social-icons a {

    color: white;
    font-size: 20px;
    margin-right: 15px;

}

.social-icons a:hover {

    color: #aee4ff;

}

/* SERVICE CARDS */

.service-card {

    background: white;

    padding: 30px;

    border-radius: 8px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

    text-align: center;

    height: 100%;

    transition: 0.3s;

}

.service-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}


.service-icon {

    font-size: 40px;

    color: #006a9e;

    margin-bottom: 15px;

}


/* CTA */

.cta-section {

    background: #006a9e;

    color: white;

    padding: 80px 0;

}

/* RISK BOX */

.risk-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.risk-box i {
    font-size: 40px;
    color: #006a9e;
    margin-bottom: 10px;
}

/* CLAIM STEPS */

.claim-step {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.claim-step h3 {
    color: #006a9e;
    font-size: 28px;
    margin-bottom: 10px;
}

/* BRAND BUTTON */

.btn-brand {
    background: #006a9e;
    color: white;
    border: none;
}

.btn-brand:hover {
    background: #00527a;
    color: white;
}

/* TEAM */

.team-card {

    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

    transition: 0.3s;

}

.team-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}

.team-card img {

    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    margin-bottom: 15px;

}

/* TEAM SECTION */

.section-title {

    font-weight: 700;
    color: #006a9e;

}


/* TEAM CARD */

.team-card {

    background: white;
    padding: 30px;
    border-radius: 10px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);

    transition: 0.3s;

}

.team-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

}

.team-card img {

    width: 120px;
    height: 120px;

    border-radius: 50%;

    object-fit: cover;

    margin-bottom: 15px;

    border: 4px solid #006a9e;

}

.team-role {

    color: #777;

    font-weight: 500;

    margin-bottom: 10px;

}

.team-contact {

    font-size: 14px;

    color: #555;

}


/* SOCIAL */

.team-social {

    margin-top: 10px;

}

.team-social a {

    display: inline-block;

    margin: 0 6px;

    font-size: 18px;

    color: #006a9e;

    transition: 0.3s;

}

.team-social a:hover {

    color: #004f74;

    transform: scale(1.2);

}

/* PARTNERS */

.partner-card {

    background: #fff;

    padding: 25px;

    border-radius: 10px;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);

    transition: 0.3s;

}

.partner-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

}

.partner-card img {

    max-width: 120px;

    margin-bottom: 15px;

}