/* Parent class for the entire section */
.customer-benefits-section {
    position: relative;
    background-color: #f8f9fa;
    /* Base background for the section */
    padding: 20px 0;
    /* Add some vertical padding */
    min-height: 600px;
    /* Ensure it takes full viewport height for demo */
}

/* Optional: Background image overlay - tied to the parent section */
.customer-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/big-city.jpg');
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    /* Adjust transparency */
    z-index: 0;
    /* Below content */
}

/* Optional: Organic green gradient shapes - tied to the parent section */
/* Top-left shape */
.customer-benefits-section::after {
    content: '';
    position: absolute;
    top: -28px;
    /* Adjust position */
    left: -50px;
    /* Adjust position */
    width: 207px;
    height: 250px;
    background: linear-gradient(135deg, #a8e063, var(--bs-green));
    /* Light to dark green */
    border-radius: 60% 40% 70% 30% / 30% 70% 30% 70%;
    /* Organic shape */
    filter: blur(40px);
    /* Soft blur */
    opacity: 0.6;
    z-index: 1;
    /* Below content, above background image */
}

/* Bottom-right shape - targeting a row within the section, or could be another pseudo-element of .customer-benefits-section */
.customer-benefits-section .row.pb-5::before {
    /* Targeting the row that contains the benefit cards */
    content: '';
    position: absolute;
    bottom: 8px;
    right: 13px;
    width: 227px;
    height: 250px;
    background: linear-gradient(135deg, #a8e063, var(--bs-green));
    border-radius: 40% 60% 30% 70% / 70% 30% 70% 30%;
    filter: blur(40px);
    opacity: 0.6;
    z-index: 1;/
}


/* Title Styling - specific to the customer-benefits-section */
.customer-benefits-section .display-4 {
    color: #343a40;
    /* Dark grey for text */
    position: relative;
    /* To place above optional background elements */
    z-index: 2;
    /* Above background effects */
}

/* Benefit Card Styling - specific to the customer-benefits-section */
.customer-benefits-section .benefit-card {
    display: flex;
    align-items: center;
    /* Vertically align icon and text */
    background-color: #fff;
    border-radius: 15px;
    /* More rounded corners */
    padding: 20px 25px;
    /* Adjust padding as needed */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    width: 100%;
    /* Ensure it takes full width of its column */
    transition: transform 0.2s ease-in-out;
    position: relative;
    /* For z-index to be above background elements */
    z-index: 2;
    /* Above background effects */
}

.customer-benefits-section .benefit-card:hover {
    transform: translateY(-5px);
    /* Slight lift on hover */
}

/* Icon Wrapper Styling - specific to the benefit-card */
.customer-benefits-section .benefit-card .icon-wrapper {
    background-color: var(--bs-green);
    /* Medium green */
    border-radius: 12px;
    /* Slightly less rounded than card */
    width: 60px;
    /* Fixed width for icon background */
    height: 60px;
    /* Fixed height for icon background */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    /* Prevent it from shrinking */
    margin-right: 20px;
    /* Space between icon and text */
}

/* Icon Styling - specific to the icon-wrapper */
.customer-benefits-section .benefit-card .icon-wrapper .icon {
    color: #fff;
    /* White icon color */
    font-size: 28px;
    /* Icon size */
}

/* Text Content Styling - specific to the benefit-card */
.customer-benefits-section .benefit-card .text-content h4 {
    font-size: 1.15rem;
    /* Adjust heading size */
    color: #343a40;
    margin-bottom: 5px;
    /* Space between heading and paragraph */
    font-weight: 600;
    /* Slightly bolder heading */
}

.customer-benefits-section .benefit-card .text-content p {
    font-size: 0.9rem;
    /* Adjust paragraph size */
    color: #6c757d;
    /* Slightly lighter grey for paragraph */
    margin-bottom: 0;
}


.ev-partners-section {
    position: relative;
    background-color: #343a40;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ev-partners-section .ev-partners-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/big-city.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.ev-partners-section .ev-partners-header-bar {
    background: linear-gradient(to right, var(--bs-green), var(--bs-green));
    color: #fff;
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.ev-partners-section .ev-partners-header-bar h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.ev-partners-section .brand-logo-circle {
    width: 140px;
    height: 140px;
    background-color: #fff;
    border-radius: 50%;
    border: 3px solid var(--bs-green);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.ev-partners-section .brand-logo-circle:hover {
    transform: translateY(-5px);
    border-color: #5cb85c;
}

.ev-partners-section .brand-logo-circle img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.ev-partners-section .ev-more-btn {
    background: linear-gradient(to right, var(--bs-green), var(--bs-green));
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease-in-out;
    position: relative;
    z-index: 1;
}

.ev-partners-section .ev-more-btn:hover {
    background: linear-gradient(to right, var(--bs-green), var(--bs-green));
    transform: translateY(-2px);
    color: #fff;
}

.ev-partners-section .ev-more-btn i {
    font-size: 1rem;
    vertical-align: middle;
}


.ola-product-showcase {
    position: relative;
    min-height: 100vh;
}

.ola-product-left-bg {
    background: linear-gradient(to bottom, var(--bs-green), var(--bs-green));
    z-index: 2;
}

.ola-scooter-img {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 3;
}

.ola-product-right-content {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.ola-product-right-content .ola-product-right-bg-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/big-city.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
}

.ola-product-right-content .content-wrapper {
    position: relative;
    z-index: 1;
    padding-left: 20px;
    padding-right: 20px;
}

.ola-product-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
}

.ola-spec-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 2px solid #8dc63f;
    border-radius: 20px;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 280px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.ola-spec-card .icon-circle {
    background-color: #f0f8e9;
    border: 1px solid #c8e6c9;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.ola-spec-card .icon-circle i {
    color: var(--bs-green);
    font-size: 22px;
}

.ola-spec-card .spec-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.ola-spec-card .spec-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.2;
}

.ola-available-models {
    font-size: 1.1rem;
    color: #555;
    margin-top: 20px;
}

/* Section Wrapper for Gradient Background */
.section-gradient-wrapper {
    background: linear-gradient(to right, var(--bs-green), var(--bs-green));
    /* Adjusted gradient colors */
    color: white;
    min-height: 100vh;
    /* Full viewport height */
    display: flex;
    align-items: center;
    /* Vertically center content of the wrapper */
    padding: 40px 0;
    /* Some vertical padding for smaller screens if content is tall */
}

/* Bootstrap container inside the wrapper */
.section-gradient-wrapper .container-fluid {
    padding-left: 20px;
    /* Adjust horizontal padding to match image spacing */
    padding-right: 20px;
}

/* Left Section Styles */
.section-gradient-wrapper .left-content-area {
    /* Flexbox utilities for centering from Bootstrap are applied directly in HTML */
    /* Text alignment for different screen sizes handled by Bootstrap classes */
}

.section-gradient-wrapper .franchise-heading {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    /* Responsive font size for "Franchise Opportunity" */
    font-weight: 700;
    /* Bold */
    line-height: 1.1;
    color: #ffff;
    margin-bottom: 0.5rem;
    /* Space below heading */
}

.section-gradient-wrapper .foco-model-text {
    font-size: clamp(1.8rem, 4vw, 3rem);
    /* Responsive font size for "FOCO Model Only" */
    font-weight: 600;
    /* Semi-bold */
    margin-top: 0;
    /* Remove default margin */
    margin-bottom: 1.5rem;
    /* Space below this line */
    color: #ffffff;
}

.section-gradient-wrapper .you-earn-slogan {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    /* Responsive font size for slogan */
    font-weight: 500;
}

/* Right Section Styles - The White Box */
.section-gradient-wrapper .right-info-box {
    background-color: white;
    padding: 30px 40px;
    /* Adjusted padding */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    /* Stronger, more visible shadow */
    color: #333;
    /* Dark text for readability on white background */
    max-width: 550px;
    /* Limit width of the box to prevent it from being too wide on large screens */
    width: 100%;
    /* Ensure it takes full width up to max-width */
    margin: auto;
    /* Center the box horizontally if max-width is hit */
}

.section-gradient-wrapper .info-box-title {
    font-size: 1.25rem;
    /* Slightly larger title for the box */
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    /* Space below title */
}

.section-gradient-wrapper .info-box-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    /* Space below paragraphs */
}

.section-gradient-wrapper .investor-instruction-card {
    background-color: #f8f9fa;
    /* Lighter background for the inner card */
    padding: 20px 25px;
    /* Adjusted padding for inner card */
    border-radius: 6px;
    border: 1px solid #e9ecef;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.section-gradient-wrapper .investor-instruction-card .instruction-heading {
    font-size: 1rem;
    font-weight: 600;
    /* Semi-bold */
    margin-bottom: 1rem;
    /* Space below instruction heading */
}

.section-gradient-wrapper .icon-text-item {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Space between icon and text */
}

.section-gradient-wrapper .icon-text-item img {
    width: 38px;
    /* Adjusted icon size */
    height: 38px;
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.section-gradient-wrapper .icon-text-item p {
    font-size: 1.05rem;
    /* Slightly larger text for the instruction */
    margin-bottom: 0;
    /* Remove default paragraph margin */
    font-weight: 500;
    line-height: 1.4;
}

.section-gradient-wrapper .highlight-text {
    color: var(--bs-green);
    /* Green accent color, matches a mid-tone of the gradient */
    font-weight: 700;
    /* Bold highlight */
}



/* Section Wrapper for the entire "What You Gain" section */
.gain-section-wrapper {
    /* Background image with a transparent dark overlay */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        /* Dark overlay (adjust alpha for more/less transparency) */
        url('/PrimeEVimg/chart.avif');
    /* Your background image path */
    background-size: cover;
    /* Image will cover the entire section */
    background-position: center center;
    /* Image will be centered */
    background-repeat: no-repeat;
    /* Prevent image repetition */
    background-attachment: fixed;
    /* Optional: Makes the background fixed while scrolling (parallax effect) */

    padding: 60px 0;
    /* Vertical padding for the whole section */
    min-height: 80vh;
    /* Adjust as needed, ensure enough height for content */
    display: flex;
    align-items: center;
    /* Vertically center content within the wrapper */
    color: #f0d4d4;
    /* Default text color for elements directly within this wrapper (e.g., if you add titles outside boxes) */
}

/* Bootstrap container inside the wrapper */
.gain-section-wrapper .container-fluid {
    padding-left: 20px;
    /* Adjust horizontal padding to match image spacing */
    padding-right: 20px;
}

/* Left Gradient "What You Gain" Box */
.gain-section-wrapper .left-gain-box {
    background: linear-gradient(to right, var(--bs-green), var(--bs-green));
    /* Adjusted gradient */
    color: white;
    padding: 40px 30px;
    border-radius: 0 50px 50px 0;
    /* Rounded on right, flat on left */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    /* Take full height of the column */
    min-height: 250px;
    /* Minimum height for the box */
    margin-left: -15px;
    /* Offset to align with image */
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.gain-section-wrapper .gain-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    /* Responsive font size */
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
}

/* Right Content Area for Benefit Cards */
.gain-section-wrapper .right-benefits-area {
    padding-left: 30px;
    /* Space from the left gradient box */
}

/* Individual Benefit Card */
.gain-section-wrapper .benefit-card {
    display: flex;
    align-items: flex-start;
    /* Align number and text at the top */
    margin-bottom: 30px;
    /* Space between cards */
    position: relative;
    /* For connector lines */
}

.gain-section-wrapper .benefit-number-circle {
    background-color: #fff;
    /* White background for the circle */
    border: 1px solid #ddd;
    /* Light border */
    border-radius: 50%;
    width: 40px;
    /* Size of the circle */
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--bs-green);
    /* Green number color */
    font-size: 1.2rem;
    flex-shrink: 0;
    /* Prevent number from shrinking */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for the circle */
    z-index: 2;
    /* Bring circle above any lines */
    position: relative;
    /* For z-index to work */
}

.gain-section-wrapper .benefit-content {
    margin-left: 20px;
    /* Space between circle and text */
    flex-grow: 1;
    /* Allow content to take available space */
}

.gain-section-wrapper .benefit-title {
    font-size: 1.15rem;
    /* Benefit title font size */
    font-weight: 700;
    color: #fff;
    /* Light text for titles on the darker background */
    margin-bottom: 5px;
}

.gain-section-wrapper .benefit-description {
    font-size: 0.95rem;
    /* Description font size */
    color: #eee;
    /* Slightly lighter text for descriptions on the darker background */
    line-height: 1.5;
    margin-bottom: 0;
}


/* bank Partners */



.bank-partner-section {
    position: relative;
    background-color: #343a40;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bank-partner-section .bank-partners-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/big-city.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.bank-partner-section .bank-partners-header-bar {
    background: linear-gradient(to right, var(--bs-green), var(--bs-green));
    color: #fff;
    border-radius: 50px;
    padding: 15px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.bank-partner-section .bank-partners-header-bar h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.bank-partner-section .bank-logo-circle {
    width: 200px;
    height: 200px;
    background-color: #fff;
    border-radius: 50%;
    border: 3px solid var(--bs-green);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out, border-color 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.bank-partner-section .bank-logo-circle:hover {
    transform: translateY(-5px);
    border-color: #5cb85c;
}

.bank-partner-section .bank-logo-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bank-partner-section .ev-more-btn {
    background: linear-gradient(to right, var(--bs-green), var(--bs-green));
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease-in-out;
    position: relative;
    z-index: 1;
}

.bank-partner-section .ev-more-btn:hover {
    background: linear-gradient(to right, var(--bs-green), var(--bs-green));
    transform: translateY(-2px);
    color: #fff;
}

.bank-partner-section .ev-more-btn i {
    font-size: 1rem;
    vertical-align: middle;
}


.investment-section-wrapper {
    /* Background image with a light transparent overlay */
    background-image: linear-gradient(rgb(76 212 176), rgba(255, 255, 255, 0.6)), url(/img/big-city.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Optional: parallax effect */

    padding: 80px 0;
    /* More vertical padding for this section */
    min-height: 100vh;
    /* Full viewport height */
    display: flex;
    align-items: center;
    /* Vertically center content */
}

.investment-section-wrapper .section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    /* Responsive font size */
    font-weight: 700;
    color: #ffffff;
    /* Dark text for title */
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.investment-section-wrapper .section-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    /* Responsive font size */
    font-weight: 500;
    color: #ffffff;
    /* Slightly lighter text for subtitle */
    text-align: center;
    margin-bottom: 3rem;
    /* Space below subtitle */
}

/* Central Investment Card */
.investment-section-wrapper .investment-card {
    background-color: white;
    border: 2px solid var(--bs-green);
    /* Green border */
    border-radius: 20px;
    /* More prominent rounded corners */
    padding: 50px 40px;
    /* Generous padding */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* More prominent shadow */
    text-align: center;
    max-width: 600px;
    /* Limit card width */
    margin: 0 auto;
    /* Center card horizontally */
    position: relative;
    /* For any potential pseudo-elements or detailed design */
}

.investment-section-wrapper .investment-card::before,
.investment-section-wrapper .investment-card::after {
    content: '';
    position: absolute;
    background-color: var(--bs-green);
    /* Green color for the decorative elements */
    border-radius: 50%;
    opacity: 0.8;
    /* Slightly transparent */
    filter: blur(2px);
    /* Soft blur effect */
}

.investment-section-wrapper .investment-card::before {
    width: 20px;
    height: 20px;
    top: -10px;
    left: -10px;
}

.investment-section-wrapper .investment-card::after {
    width: 30px;
    height: 30px;
    bottom: -15px;
    right: -15px;
}


.investment-section-wrapper .investment-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.5rem;
}

.investment-section-wrapper .investment-amount {
    font-size: 3.5rem;
    /* Large font size for the amount */
    font-weight: 800;
    /* Extra bold */
    color: var(--bs-green);
    /* Strong green for the amount */
    margin-bottom: 1.5rem;
    line-height: 1;
    /* Tight line height */
}

.investment-section-wrapper .investment-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 450px;
    /* Limit description width */
    margin-left: auto;
    margin-right: auto;
}

.roi-section-wrapper {
    /* Background image with a light transparent overlay */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
        /* Lighter white overlay */
        url('/PrimeEVimg/bg-one.jpg');
    /* Cityscape background image */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Optional: parallax effect */

    padding: 80px 0;
    /* Vertical padding */
    min-height: 100vh;
    /* Full viewport height */
    display: flex;
    align-items: center;
    /* Vertically center content */
    color: #333;
    /* Default text color for the section */
}

.roi-section-wrapper .section-title-roi {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    /* Responsive font size */
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.roi-section-wrapper .section-subtitle-roi {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 500;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
}

.roi-flow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* Allow items to wrap on smaller screens */
    position: relative;
    padding-bottom: 50px;
    /* Space for the bottom descriptions */
}


.roi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 15px;
    /* Spacing between items */
    position: relative;
    z-index: 2;
    /* Above the line */
    flex-shrink: 0;
    /* Prevent shrinking */
    width: 160px;
    /* Fixed width for each item on desktop */
}

