* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== TOP INFO BAR ===== */
.top-bar {
    background: rgb(224, 28, 28);
    padding: 1px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    align-items: center;
}

.top-left img {
    height: 90px;
    /* 75px increase */
    width: auto;
    display: block;
}

.brand-text {
    font-size: 25px;
    color: black;
    margin-left: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* RIGHT SIDE INFO */
.top-right {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #666;
    font-size: 14px;
}

/* INFO ITEM */
.top-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-icon {
    font-size: 30px;
    line-height: 1;
}

.top-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    gap: 6px;
}

.top-title {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.top-value {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.top-icon {
    font-size: 20px;
    color: white;
}


/* ===== MAIN NAVIGATION BAR ===== */
.main-header {
    background: #2c2c2c;
    /* Light gray */
    padding: 5px 60px;
}

.nav {
    display: flex;
    justify-content: right;
    padding: 15px 0;
}

.nav a {
    margin-right: 32px;
    text-decoration: none;
    /* default underline remove */
    color: white;
    /* names white */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    transition: 0.3s;
}

.nav a:hover {
    color: red;
    /* hover red */
    text-decoration: underline;
    /* underline on hover */
}

.nav a.active {
    color: #ffd166;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)),
        url("../assets/images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 80px;
    position: relative;
}

.hero-content {
    color: #fff;
    max-width: 600px;
    padding-top: 30px;
    /* thoda wide for better spacing */
}

/* Main Heading */
.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
}

/* Subheading */
.hero-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #f1f1f1;
}

/* Description */
.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e6e6e6;
}

/* Trusted Line Special Styling */
.trusted-line {
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
    padding-left: 8px;
    border-left: 3px solid #e63946;
    color: #ffffff;
}

/* ===== HOW ANYGO WORKS ===== */
.how-it-works {
    padding: 30px 50px;
    background: white;
    /* soft red background */
    text-align: center;
    position: relative;
}

.how-it-works-header {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

/* ===== MAIN HEADING (PROJECTS style pill) ===== */
.section-title {
    font-size: 26px;
    font-weight: 700;
    color: rgb(224, 28, 28);
    background: rgba(230, 57, 70, 0.08);
    padding: 5px 5px;
    border-radius: 8px;
    /* small radius, not pill */
    display: inline-block;
    letter-spacing: 0.5px;
    border: 2px solid #e63946;
    margin-bottom: 15px;
}

/* ===== SUB HEADING ===== */
.section-subtitle {
    font-size: 26px;
    font-weight: 600;
    margin-top: 15px;
    line-height: 1.3;
    color: #222;
    max-width: 850px;
    margin: 0 auto 10px;
    font-size: 20px;
    line-height: 1.6;
}

/* First 3 words blue */
.section-subtitle span {
    color: #1bb1c9;
    /* professional blue */
}

/* Remove old background shape */
.how-it-works-header::before {
    display: none;
}

/* ===== CARDS (unchanged as requested) ===== */

.works-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;

    /* NEW Soft Creative Background */
    padding: 50px;
    background: radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.06), transparent 40%),
        #fff5f5;
    border-radius: 20px;
}

/* ================= CARD ================= */

.work-card {
    flex: 1;
    min-width: 220px;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.35s ease;
    cursor: default;
    position: relative;
    overflow: hidden;

    /* Enhanced soft shadow */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.08);
}

/* Subtle inner glow layer */
.work-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* ================= HOVER EFFECT ================= */

.work-card:hover {
    transform: translateY(-12px) scale(1.02);

    box-shadow:
        0px 20px 40px rgba(0, 0, 0, 0.12),
        0px 0px 25px rgba(230, 57, 70, 0.25);

    border-color: rgb(224, 28, 28);
}

.work-card:hover::before {
    opacity: 1;
}

/* ================= ICON ================= */

.work-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: rgb(224, 28, 28);
    transition: 0.3s ease;
}

.work-card:hover .work-icon {
    transform: scale(1.1);
    color: rgb(224, 28, 28);
}

/* ================= TEXT ================= */

.work-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.work-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* ===== WHY CHOOSE ANYGO ===== */

.why-choose {
    padding: 30px 50px;
    background: white;
    text-align: center;
}

/* Cards Container – same creative background */
.trust-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;

    padding: 50px;
    background: radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.06), transparent 40%),
        #fff5f5;
    border-radius: 20px;
    margin-top: 40px;
}

/* ================= CARD ================= */

