:root {
    --banner-blue: #00AEEF;    /* Banner wala main light blue */
    --deep-navy: #0F172A;     /* Background depth ke liye dark color */
    --accent-red: #E31E24;    /* Logo aur buttons wala red */
    --safety-yellow: #FFD100; /* Banner icons wala yellow */
    --pure-white: #FFFFFF;
}
.custom-navbar {
    background-color: var(--banner-blue) !important; /* Blue background */
    border-bottom: 4px solid var(--accent-red);     /* Red patti jo banner mein bhi hai */
    padding-top: 5px !important; 
    padding-bottom: 5px !important; 
    transition: all 0.3s ease;
}

.nav-link-custom {
    color: var(--pure-white) !important;
    font-weight: 700; /* Bold links for professional look */
}

.nav-link-custom:hover {
    color: var(--deep-navy) !important; /* Hover par dark navy contrast */
}
/* Navbar ki overall height padding se adjust karein *}

/* Logo ka size yahan se control hoga */
.navbar-brand img {
    width: 100px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Menus aur Logo ke darmiyan space control karne ke liye */
.navbar-collapse {
    flex-grow: 0; /* Is se menus khwa-makhwa corners par nahi jayenge */
}

.navbar-nav {
    margin-right: 30px; /* Menu aur Button ke beech gap */
}

.nav-link-custom {
    color: var(--pure-white) !important;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px !important;
    transition: 0.3s;
}

.nav-link-custom:hover {
    color: var(--safety-yellow) !important;
}

/* Call Button */
.btn-call {
    background-color: var(--accent-red);
    color: var(--pure-white) !important;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.btn-call i {
    color: var(--safety-yellow);
}



/* Hero Section Styles */
.hero-section {
    /* 2 colors mix: Light Blue se Dark Navy tak */
    background: linear-gradient(135deg, #00AEEF 10%, #0F3957 90%), 
                url('../assests/images/hero-bg.jpg');
    background-blend-mode: overlay; /* Is se image colors ke sath merge ho jayegi */
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    color: var(--pure-white);
}

/* Red text highlight in Hero */
.hero-title span {
    color: var(--accent-red);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--accent-red);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 600px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item i {
    color: var(--safety-yellow);
    margin-right: 15px;
    font-size: 1.2rem;
}

.btn-hero {
    background-color: var(--accent-red);
    color: white !important;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    transition: 0.3s all ease;
    border: none;
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.3);
}

.btn-hero:hover {
    background-color: #c41a1f;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(227, 30, 36, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-section { 
        text-align: center; 
        background: linear-gradient(135deg, #00AEEF 10%, #0F3957 90%), 
                    url('assests/images/hero-bg.jpg');
    }
    .feature-item { justify-content: center; }
    .text-center{
        margin-top: 38px;
    }
    .hero-title{
        margin-top: 40px;
    }
}




/* Unique Steps Section */
.process-section {
    /* Thora sa change, Hero ke navy se thora deep aur solid */
    background-color: #0E4364; 
    padding: 100px 0;
    position: relative;
    /* Hero aur is section ke beech aik subtle separator line */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.step-wrapper {
    /* Card ko thora solid aur "Glassy" look dein taake navy par uthe */
    background: #1F5382; 
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 30px;
    transition: 0.4s ease;
}

.step-wrapper:hover {
    /* Hover par Hero wala Light Blue touch taake branding link ho */
    border-color: #00AEEF; 
    background: #1e293b;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Icons ko banner ke yellow se match karein */
.step-icon-box {
    background: #00AEEF; /* Blue background for icon box */
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.2);
}

.step-icon-box i {
    color: #FFD100; /* Yellow icons from banner */
}

/* Background Large Numbers */
.step-bg-number {
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-size: 150px;
    font-weight: 900;
    color: rgba(227, 30, 36, 0.1); /* Very faint Red */
    line-height: 1;
    z-index: -1;
    user-select: none;
}

.step-icon-box {
    width: 70px;
    height: 70px;
    background: #E31E24;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.3);
}

.step-icon-box i {
    font-size: 30px;
    color: #FFD100; /* Safety Yellow */
}

.step-wrapper h4 {
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step-wrapper p {
    color: #d1d1d1;
    font-size: 0.95rem;
    line-height: 1.7;
}




/* About Section Unique Styling */
.about-section {
    background:linear-gradient(315deg, #00AEEF 10%, #0F3957 90%);
    padding: 100px 0;
    color: #FFFFFF;
}

.about-img-wrapper {
    position: relative;
    padding: 20px;
}

/* Image ke peeche red box jo thora bahar nikla ho */
.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 90%;
    border: 8px solid #E31E24;
    border-radius: 20px;
    z-index: 0;
}

.about-img-wrapper img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: #FFD100; /* Safety Yellow Highlights */
}

/* List items ko professional icons dena */
.about-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns for list on desktop */
    gap: 15px;
}

.about-list li {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.about-list li i {
    color: #E31E24;
    margin-right: 10px;
    font-size: 1.2rem;
}


/* Service Area Section */
.area-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.map-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 450px;
    border: 5px solid #ffffff;
}

.area-content-box {
    padding-left: 30px;
}

.area-title {
    color: #1B263B;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.area-title span {
    color: #E31E24;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for cities */
    gap: 12px;
    margin-top: 25px;
}

.location-item {
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2F3336;
    display: flex;
    align-items: center;
    border-left: 3px solid transparent;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.location-item:hover {
    border-left: 3px solid #E31E24;
    color: #E31E24;
    transform: translateX(5px);
}

.location-item i {
    color: #E31E24;
    margin-right: 10px;
}

@media (max-width: 991px) {
    .area-content-box { padding-left: 0; margin-top: 40px; }
    .location-grid { grid-template-columns: 1fr; }
}




/* Services Section Redesign */
.services-section {
    background-color: #0E4364; /* Main Navy Background */
    padding: 100px 0;
}

.service-card {
    background: #1F5382;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    background: rgba(227, 30, 36, 0.05); /* Very light red tint */
    border-color: #E31E24;
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(227, 30, 36, 0.2);
}

.service-icon {
    font-size: 45px;
    color: #FFD100; /* Safety Yellow */
    margin-bottom: 25px;
    display: inline-block;
    transition: 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    color: #FFFFFF;
}

.service-card h4 {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}



/* Reviews Section Styling */
.reviews-section {
    background-color: #0681B4;
    padding: 100px 0;
}

.google-badge {
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.review-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    position: relative;
    border-bottom: 5px solid #E31E24; /* Branding Red */
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-img {
    width: 50px;
    height: 50px;
    background: #1B263B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-transform: uppercase;
}

.stars {
    color: #FFD100; /* Safety Yellow Stars */
    font-size: 14px;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}
.reviews-section {
    /* Top section navy se thora dark aur greyish side par */
    background: linear-gradient(135deg, #00AEEF 10%, #0F3957 90%); 
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Boht halki line separation ke liye */
}

.google-rating-box {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    gap: 15px;
}

.excellent-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: #1a1a1a;
    display: block;
    line-height: 1;
}

.small-stars {
    color: #fbbc04; /* Google Star Color */
    font-size: 0.8rem;
}

.review-card-pro {
    background: white;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
    border-bottom: 4px solid red; /* Naya Blue Color */
}

.review-card-pro:hover {
    transform: translateY(-10px);
}

.google-icon-top {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #4285F4; /* Google Blue */
    font-size: 1.2rem;
}

.user-img-circle {
    width: 50px;
    height: 50px;
    background: #4285F4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.stars-gold {
    color: #fbbc04;
}

.review-text {
    font-style: italic;
    color: #444;
    line-height: 1.6;
}



/* Final Footer Styling */
.main-footer {
    background: linear-gradient(315deg, #00AEEF 10%, #0F3957 90%); /* Darker shade for contrast */
    padding: 80px 0 30px;
    color: #e0e0e0;
    border-top: 4px solid #E31E24;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 20px;
}

.footer-heading {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #E31E24;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #FFD100;
    padding-left: 8px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info-item i {
    color: #E31E24;
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-bottom {
    background-color: #0d131d;
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #E31E24;
    transform: translateY(-3px);
}
   .opening-hours span {
    font-size: 0.9rem;
}
.footer-heading {
    border-bottom: 2px solid #E31E24; /* Brand red underline */
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}


/* About Page Header */
.about-header {
    position: relative;
    background: linear-gradient(rgba(27, 38, 59, 0.8), rgba(27, 38, 59, 0.8)), 
                url('../assets/images/aboutimgA.png'); /* Use high-res version of image_b5aee7.jpg */
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: #ffffff;
    text-align: center;
}

.about-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.about-header h1 span {
    color: #E31E24; /* Branding Red */
}

/* Breadcrumbs style */
.breadcrumb-custom {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    margin-bottom: 25px;
}

.breadcrumb-custom a {
    color: #FFD100;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-custom span {
    margin: 0 10px;
    color: #ccc;
}

.header-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.h-feature-item {
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.h-feature-item i {
    color: #E31E24;
}

@media (max-width: 768px) {
    .about-header h1 { font-size: 2.2rem; }
    .header-features { flex-direction: column; gap: 10px; }
}



/* What We Do Section */
.wwd-section {
    background: linear-gradient(135deg, #00AEEF 10%, #0F3957 90%); /* Deep dark blue-black */
    padding: 100px 0;
}

.wwd-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

/* Red Accent Line */
.wwd-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 4px;
    background: #E31E24;
    transition: 0.4s ease;
    transform: translateX(-50%);
}

.wwd-card:hover::after {
    width: 100%;
}

.wwd-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.wwd-icon-box {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: #E31E24;
    transition: 0.3s;
}

.wwd-card:hover .wwd-icon-box {
    background: #E31E24;
    color: #ffffff;
}

.wwd-card h4 {
    color: #1B263B;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.25rem;
}

.wwd-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Why Choose Us Redesign */
.wcu-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.wcu-img-container {
    position: relative;
    padding: 15px;
}

/* Red decorative box behind image */
.wcu-img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 70%;
    background: #E31E24;
    border-radius: 20px;
    z-index: 0;
}

.wcu-img-container img {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    transition: 0.4s ease;
}

.wcu-img-container:hover img {
    transform: scale(1.02);
}

.wcu-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1B263B;
    margin-bottom: 25px;
}

.wcu-content h2 span {
    color: #E31E24;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    min-width: 45px;
    height: 45px;
    background: rgba(227, 30, 36, 0.1);
    color: #E31E24;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.feature-text h5 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #1B263B;
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}


/* Stats Section Redesign */
.stats-section {
    background: #0E4364
                url('../assests/images/pattern.png'); /* Subtle pattern background */
    padding: 100px 0;
}

.stat-card {
    background-color:#1F5382;
    border-top: 4px solid #E31E24;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
    border-left: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
}

.stat-card:hover {
    border-color: #00AEEF;;
    background:#1e293b;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);
}

.stat-icon {
    font-size: 40px;
    color: #FFD100; /* Safety Yellow */
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-text {
    color: #b0b0b0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}



/* Services Page Header */
.services-hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(45deg, rgba(15, 20, 30, 0.9), rgba(15, 20, 30, 0.6)), 
                url('../assests/images/imgA.jpg'); /* Use high-res image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 100px 0;
    color: #fff;
    border-bottom: 5px solid #E31E24;
}

.services-hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.services-hero .accent-text {
    color: #E31E24;
}

.service-breadcrumb {
    background: rgba(227, 30, 36, 0.1);
    backdrop-filter: blur(10px);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(227, 30, 36, 0.3);
}

.service-breadcrumb a {
    color: #FFD100;
    text-decoration: none;
    font-weight: 600;
}

.trust-badge-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.trust-item i {
    color: #FFD100;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .services-hero h1 { font-size: 2.5rem; }
    .trust-badge-container { flex-direction: column; gap: 15px; }
}


/* Services Grid Redesign */
.services-grid-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.service-item-card {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-item-card:hover {
    transform: translateY(-10px);
    border-color: #E31E24;
    box-shadow: 0 15px 45px rgba(227, 30, 36, 0.1);
}

.s-icon-wrap {
    width: 65px;
    height: 65px;
    background: #fff1f1;
    color: #E31E24;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.service-item-card:hover .s-icon-wrap {
    background: #E31E24;
    color: #fff;
    transform: rotateY(180deg);
}

.service-item-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1B263B;
    margin-bottom: 15px;
}

.service-item-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}


/* Roadside Situations Redesign */
.roadside-section {
    background: #0E4364; /* Darker navy for a premium look */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.roadside-card {
    background:#1F5382; /* Subtle glass effect */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 4px solid #E31E24;
    padding: 40px 25px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.roadside-card:hover {
    border-color: #00AEEF;
    background: #1e293b;
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(227, 30, 36, 0.15);
}

.roadside-icon {
    font-size: 35px;
    color: #E31E24;
    margin-bottom: 20px;
    display: block;
}

.roadside-card h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.roadside-card p {
    color: #a0a6ad;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Red decorative circle in background */
.roadside-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.05) 0%, transparent 70%);
}


/* Service Areas Redesign */
.area-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 400px;
}

.area-content h2 {
    font-weight: 800;
    color: #1B263B;
    margin-bottom: 20px;
}

.area-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.location-chip {
    padding: 8px 18px;
    background: #f1f3f5;
    color: #495057;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid transparent;
    cursor: default;
}

.location-chip:hover {
    background: #E31E24;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.2);
}

.area-note {
    margin-top: 30px;
    padding: 20px;
    border-left: 4px solid #FFD100;
    background: #fffdf2;
    font-style: italic;
    color: #555;
}

/* Contact Page Header */
.contact-hero {
    background: linear-gradient(rgba(16, 20, 29, 0.85), rgba(16, 20, 29, 0.85)), 
                url('../assests/images/imgB.jpg'); /* High quality car image */
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    border-bottom: 4px solid #E31E24;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.contact-hero h1 span {
    color: #E31E24;
}

.contact-hero p {
    font-size: 1.15rem;
    color: #bdc3c7;
    max-width: 700px;
    margin: 20px auto 40px;
}

/* Header Quick Contact Info */
.header-info-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.h-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.h-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(227, 30, 36, 0.15);
    border: 1px solid rgba(227, 30, 36, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E31E24;
    font-size: 1.2rem;
}

.h-info-text strong {
    display: block;
    font-size: 1rem;
    color: #FFD100; /* Yellow accent for visibility */
}

@media (max-width: 768px) {
    .contact-hero h1 { font-size: 2.5rem; }
    .header-info-bar { gap: 20px; text-align: left; }
}

/* Contact Section Redesign */
.contact-wrapper {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-top: -60px; /* Overlap with hero for modern look */
    position: relative;
    z-index: 10;
    margin-top: 50px;
}

.contact-info-panel {
    background: #00AEEF;
    color: #fff;
    padding: 60px 40px;
    height: 100%;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: rgba(227, 30, 36, 0.1);
    border: 1px solid #E31E24;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E31E24;
    font-size: 1.2rem;
}

.contact-form-panel {
    padding: 60px 40px;
}

.form-control {
    border: 2px solid #f1f3f5;
    padding: 12px 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #E31E24;
    box-shadow: none;
    background: #fffcfc;
}

.submit-btn {
    background: #E31E24;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.4s;
}

.submit-btn:hover {
    background: #1B263B;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.3);
}
.contact-hero {
    margin-top: 0 !important;
    padding-top: 50px; /* Isay aap apni marzi se adjust kar sakte hain */
}