



.ic-new-rated {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Websummit Hero Section Styles */
.websummit-hero {
    position: relative;
    height: 91vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    /* margin-bottom: 50px; */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.video-background iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Black opacity layout */
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
    text-transform: capitalize;
    animation: fadeInUpWS 0.8s ease-out forwards;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    animation: fadeInUpWS 1s ease-out forwards;
}

.hero-content .ic-hl-btn {
    display: inline-block;
    padding: 16px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUpWS 1.2s ease-out forwards;
    border: none;
    cursor: pointer;
}



/* Pricing Section Styles */
.ic-websummit-pricing {
    background: #000;
    padding: 100px 0;
    color: #fff;
}

.pricing-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.pricing-tab-btn {
    background: transparent;
    border: 2px solid rgba(10, 122, 166, 0.2);
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.pricing-tab-btn:hover,
.pricing-tab-btn:active,
.pricing-tab-btn.is-selected,
.pricing-tab-btn[data-active="true"] {
    background: rgb(10, 122, 166) !important;
    border-color: rgb(10, 122, 166) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(10, 122, 166, 0.4) !important;
    transform: translateY(-2px);
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgb(10, 122, 166);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-8px);
}

.pricing-card.featured {
    border-color: rgba(212, 60, 5, 1);
    background: rgba(212, 60, 5, 0.05);
    box-shadow: 0 0 40px rgba(212, 60, 5, 0.2);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Best Value';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(212, 60, 5, 1);
    color: #fff;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
}

.pricing-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

/* Discount badge — positioned at top-right corner of the card */
.pricing-card .plan-discount {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    /* Only positioning changed — style kept as original */
    position: absolute;
    top: 20px;
    right: 20px;
    transform: rotate(-6deg) skewX(-8deg);
    z-index: 1;
}

.pricing-card .plan-discount::before,
.pricing-card .plan-discount::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    z-index: -1;
}

.pricing-card .plan-discount::before {
    background: linear-gradient(135deg, rgba(10, 122, 166, 0.9), rgba(10, 122, 166, 0.25));
    transform: rotate(-2deg);
}

.pricing-card .plan-discount::after {
    background: linear-gradient(135deg, rgba(10, 122, 166, 0.2), rgba(10, 122, 166, 0.6));
    transform: translate(6px, 6px) rotate(2deg);
    opacity: 0.6;
}

.pricing-card.featured .plan-discount::before {
    background: linear-gradient(135deg, rgba(212, 60, 5, 0.9), rgba(212, 60, 5, 0.25));
}

.pricing-card.featured .plan-discount::after {
    background: linear-gradient(135deg, rgba(212, 60, 5, 0.2), rgba(212, 60, 5, 0.6));
}

