/* Base & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Outfit", sans-serif;
    color: #1d1d1d;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 12px 0;
    background: #fff;
    border-bottom: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 65px;
}

.logo .brand {
    font-size: 20px;
    font-weight: 700;
}

.navbar .nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar .nav-menu a {
    font-weight: 500;
    transition: color 0.3s;
}

.navbar .nav-menu a:hover,
.navbar .nav-menu .active {
    color: #007bff;
}

.quote-btn {
    background-color: #007bff;
    border: none;
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.quote-btn:hover {
    background-color: #0056b3;
}

.hero-section {
    position: relative;
    color: #fff;
    overflow: hidden;
    /* make sure any old section-wide background/overlay rules are removed */
}

/* Give the carousel a real height so it cannot collapse */
.hero-carousel.swiper {
    height: clamp(520px, 70vh, 780px);
    width: 100%;
}

/* Swiper internals must inherit that height */
.hero-carousel .swiper-wrapper,
.hero-carousel .swiper-slide {
    height: 100%;
}

/* Slide */
.swiper-slide.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Per-slide dark overlay (you have <div class="overlay"></div>) */
.hero-slide .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

/* Content above overlay */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 100px 0;
}

/* Typography */
.hero-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    color: #00aced;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Button */
.btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Controls */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet {
    background: #fff;
}

/* --- Fade ghosting fix WITHOUT absolute positioning --- */
/* Let Swiper control opacity; we only prevent clicks on non-active slides. */
.hero-carousel.swiper.swiper-fade .swiper-slide {
    pointer-events: none;
}

.hero-carousel.swiper.swiper-fade .swiper-slide-active,
.hero-carousel.swiper.swiper-fade .swiper-slide-duplicate-active {
    pointer-events: auto;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f6f6f6;
}

.services-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.dark {
    background-color: #0c1c2c;
    color: #fff;
}

.service-card.light {
    background-color: #fff;
    color: #1d1d1d;
}

.service-icon {
    font-size: 28px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    flex-grow: 1;
}

.read-more {
    margin-top: 20px;
    font-weight: 600;
    color: #007bff;
}

:root {
    --wave-width: 1000px; /* Tile width (must match SVG width) */
    --wave-band-1: 360px; /* Front wave height (increased from 240px) */
    --wave-band-2: 260px; /* Back wave height (increased from 160px) */
    --wave-push: 52px; /* Push waves down so they start after content */
}

.achievement-section {
    position: relative;
    background-color: #39649c;
    color: #fff;
    padding: 100px 0 140px; /* more bottom padding for bigger waves */
    overflow: hidden;
}

.achievement-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-section::before,
.achievement-section::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background-repeat: repeat-x;
    background-position: 0 100%;
    -webkit-mask-image: linear-gradient(to top, #000 85%, transparent 100%);
    mask-image: linear-gradient(to top, #000 85%, transparent 100%);
}

/* Front / top wave (blue, thicker) */
.achievement-section::before {
    height: var(--wave-band-1);
    bottom: calc(0px - var(--wave-push));
    opacity: 0.2;
    background-size: var(--wave-width) 100%;
    background-image: url("data:image/svg+xml;utf8,\ <svg xmlns='http://www.w3.org/2000/svg' width='1000' height='360' viewBox='0 0 1000 360'>\<path fill='%23007bff' fill-opacity='0.35' d='M0,220 C250,340 750,100 1000,220 V360 H0 Z'/>\</svg>");
    animation: wave-loop 25s linear infinite;
}

/* Back / deeper wave (white, thicker) */
.achievement-section::after {
    height: var(--wave-band-2);
    bottom: calc(0px - var(--wave-push) - 10px);
    opacity: 0.1;
    background-size: var(--wave-width) 100%;
    background-image: url("data:image/svg+xml;utf8,\<svg xmlns='http://www.w3.org/2000/svg' width='1000' height='260' viewBox='0 0 1000 260'>\<path fill='%23ffffff' fill-opacity='0.20' d='M0,160 C250,260 750,60 1000,160 V260 H0 Z'/>\</svg>");
    animation: wave-loop-reverse 45s linear infinite;
}

@keyframes wave-loop {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: var(--wave-width);
    }
}

@keyframes wave-loop-reverse {
    from {
        background-position-x: var(--wave-width);
    }

    to {
        background-position-x: 0;
    }
}

/* ---------- Image ---------- */
.achievement-image {
    flex: 1 1 50%;
    position: relative;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    filter: brightness(0.96) contrast(1.04);
}

/* ---------- Content ---------- */
.achievement-content {
    flex: 1 1 50%;
    padding: 60px;
}

.achievement-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.achievement-content .section-label {
    color: #e3e3e3;
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section-desc {
    font-size: 14px;
    margin-bottom: 30px;
    color: #ffffff;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.counter-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.counter-box p {
    font-size: 14px;
    color: #e7e7e7;
    text-transform: uppercase;
}

/*Services Section CSS*/
.services-section {
    background: #f5f6f7;
    padding: 80px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s ease;
}

.expense-icon {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 16px;
    margin: 0 auto 16px auto;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 123, 255, 0.15);
}