.trust-card {
    flex: 1 1 30%;
    min-width: 220px;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.35s ease;
    cursor: default;
    position: relative;
    overflow: hidden;

    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.08);
}

/* Subtle glow layer */
.trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* ================= HOVER ================= */

.trust-card:hover {
    transform: translateY(-12px) scale(1.02);

    box-shadow:
        0px 20px 40px rgba(0, 0, 0, 0.12),
        0px 0px 25px rgba(230, 57, 70, 0.25);

    border-color: rgb(224, 28, 28);
}

.trust-card:hover::before {
    opacity: 1;
}

/* ================= ICON ================= */

.trust-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: rgb(224, 28, 28);
    transition: 0.3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
    color: rgb(224, 28, 28);
}

/* ================= TEXT ================= */

.trust-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.trust-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* ===== MOBILE APP SECTION ===== */
.mobile-app {
    padding: 30px 50px;
    background: white;
    text-align: center;
    position: relative;
}

/* ===== MAIN TITLE (Same as How It Works Style) ===== */
.mobile-app .section-title {
    font-size: 26px;
    font-weight: 700;
    color: rgb(224, 28, 28);
    background: rgba(230, 57, 70, 0.08);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    letter-spacing: 0.5px;
    border: 2px solid rgb(224, 28, 28);
    margin-bottom: 15px;
}

/* ===== SUB HEADING ===== */
.mobile-app .section-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 30px;
    color: #222;
    max-width: 700px;
    line-height: 1.6;
}

/* First 3 words blue */
.mobile-app .section-subtitle span {
    color: #1bb1c9;
}

/* ===== APP CONTAINER ===== */
.app-container {
    display: flex;
    justify-content: center;
    gap: 70px;
    /* spacing reduce */
    flex-wrap: wrap;

    padding: 40px;
    background: radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.06), transparent 40%),
        #fff5f5;
    border-radius: 20px;
}

/* ===== MOBILE APP SECTION ===== */
.mobile-app {
    padding: 30px 50px;
    background: white;
    text-align: center;
    position: relative;
}

/* ===== MAIN TITLE (How It Works Style Match) ===== */
.mobile-app .section-title {
    font-size: 26px;
    font-weight: 700;
    color: rgb(224, 28, 28);
    background: rgba(230, 57, 70, 0.08);
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-block;
    letter-spacing: 0.5px;
    border: 2px solid rgb(224, 28, 28);
    margin-bottom: 15px;
}

/* ===== SUBHEADING ===== */
.mobile-app .section-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 35px;
    color: #222;
    max-width: 750px;
    line-height: 1.6;
}

/* Blue highlight for "two mobile apps" */
.mobile-app .section-subtitle span {
    color: #1bb1c9;
    font-weight: 700;
}

/* ===== APP CONTAINER ===== */
.app-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
    /* Proper spacing between cards */
    flex-wrap: wrap;

    padding: 50px 40px 30px;
    background: radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.06), transparent 40%),
        #fff5f5;
    border-radius: 20px;
}

/* ===== APP COLUMN (Grey Cards Smaller + Professional) ===== */
.app-column {
    width: 430px;
    /* 🔥 width vadhavli */
    max-width: 100%;
    background: #f4f4f4;
    padding: 28px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s ease;

    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.08);
}

.app-column:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0px 20px 40px rgba(0, 0, 0, 0.12),
        0px 0px 20px rgba(230, 57, 70, 0.25);
    border-color: rgb(224, 28, 28);
}

/* ===== PROFESSIONAL HEADINGS ===== */
.app-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
    color: rgb(224, 28, 28);
    letter-spacing: 0.5px;
}

/* Subtitle inside card */
.app-column h3 span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-top: 4px;
}

/* ===== FEATURES LIST ===== */
.app-features {
    list-style: none;
    padding: 0;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* ===== IMAGES (UNCHANGED) ===== */
.app-mockup {
    max-width: 180px;
    margin-bottom: 20px;
}

/* ===== PLAYSTORE BADGE (Inside Container) ===== */
.playstore-badge {
    width: 100%;
    text-align: center;
    margin-top: -30px;
}

.store-text {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: rgb(224, 28, 28);
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.playstore-badge img {
    max-width: 70px;
    transition: transform 0.3s ease;
}

.playstore-badge img:hover {
    transform: scale(1.08);
}


/* ===== DRIVER PARTNER SECTION ===== */

.driver-partner {
    padding: 30px 50px;
    background: white;
    text-align: center;
}

/* ===== DRIVER SUBHEADING ===== */
.driver-partner .section-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 35px;
    color: #222;
    max-width: 750px;
    line-height: 1.6;
}

/* Highlight text */
.driver-partner .section-subtitle span {
    color: #1bb1c9;
    font-weight: 700;
}


/* Same creative background as other sections */
.driver-benefits {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;

    padding: 50px;
    background: radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.06), transparent 40%),
        #fff5f5;
    border-radius: 20px;
    margin-top: 30px;
}

