﻿
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

header {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Carousel Styles */
#heroCarousel {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

    #heroCarousel .carousel-inner {
        width: 100%;
        height: auto;
    }

    #heroCarousel .carousel-item {
        width: 100%;
/*        transition: transform 0.6s ease-in-out;*/
    }

        #heroCarousel .carousel-item img {
            width: 100vw !important;
            height: auto;
            object-fit: inherit;
            aspect-ratio: 1920 / 649;
            display: block;
        }

    #heroCarousel .carousel-indicators {
        bottom: 30px;
        z-index: 15;
        margin-bottom: 0;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        #heroCarousel .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 8px;
            margin-left: 8px;
            background-color: #FF6600 !important;
            border: 2px solid rgba(0, 0, 0, 0.1);
            opacity: 1 !important;
            transition: all 0.3s ease;
            text-indent: -9999px;
            padding: 0;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

            #heroCarousel .carousel-indicators button.active {
                background-color: #FF6600 !important;
                border-radius: 20px;
                border-color: #FFCC33;
            }

    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 5%;
        opacity: 0;
        transition: opacity 0.3s ease;
        background: transparent;
        border: none;
    }

    #heroCarousel:hover .carousel-control-prev,
    #heroCarousel:hover .carousel-control-next {
        opacity: 1;
    }

    #heroCarousel .carousel-control-prev-icon,
    #heroCarousel .carousel-control-next-icon {
        background-color: #FF6600;
        padding: 20px;
        border-radius: 50%;
        background-size: 50%;
        background-position: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

        #heroCarousel .carousel-control-prev-icon:hover,
        #heroCarousel .carousel-control-next-icon:hover {
            background-color: #FF6600;
            transform: scale(1.1);
            border-color: white;
        }

.carousel-item.active img {
/*    animation: zoomEffect 8s ease-out;*/
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

/* Overlay Content Styles */
#heroCarousel .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

    #heroCarousel .overlay-content .overlay-title,
    #heroCarousel .overlay-content .overlay-description,
    #heroCarousel .overlay-content .overlay-btn {
        pointer-events: auto;
/*        max-width: 600px;*/
        max-width: 525px;
        margin: 0;
        color: white;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        margin-top: 10px;
    }

#heroCarousel .overlay-right {
    align-items: flex-end;
    text-align: right;
    padding-right: 10%;
}

#heroCarousel .overlay-left {
    align-items: flex-start;
    text-align: left;
    padding-left: 10%;
}

#heroCarousel .overlay-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease-out;
}

#heroCarousel .overlay-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.95;
    max-width: 550px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

#heroCarousel .overlay-right .overlay-description {
    margin-left: auto;
}

#heroCarousel .overlay-btn {
    display: inline-block;
    padding: 10px 30px;
    background: #FF6600;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 1rem;
    border: 2px solid #FF6600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

    #heroCarousel .overlay-btn:hover {
        background: transparent;
        color: #FF6600;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
    }

#heroCarousel .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

#heroCarousel .overlay-left + .carousel-item::after,
#heroCarousel .carousel-item:has(.overlay-left)::after {
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0.1) 100%);
}

#heroCarousel .overlay-right + .carousel-item::after,
#heroCarousel .carousel-item:has(.overlay-right)::after {
    background: linear-gradient(90deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.6) 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* KavachAV Plans Section */
.KavachAV-plans {

    padding: 60px 0;

}

    .KavachAV-plans .container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .KavachAV-plans h2 {
        text-align: center;
        font-size: 32px;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 40px;
        letter-spacing: -0.5px;
    }

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 24px;
    margin-bottom: 30px;
}

.plan-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 28px 24px;
    transition: all 0.2s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

    .plan-card:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

.best-deal-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6600;
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 10px rgba(30, 94, 199, 0.2);
    white-space: nowrap;
}