.image-card {
    padding: 0;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-card .icon {
    width: 48px;
    margin: 0 auto 20px;
}

.text-card h3 {
    color: #0c1c2c;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.text-card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
}

.text-card a {
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0c1c2c;
    margin: 0;
}

.icon-circle {
    background-color: #e6f0ff;
    color: #007bff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-stack-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-circle {
    background: #e8f0ff;
    color: #007bff;
    border-radius: 50%;
    font-size: 28px;
    padding: 12px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
}

.feature-stack-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.feature-stack-card p {
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

/*FAQ Section*/
/* Section */
.faq-slim {
    background: #f7f9fc;
    padding: 56px 0;
    font-family: "Outfit", sans-serif;
}

.faq-slim__wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.faq-slim__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.faq-slim .chip {
    background: #eaf3ff;
    color: #007bff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
}

.faq-slim h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
}

/* Grid */
.faq-slim__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 20px;
}

/* Questions list */
.faq-slim__qs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-slim__qs .q {
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e6ecf5;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.12s ease;
}

.faq-slim__qs .q:hover {
    border-color: #cfe2ff;
    background: #fbfdff;
    transform: translateY(-1px);
}

.faq-slim__qs .q.is-active {
    border-color: #b8d8ff;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

/* Answer panel */
.faq-slim__panel {
    background: #fff;
    border: 1px solid #e6ecf5;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
    padding: 18px 18px;
    min-height: 160px;
    display: grid;
    align-content: start;
    position: relative;
}

/* Answers */
.ans {
    animation: fadeIn 0.18s ease both;
}

.ans h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 800;
    color: #007bff;
}

.ans p {
    margin: 0;
    color: #334155;
    font-size: 14.5px;
    line-height: 1.6;
}

/* Testimonial Styles */
.testimonial-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.testimonial-label {
    color: #007bff;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.testimonial-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1d1d1d;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-items: center;
}

.testimonial-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: left;
    max-width: 500px;
}

.quote-flag {
    position: absolute;
    top: -10px;
    left: 0;
    background-color: #007bff;
    color: #fff;
    font-size: 20px;
    padding: 4px 10px;
    border-radius: 4px 4px 0 0;
}

.testimonial-text {
    font-size: 15px;
    color: #444;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user strong {
    font-weight: 600;
    color: #1d1d1d;
}

.testimonial-user span {
    font-size: 13px;
    color: #777;
}

.testimonial-dots {
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
}

.dot.active {
    background: #007bff;
}

.facility-section {
    background: #0c1c2c;
    color: #fff;
    position: relative;
    text-align: center;
}

.facility-overlay {
    background-color: #39649c;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.facility-label {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.facility-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
}

.facility-icons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.facility-icons div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
    gap: 12px;
}

.facility-icons .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
}

.facility-icons svg {
    width: 48px;
    height: 48px;
    fill: #fff;
}

.facility-icons p {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

/* ========== Pricing Section (FuelBotics) ========== */
.home-pricing-section {
    padding: 80px 0;
    background: #f9f9f9;
    font-family: "Outfit", sans-serif;
}

/* Title */
.home-pricing-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #1d1d1d;
}

.home-pricing-title span {
    color: #007bff;
    font-weight: 600;
}

/* Grid */
.home-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Always 4 columns as requested */
    gap: 30px;
    justify-items: stretch; /* stretch so cards line up perfectly */
    align-items: stretch; /* equal heights */
    max-width: 1400px;
    margin: 0 auto;
}

/* Card */
.home-pricing-card {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 50px 35px;
    border-top: 6px solid transparent;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    position: relative;
    /* Make all content align and buttons sit at the bottom */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Badge */
.home-plan-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ffe8b3;
    color: #1d1d1d;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
}

/* Icon + Headings */
.home-pricing-card .icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.home-pricing-card h3,
.home-pricing-card .plan-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1d1d1d;
}

.home-pricing-card .plan-description {
    color: #555;
    margin-bottom: 14px; /* a touch more space */
}

/* Primary price row (keep this one) */
.home-plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin: 14px 0 18px;
}

.home-plan-price .currency {
    font-size: 20px;
    font-weight: 700;
    color: #007bff;
}

.home-plan-price .amount {
    font-size: 40px;
    font-weight: 800;
    color: #007bff;
    line-height: 1;
}

.home-plan-price .period {
    font-size: 14px;
    color: #888;
}

/* Kill the duplicate price block in the HTML if it remains */
.home-pricing-card .price {
    display: none !important;
}

/* Feature list */
.home-pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 22px; /* extra breathing room */
    text-align: left; /* improves scanability */
}

.home-pricing-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    padding: 8px 0; /* a little extra space */
    color: #444;
    border: none !important; /* remove any black borders coming from globals */
    border-bottom: none !important; /* explicitly kill bottom borders */
}

.home-pricing-card ul li i {
    color: #16a34a; /* green check */
    margin-right: 2px;
    flex: 0 0 auto;
}

/* Button (aligned across cards) */
.btn-plan {
    margin-top: auto; /* pushes the button to bottom for consistent alignment */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #007bff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-plan:hover {
    background: #0056b3;
}

.btn-plan:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/* Top border highlight per plan */
.home-pricing-card.basic {
    border-top-color: #ff9800;
}

.home-pricing-card.standard {
    border-top-color: #00bcd4;
}

.home-pricing-card.premium {
    border-top-color: #3f51b5;
}

.home-pricing-card.custom {
    border-top-color: #16a34a;
}