/* Card same style */
.driver-card {
    flex: 1 1 30%;
    min-width: 220px;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;

    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.08);
}

.driver-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.driver-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0px 20px 40px rgba(0, 0, 0, 0.12),
        0px 0px 25px rgba(230, 57, 70, 0.25);
    border-color: rgb(224, 28, 28);
}

.driver-card:hover::before {
    opacity: 1;
}

.driver-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: rgb(224, 28, 28);
}

.driver-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* ================= ABOUT PAGE SECTION ================= */

.about-page {
    padding: 0;
    background: white;
}

/* ===== TOP BANNER ===== */
.about-banner {
    background: rgb(224, 28, 28);
    color: white;
    text-align: center;
    padding: 40px 20px;
    /* Reduced spacing */
}

.about-banner h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-subtitle {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* ===== COMPANY DESCRIPTION ===== */

.about-content {
    padding: 40px 60px;
    /* Reduced spacing */
    text-align: center;
}

.about-text p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    /* Added italic style */
}

/* ===== WHY ANYGO ===== */

.about-why {
    padding: 30px 60px 60px;
    /* Reduced spacing */
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;

    margin-top: 30px;
    padding: 40px;
    background: radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.06), transparent 40%),
        #fff5f5;
    border-radius: 20px;
}

/* ===== ONLY WHY ANYGO HEADING FIX ===== */

.about-why {
    padding: 0px 60px 60px;
    text-align: center;
    /* Left align only this section */
}

/* Target only section-title inside about-why */
.about-why .section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
    background: none;
    border: none;
    padding: 0;
    color: rgb(224, 28, 28);
    /* optional - black simple text */
}

/* Simple underline only for Why AnyGo */
.about-why .section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: #e63946;
    margin-top: 6px;
}

.about-card {
    flex: 1 1 30%;
    min-width: 220px;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;

    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.08);
}

.about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0px 20px 40px rgba(0, 0, 0, 0.12),
        0px 0px 25px rgba(230, 57, 70, 0.25);
    border-color: rgb(224, 28, 28);
}

.about-card:hover::before {
    opacity: 1;
}

.about-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: rgb(224, 28, 28);
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* ================= SERVICES PAGE ================= */

.services-page {
    background: white;
    padding: 0;
}

/* ===== Banner ===== */
.services-banner {
    background: rgb(224, 28, 28);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.services-banner h1 {
    font-size: 38px;
    font-weight: 700;
}

/* ===== Services Grid ===== */

.services-grid-container {
    padding: 60px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-box {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.35s ease;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.08);
}

.service-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-box h3 {
    font-size: 20px;
    margin: 20px 20px 10px;
    color: #e63946;
}

.service-box p {
    margin: 0 20px 25px;
    color: #555;
    line-height: 1.6;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow:
        0px 25px 45px rgba(0, 0, 0, 0.12),
        0px 0px 25px rgba(230, 57, 70, 0.25);
    border-color: #e63946;
}

/* ===== Who Can Use ===== */

.services-users {
    padding: 0px 60px 60px;
    text-align: center;
}

/* Same Heading Style */
.services-users .section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
    padding: 0;
    color: rgb(224, 28, 28);
}

/* Same Underline */
.services-users .section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: #e63946;
    margin-top: 6px;
}

/* Pink rounded background wrapper */
.users-grid {
    margin-top: 40px;
    padding: 40px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

    background: radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.06), transparent 40%),
        #fff5f5;

    border-radius: 20px;
}

.user-box {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;

    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(230, 57, 70, 0.08);
}


.user-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.user-box:hover {
    transform: translateY(-10px);
    box-shadow:
        0px 20px 40px rgba(0, 0, 0, 0.12),
        0px 0px 25px rgba(230, 57, 70, 0.25);
    border-color: rgb(224, 28, 28);
}

.user-box:hover::before {
    opacity: 1;
}

.user-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: rgb(224, 28, 28);
}

.user-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* ================= CONTACT PAGE ================= */

.contact-page {
    background: #f9f9f9;
    padding-bottom: 100px;
}

