:root {
    --primary-blue: #002133;
    --invygo-blue: #159FCB;
    --sky-blue: #E8F5F9;
    --grey-light: #F5F5F5;
    --grey-medium: #D0D5DD;
    --grey-dark: #475467;
    --white: #FFFFFF;
    --black: #000000;
    --gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styles */
.bg-grad {
    background: linear-gradient(to right, #31586E, #002133);
}

.pehla {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header {
    padding: 10px 80px;
    width: 100%;
}

/* Hide mobile header on desktop */
.mobile-header {
  display: none;
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    margin-right: 15px;
}

.logo-text {
    width: 80px;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link i {
    margin-left: 5px;
    font-size: 12px;
}

.country-flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 5px;
}

.nav-item::marker {
    color: transparent;
}

.nav-item {
    position: relative;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    padding: 8px 0;
    margin-top: 8px;
    z-index: 1000;
}

.language-dropdown li {
    list-style: none;
}

.language-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.language-dropdown li a:hover {
    background-color: #f5f5f5;
}

.signup-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    padding: 8px 0;
    margin-top: 8px;
    z-index: 1000;
}

.signup-dropdown li {
    list-style: none;
}

.signup-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
}

.signup-dropdown li a:hover {
    background-color: #f5f5f5;
}

.signup {
    border: 1px solid #ffd261;
    border-radius: 50px;
    padding: 5px;
    background-color: #ffffff20;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 10px;
    place-self: center;
    animation: pulseScale 2s ease-in-out infinite;
}

@keyframes pulseScale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}


.t1 {
    margin: 0;
    background-color: #ffd261;
    color: var(--black);
    padding: 2px 5px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 12px;
}

.t2 {
    font-size: 13px;
    color: #ffd261;
    font-weight: bold;
    margin: 0;
    padding: 0px 3px;
}

/* Hero Section - Full Width */
.hero-section {
    padding: 60px 0px;
    color: var(--white);
    width: 100%;
}

.hero-title {
    font-size: 38px;
    font-weight: 600;
    margin-top: 20px;
}

.hero-subtitle {
    font-size: 12px;
}

.rating-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.rating-text {
    margin: 0 10px;
    font-size: 12px;
}

.google-icon {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}



.hero-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
    flex-wrap: nowrap;
    will-change: transform;
}

.hero-card {
    width: 400px;
    height: 224px;
    flex: 0 0 calc(33.333% - 13.4px);
    /* 3 per row with gap */
    min-width: calc(33.333% - 13.4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    gap: 5px;
    z-index: 1;
}

.ticker-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.hero-card:hover {
    transform: scale(1.05);
}

.hero-card-title {
    font-size: 14px;
    font-weight: 600;
}

.hero-card-desc {
    font-size: 12px;
    width: 60%;
}

.hero-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--grey-medium);
    border-radius: 50px;
    padding: 6px 8px;
    width: fit-content;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.hero-card-btn img {
    width: 18px;
    height: 18px;
    margin-left: 5px;
}

.hero-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.hero-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Car Subscription Section - Full Width */
.subscription-section {
    background-color: var(--white);
    padding: 50px 0;
    border-radius: 20px 20px 0 0;
    margin-top: -30px;
    position: relative;
    width: 100%;
}

.subscription-tabs {
    display: flex;
    background-color: var(--white);
    border-radius: 50px;
    border: 1px solid var(--grey-medium);
    padding: 5px;
    width: fit-content;
    margin-bottom: 30px;
    position: relative;
}