/* Optional emphasis for the "featured" card */
.home-pricing-card.featured {
    box-shadow: 0 12px 28px rgba(0, 123, 255, 0.15);
}
/* green accent */

/* Outline button variant for the custom card */
.btn-plan.btn-outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-plan.btn-outline:hover {
    background: #007bff;
    color: #fff;
}

.footer-section {
    background: #39649c;
    color: #ccc;
    padding: 60px 20px 30px;
    font-family: "Outfit", sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px;
    margin: auto;
    gap: 50px;
}

.footer-column {
    flex: 1 1 250px;
    min-width: 220px;
}

.footer-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-subtitle {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-text {
    font-size: 15px;
    line-height: 1.6;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #ccc;
}

.footer-list li i {
    color: #fff;
    font-size: 18px;
    min-width: 20px;
}

.footer-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #111;
    padding-top: 20px;
    font-size: 14px;
}

.footer-bottom a {
    color: #ccc;
    margin: 0 6px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid transparent;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.12s ease-out; /* don�t use `all` */
    will-change: transform;
}

.quote-btn:hover,
.quote-btn:focus-visible {
    background: #007bff; /* same blue as default */
    color: #fff; /* keep text white */
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.25);
}

.quote-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.2);
}

.sign-in-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid #007bff;
    background: transparent;
    color: #007bff;
    text-decoration: none;
    line-height: 1;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.12s ease-out;
}

.sign-in-btn:hover,
.sign-in-btn:focus-visible {
    background: #007bff;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.2);
}

.sign-in-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.16);
}
/*New Services Section*/
.fuelbotics-features-section {
    padding: 72px 0;
    background: #f7fbff;
    color: #0b2239;
    font-family:
        "Outfit",
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Arial,
        sans-serif;
}

.fuelbotics-features-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}

.fuelbotics-features-eyebrow {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #007bff;
    font-weight: 600;
    margin: 0 0 8px;
    text-align: center;
}

.fuelbotics-features-heading {
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.25;
    margin: 0 0 10px;
    text-align: center;
}

.fuelbotics-features-subtitle {
    max-width: 820px;
    margin: 0 auto 34px;
    text-align: center;
    color: #3c5872;
}

.fuelbotics-features-wrap {
    display: grid;
    grid-template-columns: 1fr minmax(420px, 520px) 1fr;
    gap: 24px;
    align-items: center;
}

.fuelbotics-feature-stack {
    display: grid;
    gap: 24px;
}

.fuelbotics-feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 22px 26px;
    box-shadow: 0 8px 26px rgba(0, 59, 130, 0.06);
    transition:
        transform 0.15s ease,
        box-shadow 0.2s ease;
}

.fuelbotics-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 59, 130, 0.1);
}

.fuelbotics-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 123, 255, 0.12);
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}

.fuelbotics-icon i {
    color: #007bff;
    font-size: 20px;
}

.fuelbotics-feature-card h3 {
    margin: 6px 0 8px;
    font-size: 20px;
}

.fuelbotics-feature-card p {
    color: #4d6782;
    line-height: 1.6;
    margin: 0 0 16px;
}

.fuelbotics-cta {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: #007bff;
    box-shadow: 0 6px 14px rgba(0, 123, 255, 0.22);
    transition:
        transform 0.15s,
        box-shadow 0.2s;
}

.fuelbotics-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 123, 255, 0.28);
}

.fuelbotics-center-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fuelbotics-center-image::before {
    content: "";
    position: absolute;
    width: 320px; /* smaller size */
    height: 320px;
    background: #e9f3ff; /* light blue */
    border-radius: 20px; /* soft corners */
    transform: rotate(45deg);
    z-index: 0;
    top: 50%; /* center vertically */
    left: 50%; /* center horizontally */
    transform: translate(-50%, -50%) rotate(45deg);
}

.fuelbotics-center-image img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