/* ===== Contact Pink Background Wrapper ===== */

.contact-wrapper {
    max-width: 1150px;
    /* Slightly wider like services */
    margin: 45px auto 0;
    /* Proper spacing from banner */
    padding: 35px 50px;
    /* Balanced inner spacing */
    background: rgba(224, 28, 28, 0.07);
    border-radius: 35px;
    /* Softer rounded look */
}


/* ===== Banner (UNCHANGED) ===== */

.contact-banner {
    background: rgb(224, 28, 28);
    color: white;
    text-align: center;
    padding: 50px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-banner h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-subtext {
    font-size: 30px;
    font-weight: 400;
    max-width: 1000px;
    /* Increase width */
    margin: 0 auto;
    line-height: 1.4;
    text-align: center;
}


/* ===== Main Layout (FIXED - NO OVERLAY) ===== */

.contact-container {
    max-width: 1200px;
    margin: auto 0;
    /* Removed negative margin */
    padding: 0 60px;
    display: flex;
    gap: 40px;
}

/* ================= LEFT SIDE ================= */

.contact-info {
    flex: 1;
}

.single-card {
    background: white;
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(224, 28, 28, 0.08);
}

.single-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: rgb(224, 28, 28);
}

.single-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
}

/* ================= RIGHT SIDE ================= */

