* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ===== Hero Section ===== */
.hero-section {
    background: url('../images/about.jpg') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    height: 65vh;
    color: white;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    /* dark overlay */
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: 1px;
}

.hero-section p {
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

/* ===== Breadcrumb ===== */
.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 15px 0;
}

.breadcrumb-section .breadcrumb {
    margin-bottom: 0;
    background: transparent;
}

.breadcrumb a {
    text-decoration: none;
    color: #0d6efd;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== About Content ===== */
.about-content img {
    border-radius: 12px;
}

.about-content h2 {
    font-size: 2rem;
    color: #0f172a;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* ===== Mission & Vision Redesigned ===== */
.mission-section {
    background: #f8f9fa;
}

.mission-card {
    background: #fff;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.icon-circle {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #38bdf8, #6366f1);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #34d399, #059669);
}

.mission-section h2 {
    font-size: 2rem;
    color: #0f172a;
}

.mission-section h5 {
    color: #111827;
    font-size: 1.2rem;
}

.mission-section p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== Dealer Info ===== */
.dealer-info h2 {
    color: #0f172a;
}

.dealer-photo img {
    border: 6px solid #fff;
    object-fit: cover;
    width: 220px;
    height: 220px;
}

.dealer-photo {
    position: relative;
}

.dealer-badge {
    position: absolute;
    bottom: 10px;
    right: 20px;
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.dealer-details h3 {
    font-size: 1.75rem;
    color: #111827;
}

.dealer-details p {
    line-height: 1.6;
}

.dealer-details .btn {
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dealer-details .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.dealer-info h2 {
    text-align: center;
    position: relative;
    display: block;
    padding-bottom: 15px;
    margin: 0 auto;
}

.dealer-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

/* ===== Experience Section ===== */
.experience-section h2,
.choose-us-section h2 {
    color: #0f172a;
    font-size: 2rem;
}

.exp-card,
.choose-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exp-card:hover,
.choose-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* ===== Fade-In Animation ===== */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}