@media (max-width: 768px) {
    .home-pricing-section {
        padding: 56px 0;
    }

    .home-pricing-title {
        font-size: 26px;
        margin-bottom: 32px;
        padding: 0 16px;
    }

    .home-pricing-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 560px;
        padding: 0 16px;
    }

    .home-pricing-card {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .home-plan-badge {
        top: 10px;
        right: 10px;
        font-size: 11px;
        padding: 5px 9px;
    }

    .home-pricing-card .icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .home-pricing-card h3,
    .home-pricing-card .home-plan-name {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .home-pricing-card .home-plan-description {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .home-plan-price {
        margin: 12px 0 16px;
        gap: 5px;
    }

    .home-plan-price .currency {
        font-size: 17px;
    }

    .home-plan-price .amount {
        font-size: 32px;
    }

    .home-plan-price .period {
        font-size: 12px;
    }

    .home-pricing-card ul {
        margin: 14px 0 18px;
    }

    .home-pricing-card ul li {
        font-size: 13px;
        padding: 7px 0;
    }

    .btn-plan {
        width: 100%; /* comfortable tap target */
        justify-content: center;
        padding: 12px 20px;
        border-radius: 999px;
        font-size: 15px;
    }

    .pricing-info {
        margin-top: 36px;
    }

    .pricing-info .info-cards {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 560px;
        padding: 0 16px;
    }

    .pricing-info .info-card {
        padding: 18px 16px;
    }

    .pricing-info .info-card h4 {
        font-size: 15px;
    }

    .pricing-info .info-card p {
        font-size: 13px;
    }

    .nav-toggle {
        display: none;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .home-plan-price .amount {
        font-size: 30px;
    }

    .btn-plan {
        padding: 11px 18px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .fuelbotics-features-section {
        padding: 56px 0;
    }

    .fuelbotics-features-heading {
        margin-bottom: 8px;
    }

    .fuelbotics-features-subtitle {
        margin-bottom: 26px;
        padding: 0 4px;
    }

    .fuelbotics-features-wrap {
        grid-template-columns: 1fr;
        grid-template-areas:
            "center"
            "left"
            "right";
        gap: 16px;
    }

    .fuelbotics-center-image {
        margin: 0 auto 4px;
    }

    .fuelbotics-center-image img {
        max-width: 560px;
        width: 100%;
    }

    .fuelbotics-center-image::before {
        width: 200px;
        height: 200px;
        border-radius: 16px;
    }

    .fuelbotics-feature-stack {
        gap: 14px;
    }

    .fuelbotics-feature-card {
        padding: 18px 16px 20px;
        border-radius: 16px;
    }

    .fuelbotics-icon {
        width: 44px;
        height: 44px;
    }

    .fuelbotics-feature-card h3 {
        font-size: 18px;
    }

    .fuelbotics-feature-card p {
        font-size: 14px;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .fuelbotics-center-image::before {
        width: 170px;
        height: 170px;
    }

    .fuelbotics-feature-card {
        padding: 16px 14px 18px;
    }
}

@media (min-width: 993px) {
    .site-header .burger,
    .site-header .nav-toggle,
    .site-header .nav-overlay {
        display: none !important;
    }
    /* Desktop navbar layout */
    .site-header .navbar {
        position: static !important;
        transform: none !important;
        inset: auto !important;
        width: auto !important;
        max-width: none !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .site-header .navbar .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 32px !important;
    }
    /* Desktop actions in place */
    .site-header .header-actions {
        position: static !important;
        transform: none !important;
        width: auto !important;
        padding: 0 !important;
        background: none !important;
        box-shadow: none !important;
        display: flex !important;
        gap: 12px;
    }
}

@media (min-width: 993px) {
    /* Hide mobile-only bits */
    .site-header .burger,
    .site-header .nav-toggle,
    .site-header .nav-overlay {
        display: none !important;
    }
    /* Desktop navbar layout */
    .site-header .navbar {
        position: static !important;
        transform: none !important;
        inset: auto !important;
        width: auto !important;
        max-width: none !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        z-index: auto !important;
    }

    .site-header .navbar .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 32px !important;
    }
    /* Actions inline on desktop */
    .site-header .header-actions {
        position: static !important;
        transform: none !important;
        width: auto !important;
        padding: 0 !important;
        background: none !important;
        box-shadow: none !important;
        display: flex !important;
        gap: 12px;
        z-index: auto !important;
    }
}

/* =========================
                   MOBILE / TABLET (<= 992px)
                ========================= */
@media (max-width: 992px) {
    /* Make the "container" header span the viewport width */
    .site-header {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1100;
        background: #fff; /* full white header */
        width: 100vw; /* full width */
        margin: 0; /* break out of .container margins */
        border-radius: 0;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); /* subtle while scrolling */
    }
    /* If your framework adds max-width on .container, override it on the header */
    .site-header.container {
        max-width: none !important;
        padding-left: 16px;
        padding-right: 16px;
    }

    .logo {
        position: relative;
        z-index: 1101;
    }

    .logo img {
        max-height: 40px;
        height: auto;
    }
    /* Burger */
    .burger {
        display: inline-flex;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        background: #fff;
        cursor: pointer;
        position: relative;
        z-index: 1003;
    }

    .burger span,
    .burger span::before,
    .burger span::after {
        content: "";
        display: block;
        width: 22px;
        height: 2px;
        background: #0c1c2c;
        border-radius: 2px;
        position: relative;
        transition: 0.25s ease;
    }

    .burger span::before {
        position: absolute;
        top: -7px;
        left: 0;
    }

    .burger span::after {
        position: absolute;
        top: 7px;
        left: 0;
    }
    /* Drawer panel (LEFT) */
    .navbar {
        position: fixed;
        inset: 0 auto 0 0; /* left side */
        width: min(86vw, 360px);
        transform: translateX(-100%); /* closed off the left */
        transition: transform 0.3s ease;
        background: #fff;
        box-shadow: 24px 0 40px rgba(0, 0, 0, 0.08);
        padding: 96px 24px 160px; /* space for footer buttons */
        z-index: 1001;
        display: block;
    }
    /* Menu list */
    .navbar .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .navbar .nav-menu a {
        font-size: 16px;
        padding: 8px 0;
    }
    /* Drawer footer buttons (LEFT) */
    .header-actions {
        position: fixed;
        left: 0; /* anchor to LEFT */
        right: auto;
        bottom: 0;
        width: min(86vw, 360px);
        background: linear-gradient(to top, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.96));
        padding: 16px 24px calc(24px + env(safe-area-inset-bottom));
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
        display: grid;
        gap: 10px;
        transform: translateX(-100%); /* closed off the left */
        transition: transform 0.3s ease;
        z-index: 1002;
    }

    .header-actions .quote-btn,
    .header-actions .sign-in-btn {
        width: 100%;
        justify-content: center;
    }
    /* Dim overlay */
    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1000;
    }
    /* OPEN state */
    #nav-toggle:checked ~ .navbar {
        transform: translateX(0) !important;
    }

    #nav-toggle:checked ~ .header-actions {
        transform: translateX(0) !important;
    }

    #nav-toggle:checked ~ .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }
    /* Make sure content can�t sit under the buttons */
    .navbar {
        padding-bottom: calc(160px + env(safe-area-inset-bottom));
    }
}