.contact-form-wrapper {
    flex: 1.2;
    background: white;
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(224, 28, 28, 0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgb(224, 28, 28);
    box-shadow: 0 0 0 2px rgba(224, 28, 28, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row input {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form button {
    background: rgb(224, 28, 28);
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    align-self: center;
}

.contact-form button:hover {
    background: #b30000;
    transform: translateY(-3px);
}

/* Remove Shape for Service Heading */

.services-users .section-title {
    font-size: 28px;
    font-weight: 600;
    color: rgb(224, 28, 28);

    /* REMOVE SHAPE */
    border: none !important;
    outline: none !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;

    display: inline-block;
    position: relative;
}

/* ================= FOOTER SECTION ================= */

.main-footer {
    background: rgb(224, 28, 28);
    color: #fff;
    padding: 60px 80px 20px;
    margin-top: -30px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #ffffff;
    display: block;
    margin-top: 8px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.footer-column ul li a:hover {
    color: #ffd6d6;
    padding-left: 5px;
}

.white-icon {
    color: white;
    margin-right: 8px;
    font-size: 16px;
}


/* Bottom Bar */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 40px;
    padding-top: 15px;
    font-size: 14px;
}

.footer-credit {
    margin-top: 8px;
    font-size: 13px;
}

.footer-credit a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-credit a:hover {
    color: #ffd6d6;
}

/* ===== DEFAULT (DESKTOP / LAPTOP) ===== */
.mobile-nav {
    display: none;
    /* hide burger on desktop */
}


/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 992px) {

    /* TOP BAR */
    .top-bar {
        padding: 10px 20px;
    }

    .top-right {
        display: none;
        /* hide call/email/icons */
    }

    /* NAVBAR */
    /* .main-header {
        padding: 12px 20px;
        position: relative;
        z-index: 1000;
    } */

    /* .mobile-nav {
        display: block;
        color: white;
        font-size: 26px;
        cursor: pointer;
        text-align: right;
    }

    .nav {
        display: none;
        flex-direction: column;
        background: rgb(224, 28, 28);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 999;
        padding: 15px 0;
    }

    .nav.open {
        display: flex;
    } */

    .nav a {
        margin: 12px 0;
        text-align: center;
        font-size: 16px;
    }

    /* HERO */
    .hero {
        height: auto;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* ALL CARD SECTIONS */
    .works-cards,
    .trust-cards,
    .driver-benefits,
    .about-features {
        padding: 25px;
    }

    .work-card,
    .trust-card,
    .driver-card,
    .about-card {
        flex: 1 1 50%;
    }

    /* SERVICES GRID */
    .services-grid-container {
        padding: 40px 20px;
    }

    /* USERS GRID */
    .users-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
    }

    /* MOBILE APP */
    .app-container {
        padding: 25px;
    }

    .app-column {
        width: 100%;
    }

    /* CONTACT */
    .contact-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .contact-wrapper {
        padding: 25px;
    }

    .form-row {
        flex-direction: column;
    }

    /* FOOTER */
    .main-footer {
        padding: 50px 25px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h3::after {
        margin: 8px auto 0;
    }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {

    .users-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

/* =========================================
   FINAL RULE – ALL MOBILE / PHONE
   ALWAYS 2 CARDS PER ROW
========================================= */

@media screen and (max-width: 992px) {

    .works-cards,
    .trust-cards,
    .driver-benefits,
    .about-features {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .work-card,
    .trust-card,
    .driver-card,
    .about-card {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}

/* =========================================
   CARD TEXT OVERFLOW FIX – MOBILE SAFE
========================================= */

@media screen and (max-width: 992px) {

    .work-card,
    .trust-card,
    .driver-card,
    .about-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        word-break: break-word;
        overflow: hidden;
    }

    .work-card h3,
    .trust-card h3,
    .driver-card h3,
    .about-card h3 {
        font-size: 14px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 6px;
        word-break: break-word;
    }

    .work-card p,
    .trust-card p,
    .driver-card p,
    .about-card p {
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        word-break: break-word;
        overflow-wrap: anywhere;
        /* 🔥 critical */
    }

    .mobile-nav {
        display: block;
        color: white;
        font-size: 26px;
        cursor: pointer;
        text-align: right;
    }

    .nav {
        display: none !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: rgb(224, 28, 28) !important;
        z-index: 99999 !important;
        padding: 20px 0 !important;
    }

    .nav.open {
        display: flex !important;
    }

    .nav a {
        color: white !important;
        padding: 12px 0;
        display: block;
        text-align: center;
    }

    .main-header {
        position: relative;
        z-index: 1000;
    }
}

/* =========================================
   FORCE 2 COLUMNS – SERVICES & USERS
========================================= */

@media screen and (max-width: 992px) {

    .services-grid,
    .services-grid-container,
    .users-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .services-grid>*,
    .users-grid>* {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}

/* =========================================
   FOOTER – CLEAN & CONSISTENT (ALL DEVICES)
========================================= */

/* Base footer cleanup */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.footer-column {
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-column h3 {
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-column p,
.footer-column li,
.footer-column a {
    font-size: 14px;
    line-height: 1.6;
}

/* Contact icons alignment */
.footer-column li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* ================= MOBILE FIX ================= */

@media screen and (max-width: 768px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        /* clean */
    }

    /* About section full width */
    .footer-about {
        grid-column: span 2;
    }

    .footer-column {
        text-align: left;
    }
}

/* ================= VERY SMALL PHONES ================= */

@media screen and (max-width: 420px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .footer-column p,
    .footer-column li,
    .footer-column a {
        font-size: 13px;
    }
}

/* =========================================
   OUR MOBILE APP – SAME CLEAN 2 CARDS STYLE
========================================= */

@media screen and (max-width: 992px) {

    .app-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
        padding: 25px;
    }

    .app-column {
        background: #ffffff;
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        text-align: center;
        width: 100% !important;
        box-sizing: border-box;
    }

    .app-column img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .app-column h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .app-features li {
        font-size: 12px;
        line-height: 1.4;
    }

    .playstore-badge {
        grid-column: span 2;
        text-align: center;
        margin-top: 20px;
    }
}

/* =========================================
   CONTACT PINK COLUMN – MOBILE FIX
========================================= */

@media screen and (max-width: 768px) {

    .contact-wrapper {
        width: 85%;
        margin: 30px auto;
        /* center align */
        padding: 25px 15px;
        border-radius: 20px;
        box-sizing: border-box;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-wrapper {
        width: 100%;
    }
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5e3e3;
}

/* ===== WRAPPER ===== */
.terms-wrapper {
    max-width: 900px;
    margin: 8px auto 30px;
    padding: 40px 30px;
    background: #f5e3e3;
}

/* ===== TITLE ===== */
.terms-title {
    text-align: center;
    color: rgb(224, 28, 28);
    border: 2px solid rgb(224, 28, 28);
    display: block;
    width: fit-content;
    /* content width */
    margin: 0 auto 40px;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 26px;
    margin-bottom: 40px;
}

/* ===== CONTENT PANEL ===== */
.terms-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ===== SECTIONS ===== */
.terms-section {
    margin-bottom: 35px;
}

.terms-section h3 {
    color: rgb(224, 28, 28);
    font-size: 18px;
    margin-bottom: 12px;
}

/* ===== LIST ===== */
.terms-section ul {
    padding-left: 18px;
    margin: 0;
}

.terms-section li {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .terms-wrapper {
        padding: 25px 15px;
    }

    .terms-content {
        padding: 25px 20px;
    }

    .terms-title {
        font-size: 22px;
    }
}