.subscription-tab {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.subscription-tab.active {
    color: var(--invygo-blue);
    background-color: var(--sky-blue);
}

.browse-all {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--invygo-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
}

.browse-all:hover {
    transform: scale(1.05);
}

.browse-all i {
    margin-left: 5px;
    font-size: 16px;
}

/* Car Carousel Styles */
.car-carousel {
    position: relative;
    width: 100%;
}

.car-carousel-container {
    display: flex;
    flex-wrap: wrap;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 10px 0;
}

.car-card {
    border: 1px solid var(--grey-medium);
    border-radius: 16px;
    width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
}

.car-card:hover {
    border-color: var(--invygo-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.choice {
    color: #685faa;
    font-size: 14px;
    font-weight: bold;
    background: linear-gradient(to right, #685faa4d, #fff);
    padding: 6px;
    border-top-left-radius: 16px;
}

.availability {
    font-size: 14px;
    padding: 6px 12px;
}

.car-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-image img {
    width: 200px;
    height: auto;
    max-height: 100px;
}

.content {
    padding: 18px;
}

.content h5 {
    font-size: 15px;
    font-weight: 600;
}

.card-bottom {
    padding: 5px;
    background-color: var(--sky-blue);
    color: gray;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.text-muted {
    color: var(--grey-dark);
    font-size: 14px;
}

.car-details {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.contract-details {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.contract-item,
.mileage-item {
    display: flex;
    flex-direction: column;
}

.divider {
    width: 1px;
    height: 22px;
    background-color: var(--grey-medium);
    margin: 0 10px;
}

.detail-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--grey-dark);
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
}

.subscription-fee {
    flex-grow: 1;
    max-width: fit-content;
}

.fee-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--grey-dark);
}

.fee-value {
    font-size: 15px;
    font-weight: 700;
}

.car-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.car-carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid var(--grey-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.car-carousel-btn:hover {
    background-color: var(--sky-blue);
    border-color: var(--invygo-blue);
}

/* Benefits Section - Full Width */
.benefits-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.benefits-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--grey-medium);
    text-align: center;
}

.benefits-heading {
    font-size: 60px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    margin-bottom: 325px;
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    max-width: 225px;
    text-align: center;
}

.benefit-icon {
    width: 87px;
    margin: 0 auto 25px;
}

.benefit-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
}

.benefit-desc {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
}

.benefits-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin: 40px 0;
}

.benefits-browse-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--grey-medium);
    border-radius: 8px;
    padding: 10px 18px;
    width: 193px;
    margin: 0 auto;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.benefits-browse-btn:hover {
    background-color: var(--white);
    color: var(--invygo-blue);
}

.benefits-browse-btn i {
    margin-left: 5px;
}

/* Steps Section - Full Width */
.steps-section {
    background-color: var(--white);
    padding: 80px 0;
    width: 100%;
}

.steps-heading {
    font-size: 60px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}