.pricing-card .price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.pricing-card .price-amount {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.pricing-card .price-regular {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card .price-regular del {
    text-decoration: line-through;
}

.pricing-card .price-offer {
    font-size: 48px;
    font-weight: 800;
    color: rgb(10, 122, 166);
}

.featured .price-offer {
    color: rgba(212, 60, 5, 1);
}

.pricing-card .price-offer span {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}


/* Offer pricing styles above replace direct price-amount styling. */

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features li i {
    color: rgb(10, 122, 166);
    font-size: 18px;
    margin-top: 2px;
}

.featured .pricing-features li i {
    color: rgba(212, 60, 5, 1);
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: rgb(10, 122, 166);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
}

.pricing-btn:hover {
    background: #086a91;
    color: #fff;
    box-shadow: 0 5px 15px rgba(10, 122, 166, 0.4);
}

.featured .pricing-btn {
    background: rgba(212, 60, 5, 1);
}

.featured .pricing-btn:hover {
    background: #c43803;
    box-shadow: 0 5px 15px rgba(212, 60, 5, 0.4);
}

.package-header {
    text-align: center;
    margin-bottom: 50px;
}

.package-header h2 {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, rgb(10, 122, 166) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 767px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
    .package-header h2 {
        font-size: 32px;
    }
}

/* Animations */
/* Transitions & Animations */
@keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[x-cloak] {
    display: none !important;
}

.fade-in .pricing-card {
    opacity: 0;
    animation: fadeInUpCustom 0.6s ease-out forwards;
}

.fade-in .pricing-card:nth-child(1) { animation-delay: 0.1s; }
.fade-in .pricing-card:nth-child(2) { animation-delay: 0.2s; }
.fade-in .pricing-card:nth-child(3) { animation-delay: 0.3s; }

.hero-content .btn-red {
    background: #ff1f1f;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 31, 31, 0.3);
}

.hero-content .btn-red:hover {
    background: #e61919;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 31, 31, 0.4);
}

@keyframes fadeInUpWS {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .websummit-hero {
        height: 70vh;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .websummit-hero {
        height: 60vh;
        min-height: 450px;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .hero-content .ic-hl-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Fix overlapping cards issue in Top Rated section */
.stack-cards {
    --stack-cards-gap: 2rem;
}

.stack-cards__item {
    position: relative;
    position: sticky;
    top: 100px;
    height: auto;
    min-height: 400px;
    transform-origin: center top;
    margin-bottom: var(--stack-cards-gap);
    transition: transform 0.5s ease;
}

.ic-services-card {
    background-color: #ffffff;
    /* border-radius: 30px; */
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    /* box-shadow: 0 20px 50px rgba(0,0,0,0.15); */
    /* border: 1px solid rgba(0,0,0,0.05); */
}

.ic-service-left {
    flex: 1;
}

.ic-service-right {
    flex: 1;
}

.ic-service-left h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #121420;
    margin-bottom: 15px;
}

.ic-service-left h5 {
    font-size: 1.25rem;
    color: rgb(10, 122, 166);
    font-weight: 700;
    margin-bottom: 20px;
}

.ic-service-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.service-software-div {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
}

.service-software-items {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    width: 100px;
    transition: all 0.3s ease;
}

.service-software-items:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-software-items img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 8px;
}

.service-software-items p {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

@media (max-width: 991px) {
    .ic-services-card {
        flex-direction: column;
        padding: 40px;
    text-align: center;
        gap: 30px;
        align-items: stretch;
    }

    .ic-service-left h2 {
        font-size: 2.5rem;
    }

    .service-software-div {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .ic-services-card {
        padding: 0;
    }
    .ic-service-left h2 {
        font-size: 1.8rem;
    }
    .ic-service-left h5 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .ic-service-left p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .service-software-items {
        width: 80px;
        padding: 10px;
    }
    .service-software-items img {
        width: 30px;
        height: 30px;
    }
}

/* Bottom Sections Modernization (Feature, Popular, MarketPlace) */
.ic-friday-container-wrap,
.ic-friday-market-product-container,
.ic-friday-feature-product-container {
    background-color: #0a0a0a !important;
    background-image: none !important;
    padding: 100px 0;
}

@media (max-width: 768px) {
    .ic-friday-container-wrap,
    .ic-friday-market-product-container,
    .ic-friday-feature-product-container {
        padding: 60px 0;
    }

    .content-right img,
    .content-left img {
        margin-left: auto;
        margin-right: auto;
        display: block;
        /*margin-bottom: 30px;*/
    }

    .ic-friday-container-title h2 {
        font-size: 32px!important;
        margin-bottom: 0px!important;
    }
}

.ic-friday-container-title h2 {
    font-size: 52px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #fff 30%, rgb(10, 122, 166) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: capitalize; /* Updated to capitalize */
    letter-spacing: 2px;
    border: none !important;
}

.capitalize {
    text-transform: capitalize !important;
}

.ic-feature-product-content h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    font-family: manrope-regular!important;
}

.ic-feature-product-content h3 span,
.ic-market-item h3 span {
    color: rgba(212, 60, 5, 1) !important;
    font-weight: 800;
    font-family: manrope-regular!important;
}

.ic-feature-product-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
    font-family: manrope-regular!important;
}

.ic-hl-btn.btn-red {
    background: rgb(10, 122, 166) !important;
    color: #fff !important;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: 0 8px 20px rgba(10, 122, 166, 0.3);
    display: inline-block;
    font-family: manrope-regular;
}

.ic-hl-btn.btn-red:hover {
    background: rgba(212, 60, 5, 1) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 60, 5, 0.4);
}

.ic-market-product-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ic-market-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 25px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 0px !important;
}

.ic-market-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgb(10, 122, 166);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ic-market-item img {
    /* max-height: 60px; */
    width: auto;
    margin: 0 auto 25px auto;
    /* filter: grayscale(1) brightness(2); */
    transition: all 0.3s ease;
}

.ic-market-item:hover img {
    filter: none;
}

.ic-market-item h3 {
    font-family: manrope-regular!important;
    font-size: 24px;
}
.ic-market-item h3 span {
    font-size: 24px;
}

@media (max-width: 1199px) {
    .ic-market-product-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .ic-market-product-content {
        grid-template-columns: 1fr;
    }
}

/* Force remove any red borders from feature section titles */
.ic-friday-container-title,
.ic-friday-container-title h2,
.ic-friday-feature-product-container h2 {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Remove any text stroke/outline (stock) from headers */
.ic-friday-container-title h2,
.ic-friday-feature-product-container h2,
.ic_offer_banner h2 {
    -webkit-text-stroke: 0 !important;
    text-stroke: 0 !important;
    paint-order: markers fill stroke !important;
}

/*
 * Sticky-stack layout for ic-new-rated section.
 * CSS sticky keeps each card locked at top:15vh while page scrolls.
 * GSAP drives the clip-path wipe only — no GSAP pinning (avoids white-gap).
 * Note: targeting .ic-services-card directly (no wrapper class needed).
 */
.ic-new-rated .ic-services-card {
    position: sticky;
    top: 15vh;
    min-height: 70vh;
    overflow: hidden;
    /* GSAP fromTo sets clip-path; no CSS default to avoid conflicts */
}

/* Stack wrapper — provides the scroll height for all cards */
.ic-new-rated .mb-80 {
    padding-bottom: 10vh;
}

@media (max-width: 991px) {
    .ic-new-rated .ic-services-card {
        position: relative;
        top: auto;
        min-height: auto;
        padding-top: 10px;
    }
    .ic-websummit-pricing {
        padding: 50px 0;
    }
}

/* ── Top Rated Section: heading row ─────────────────────────────────────── */
.ws-top-rated-heading {
    margin-bottom: 40px;
}

.ws-top-rated-heading-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ws-top-rated-text h2 {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 800;
    color: #121420;
    margin-bottom: 8px;
    line-height: 1.2;
}

.ws-top-rated-text p {
    font-size: clamp(14px, 1.5vw, 17px);
    color: #666;
    margin: 0;
}

/* View All button */
.ws-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    background: transparent;
    border: 2px solid #121420;
    border-radius: 50px;
    color: #121420;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ws-view-all-btn svg {
    transition: transform 0.3s ease;
}

.ws-view-all-btn:hover {
    background: rgb(10, 122, 166);
    border-color: rgb(10, 122, 166);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 122, 166, 0.3);
}

.ws-view-all-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 575px) {
    .ws-top-rated-heading-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
     .ic-friday-container-title h2 {
        font-size: 26px!important;
    }
    .ic-market-item {
    /* background: rgba(255, 255, 255, 0.05); */
    padding: 15px;
    }
}