.plan-title {
    margin-bottom: 20px;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.plan-devices {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
}

.plan-toggle {
    background: #121212;
    border-radius: 40px;
    padding: 4px;
    display: inline-flex;
    margin-bottom: 20px;
    width: 100%;
    max-width: 200px;
}

.toggle-btn {
    flex: 1;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
}

    .toggle-btn.active {
        background: white;
        color: #121212;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

.price-section {
    margin-bottom: 16px;
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.price-term {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
    margin-left: 4px;
}

.savings-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
}

    .savings-text a {
        color: #1e5ec7;
        text-decoration: none;
        font-weight: 500;
    }

        .savings-text a:hover {
            text-decoration: underline;
        }

.buy-btn {
    background: linear-gradient(135deg, #FF6600 0%, #E62E2E 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

    .buy-btn:hover {
        background: linear-gradient(135deg, #E62E2E 0%, #FF6600 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(30, 94, 199, 0.2);
        color: white;
    }

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features-list li {
        font-size: 14px;
        color: #334155;
        padding: 6px 0;
        position: relative;
        padding-left: 20px;
    }

        .features-list li:before {
            content: "•";
            color: #FF6600;
            font-weight: bold;
            position: absolute;
            left: 4px;
            font-size: 16px;
        }

        .features-list li strong {
            color: #1e293b;
            font-weight: 600;
            display: block;
            margin-top: 8px;
        }

            .features-list li strong:first-of-type {
                margin-top: 0;
            }

.vpn-feature {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
    font-weight: 500;
    color: #1e293b;
    font-size: 14px;
}

    .vpn-feature i {
        color: #1e5ec7;
        margin-right: 8px;
        font-size: 16px;
    }

.parental-control {
    margin-top: 8px;
    font-weight: 500;
    color: #1e293b;
    font-size: 14px;
}

    .parental-control i {
        color: #FF6600;
        margin-right: 8px;
        font-size: 16px;
    }

.legal-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
}

    .legal-note sup {
        font-size: 10px;
        color: #64748b;
    }

.price-section[data-ent="2"],
.savings-text[data-ent="2"],
.buy-btn[data-ent="2"] {
    display: none;
}

/* KavachAV VPN Section */
.KavachAV-vpn-section {
    padding: 40px 0;
}

    .KavachAV-vpn-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.vpn-bait {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: transparent;
}

.vpn-content {
    flex: 1;
}

.vpn-image {
    flex: 1;
    text-align: center;
}

    .vpn-image img {
        max-width: 100%;
        height: 350px;
        border-radius: 10px;
    }

.vpn-caption {
    font-size: 16px;
    font-weight: 600;
    color: #FF6600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.vpn-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.vpn-description {
    font-size: 18px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 30px;
}

    .vpn-description sup {
        font-size: 12px;
        color: #1e5ec7;
    }

.vpn-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FF6600 0%, #E62E2E 100%);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(30, 94, 199, 0.2);
}

    .vpn-cta:hover {
        background: linear-gradient(135deg, #E62E2E 0%, #FF6600 100%);
        border-color: #154a9f;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(30, 94, 199, 0.2);
        color: white;
    }

/* Small Business Hero Section */
.c-container__id {
    width: 100%;
}

.c-container {
    position: relative;
}

.c-container__body {
    width: 100%;
}

.c-spacer {
    width: 100%;
    background-color: transparent;
}

.c-hero {
    position: relative;
    width: 100%;
}

.c-hero__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.c-hero__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 500px;
}

    .c-hero__wrap.is--rounded--corners {
        border-radius: 16px;
    }

.c-hero__picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .c-hero__picture.is--rounded--corners {
        border-radius: 16px;
    }

.c-hero__picture__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    .c-hero__picture__img.image-below {
        border-radius: 16px;
    }

.c-hero__picture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    border-radius: 16px;
    pointer-events: none;
    z-index: 2;
}

.c-hero__text-container {
    padding: 40px 30px;
    background-color: transparent;
    border-radius: 0 0 16px 16px;
    position: relative;
    z-index: 3;
}

    .c-hero__text-container.is--rounded--corners {
        border-radius: 0 0 16px 16px;
    }

.c-hero__content {
    max-width: 100%;
    margin: 0 auto;
}

.c-hero__desktop-content__width-540 {
    max-width: 540px;
}

.c-hero__tablet-content__width-606 {
    max-width: 606px;
}

.c-hero .is-rtf {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

    .c-hero .is-rtf p:first-child {
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .c-hero .is-rtf h2 {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.2;
        color: #ffffff;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

.h2-title-3 {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.c-hero .is-rtf p:last-of-type {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.c-hero__cta-wrap {
    margin-top: 10px;
}

.t-btn {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.t-btn--primary {
    background: linear-gradient(135deg, #FF6600 0%, #E62E2E 100%);
    color: white;
    padding: 14px 36px;
    border-radius: 40px;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(30, 94, 199, 0.2);
}

    .t-btn--primary:hover {
        background: linear-gradient(135deg, #E62E2E 0%, #FF6600 100%);
        border-color: #154a9f;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(30, 94, 199, 0.2);
        color: white;
    }

.c-hero__btn.is--rounded--corners {
    border-radius: 40px;
}

/* Trusted By Millions Section */
.KavachAV-trusted-section {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
}

    .KavachAV-trusted-section .cmp-text {
        word-wrap: break-word;
    }

        .KavachAV-trusted-section .cmp-text.is-rtf {
            color: #1e293b;
        }

        .KavachAV-trusted-section .cmp-text h2 {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

.h1-title-2 {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.KavachAV-trusted-section .cmp-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 0;
}

.aem-Grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.aem-GridColumn {
    flex: 0 0 100%;
    max-width: 100%;
}

/* Padding utilities */
.pl-lg-80px {
    padding-left: 80px;
}

.pr-lg-80px {
    padding-right: 80px;
}

.pl-20px {
    padding-left: 20px;
}

.pr-20px {
    padding-right: 20px;
}

.pb-20px {
    padding-bottom: 20px;
}

.pt-10px {
    padding-top: 10px;
}

.pb-30px {
    padding-bottom: 30px;
}

.c-image {
    width: 100%;
}

.c-image__container {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .c-image__container.typ--center-align {
        text-align: center;
    }

.c-image__picture-container {
    display: inline-block;
    max-width: 100%;
}

.c-image__img {
    max-width: 100%;
    height: 60px;
    display: block;
    margin: 0 auto;
}

    .c-image__img[alt="PC Mag Award"],
    .c-image__img[alt="AV Test Award"],
    .c-image__img[alt="SE Labs Award"] {
        max-height: 120px;
        width: auto;
    }

.legal-lg {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    display: block;
}

    .legal-lg strong {
        color: #1e293b;
        font-weight: 600;
        font-size: 14px;
    }

.typ--center-align {
    text-align: center;
}

/* NEW RESPONSIVE ADDITIONS - ONLY AFFECT MOBILE/TABLET */

/* Large Desktop */
@media (min-width: 1921px) {
    #heroCarousel .carousel-item img {
        aspect-ratio: 1920 / 600;
        max-height: 800px;
    }
}

/* Desktop - 1200px and below */
@media (max-width: 1200px) {
    #heroCarousel .overlay-title {
        font-size: 3rem;
    }

    #heroCarousel .overlay-description {
        font-size: 1.2rem;
        max-width: 500px;
    }
}

/* Small Desktop / Large Tablet */
@media (max-width: 992px) {
    #heroCarousel .overlay-title {
        font-size: 2.5rem;
    }

    #heroCarousel .overlay-description {
        font-size: 1.1rem;
        max-width: 450px;
    }

    #heroCarousel .overlay-right {
        padding-right: 8%;
    }

    #heroCarousel .overlay-left {
        padding-left: 8%;
    }
    /* Plans Section */
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    /* VPN Section */
    .vpn-title {
        font-size: 36px;
    }

    .vpn-description {
        font-size: 16px;
    }
    /* Tablet paddings for Trusted section */
    .pl-md-90px {
        padding-left: 90px;
    }

    .pr-md-90px {
        padding-right: 90px;
    }

    .pb-md-40px {
        padding-bottom: 40px;
    }

    .pt-md-40px {
        padding-top: 40px;
    }

    .KavachAV-trusted-section .cmp-text h2 {
        font-size: 42px;
    }

    .h1-title-2 {
        font-size: 42px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    /* Hero Carousel */
    #heroCarousel .carousel-item img {
        aspect-ratio: 16 / 9;
        min-height: 350px;
    }

    #heroCarousel .carousel-indicators {
        bottom: 20px;
    }

        #heroCarousel .carousel-indicators button {
            width: 10px;
            height: 10px;
            margin-right: 6px;
            margin-left: 6px;
        }

            #heroCarousel .carousel-indicators button.active {
                width: 8px;
            }

    #heroCarousel .carousel-control-prev-icon,
    #heroCarousel .carousel-control-next-icon {
        padding: 16px;
    }

    #heroCarousel .overlay-content {
        align-items: center !important;
        text-align: center !important;
        padding: 0 5% !important;
    }

    #heroCarousel .overlay-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    #heroCarousel .overlay-description {
        font-size: 1rem;
        margin-bottom: 20px;
        max-width: 100%;
    }

    #heroCarousel .overlay-right .overlay-description,
    #heroCarousel .overlay-left .overlay-description {
        margin-left: auto;
        margin-right: auto;
    }

    #heroCarousel .overlay-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    #heroCarousel .carousel-item::after {
        background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.5) 100%) !important;
    }
    /* VPN Section */
    .vpn-bait {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .vpn-title {
        font-size: 32px;
    }

    .vpn-description {
        font-size: 16px;
    }

    .vpn-image img {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }
    /* Small Business Hero */
    .c-hero__wrap {
        min-height: auto;
        flex-direction: column;
    }

    .c-hero__picture {
        position: relative;
        height: 300px;
    }

    .c-hero__text-container {
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(2px);
        margin-top: -50px;
        z-index: 3;
        padding: 30px 20px;
    }

    .c-hero .is-rtf h2 {
        font-size: 32px;
    }

    .h2-title-3 {
        font-size: 32px;
    }

    .c-hero .is-rtf p:last-of-type {
        font-size: 16px;
    }

    .c-hero__desktop-content__padding-90 {
        padding: 0;
    }

    .c-hero__tablet-content__padding-60 {
        padding: 0 20px;
    }
    /* Trusted Section */
    .KavachAV-trusted-section .cmp-text h2 {
        font-size: 36px;
    }

    .h1-title-2 {
        font-size: 36px;
    }

    .c-image__img {
        height: 50px;
    }

    .pl-lg-80px, .pr-lg-80px {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    #heroCarousel .carousel-item img {
        aspect-ratio: 4 / 5;
        min-height: 450px;
        object-fit: cover;
        object-position: center top;
    }

     .carousel-control-prev,
     .carousel-control-next {
        opacity: 0.7;
        display:none;
    }

       .carousel-control-prev-icon,
       .carousel-control-next-icon {
        padding: 14px; 
    }

    #heroCarousel .overlay-title {
        font-size: 1.8rem;
    }

    #heroCarousel .overlay-description {
        font-size: 0.95rem;
    }
    /* Plans Section */
    .KavachAV-plans {
        padding: 40px 0;
    }

        .KavachAV-plans h2 {
            font-size: 28px;
            margin-bottom: 30px;
        }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .plan-card {
        max-width: 100%;
        padding: 24px 20px;
    }

    .plan-toggle {
        max-width: 180px;
    }

    .toggle-btn {
        font-size: 16px;
    }

    .price {
        font-size: 26px;
    }

    .buy-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    /* VPN Section */
    .KavachAV-vpn-section {
        padding: 30px 0;
    }

    .vpn-image img {
        height: 250px;
    }

    .vpn-caption {
        font-size: 14px;
    }

    .vpn-title {
        font-size: 28px;
    }

    .vpn-description {
        font-size: 15px;
    }

    .vpn-cta {
        padding: 14px 30px;
        font-size: 16px;
    }
    /* Small Business Hero */
    .c-hero__picture {
        height: 250px;
    }

    .c-hero .is-rtf h2 {
        font-size: 28px;
    }

    .h2-title-3 {
        font-size: 28px;
    }

    .c-hero .is-rtf p:first-child {
        font-size: 14px;
    }

    .c-hero .is-rtf p:last-of-type {
        font-size: 15px;
    }

    .t-btn--primary {
        padding: 12px 28px;
        font-size: 15px;
    }

    .c-hero__mobile-content__padding-30 {
        padding: 0 15px;
    }
    /* Trusted Section */
    .KavachAV-trusted-section .cmp-text h2 {
        font-size: 28px;
    }

    .h1-title-2 {
        font-size: 28px;
    }

    .KavachAV-trusted-section .cmp-text p {
        font-size: 14px;
    }

    .c-image__img {
        height: 45px;
    }

        .c-image__img[alt="PC Mag Award"],
        .c-image__img[alt="AV Test Award"],
        .c-image__img[alt="SE Labs Award"] {
            max-height: 80px;
        }

    .legal-lg {
        font-size: 11px;
    }

        .legal-lg strong {
            font-size: 12px;
        }
    /* Grid for trust features on mobile */
    .aem-Grid {
        flex-direction: column;
    }

    .aem-GridColumn {
        margin-bottom: 30px;
    }

        .aem-GridColumn:last-child {
            margin-bottom: 0;
        }
}