.steps-container {
    background-color: #EDF5FA;
    border-radius: 12px;
    padding: 80px 60px;
    display: flex;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.step-item {
    display: flex;
    flex-direction: column;
    max-width: 385px;
    padding: 40px 20px 60px;
}

.step-icon {
    height: 120px;
    margin: 0 auto 50px;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-desc {
    font-size: 14px;
    color: var(--grey-dark);
    max-width: 280px;
}

/* Plans Section - Full Width */
.plans-section {
    padding: 80px 0;
    width: 1p00px;
}

.plans-heading {
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
}

.plans-subheading {
    font-size: 16px;
    color: var(--grey-dark);
    text-align: center;
    margin-bottom: 60px;
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 0 120px;
}

.plan-card {
    border: 2px solid var(--grey-medium);
    border-radius: 24px;
    padding: 96px 64px;
    max-width: 592px;
    position: relative;
}

.plan-popular {
    position: absolute;
    top: -17px;
    left: 220px;
    background-color: #E8F5F9;
    color: var(--black);
    padding: 8px 32px;
    border-radius: 16px;
    border: 1px solid var(--grey-medium);
}

.plan-title {
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.plan-desc {
    font-size: 16px;
    text-align: center;
    margin-bottom: 40px;
    min-height: 82px;
}

.plan-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
    padding: 10px 18px;
    width: 180px;
    margin: 0 auto 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.plan-btn.primary {
    background-color: var(--invygo-blue);
    color: var(--white);
}

.plan-btn.secondary {
    border: 1px solid var(--grey-dark);
    background-color: transparent;
    color: var(--black);
}

.secondary:hover {
    background-color: var(--sky-blue);
    color: var(--invygo-blue);
}

.plan-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    width: 28px;
    height: 28px;
}

.feature-text {
    font-size: 18px;
    font-weight: 400;
}

.plan-learn-more {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    font-weight: 600;
}

.plan-learn-more img {
    width: 20px;
    height: 20px;
}

.plan-dark {
    background-color: #002d44;
    color: var(--white);
}

.plan-light {
    background-color: var(--white);
    color: var(--black);
}

/* Testimonials Section - Full Width */
.testimonials-section {
    padding: 80px 0;
    width: 100%;
}

.testimonials-heading {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 15px;
}

.testimonials-title {
    font-size: 54px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 40px;
    width: 80%;
}

.testimonials-container {
    display: flex;
    margin-bottom: 60px;
}

.testimonial-image {
    flex-grow: 1;
    min-width: 0;
}

.testimonial-image img {
    width: 100%;
    height: auto;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.testimonial-card {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 24px;
    flex: 1;
}

.testimonial-header {
    display: flex;
    gap: 15px;
    margin-bottom: 38px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--grey-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    border: 5px solid var(--white);
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-name {
    font-weight: 500;
}

.testimonial-stars {
    width: 100px;
    height: 20px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--grey-dark);
}

.app-download {
    display: flex;
    gap: 20px;
}

.qr-code {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.qr-code img {
    width: 100px;
    height: 100px;
}

.app-stores {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-store-btn {
    width: 158px;
    height: 49px;
}

/* Presence Section - Full Width */
.presence-section {
    padding: 80px 0;
    width: 100%;
}

.presence-heading {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.presence-title {
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 40px;
    width: 600px;
}

.country-flags {
    display: flex;
    gap: 20px;
}

.country-flag-large {
    width: 120px;
    height: 120px;
}

.country-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
}

.country-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid var(--grey-dark);
    border-radius: 44px;
    font-weight: 600;
    cursor: pointer;
}

.country-tab.active {
    background-color: var(--sky-blue);
    border-color: var(--sky-blue);
}

.country-tab-icon {
    width: 20px;
    height: 20px;
}

.cities-container {
    display: flex;
    justify-content: space-between;
}

.cities-list {
    display: flex;
    width: 50%;
    display: flex;
    justify-content: space-between;
}

.cities-column {
    flex: 1;
}

.city-item {
    margin-bottom: 30px;
    color: var(--black);
}

.world-map {
    width: 50%;
    display: flex;
}

.world-map img {
    width: 80%;
    height: auto;
    align-self: flex-end;
}

/* FAQ Section - Full Width */
.faq-section {
    padding: 80px 0;
    width: 100%;
}

.faq-heading {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.faq-title {
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 40px;
}

.faq-container {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.faq-see-all {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--invygo-blue);
    border-radius: 8px;
    padding: 10px 15px;
    width: 160px;
    height: 46px;
    color: var(--invygo-blue);
    font-weight: 600;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}

.faq-see-all:hover {
    background-color: var(--sky-blue);
}

.faq-see-all i {
    margin-left: 5px;
}

.faq-items {
    max-width: 70%;
}

.faq-item {
    border: 1px solid var(--grey-medium);
    border-radius: 16px;
    padding: 0 32px;
    margin-bottom: 24px;
    width: 100%;
    flex: 1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.faq-question:hover .ques {
    text-decoration: underline;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background-color: var(--sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding-bottom: 16px;
    display: none;
    text-align: left;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA Section - Full Width */
.cta-section {
    background-color: var(--primary-blue);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 10;
}

.cta-heading {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 48px;
    font-weight: 500;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--invygo-blue);
    border-radius: 8px;
    padding: 10px 15px;
    width: 223px;
    height: 60px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #1185ac;
}


.cta-btn i {
    margin-left: 5px;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ben-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.ben-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer - Full Width */
.footer {
    background-color: var(--sky-blue);
    color: var(--black);
    padding: 120px 30px 60px 30px;
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    margin-bottom: 15px;
    color: var(--grey-dark);
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-link2 {
    display: block;
    margin-bottom: 8px;
    color: var(--gray);
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 400;
}

.two {
    color: var(--gray);
}

.footer-link2:hover,
.footer-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-direction: column;
}

.footer-copyright {
    color: var(--gray);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal-link {
    color: var(--gray);
    font-size: 14px;
    transition: color 0.3s ease;
}


.flexy {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    place-self: center;
}

/* Mobile Navigation */
.mobile-navy {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -4px 10px rgba(171, 171, 171, 0.5);
    padding: 10px 0;
    z-index: 1000;
    display: none;
    width: 100%;
}

.mobile-navy-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.mobile-navy-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: var(--grey-dark);
    font-size: 14px;
}

.mobile-browse-btn {
    background-color: var(--invygo-blue);
    color: var(--white);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    min-width: 259px;
    text-align: center;
}

.flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.margin {
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .plans-container {
        padding: 0 60px;
    }


    .world-map {
        margin: 0 60px;
        padding: 0 48px;
    }
}

@media (max-width: 992px) {

    .benefits-heading {
        margin-bottom: 100px;
    }

    .benefits-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .plans-container {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        width: 100%;
        max-width: 592px;
    }

    .testimonials-container {
        flex-direction: column;
    }

    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        width: 100%;
        max-width: 482px;
    }

    .presence-title {
        width: 100%;
    }

    .cities-container {
        flex-direction: column-reverse;
    }

    .cities-list {
        width: 100%;
        margin-top: 40px;
    }

    .world-map {
        margin: 0;
        padding: 0;
    }

    .faq-container {
        flex-direction: column;
    }

    .faq-items {
        max-width: 100%;
    }

    .footer-links {
        flex-direction: column;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-navy {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .benefits-heading,
    .steps-heading,
    .plans-heading,
    .testimonials-title,
    .presence-title,
    .faq-title,
    .cta-title {
        font-size: 36px;
    }

    .hero-section {
        padding: 30px 0px;
    }

    .subscription-section {
        padding: 30px 0;
    }

    .benefits-section,
    .steps-section,
    .plans-section,
    .testimonials-section,
    .presence-section,
    .faq-section {
        padding: 60px 0;
    }

    .plan-card {
        padding: 60px 30px;
    }

    .steps-container {
        padding: 40px 30px;
    }

    .plans-container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }

    .benefits-heading,
    .steps-heading,
    .plans-heading,
    .testimonials-title,
    .presence-title,
    .faq-title,
    .cta-title {
        font-size: 28px;
    }


    .hero-card-title {
        font-size: 16px;
    }

    .hero-card-desc {
        font-size: 12px;
    }

    .car-carousel-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .plan-card {
        padding: 40px 20px;
    }

    .plan-title {
        font-size: 28px;
    }

    .feature-text {
        font-size: 16px;
    }

    .testimonial-card {
        height: auto;
        min-height: 282px;
    }

    .flexy2 {
        flex-direction: column;
        display: flex;
    }

    .footer-legal {
        flex-direction: column;
    }

    .ques {
        font-size: 14px;
    }

    .faq-item {
        padding: 0 16px;
    }

    .faq-icon {
        width: 30px;
        height: 30px;
    }

    .faq-icon i {
        font-size: 12px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .column {
        flex-direction: column;
    }

    .plan-popular {
        left: 28%;
    }

    .step-item {
        padding: 20px 10px 40px;
    }

    .step-container {
        padding: 40px 20px;
    }

    .hero-card {
        width: 90%;
        min-width: 90%;
        height: auto;
        flex: 0 0 90%;
        margin: 0 auto 15px;
        padding: 15px;
        border-radius: 12px;
        gap: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }


    .subscription-tabs{
        margin-bottom: 0;
    }
}

@media (max-width: 786px) {
  /* Hide desktop header */
  .header {
    display: none;
  }

  /* Show mobile header */
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: #fff;
    position: relative;
    z-index: 999;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
  }

  .mobile-nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--sky-blue);
    color: #000000;
    width: 100%;
    height: fit-content;
    display: none;
    flex-direction: column;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav a {
    display: block;
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
  }

  .mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-nav.show {
    display: flex;
  }

  .country-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
  }
}