.roi-circle {
    /* background: linear-gradient(to right, var(--bs-green), #6AB344); */
    background: linear-gradient(to right, #f7f5f4, #fbfff8);
    width: 100px;
    /* Circle size */
    height: 100px;
    /* border: 3px solid var(--bs-green) !important; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    /* Space below circle */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /* Shadow for circles */
    border: 3px solid rgba(255, 255, 255, 0.5);
    /* Inner white border */
    position: relative;
    z-index: 3;
    /* Above line */
}

.roi-circle img {
    width: 50px;
    /* Icon size inside circle */
    height: 50px;
    /* filter: invert(1);  */
}

.roi-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.3;
}

.roi-item-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}


.prime-ev-unique-hero-header {
    padding-top: 5rem;
    padding-bottom: 3rem;
    background-color: #ffffff;
    /* White */
    text-align: center;
}

.prime-ev-unique-features-section {
    position: relative;
    overflow: hidden;
    /* Hide parts of the blob that go outside */
    padding: 8rem 0;
    /* More padding for background effect */
    background-color: #f0f2f5;
    /* Slightly darker light grey */
}

/* Animated Blob Background */
.animated-gradient-blob-bg {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: linear-gradient(135deg, var(--bs-green), var(--bs-green));
    border-radius: 40% 60% 70% 30% / 50% 60% 30% 70%;
    /* Blob shape */
    animation: blobAnimate 20s ease-in-out infinite alternate;
    filter: blur(100px);
    opacity: 0.7;
    z-index: 0;
}