/* Mobile Small */
@media (max-width: 480px) {
    .KavachAV-plans {
        padding: 30px 0;
    }

    .plan-card {
        padding: 20px 15px;
    }

    .plan-name {
        font-size: 18px;
    }

    .plan-devices {
        font-size: 13px;
    }

    .price {
        font-size: 24px;
    }

    .price-term {
        font-size: 13px;
    }

    .savings-text {
        font-size: 12px;
    }

    .features-list li {
        font-size: 13px;
        padding-left: 18px;
    }

    .vpn-image img {
        height: 200px;
    }

    .vpn-title {
        font-size: 24px;
    }

    .vpn-cta {
        padding: 12px 25px;
        font-size: 15px;
    }

    .c-hero__text-container {
        padding: 20px 15px;
    }

    .c-hero .is-rtf h2 {
        font-size: 24px;
    }

    .h2-title-3 {
        font-size: 24px;
    }

    .c-hero .is-rtf p:last-of-type {
        font-size: 14px;
    }

    .t-btn--primary {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/* Mobile Extra Small */
@media (max-width: 375px) {
    #heroCarousel .carousel-item img {
        aspect-ratio: 4 / 5;
        min-height: 400px;
    }

    #heroCarousel .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin-right: 4px;
        margin-left: 4px;
    }

        #heroCarousel .carousel-indicators button.active {
            width: 8px;
        }

    #heroCarousel .overlay-title {
        font-size: 1.5rem;
    }

    #heroCarousel .overlay-description {
        font-size: 0.85rem;
    }

    #heroCarousel .overlay-btn {
        padding: 10px 25px;
        font-size: 0.8rem;
    }

    .vpn-title {
        font-size: 22px;
    }

    .vpn-cta {
        padding: 10px 20px;
        font-size: 14px;
    }

    .KavachAV-trusted-section .cmp-text h2 {
        font-size: 24px;
    }

    .h1-title-2 {
        font-size: 24px;
    }

    .c-image__img {
        height: 40px;
    }
}

