
/* ================= GLOBAL ================= */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Navbar */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Logo */
#logo-img {
    height: 40px;
    width: auto;
    filter: contrast(110%) brightness(150%);
}

/* ================= HERO SECTIONS ================= */

/* Common Hero */
.hero,
.about-hero,
.contact-hero {
    background: linear-gradient(90deg, #0d6efd, #0a2753);
    color: #fff;
    display: flex;
    align-items: center;
}

.hero {
    min-height: 90vh;
    background: url('./images/Insurance.jpg') no-repeat center/cover;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.about-hero { height: 300px; }
.contact-hero { height: 280px; }

/* ================= CAROUSEL ================= */
.card-img-overlay {
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.card-img-overlay h5 {
    font-size: 2rem;
    font-weight: 700;
}

/* ================= CARDS ================= */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}

/* ================= ABOUT ================= */
.about-section {
    background: #f8f9fa;
    padding: 4rem 1rem;
    border-radius: 1rem;
    text-align: center;
}

.about-icon {
    font-size: 120px;
    color: #0d6efd;
}

/* ================= FEATURES ================= */
.feature-box,
.feature-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-box:hover,
.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card i {
    font-size: 24px;
    color: #0d6efd;
}

/* ================= STATS ================= */
.stats-section {
    background: linear-gradient(90deg, #0d6efd, #0a2753);
    padding: 50px 0;
    color: #fff;
    text-align: center;
}

.stats-section h1,
.stats-section h2 {
    font-weight: 700;
}

/* ================= TEAM ================= */
.team-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-card i {
    font-size: 30px;
    color: #0d6efd;
}

/* ================= TESTIMONIAL ================= */
.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
}

/* ================= CONTACT ================= */
.contact-info-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-info-card i {
    color: #0d6efd;
}

.contact-form-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.form-control {
    border-radius: 8px;
}

.emergency-box {
    background: #ffecec;
    padding: 15px;
    border-left: 4px solid red;
    border-radius: 8px;
}

/* ================= CTA ================= */
.cta-section {
    background: #0d6efd;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

/* ================= INSURANCE CARDS ================= */
.scroll-container {
    display: flex;
    gap: 18px;
    overflow-x: auto;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.insurance-card-pro {
    min-width: 180px;
    background: #fff;
    border-radius: 14px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
    position: relative;
}

.insurance-card-pro:hover {
    transform: translateY(-8px);
}

.insurance-card-pro i {
    font-size: 26px;
    color: #0d6efd;
}

.insurance-card-pro span {
    font-size: 13px;
    color: #28a745;
}

/* ================= STRIPS ================= */
.top-strip,
.car-strip {
    background: linear-gradient(90deg, #0d6efd, #0a2753);
    color: #fff;
    text-align: center;
    padding: 8px;
}

/* ================= ASSIST ================= */
.assist-strip {
    background: linear-gradient(270deg, #509be9, #82e6fe);
    border-radius: 16px;
    padding: 15px;
}

.assist-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

/* ================= RESPONSIVE ================= */
@media (min-width: 992px) {
    .scroll-container {
        flex-wrap: wrap;
        overflow: visible;
    }

    .insurance-card-pro {
        flex: 0 0 22%;
    }
}

@media (max-width: 768px) {
    .card-img-overlay h5 {
        font-size: 1.5rem;
    }
}