/* About Us Page Redesign - Dark Neon Theme */
:root {
    --primary-color: #1594d2;
    --secondary-color: #ff3c7b;
    --dark-bg: #111213;
    --darker-bg: #0a0a0a;
    --text-color: #e0e0e0;
    --heading-color: #ffffff;
    --card-bg: #1a1a1a;
}



.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: -60px;
    position: relative;
    display: inline-block;
    width: 100%;
    color: rgb(11, 11, 11);
}

.section-title::after {
    content: none;
    display: none;
}

.section-title span {
    color: var(--primary-color);
}

/* Hero Section */
.about-hero {
    padding: 150px 0 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about1.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
}

.about-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #aaa;
}

.about-hero .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Intro Section */
.about-intro {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-color);
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #bbb;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, var(--primary-color), #00d2ff);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(21, 148, 210, 0.4);
    color: #fff;
}

/* Stats Section */
.stats-bar {
    background: var(--card-bg);
    padding: 60px 0;
    margin-top: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    border: 1px solid #333;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Journey Section */
.journey-section {
    padding: 80px 0;
    background-color: var(--heading-color);
}

.timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

.timeline-item:hover .timeline-year {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(21, 148, 210, 0.5);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.timeline-content p {
    font-size: 13px;
    color: #aaa;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
    text-align: center;
    position: relative;
    margin: 0 15px;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin: 0 auto 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #ccc;
}

.rating {
    color: #ffcc00;
    margin-bottom: 10px;
}

.client-name {
    font-weight: 700;
    color: #fff;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--darker-bg);
}

.team-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #333;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.team-image {
    height: 250px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #fff;
}

.team-info span {
    color: var(--primary-color);
    font-size: 14px;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(45deg, #111, #222);
    text-align: center;
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(21, 148, 210, 0.1);
}

.newsletter-form {
    display: flex;
    margin-top: 30px;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border-radius: 30px;
    border: none;
    outline: none;
    background: #333;
    color: #fff;
}

.newsletter-form button {
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    background: var(--secondary-color);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #ff1f6b;
    box-shadow: 0 5px 15px rgba(255, 60, 123, 0.4);
}

/* Responsive */
@media (max-width: 768px) {

    .intro-grid,
    .timeline {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .timeline::before {
        left: 40px;
        height: 100%;
        width: 2px;
        top: 0;
    }

    .timeline-item {
        display: flex;
        text-align: left;
        margin-bottom: 30px;
        align-items: center;
        gap: 20px;
    }

    .timeline-year {
        margin: 0;
        flex-shrink: 0;
    }

    .stats-bar {
        flex-direction: column;
        gap: 30px;
    }

    .about-hero h1 {
        font-size: 32px;
    }
}

/* Heading Arrow */
.heading-arrow img {
    width: 280px;
    margin-top: -16px;
    margin-bottom: 20px;
    display: block;
}

.care-content .heading-arrow img {
    margin-left: 0;
}

.why-header .heading-arrow img,
.journey-section .heading-arrow img {
    margin: 10px auto 20px;
}

/* =========================================
   New Auto Care Section
   ========================================= */
.auto-care-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

/* Diagonal Pattern Overlay */
.auto-care-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 10px);
    pointer-events: none;
}

.auto-care-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Image Composition */
.care-images {
    position: relative;
    height: 500px;
}

.care-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 85%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.care-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care-img-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: 15px;
    overflow: hidden;
    border: 8px solid #222;
    /* Matches background roughly */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.care-img-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.care-content .sub-title {
    color: #01a2d3;
    /* Orange accent from image */
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.care-content h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
    color: white;
}

.care-content p {
    color: #aeaeae;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.care-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #01a2d3;
    /* Orange button */
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
}

.care-btn:hover {
    background: #ff7700;
    transform: translateY(-2px);
    color: white;
}

/* =========================================
   Why Choose Us New Section
   ========================================= */
.why-choose-new {
    padding: 100px 0;
    background: url('../images/home/bg-car.jpg') no-repeat center center/cover;
    /* Fallback or specific image */
    position: relative;
}

.why-choose-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Dark overlay */
}

.why-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header .sub-title {
    color: #01a2d3;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.why-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #444;
    border-radius: 15px;
    /* Specific rounded corner */
    padding: 40px 30px;
    position: relative;
    transition: 0.3s;
    border-top: 1px solid #0077ff;
    /* Orange top border as requested/implied style */
    backdrop-filter: blur(5px);
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: #0077ff;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--bs-white);
    border: 2px solid var(--bs-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #000000;
    font-size: 24px;
    position: relative;
    top: -62px;
    right: 50px;
}

/* The badge style icon from image */
.why-icon i {
    z-index: 2;
}

.why-card h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.why-card p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive for new sections */
@media (max-width: 991px) {
    .auto-care-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .care-images {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .care-content h2 {
        font-size: 32px;
    }

    .why-header h2 {
        font-size: 28px;
    }

    .care-images {
        height: 300px;
    }

    .team-grid {
        margin-top: 0px;
    }
}