.franchise-section-v3 {
    background: linear-gradient(135deg, #10B981, #3B82F6);
    /* Emerald Green to Royal Blue */
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Title and Subtitle on the gradient background */
.franchise-title-v3 {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    color: #ffff;
}

.franchise-subtitle-v3 {
    font-size: 1.9rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 5rem;
}

/* Floating Content Card (Version 3) - ENHANCED DESIGN */
.franchise-card-v3 {
    background-color: rgba(255, 255, 255, 0.9);

    border-radius: 25px;
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.28);

    border: 2px solid rgba(255, 255, 255, 0.6);

    color: #333;
    max-width: 800px;
    margin-bottom: 5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
   
}

/* Hover effect for the card */
.franchise-card-v3:hover {
    background-color: #ffffff;
    /* Becomes fully opaque white */
    transform: translateY(-12px);
    /* Lifts up slightly more */
    box-shadow: 0 2rem 4.5rem rgba(0, 0, 0, 0.4);
    /* Shadow intensifies and expands */
    border-color: #3B82F6;
    /* Border color changes to match primary gradient color */
}


.franchise-card-v3 .card-title {
    font-size: 2.2rem;
    color: #1a202c;
    line-height: 1.3;
}

.franchise-card-v3 .card-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
}

/* Investor Role Section (Version 3) - SLIGHTLY REFINED */
.investor-role-v3 {
    background-color: #f8faff;
    /* A very light, slightly bluer background for this section */
    border-radius: 15px;
    padding: 1.8rem;
    align-items: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
    /* Subtle border matching accent color */
    box-shadow: inset 0 0 8px rgba(59, 130, 246, 0.1);
    /* Inner shadow for depth */
}