/* Desktop styles for Small Business Hero */
@media (min-width: 768px) and (max-width: 991px) {
    .c-hero__wrap {
        flex-direction: row;
        align-items: stretch;
        min-height: 550px;
    }

    .c-hero__picture {
        position: absolute;
        border-radius: 16px;
    }

    .c-hero__text-container {
        flex: 1;
        display: flex;
        align-items: center;
        padding: 40px 30px;
        border-radius: 16px 0 0 16px;
        background-color: transparent;
        position: relative;
        z-index: 2;
    }

        .c-hero__text-container.is--rounded--corners {
            border-radius: 16px 0 0 16px;
        }

    .c-hero__desktop-content__padding-90 {
        padding: 0 20px 0 30px;
    }

    .c-hero .is-rtf h2 {
        font-size: 36px;
    }

    .h2-title-3 {
        font-size: 36px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .c-hero__wrap {
        min-height: 500px;
    }

    .c-hero__text-container {
        padding: 60px 40px;
    }

    .c-hero__desktop-content__padding-90 {
        padding: 0 30px 0 60px;
    }

    .c-hero .is-rtf h2 {
        font-size: 40px;
    }

    .h2-title-3 {
        font-size: 40px;
    }
}

@media (min-width: 1200px) {
    .c-hero__wrap {
        min-height: 500px;
    }

    .c-hero__text-container {
        padding: 80px 60px;
    }

    .c-hero__desktop-content__padding-90 {
        padding: 0 40px 0 90px;
        margin-left: inherit;
    }

    .c-hero .is-rtf h2 {
        font-size: 48px;
    }

    .h2-title-3 {
        font-size: 48px;
    }
}

/* Spacer heights - Keep your existing spacer styles */
@media (max-width: 767px) {
    [style*="--mobile-spacer-height"] {
        height: var(--mobile-spacer-height);
    }
}

@media (min-width: 768px) and (max-width: 999px) {
    [style*="--tablet-spacer-height"] {
        height: var(--tablet-spacer-height);
    }
}

@media (min-width: 1000px) {
    [style*="--desktop-spacer-height"] {
        height: var(--desktop-spacer-height);
    }

    .aem-Grid--default--12 .aem-GridColumn--default--4 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }

    .pl-lg-60px {
        padding-left: 60px;
    }

    .pr-lg-60px {
        padding-right: 60px;
    }

    .pb-lg-40px {
        padding-bottom: 40px;
    }

    .pt-lg-5px {
        padding-top: 5px;
    }

    .pb-lg-15px {
        padding-bottom: 15px;
    }

    .pl-lg-0px {
        padding-left: 0;
    }

    .pr-lg-40px {
        padding-right: 40px;
    }

    .pl-lg-40px {
        padding-left: 40px;
    }

    .pr-lg-0px {
        padding-right: 0;
    }

    .pt-lg-0px {
        padding-top: 0;
    }

    .pb-lg-0px {
        padding-bottom: 0;
    }

    .KavachAV-trusted-section .cmp-text h2 {
        font-size: 48px;
    }

    .h1-title-2 {
        font-size: 48px;
    }
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 1) {
    #heroCarousel .carousel-item img {
        height: 600px;
    }

    @media (max-width: 1440px) {
        #heroCarousel .carousel-item img {
            height: 550px;
        }
    }

    @media (max-width: 1024px) {
        #heroCarousel .carousel-item img {
            height: 450px;
        }
    }

    @media (max-width: 768px) {
        #heroCarousel .carousel-item img {
            height: 400px;
        }
    }

    @media (max-width: 576px) {
        #heroCarousel .carousel-item img {
            height: 500px;
        }
    }

    @media (max-width: 375px) {
        #heroCarousel .carousel-item img {
            height: 450px;
        }
    }
}

