/* -------------------------------
  Root Colors & Fonts
---------------------------------*/
:root {
    --dark-bg: #0b0b13;
    --primary-gradient: linear-gradient(135deg, #003b8e, #007bff);
    --accent-gradient: linear-gradient(90deg, #e42233, #ff8800);
    --glass-bg: rgba(255,255,255,0.06);
    --card-bg: rgba(4,0,28,0.7);
    --muted: #a0a3bd;
    --white: #ffffff;
    --shadow: 0 6px 24px rgba(0,0,0,0.2);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--white);
    margin: 0;
}
.dark-bg{
    background: var(--dark-bg);
}
/* -------------------------------
  Top Strip
---------------------------------*/
.top-strip {
    background: var(--accent-gradient);
    font-weight: 500;
    font-size: 0.9rem;
}

/* -------------------------------
  Header
---------------------------------*/
.header-blur {
    backdrop-filter: blur(8px);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-link-custom {
    color: var(--dark-bg);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.nav-link-custom:hover {
    color: #ff8800;
}
/* --- Dropdown Desktop --- */
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    background: white;
    padding: 10px 0;
    list-style: none;
    width: 180px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    color: #000;
}
.dropdown-menu li a:hover {
    background: #f5f5f5;
}

/* --- Mobile Side Menu --- */
.mobile-toggle {
    font-size: 28px;
    cursor: pointer;
    user-select: none;
    color:#000;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: -3px 0 10px rgba(0,0,0,0.2);
    padding: 20px;
    transition: 0.3s ease;
    z-index: 9999;
}

.mobile-menu.active {
    right: 0;
}

.close-btn {
    font-size: 32px;
    text-align: right;
    cursor: pointer;
    margin-bottom: 20px;
    color:#000
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
}

.mobile-nav-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav-list li a {
    color: #000;
    font-size: 18px;
}

/* --- Mobile Dropdown --- */
.mobile-dropdown-menu {
    display: none;
    padding-left: 15px;
    list-style: none;
}
.mobile-dropdown-menu li {
    border: none;
}
.mobile-dropdown .dropdown-btn {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* -------------------------------------
   HERO SLIDER
-------------------------------------- */

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Each Slide */
.hero-slide {
    position: relative;
    height: 90vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}

/* Content Area */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
    color: #fff;
}

/* Text Styling */
.hero-eyebrow {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.hero-heading {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-sub {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* -------------------------------------
   SWIPER FIXES (NO COLLISION)
-------------------------------------- */

/* Hide non-active slides completely when using fade effect */
.swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.8s ease-in-out !important;
    pointer-events: none;
}

.swiper-slide-active {
    opacity: 1 !important;
    pointer-events: auto;
}

/* Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    z-index: 10;
}

/* Pagination Dots */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #ff0066;
}

/* -------------------------------------
   RESPONSIVE
-------------------------------------- */
@media (max-width: 768px) {
    .hero-slide {
        height: 75vh;
    }

    .hero-heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-sub {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        height: 70vh;
    }

    .hero-heading {
        font-size: 24px;
    }

    .hero-eyebrow {
        font-size: 16px;
    }
}

/* Buttons */
.btn.gradient-btn {
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
}

.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
    border-radius: 30px;
}

/* second section */
/* Subheading Gradient Text */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-dark {
    color: #000
}
/* Section general styling */
#featuresIntro {
    background: transparent; /* matches dark theme */
}

#featuresIntro p {
    line-height: 1.7;
}

#featuresIntro .btn {
    border-radius: 30px;
    font-weight: 600;
}

/* -------------------------------
  Pricing Cards
---------------------------------*/
.pill-switch {
    display: inline-flex;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    padding: 4px;
}

.pill-switch span {
    padding: 8px 20px;
    cursor: pointer;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.pill-switch span.active {
    background: #fff;
    color: #170f49;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.featured {
    border: 2px solid var(--accent-gradient);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.badge-popular {
    display: inline-block;
    color: #fff;
    padding: 5px 10px;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 15px;
}

.price-box {
    display: flex;
    align-items: flex-star;
    justify-content: flex-start;
    gap: 8px;
    font-size: 1.8rem;
    margin: 15px 0;
}

.price-amount {
    font-weight: 800;
}

.price-currency {
    font-size: 1rem;
    color: var(--muted);
}

.pricing-list {
    list-style: circle;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--muted);
}

.pricing-list li {
    padding: 6px 0;
}
/* Fade-in animation for scroll */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease-out;
}

section {
    opacity: 0;
    transform: translateY(20px);
}
/* -------------------------------
   Features Cards
---------------------------------*/
.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h5 {
    margin-top: 10px;
    font-weight: 600;
    color: #4e4d4d;
}

.feature-card p {
    color: var(--muted);
    font-size: 0.9rem;
}
.gap40 {
    gap: 40px;
}