.investor-role-v3 h3 {
    font-size: 1.4rem;
    color: #212529;
    margin-top: 0;
}

.investor-role-v3 p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 0;
}

.investor-role-v3 i {
    color: #3B82F6;
    font-size: 3.5rem;
}

@keyframes blobAnimate {
    0% {
        transform: scale(1) translate(0, 0);
        border-radius: 40% 60% 70% 30% / 50% 60% 30% 70%;
    }

    25% {
        transform: scale(1.05) translate(10%, -10%);
        border-radius: 50% 50% 60% 40% / 40% 50% 50% 60%;
    }

    50% {
        transform: scale(1) translate(0, 0);
        border-radius: 60% 40% 50% 50% / 60% 40% 40% 60%;
    }

    75% {
        transform: scale(1.05) translate(-10%, 10%);
        border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
    }

    100% {
        transform: scale(1) translate(0, 0);
        border-radius: 40% 60% 70% 30% / 50% 60% 30% 70%;
    }
}

.features-cards-display-area {
    position: relative;
    z-index: 1;
    /* Cards above the blob */
}

.prime-feature-showcase-card {
    background-color: #ffffff;
    /* White */
    border-radius: 1.25rem;
    /* More rounded */
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    /* Ample space */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Card shadow */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prime-feature-showcase-card:hover {
    transform: translateY(-12px) scale(1.01);
    /* Slight lift and scale */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    /* Stronger hover shadow */
}

.feature-card-main-icon {
    font-size: 4rem;
    /* Big icon */
    color: var(--bs-green);
    /* Darker green for icon */
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.card-prime-ev-title {
    font-size: 1.7rem;
    font-weight: bold;
    color: #212529;
    /* Dark text */
    margin-bottom: 1rem;
}

.card-prime-ev-benefit-desc {
    font-size: 1.05rem;
    color: #6c757d;
    /* Muted text */
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-dealer-comparison-info {
    font-size: 0.95rem;
    color: #6c757d;
    /* Muted text */
    display: flex;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    /* A clearer separator */
    margin-top: auto;
    /* Pushes to bottom */
}

.card-dealer-comparison-info .icon-cross {
    color: #dc3545;
    /* Red */
    font-size: 1.1rem;
    margin-right: 0.6rem;
    flex-shrink: 0;
}


/* what we handle */


.what-we-handle-grid-section {
    background: linear-gradient(270deg, #80ED99, var(--bs-green), #38A3A5);
    /* Three-color gradient */
    background-size: 300% 300%;
    /* Make background larger for animation */
    animation: gradientShift 15s ease infinite;
    /* Animation applied */
    padding-top: 80px;
    padding-bottom: 80px;

}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Header Styles */
.what-we-handle-grid-section .text-dark-blue {
    color: #ffffff !important;
    /* Changed to white for better contrast with gradient */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    /* Added text shadow */
}

.what-we-handle-grid-section .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
    /* Changed to semi-transparent white */
    font-size: 1.1rem;
}

/* Service Card Styles */
.handel-service-card {
   
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
    border-radius: 15px !important;
   
    position: relative;
   
    overflow: hidden;

    z-index: 1;
  
}

/* New: Pseudo-element for the dynamic gradient hover effect */
.handel-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #20C997, #10B981);
    /* Gradient from bottom-left to top-right */
    z-index: -1;
    /* Place behind content */
    opacity: 0;
    /* Hidden by default */
    transform: scale(0);
    /* Start scaled down */
    transform-origin: center center;
    /* Scale from center */
    border-radius: inherit;
    /* Inherit border-radius from parent */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.handel-service-card:hover::before {
    opacity: 1;
    /* Reveal on hover */
    transform: scale(1);
    /* Scale up to cover card */
}

/* Adjust text color on hover for better contrast with the new background */
.handel-service-card:hover .card-title,
.handel-service-card:hover .card-text {
    color: #ffffff !important;
    /* Change text to white on hover */
}

/* Main card hover effects (lift, shadow, border) */
.handel-service-card:hover {
    /* This selector was correct, no change needed here */
    transform: translateY(-8px);
    /* Lift on hover */
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
    /* Intensify shadow on hover */
    border-color: var(--bs-green);
    /* Teal border on hover */
    /* Removed background-color: #e6f7f0; as ::before takes over */
}

/* Icon styling and animation */
.what-we-handle-grid-section .handel-service-card .card-icon {
    /* Adjusted to use parent class */
    margin-bottom: 1rem;
    color: #20C997;
    /* Default icon color */
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    /* Added color transition */
}

.handel-service-card:hover .card-icon {
    /* This selector was correct */
    color: #ffffff;
    /* Icon turns white on hover */
}

.handel-service-card:hover .card-icon i {
    /* This selector was correct */
    transform: scale(1.15) rotate(5deg);
    /* Icon scales up and rotates slightly on hover */
}

/* Card content styling */
.what-we-handle-grid-section .handel-service-card .card-title {
    /* Adjusted to use parent class */
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #333;
    /* Default dark color for title */
}

.what-we-handle-grid-section .handel-service-card .card-text {
    /* Adjusted to use parent class */
    font-size: 0.95rem;
    color: #666;
    /* Medium grey for description */
}


.roi-section-alt-design {
    background-color: #f8fcfb;
    /* Very light background */
    padding-top: 80px;
    padding-bottom: 80px;
}

.roi-section-alt-design .heading-roi {
    color: #2c3e50;
    /* Dark blue/charcoal for headings */
    font-weight: 700;
    font-size: 3.5rem;
    /* Large heading */
    margin-bottom: 0;
}

.roi-section-alt-design .subheading-roi {
    color: #7f8c8d;
    /* Muted grey for subheading */
    font-size: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 4rem;
}

.roi-feature-item {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 1.8rem;
    text-align: left;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease-in-out;
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Pseudo-element for the dynamic gradient hover effect (revealing from corner) */
.roi-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradient using #4cd4b0 and a slightly darker shade */
    background: linear-gradient(135deg, #4cd4b0, #38A3A5);
    z-index: -1;
    /* Place behind card content */
    opacity: 0;
    /* Hidden by default */
    transform: scale(0);
    /* Start scaled down */
    transform-origin: top left;
    /* Reveal from top-left corner */
    border-radius: inherit;
    /* Inherit border-radius from parent */
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    /* Smooth transition */
}

.roi-feature-item:hover::before {
    opacity: 1;
    /* Reveal on hover */
    transform: scale(1);
    /* Scale up to cover card */
}

.roi-feature-item:hover {
    transform: translateY(-8px);
    /* Lift effect */
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
    /* Stronger shadow */
    border-color: transparent;
    /* Make default border transparent as gradient takes over */
}

.roi-feature-item .icon-wrapper-alt {
    width: 65px;
    height: 65px;
    background-color: #eafcf9;
    /* Very light teal background for icon */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: background-color 0.4s ease-in-out;
}

.roi-feature-item:hover .icon-wrapper-alt {
    background-color: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white on hover for contrast */
}

.roi-feature-item .icon-wrapper-alt i {
    font-size: 2em;
    color: #4cd4b0;
    /* Teal icon color */
    transition: color 0.4s ease-in-out;
}

.roi-feature-item:hover .icon-wrapper-alt i {
    color: #ffffff;
    /* Icon turns white on hover */
}

.roi-feature-item .content-wrapper {
    flex-grow: 1;
}

.roi-feature-item .roi-card-title-alt {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    /* Default dark color */
    margin-bottom: 0.5rem;
    transition: color 0.4s ease-in-out;
}

.roi-feature-item:hover .roi-card-title-alt {
    color: #ffffff;
    /* Title turns white on hover */
}

.roi-feature-item .roi-card-description-alt {
    font-size: 0.95rem;
    color: #666;
    /* Default medium grey color */
    line-height: 1.6;
    transition: color 0.4s ease-in-out;
}

.roi-feature-item:hover .roi-card-description-alt {
    color: rgba(255, 255, 255, 0.85);
    /* Description turns light white on hover */
}

.showroom-img{
    max-width: 53em;
}

@media (min-width: 992px) {
    .features-cards-display-area .col:nth-child(2) .prime-feature-showcase-card {
        margin-top: 50px;
        /* Offset the second card down */
    }

    .features-cards-display-area .col:nth-child(3) .prime-feature-showcase-card {
        margin-top: -7px;
        /* Offset the third card up */
    }

    /* You can play with more nth-child offsets for more asymmetry */
}

.lead-text {
    font-size: 1.25rem;
    color: #6c757d;
    /* Muted text */
}







@media (max-width: 991.98px) {
    .roi-section-alt-design .heading-roi {
        font-size: 3rem;
    }

    .roi-section-alt-design .subheading-roi {
        font-size: 1.25rem;
    }

    .roi-feature-item .roi-card-title-alt {
        font-size: 1.2rem;
    }

    .what-we-handle-grid-section .display-4 {
        font-size: 3rem;
    }

    .gain-section-wrapper .left-gain-box {
        border-radius: 15px;
        /* Softer rounded corners for smaller screens */
        margin-left: 0;
        /* No offset */
        margin-bottom: 30px;
        /* Space below the box when stacked */
        width: calc(100% - 30px);
        /* Adjust width to fit container better */
        margin-right: auto;
        margin-left: auto;
        /* Center the box */
    }

    .gain-section-wrapper .right-benefits-area {
        padding-left: 15px;
        /* Default bootstrap padding */
        padding-right: 15px;
    }

    .gain-section-wrapper .benefit-card {
        margin-bottom: 25px;
    }

    .gain-section-wrapper .benefit-card:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 19px;
        /* Align with center of number circle */
        top: 40px;
        /* Start below the circle */
        height: calc(100% - 20px);
        /* Extend to the next circle's start */
        width: 1px;
        background-color: rgba(255, 255, 255, 0.4);
        /* Light gray line, slightly transparent */
        z-index: 1;
    }

    .gain-section-wrapper .col-lg-6 .benefit-card:last-child::after {
        display: none;
    }

    .ola-product-showcase {
        flex-direction: column;
    }

    .ola-product-left-bg,
    .ola-product-right-content {
        width: 100%;
        height: auto;
        padding-bottom: 20px;
    }

    .ola-product-left-bg {
        min-height: 40vh;
    }

    .ola-scooter-img {
        position: static;
        transform: none;
        max-width: 70%;
        margin: 20px auto 0;
        display: block;
    }

    .ola-product-title {
        font-size: 2.8rem;
        text-align: center;
        margin-top: 30px;
    }

    .ola-spec-card {
        max-width: none;
        justify-content: center;
        margin: 0 auto;
    }

    .ola-spec-card .icon-circle {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }

    .ola-spec-card .icon-circle i {
        font-size: 20px;
    }

    .ola-spec-card .spec-value {
        font-size: 1.3rem;
    }

    .ola-spec-card .spec-label {
        font-size: 0.85rem;
    }

    .ola-available-models {
        text-align: center;
    }

    .ola-product-right-content .content-wrapper {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .ola-product-right-content {
        min-height: 50vh;
    }

    .roi-flow-container {
        flex-direction: column;
        /* Stack items vertically */
        align-items: center;
        padding-bottom: 0;
    }

    .roi-flow-container::before {
        display: none;
        /* Hide horizontal line */
    }

    .roi-item {
        width: 80%;
        /* Take more width when stacked */
        max-width: 300px;
        margin: 20px auto;
        /* More vertical margin */
    }

    .roi-item:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -20px;
        /* Position below the current item */
        width: 2px;
        /* Vertical line thickness */
        height: 40px;
        /* Length of the vertical line */
        background-color: #6AB344;
        /* Green line */
        z-index: 0;
        /* Behind the items */
    }

    .roi-item:last-child::after {
        display: none;
        /* No line after the last item */
    }

    .roi-circle {
        width: 80px;
        height: 80px;
    }

    .roi-circle img {
        width: 40px;
        height: 40px;
    }

    .roi-item-title {
        font-size: 1rem;
    }

    .roi-item-description {
        font-size: 0.9rem;
    }
}


@media (max-width: 575.98px) {
    .roi-section-alt-design .heading-roi {
        font-size: 2rem;
        text-align: center;
    }
.showroom-img {
           max-width: 23em;
}

    .roi-section-alt-design .subheading-roi {
        font-size: 0.9rem;
        text-align: center;
    }

    .roi-feature-item {
        flex-direction: column;
        /* Stack icon and text on very small screens */
        align-items: center;
        /* Center content when stacked */
        text-align: center;
    }

    .roi-feature-item .icon-wrapper-alt {
        margin-right: 0;
        margin-bottom: 1rem;
        /* Space below icon when stacked */
    }

    .what-we-handle-grid-section .display-4 {
        font-size: 2rem;
    }

    .what-we-handle-grid-section .lead {
        font-size: 0.9rem;
    }

    .handel-service-card .card-icon i {
        font-size: 2em;
    }

    .franchise-title-v3 {
        font-size: 2.2rem;
    }

    .franchise-subtitle-v3 {
        font-size: 1rem;
    }

    .franchise-card-v3 .card-title {
        font-size: 1.5rem;
    }

    .franchise-card-v3 p {
        font-size: 0.95rem;
    }

    .investor-role-v3 h3 {
        font-size: 1.1rem;
    }

    .ev-partners-section .brand-logo-circle {
        width: 120px;
        height: 120px;
    }

    .ev-partners-section .brand-logo-circle img {
        max-width: 70%;
        max-height: 70%;
    }

    .ev-partners-section .col-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .ola-product-title {
        font-size: 2.2rem;
    }

    .ola-spec-card {
        flex-direction: row;
        padding: 10px 15px;
    }

    .ola-spec-card .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .ola-spec-card .spec-value {
        font-size: 1.2rem;
    }

    .ola-spec-card .spec-label {
        font-size: 0.8rem;
    }

    .ola-available-models {
        font-size: 1rem;
    }

}

/* Responsive adjustments - tied to the overall section or specific elements */
@media (max-width: 767.98px) {

    .card-text{
        display: unset !important   ;
    }
    .bank-partner-section .bank-logo-circle img{
                max-width: 85%;
        max-height: 100%;
    }
    .bank-partner-section .bank-logo-circle{
        width: 100px;
        height: 100px;    }
    .roi-section-alt-design .heading-roi {
        font-size: 2.5rem;
    }

    .roi-section-alt-design .subheading-roi {
        font-size: 1rem;
    }

    .roi-feature-item .icon-wrapper-alt {
        width: 55px;
        height: 55px;
        margin-right: 1rem;
    }

    .roi-feature-item .icon-wrapper-alt i {
        font-size: 1.8em;
    }

    .roi-feature-item .roi-card-title-alt {
        font-size: 1.1rem;
    }

    .roi-feature-item .roi-card-description-alt {
        font-size: 0.85rem;
    }

    .roi-feature-item {
        padding: 1.5rem;
    }

    .what-we-handle-grid-section .display-4 {
        font-size: 2.5rem;
    }

    .what-we-handle-grid-section .handel-service-card .card-title {
        font-size: 1.2rem;
    }

    .what-we-handle-grid-section .handel-service-card .card-text {
        font-size: 0.85rem;
    }

    .what-we-handle-grid-section .handel-service-card .card-icon i {
        font-size: 2.5em;
        /* Adjust icon size for smaller screens */
    }

    .franchise-title-v3 {
        font-size: 2.8rem;
    }

    .franchise-subtitle-v3 {
        font-size: 1.25rem;
    }

    .franchise-card-v3 {
        padding: 1.8rem !important;
        margin-left: 15px;
        margin-right: 15px;
    }

    .investor-role-v3 {
        flex-direction: column;
        text-align: center;
    }

    .investor-role-v3 i {
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }

    .roi-section-wrapper {
        padding: 40px 0;
    }

    .roi-section-wrapper .section-title-roi {
        font-size: 2rem;
    }

    .roi-section-wrapper .section-subtitle-roi {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .roi-item {
        margin: 15px auto;
        width: 90%;
    }

    .roi-circle {
        width: 70px;
        height: 70px;
    }

    .roi-circle img {
        width: 35px;
        height: 35px;
    }

    .investment-section-wrapper {
        padding: 50px 0;
        min-height: auto;
        /* Allow height to shrink on small screens */
    }

    .investment-section-wrapper .section-title {
        font-size: 2rem;
    }

    .investment-section-wrapper .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .investment-section-wrapper .investment-card {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .investment-section-wrapper .investment-card-title {
        font-size: 1.4rem;
    }

    .investment-section-wrapper .investment-amount {
        font-size: 2.5rem;
    }

    .investment-section-wrapper .investment-description {
        font-size: 0.9rem;
    }

    .investment-section-wrapper .investment-card::before {
        width: 15px;
        height: 15px;
        top: -7px;
        left: -7px;
    }

    .investment-section-wrapper .investment-card::after {
        width: 20px;
        height: 20px;
        bottom: -10px;
        right: -10px;
    }

    .gain-section-wrapper {
        padding: 40px 0;
    }

    .gain-section-wrapper .left-gain-box {
        padding: 30px 20px;
        min-height: 180px;
        border-radius: 10px;
    }

    .gain-section-wrapper .gain-heading {
        font-size: 2rem;
    }

    .gain-section-wrapper .benefit-title {
        font-size: 1rem;
    }

    .gain-section-wrapper .benefit-description {
        font-size: 0.9rem;
    }

    .section-gradient-wrapper {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .section-gradient-wrapper .franchise-heading {
        font-size: 2.5rem;
    }

    .section-gradient-wrapper .foco-model-text {
        font-size: 1.8rem;
    }

    .section-gradient-wrapper .you-earn-slogan {
        font-size: 1rem;
    }

    .section-gradient-wrapper .right-info-box {
        padding: 25px 30px;
    }

    .customer-benefits-section .benefit-card {
        padding: 15px;
        flex-direction: row;
    }

    .customer-benefits-section .benefit-card .icon-wrapper {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .customer-benefits-section .benefit-card .icon-wrapper .icon {
        font-size: 24px;
    }

    .customer-benefits-section .benefit-card .text-content h4 {
        font-size: 1rem;
    }

    .customer-benefits-section .benefit-card .text-content p {
        font-size: 0.85rem;
    }

    .customer-benefits-section .display-4 {
        font-size: 2.5rem;
        /* Adjust title size for smaller screens */
    }

    .ev-partners-section .ev-partners-header-bar h2 {
        font-size: 1.5rem;
    }

    .ev-partners-section .brand-logo-circle {
        width: 100px;
        height: 100px;
    }

    .ev-partners-section .brand-logo-circle img {
        max-width: 60%;
        max-height: 60%;
    }

    .ev-partners-section .ev-more-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}