/* Fix for small business hero on mobile */
@media (max-width: 767px) {
    .c-hero__wrap {
        flex-direction: column;
    }

    .c-hero__picture {
        position: relative;
        height: auto;
        min-height: 250px;
    }

    .c-hero__text-container {
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(2px);
        margin-top: -50px;
        border-radius: 16px 16px 16px 16px !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .c-hero .is-rtf {
        text-align: center;
    }

    .c-hero__cta-wrap {
        text-align: center;
    }
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Container padding for mobile */
@media (max-width: 576px) {
    .KavachAV-plans .container,
    .KavachAV-vpn-section .container,
    .c-hero__container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Fix for toggle buttons on mobile */
@media (max-width: 576px) {
    .plan-toggle {
        max-width: 100%;
    }

    .toggle-btn {
        font-size: 16px;
        padding: 2px 0;
    }
}

/* Ensure features list looks good on all devices */
.features-list {
    padding-left: 0;
}

/* Fix for overlay on very small devices */
@media (max-width: 360px) {
    #heroCarousel .overlay-title {
        font-size: 1.3rem;
    }

    #heroCarousel .overlay-description {
        font-size: 0.8rem;
    }

    #heroCarousel .overlay-btn {
        padding: 8px 20px;
        font-size: 0.75rem;
    }
}