/* -------------------------------
   About Section
---------------------------------*/


#about h2 {
    font-weight: 700;
    margin-bottom: 15px;
        color: #2d2d2d;
}

#about p {
    color: #2d2d2d;
    line-height: 1.6;
}
/* FULL BACKGROUND CTA SECTION */
.cta-full {
    position: relative;
    width: 100%;
    padding: 120px 0;
    background-image: url('images/image.png'); /* Replace with your background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* dark overlay */
}

.cta-content {
    position: relative;
    z-index: 5;
    padding-left: 20px;
}

/* Text styling */
.cta-subheading {
    color: var(--accent-gradient);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.cta-heading {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.cta-description {
    color: #dddddd;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Buttons */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--accent-gradient);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin-right: 15px;
    transition: 0.3s ease;
}
.cta-phone{
    display: inline-block;
    padding: 12px 28px;
    background: var(--white);
    color: #2a2929;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    margin-right: 15px;
    transition: 0.3s ease;
}
.cta-btn:hover {
    opacity: 0.85;
}


.cta-phone:hover {
    text-decoration: underline;
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .cta-full {
        text-align: center;
        padding: 80px 20px;
    }
    .cta-content {
        padding: 0;
    }
}
/* SECTION BACKGROUND */
.why-section {
    background: #ffffff;
}

/* BADGE */
.badge-tag {
    display: inline-block;
    background: linear-gradient(to right, #ff8800, #e42233);
    padding: 10px 26px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

/* HEADINGS */
.why-heading {
    font-size: 52px;
    font-weight: 800;
    color: #000;
    margin-top: 25px;
    line-height: 1.2;
}

.why-desc {
    font-size: 20px;
    color: #6b6b6b;
    line-height: 32px;
    max-width: 600px;
    margin-top: 20px;
}

/* STORE BUTTONS */
.store-img {
    width: 200px;
    height: 65px;
    object-fit: contain;
}

/* FEATURE CARDS */
.why-card {
    border-radius: 32px;
    padding: 32px 20px;
    text-align: center;
    border: 1px solid #e4e6e8;
    min-height: 260px;
    position: relative;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-top: 20px;
}

.why-card p {
    font-size: 14px;
    color: #8e8e8e;
    margin-top: 8px;
}

/* CARD COLORS */
.card-yellow {
    background: #fefa17;
}

.card-grey {
    background: #e4e6e8;
}

.card-white {
    background: #ffffff;
}

.card-orange {
    background: #f09814;
}

/* ICONS */
.why-icon {
    width: 120px;
    margin: 0 auto;
    display: block;
}
/* Background Section */
.channels-section {
    background: url('images/wide.png') center/cover no-repeat;
    padding: 0px 0;
    position: relative;
}

/* Dark Overlay */
.channels-overlay {
    background: rgb(0 0 0 / 18%);
    padding: 80px 0;
}

/* Subtitle */
.channels-subtitle {
    color: #ff7f4f;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Main Title */
.channels-title {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* Description */
.channels-text {
    color: #e6e6e6;
    font-size: 17px;
    max-width: 950px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Button */
.view-btn {
    background: linear-gradient(to right, #ff7a00, #ff3b2f);
    padding: 14px 40px;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.view-btn:hover {
    opacity: 0.9;
}

/* Channel Logos */
.channel-logos .channel-icon {
    width: 120px;
    margin: 15px 0;
    filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.4));
}

.channel-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.channel-track {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
    gap: 40px;
}

.channel-item {
    flex: 0 0 auto;
    padding: 10px 0;
}

.channel-icon {
    width: 120px;
    height: auto;
    filter: drop-shadow(0px 3px 8px rgba(0,0,0,0.4));
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.testimonials-section {
    background-color: #FFECFA;
    padding: 60px 0;
}

.section-title {
    font-size: 34px;
    color: #000;
    font-weight: 700;
}

.section-title span {
    color:var(--accent-gradient);
}

.section-subtitle {
    color: #9ca3af;
    font-size: 16px;
    margin-bottom: 10px;
}

/* Owl Carousel Navigation */
.owl-dots {
    margin-top: 25px;
}

.owl-dot span {
    width: 12px;
    height: 12px;
    background: #ffffff !important;
    border-radius: 50%;
    display: block;
}

.owl-dot.active span {
    background: #00d5ff !important;
    transform: scale(1.2);
}


/* CARD STYLING */
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    color: #1a1919;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.35);
    position: relative;
    transition: 0.35s ease;
    transform: scale(0.9);
    opacity: 1;
}

/* Center slide zoom effect */
.owl-item.active.center .testimonial-card {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0px 12px 28px rgba(0,0,0,0.45);
}

.quote-icon {
   width:50px;
   height: 50px;
   margin-top: -40px;
   margin-bottom: 25px;
}
.quote-icon img {
   width:100%;
   height: 100%;
   object-fit: contain;
}

.testimonial-text {
    font-size: 16px;
    color: #000000;
    margin-bottom: 15px;
}

.name {
    font-weight: 600;
    font-size: 18px;
    color: #000000;
}

.rating {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
}

.user-img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    margin-top: 15px;
    border: 3px solid #ff0d00;
}

/* -------------------------------
   Contact Form
---------------------------------*/
/* Full Section Background */
.contact-full-bg {
    background-image: url("images/contact.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}
.contact-panel {
    background: rgba(11,11,19,0.9);
}

.contact-panel input,
.contact-panel textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
}

.contact-panel input::placeholder,
.contact-panel textarea::placeholder {
    color: var(--muted);
}

/* -------------------------------
   Testimonials
---------------------------------*/
.comparison-section {
    background-image: url(images/competitors.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.comp-title {
    font-size: 34px;
    font-weight: 700;
}

.comp-sub {
    max-width: 650px;
    margin: auto;
    color: #cfcfd8;
    font-size: 15px;
}

.comparison-table {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 14px;
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.comp-col {
    text-align: center;
    padding: 25px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.comp-col:last-child {
    border-right: none;
}

.comp-logo-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cw-logo {
    width: 150px;
    opacity: 0.8;
}

.comp-name {
    font-size: 18px;
    margin-bottom: 5px;
}

.comp-price {
    font-size: 28px;
    font-weight: 700;
}

.comp-price span {
    font-size: 14px;
    opacity: 0.7;
}

.comp-small {
    font-size: 13px;
    color: #bfbfd3;
}

.comp-btn {
    margin-top: 12px;
    width: 85%;
    padding: 10px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    border: none;
    color: white;
}

.comp-featured {
    background: rgba(100,46,255,0.25);
    border-radius: 10px;
}

.featured-btn {
    background: linear-gradient(90deg, #5b4bff, #7a7dff);
}

.feature-table {
    margin-top: 30px;
}

.feature-heading {
    font-size: 17px;
    margin-bottom: 20px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    align-items: center;
    padding: 12px 0;
    color: #c5c5d7;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.icon-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    background: url('images/check.svg') center/contain no-repeat;
}

.icon-empty {
    width: 16px;
    height: 16px;
    border: 1px solid #666;
    border-radius: 50%;
    opacity: 0.5;
}

.icon-limited,
.icon-text {
    font-size: 13px;
    opacity: 0.7;
}


    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .section-header button {
        background: linear-gradient(90deg, #FF9800, #F44336);
        color: #fff;
        border: none;
        border-radius: 25px;
        padding: 8px 20px;
        font-weight: 600;
        cursor: pointer;
        margin-bottom: 15px;
    }
    .section-header h2 {
        font-size: 32px;
        font-weight: 700;
        color: var(--dark-bg);
    }
    .blogs-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }
    .blog-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s;
    }
    .blog-card:hover {
        transform: translateY(-5px);
    }
    .blog-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    .blog-card .content {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .blog-card .category {
        font-size: 12px;
        font-weight: 600;
        color: #6c63ff;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .blog-card .title {
         color: #0d0d0d;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    .blog-card .description {
        font-size: 14px;
        color: #555;
        margin-bottom: 15px;
        flex: 1;
    }
    .blog-card .author {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: #777;
    }
    .blog-card .author img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }
.feature-cardd {
    position: relative;
    padding: 30px 25px;
    background: #fff;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1;
}

/* Gradient Border Wrapper */
.feature-cardd::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* border thickness */
    border-radius: 22px;
    background: linear-gradient(90deg, #ff7b00, #ff0033);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    z-index: -1;
}

/* Title */
.feature-cardd h5 {
    font-weight: 700;
    color: #0B2545;
}

/* Description */
.feature-cardd p {
    color: #555;
    font-size: 15px;
}

/* Button Style */
.feature-cardd .btn-custom {
    margin-top: 15px;
    padding: 10px 28px;
    border-radius: 40px;
    color: #fff;
    border: none;
    background: linear-gradient(90deg, #ff7b00, #ff0033);
    font-weight: 600;
}
/* Accent Gradient Background */
.accent-marquee {
    background: var(--accent-gradient, linear-gradient(90deg, #00d5ff, #006cff));
    padding: 20px 0;
    overflow: hidden;
}

/* Marquee wrapper */
.marquee {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

/* Infinite loop track */
.marquee-track {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 2px;
    animation: marqueeMove 18s linear infinite;
}

/* Animation */
@keyframes marqueeMove {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.faq-section {
    padding: 80px 0;
}

.faq-subtitle {
    color: #FF6B00;
    font-weight: 600;
    margin-bottom: 6px;
}

.faq-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    color:#000;
}

.faq-wrapper {
    max-width: 620px;
}

.faq-item {
    background: white;
    border-radius: 14px;
    border: 1px solid #eee;
    margin-bottom: 12px;
    overflow: hidden;
    transition: .3s;
}

.faq-question {
    width: 100%;
    padding: 17px 20px;
    border: none;
    background: none;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    cursor: pointer;
}

.faq-icon {
    width: 34px;
    height: 34px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e6a100;
    transition: .3s;
}

.faq-item.active .faq-icon {
    background: #ec9e00;
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .3s ease;
    padding: 0 20px;
    color:#000;
}

.faq-item.active .faq-answer {
    max-height: 140px;
    padding: 10px 20px 20px;
}

/* RIGHT SIDE IMAGE */
.faq-image-wrapper {
    display: flex;
    justify-content: center;
}

.faq-image {
    width: 100%;
    max-width: 470px;
    border-radius: 22px;
}
.movie-carousel .movie-item {
    padding: 10px;
}

.movie-carousel img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: .3s;
}

.movie-carousel img:hover {
    transform: scale(1.05);
}

.steps-section {
    background: linear-gradient(160deg, #0b0f33, #1a1d4a);
    padding: 80px 0;
    border-radius: 25px;
    color: white;
}

.section-subtitle {
    color: #ff9d5c;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 30px;
    margin-bottom: 40px;
}

/* 🔥 Connecting line between circles */
.step-item {
    position: relative;
    width: 25%;
}
.step-item span{
    color: #000;
}
.step-item::after {
    content: "";
    position: absolute;
       top: 62px;
    right: -116px;
    width: 203px;
    height: 1px;
    background: var(--accent-gradient);
}

/* ❌ Remove line for last child */
.step-item:last-child::after {
    display: none;
}

/* Circles */
.circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: auto;
    background: white;
    border: 10px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    font-size: 30px;
    position: relative;
}

/* Colored borders like Figma */
.circle-1 {
    border-color: #ffb347;
}
.circle-2 {
    border-color: #ff7043;
}
.circle-3 {
    border-color: #57d6ff;
}
.circle-4 {
    border-color: #ff4d6d;
}

.circle small {
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

/* Step Text */
.step-text {
    margin-top: 15px;
    color: #f0f0f0;
    font-size: 14px;
}

/* Button */
.trial-btn {
    background: linear-gradient(to right, #ff6b61, #ff9d5c);
    color: white;
    border: none;
    padding: 14px 36px;
    border-radius: 25px;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: 600;
}

.trial-btn:hover {
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .steps-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .step-item {
        width: 100%;
        text-align: center;
    }

    .step-item::after {
        display: none;
    }
}

/* -------------------------------
   Footer
---------------------------------*/
.footer {
      background-color: #000;
      padding: 60px 0 20px;
    }
    .footer-subscribe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.footer-subscribe p {
   font-size: 24px;
    margin: 0 0 10px 0;
    flex: 1 1 300px;
    font-weight: 600;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    flex: 1 1 300px;
}

.subscribe-form input {
    padding: 10px;
    border: none;
    border-radius: 20px;
    flex: 1;
    outline: none;
}

.subscribe-form button {
    background-color: #ff7c00;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    cursor: pointer;
}
    .footer a {
      color: #aaa;
      text-decoration: none;
    }
    .footer a:hover {
      color: #fff;
      text-decoration: none;
    }
    .footer ul li {
    padding: 10px 0px;
}
.footer p {
    margin-top: 0px;
    margin-bottom: 22px;
}


    .footer .logo {
      font-size: 24px;
      font-weight: bold;
      display: flex;
      align-items: center;
      margin-bottom: 35px;
    }
    .footer .logo img {
      width: 150px;
      margin-right: 10px;
    }
    .footer .footer-heading {
      font-weight: bold;
      margin-bottom: 15px;
    }
    .footer .subscribe-btn {
      background-color: #ff7a00;
      border: none;
      color: #fff;
    }
    .footer .contact-number {
      color: #ff7a00;
      font-weight: bold;
      margin-top: 10px;
      display: inline-block;
    }
    .footer-bottom {
      border-top: 1px solid #333;
      margin-top: 30px;
      padding-top: 20px;
      text-align: center;
      font-size: 14px;
      color: #777;
    }

   
    @media (max-width: 768px) {
      .footer .col-md-2, .footer .col-md-3 {
        margin-top: 20px;
      }
    }


/* -------------------------------
  Responsive
---------------------------------*/
@media (max-width: 991px){
    .hero-heading {
        font-size: 2rem;
    }
    .hero-eyebrow {
        font-size: 1rem;
    }
}

@media (max-width: 575px){
    .hero-heading {
        font-size: 1.6rem;
    }
    .hero-sub {
        font-size: 0.9rem;
    }
}