/* ========= Very small phones ========= */
@media (max-width: 480px) {
    .navbar {
        width: min(86vw, 360px); /* fixed: keep drawer wide enough on small phones */
    }

    .header-actions {
        width: min(86vw, 360px);
    }
}
/*Index page css*/

.pricing-info {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.info-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
    display: block;
}

.info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.info-card p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Modern Modal Styles */
.modern-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modern-modal.show {
    opacity: 1;
    visibility: visible;
}

.modern-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.modern-modal-container {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    z-index: 1;
}

.modern-modal-content {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.modern-modal.show .modern-modal-content {
    transform: translateY(0) scale(1);
}

.modern-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #007bff 100%);
    color: white;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.modern-modal-header::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.plan-icon-modal {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.header-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.header-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.modern-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.modern-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modern-modal-body {
    padding: 40px;
    max-height: 60vh;
    overflow-y: auto;
}

.form-section {
    margin-bottom: 35px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.form-section h4 i {
    color: #667eea;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    position: relative;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 1;
}

.textarea-icon {
    top: 20px;
    transform: none;
}

.modern-input,
.modern-textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.modern-input:focus,
.modern-textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.modern-input:focus + .input-icon,
.modern-textarea:focus + .input-icon {
    color: #667eea;
}

.modern-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.btn-cancel {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.btn-cancel:hover {
    background: #e9ecef;
    color: #495057;
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #007bff 100%);
    color: white;
    border: none;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-content {
    display: none;
}

.btn.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Success Modal Styles */
.success-modal-content {
    text-align: center;
    padding: 60px 40px;
}

.success-animation {
    margin-bottom: 30px;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4caf50, #45a049);
    margin: 0 auto 20px;
    position: relative;
    animation: checkmarkPop 0.6s ease-out;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 15px;
    border: 4px solid white;
    border-top: none;
    border-right: none;
    transform: translate(-50%, -60%) rotate(-45deg);
    animation: checkmarkDraw 0.4s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes checkmarkDraw {
    to {
        opacity: 1;
    }
}

.success-modal-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 2rem;
    font-weight: 700;
}

.success-modal-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.btn-success-close {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    padding: 15px 40px;
}

.btn-success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-pricing-card.featured {
        transform: none;
    }

    .modern-modal-container {
        width: 95%;
        margin: 10px;
    }

    .modern-modal-header {
        padding: 25px 20px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .plan-icon-modal {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .header-text h3 {
        font-size: 1.4rem;
    }

    .modern-modal-body {
        padding: 30px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .success-modal-content {
        padding: 40px 20px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }

    .success-modal-content h3 {
        font-size: 1.6rem;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .plan-price .amount {
        font-size: 3rem;
    }
}
/*index page css end*/

/*About us css start*/
:root {
    --blue: #007bff;
    --bg-light: #f1f5fb;
    --dark: #0c1c2c;
}

.about-section {
    font-family: "Outfit", sans-serif;
    background: var(--bg-light);
    padding: 80px 20px;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.about-image img {
    width: 600px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    max-width: 550px;
    position: relative;
    z-index: 2;
    margin-left: -100px;
}

.about-top-bar {
    height: 6px;
    width: 100%;
    background: var(--blue);
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.about-label {
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-top: 15px;
}

.about-heading {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-description {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
    width: 140px;
}

.feature-icon {
    font-size: 38px;
    color: var(--blue);
    margin-bottom: 10px;
}

.stats-section {
    position: relative;
    background: url("/Main/Content/assets/img/about-stat-img.jpg") no-repeat center center / cover;
    padding: 80px 20px;
    font-family: "Outfit", sans-serif;
    color: #fff;
    text-align: center;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent dark overlay */
    z-index: 0;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.stat {
    flex: 1 1 180px;
}

.stat h3 {
    font-size: 48px;
    font-weight: 700;
    color: #007bff; /* Theme blue */
    margin-bottom: 10px;
}

.stat p {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.icon-circle {
    background-color: #e6f0ff;
    color: #007bff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

/* Feature Highlight Section */
.feature-highlight {
    padding: 100px 20px;
    background-color: #fff;
    font-family: "Outfit", sans-serif;
}

.feature-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* vertical alignment */
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    gap: 60px;
    min-height: 500px;
}

.feature-text {
    flex: 1 1 550px;
}

.feature-label {
    color: #007bff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 36px;
    font-weight: 800;
    color: #0c1c2c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    background-color: #e6f0ff;
    color: #007bff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    flex-shrink: 0;
}

.feature-item .text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0c1c2c;
    margin-bottom: 6px;
}

.feature-item .text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.feature-image {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    width: 100%;
    max-width: 650px; /* increased from 600px */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

@media (max-width: 992px) {
    /* Page banner text sizing */
    .page-banner span[style*="font-size"] {
        font-size: 30px !important;
    }

    .page-banner div[style*="font-size"] {
        font-size: 14px !important;
    }

    .about-section {
        padding: 64px 20px;
    }

    .about-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .about-image {
        order: 2;
    }

    .about-image img {
        width: 100%;
        max-width: 720px;
        height: auto;
    }

    .about-content {
        order: 1;
        margin-left: 0; /* kill the negative overlap */
        max-width: 720px;
        width: 100%;
        padding: 32px 28px;
    }

    .about-heading {
        font-size: 30px;
        line-height: 1.25;
    }

    .about-description {
        font-size: 15px;
    }

    .about-features {
        gap: 16px;
        justify-content: flex-start;
    }

    .about-feature {
        width: calc(50% - 10px); /* two per row */
        min-width: 180px;
    }
    /* Stats block */
    .stats-section {
        padding: 64px 20px;
    }

    .stats-container {
        gap: 36px;
    }

    .stat h3 {
        font-size: 38px;
    }

    .stat p {
        font-size: 15px;
    }
    /* Feature highlight stacks */
    .feature-container {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        min-height: auto;
    }

    .feature-text {
        flex: 1 1 auto;
    }

    .feature-title {
        font-size: 30px;
    }

    .feature-desc {
        font-size: 15px;
    }

    .feature-image {
        order: 2;
    }

    .feature-image img {
        max-width: 760px;
        width: 100%;
    }
}

/* Mobile: single column, comfy tap sizes */
@media (max-width: 768px) {
    .about-section {
        padding: 56px 16px;
    }

    .about-top-bar {
        height: 5px;
    }

    .about-label {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .about-heading {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-features {
        gap: 12px;
    }

    .about-feature {
        width: 100%;
        max-width: 420px;
    }

    .feature-icon {
        font-size: 30px;
    }
    /* Stats */
    .stats-section {
        padding: 48px 16px;
    }

    .stats-container {
        gap: 20px;
    }

    .stat h3 {
        font-size: 32px;
    }

    .stat p {
        font-size: 14px;
    }
    /* Feature highlight */
    .feature-title {
        font-size: 26px;
    }

    .feature-list {
        gap: 20px;
    }

    .icon-circle {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .page-banner {
        padding: 80px 0 !important;
    }

    .page-banner span[style*="font-size"] {
        font-size: 26px !important;
    }

    .about-content {
        padding: 24px 18px;
    }

    .about-heading {
        font-size: 24px;
    }

    .about-feature {
        max-width: 100%;
    }

    .stat h3 {
        font-size: 28px;
    }

    .feature-item .text h4 {
        font-size: 16px;
    }

    .feature-item .text p {
        font-size: 13px;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .about-heading {
        font-size: 22px;
    }

    .icon-circle {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
/*About us css ends*/

/*Conatct css starts*/
.contact-info-section {
    background-color: #fff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.contact-info-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

.contact-info-card {
    flex: 1 1 250px;
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 32px;
    color: #007bff;
    margin-bottom: 20px;
}

.contact-info-card h4 {
    color: #0c1c2c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-action {
    color: #007bff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.contact-action:hover {
    text-decoration: underline;
}

html,
body,
*,
*::before,
*::after {
    box-sizing: border-box;
}

.get-in-touch-section {
    background: url("/Main/Content/assets/img/about-feature-img.jpg") center center/cover no-repeat;
    padding: 100px 20px;
    position: relative;
}

.get-in-touch-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(10, 20, 40, 0.75);
    z-index: 0;
}

.contact-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    width: 100%;
}

.form-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.form-columns {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    justify-content: center;
    align-items: stretch;
}

.form-column {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 16px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #fff;
    font-weight: 500;
}

textarea {
    resize: none;
    height: 140px;
}

.form-spacer {
    height: 80px;
}

.form-button {
    margin-top: 30px;
    text-align: center;
}

.form-button button {
    background-color: #007bff;
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-width: 160px;
}

.form-button button:hover:not(:disabled) {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.form-button button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.recaptcha-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.alert {
    padding: 12px 20px;
    margin: 20px 0;
    border-radius: 6px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .form-columns {
        flex-direction: column;
        gap: 20px;
    }

    .form-spacer {
        height: 0;
    }

    .form-title {
        font-size: 28px;
    }
}
/*contact css ends*/

/*privacy css starts*/

.tacc-wrap {
    max-width: 1200px;
    margin: 28px auto 70px;
    padding: 0 20px;
}

.tacc-intro {
    max-width: 900px;
    margin: 0 auto 14px;
    color: #3a4255;
}

.tacc-intro .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 12px;
    color: #0a66d6;
    background: rgba(0, 123, 255, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.16);
    padding: 6px 10px;
    border-radius: 9999px;
}

.tacc-intro h1 {
    font-size: 28px;
    line-height: 1.25;
    margin: 10px 0 6px;
}

.tacc-intro p {
    margin: 6px 0 0;
    color: #667085;
}

.tacc {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(13, 30, 66, 0.08);
}

.tacc-item + .tacc-item {
    border-top: 1px solid rgba(13, 30, 66, 0.08);
}

.tacc-trigger {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 0;
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
}

.tacc-trigger:focus {
    outline: 3px solid rgba(0, 123, 255, 0.35);
    outline-offset: -2px;
    border-radius: 10px;
}

.tacc-num {
    flex: 0 0 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: rgba(0, 123, 255, 0.08);
    color: #0a66d6;
    font-weight: 800;
    font-size: 13px;
}

.tacc-head {
    display: grid;
    gap: 4px;
}

.tacc-title {
    font-weight: 700;
    font-size: 16px;
    color: #1b2a4a;
}

.tacc-desc {
    font-size: 13px;
    color: #667085;
}

.tacc-icon {
    margin-left: auto;
    transition: transform 0.2s ease;
}

.tacc-trigger[aria-expanded="true"] .tacc-icon {
    transform: rotate(180deg);
}

.tacc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.tacc-panel-inner {
    padding: 0 18px 16px 58px;
    color: #3a4255;
}

.tacc-panel-inner p {
    margin: 8px 0;
}

.tacc-panel-inner ul {
    margin: 8px 0 0 18px;
}

/* Small footer contact */
.tacc-contact {
    max-width: 900px;
    margin: 18px auto 0;
    color: #667085;
}

.tacc-badge-end {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.tacc-intro .pill {
    margin-bottom: 0;
}

/*privacy css ends*/

/*Request demo css starts*/
.fuel-demo * {
    box-sizing: border-box;
}

.fuel-demo {
    font-family:
        "Outfit",
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
}

.fuel-demo-section {
    background: var(--bg);
    padding: 72px 16px 96px;
}

.fuel-wrap {
    max-width: 1160px;
    margin: 0 auto;
}

/* ===== Always two columns (no media queries) ===== */
.fuel-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 40px !important;
    align-items: stretch !important;
}

.fuel-col {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
    min-width: 0 !important;
}

/* ===== Left: image + overlay + copy ===== */
.fuel-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    min-height: 560px;
    background: #000;
    isolation: isolate;
}

.fuel-showcase img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    opacity: 0.9;
    z-index: 0;
}

.fuel-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        radial-gradient(90% 130% at 0% 100%, rgba(0, 123, 255, 0.35), transparent 60%);
}

.fuel-copy {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
}

.fuel-kicker {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.fuel-copy h1 {
    margin: 0 0 8px;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.2rem);
    line-height: 1.15;
}

.fuel-copy p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #e6eefc;
    max-width: 52ch;
}

/* ===== Right: form card ===== */
.fuel-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 560px;
    align-items: flex-start; /* keep left-aligned column */
}

.fuel-card h3 {
    margin: 0 0 6px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
}

.fuel-card .sub {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.98rem;
}

/* lock a tidy column width for header, text, form, and button */
.fuel-card h3,
.fuel-card .sub,
.fuel-card form,
.fuel-submit {
    width: 100%;
    max-width: 520px; /* adjust to taste */
}

/* Form layout */
.fuel-grid {
    display: grid;
    grid-template-columns: 1fr; /* default single column section */
    gap: 14px;
    margin-bottom: 16px;
}

.fuel-grid.two {
    grid-template-columns: 1fr 1fr; /* <-- the missing piece (pairs side-by-side) */
    column-gap: 14px;
    row-gap: 14px;
}

.fuel-label {
    display: block;
    margin: 0 0 6px;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.1;
}

.fuel-input,
.fuel-textarea {
    display: block;
    width: 100%;
    border: 1px solid #cbd5e1;
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 1rem;
    line-height: 1.4;
    height: 44px; /* consistent input height */
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.fuel-textarea {
    height: 120px; /* larger message box */
    resize: vertical;
}

.fuel-input:focus,
.fuel-textarea:focus {
    border-color: var(--fuel-blue);
    box-shadow: 0 0 0 4px var(--ring);
}

/* Button */
.fuel-submit {
    border: 0;
    border-radius: 10px;
    padding: 13px 18px;
    background: linear-gradient(180deg, var(--fuel-blue), var(--fuel-blue-dark));
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition:
        filter 0.2s ease,
        transform 0.06s ease;
    align-self: flex-start;
}

.fuel-submit:hover {
    filter: brightness(1.06);
}

.fuel-submit:active {
    transform: translateY(1px);
}

/*request demo css ends*/

/*services css starts*/

.fuelbotics-services {
    font-family: "Outfit", system-ui, sans-serif;
    background: var(--bg);
    padding: clamp(24px, 3vw, 64px) 16px;
}

.services-head {
    max-width: 980px;
    margin: 0 auto 24px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 123, 255, 0.08);
    color: var(--brand-600);
    font-weight: 600;
    font-size: 0.85rem;
}

.headline {
    margin: 12px 0 8px;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    color: var(--ink);
}

.subhead {
    color: var(--muted);
    max-width: 740px;
    margin: 0 auto;
}

.services-grid {
    max-width: 1200px;
    margin: 32px auto 0;
    display: grid;
    gap: clamp(14px, 2vw, 22px);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
    background: var(--card);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(2, 12, 27, 0.06);
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    outline: 1px solid rgba(2, 12, 27, 0.05);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(2, 12, 27, 0.1);
}

.card-media {
    position: relative;
}

.card-media img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.25));
}

.badge {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: #fff;
    color: #0f172a;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 6px 12px rgba(2, 12, 27, 0.12);
}

.card-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-pill {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(0, 123, 255, 0.12);
    color: var(--brand-600);
}

.ico {
    width: 18px;
    height: 18px;
}

.card-title {
    margin: 0;
    font-size: 1.05rem;
    color: var(--ink);
}

.card-description {
    margin: 0;
    color: var(--muted);
    min-height: 42px;
}

.read-more {
    display: inline-block;
    background: #007bff; /* FuelBotics blue */
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: auto;
    transition:
        background 0.3s ease,
        transform 0.1s ease;
}

.read-more:hover {
    background: #0056b3;
}

.read-more:active {
    transform: translateY(1px);
}

.read-more:focus-visible {
    outline: 3px solid rgba(0, 123, 255, 0.4);
    outline-offset: 2px;
}

/* Popups */
.popup-overlay {
    position: fixed;
    inset: 0;
    display: none; /* shown via [aria-hidden="false"] */
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(12, 28, 44, 0.55); /* brand-tinted dim */
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 1000;
    transition: opacity 0.25s ease;
    opacity: 0; /* fade in */
}

.popup-overlay[aria-hidden="false"] {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    width: min(720px, 96vw);
    border-radius: 18px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 24px 64px rgba(2, 12, 27, 0.22);
    padding: 22px 22px 20px;
    outline: 1px solid rgba(2, 12, 27, 0.06);
    /* entrance animation */
    transform: translateY(12px) scale(0.98);
    opacity: 0;
    transition:
        transform 0.28s ease,
        opacity 0.28s ease;
}

.popup-overlay[aria-hidden="false"] .popup-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* gradient accent bar */
.popup-content::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 6px;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    background: linear-gradient(90deg, #007bff, #16a34a 60%, #3f51b5);
}

.popup-title {
    margin: 10px 0 6px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #0f172a;
}

.popup-content p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.65;
}

/* close button */
.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(2, 12, 27, 0.08);
    background: #f1f5ff;
    color: #0f172a;
    font-size: 20px;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(16, 24, 40, 0.12);
    transition:
        transform 0.15s ease,
        background 0.2s ease;
}

.popup-close:hover {
    background: #e5efff;
    transform: scale(1.06);
}

.popup-close:focus-visible {
    outline: 3px solid rgba(0, 123, 255, 0.35);
    outline-offset: 2px;
}

.popup-content.has-banner {
    padding: 0;
    overflow: hidden;
}

.popup-content.has-banner::before {
    display: none;
}

.pop-banner {
    position: relative;
    min-height: clamp(180px, 28vw, 260px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 20px;
    color: #fff;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.pop-banner::after {
    /* readable veil */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 14, 28, 0.15) 8%, rgba(9, 14, 28, 0.6) 75%);
    z-index: -1;
}

.pop-banner .popup-title {
    margin: 0;
    font-size: clamp(1.25rem, 2.4vw, 1.8rem);
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #fff;
}

.pop-sub {
    margin: 0;
    color: #e5edff;
    max-width: 72ch;
}

/* Body */
.pop-section {
    padding: 20px 22px 22px;
}

.pop-bullets {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.pop-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #0f172a;
}

.pop-bullets svg {
    flex: 0 0 18px;
    margin-top: 2px;
    color: #16a34a;
}

.popup-content.has-banner .popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}

.popup-content.has-banner {
    position: relative;
}

.popup-content.has-banner .popup-close {
    z-index: 10;
}

.pop-banner > * {
    position: relative;
    z-index: 1;
}

.pop-banner::after {
    z-index: 0;
}

.popup-content.has-banner .popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

[dir="rtl"] .popup-content.has-banner .popup-close {
    right: auto;
    left: 12px;
}

[dir="rtl"] .title-row {
    flex-direction: row-reverse;
}

[dir="rtl"] .badge {
    left: auto;
    right: 12px;
}

[dir="rtl"] .popup-close {
    right: auto;
    left: 10px;
}

.pricing-section {
    background-color: #081026;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: center;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    gap: 32px;
    align-items: stretch;
    justify-items: stretch;
}

/* Card */
.pricing-card {
    background: #fff;
    color: #0c1c2c;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    border: 2px solid #007bff;
    box-shadow: 0 16px 48px rgba(0, 123, 255, 0.18);
}

.pricing-card .price {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 0 12px;
    line-height: 1;
    font-size: 42px;
    font-weight: 800;
    color: #007bff;
}

.plan-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    text-align: left;
    flex: 1 1 auto;
}

.features li {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.features i {
    color: #28a745;
    font-size: 18px;
}

.btn-view {
    display: inline-block;
    padding: 12px 30px;
    background-color: #007bff;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-view:hover {
    background-color: #0056b3;
}

.partner-section {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.partner-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0c1c2c;
    margin-bottom: 10px;
}

.partner-header h2 span {
    color: #007bff;
}

.partner-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.partner-logo img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
}

.partner-logo:hover {
    transform: scale(1.1);
    filter: none;
    opacity: 1;
}

@media (max-width: 700px) {
    .pricing-cards {
        display: grid;
        grid-template-columns: min(520px, 100%);
        justify-content: center;
        gap: 14px;
    }

    .pricing-card {
        max-width: 520px;
        width: 100%;
        margin-inline: auto;
    }

    .pricing-section .container {
        padding-inline: 16px;
    }
}

/* tiny phones */
@media (max-width: 360px) {
    .pricing-cards {
        grid-template-columns: min(440px, 100%);
    }

    .pricing-card {
        max-width: 440px;
    }
}

/*services css ends*/
