/* ===========================
   PRICING SECTION STYLING
=========================== */
.pricing-section {
    /* background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%); */
    position: relative;
    z-index: 1;
}

.section-title span {
    color: #3763eb;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 15px 0;
    color: #051441;
}

.section-title p {
    color: #090a0c;
    font-size: 18px;
    font-weight: 600;
}

/* Single Pricing Card */
.single-pricing {
    background: #fff;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(55, 99, 235, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.single-pricing:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(55, 99, 235, 0.2);
}

.single-pricing.active {
    border: 2px solid #3763EB;
    transform: scale(1.05);
}

.single-pricing h4 {
    color: #090a0c;
    font-weight: 600;
    margin-bottom: 10px;
}

.single-pricing h3 {
    font-size: 42px;
    font-weight: 700;
    color: #051441;
    margin-bottom: 25px;
}

.single-pricing ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.single-pricing ul li {
    padding: 8px 0;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.single-pricing a.theme-btn {
    display: inline-block;
    padding: 10px 35px;
    border-radius: 30px;
    background: linear-gradient(135deg, #3763EB, #6f58e8);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-pricing a.theme-btn.border-btn {
    background: transparent;
    color: #3763EB;
    border: 2px solid #3763EB;
}

.single-pricing a.theme-btn.border-btn:hover {
    background: linear-gradient(135deg, #3763EB, #6f58e8);
    color: #fff;
}

.single-pricing p {
    margin-top: 20px;
    color: #090a0c;
    font-size: 14px;
}

/* Badge for Popular Plan */
.single-pricing .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #3763EB;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991px) {
    .single-pricing.active {
        transform: none;
    }

    .single-pricing {
        margin-bottom: 40px;
    }
}

/* =========================
   Animated Banner Section
========================= */
.animated-banner-section {
    position: relative;
    overflow: hidden;
    padding: 140px 20px 180px;
    text-align: center;
    color: #fff;
   background: linear-gradient(180deg, #0b3a6b 0%, #276fbf 60%, #0f1724 100%);

}

/* ===== Waves ===== */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 140px;
    background-repeat: repeat-x;
    opacity: 0.6;
    z-index: 1;
}

.wave1 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff33" d="M0,224L48,197.3C96,171,192,117,288,106.7C384,96,480,128,576,160C672,192,768,224,864,229.3C960,235,1056,213,1152,192C1248,171,1344,149,1392,138.7L1440,128V320H0Z"></path></svg>');
    animation: waveMove1 18s linear infinite;
}

.wave2 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff22" d="M0,160L60,186.7C120,213,240,267,360,266.7C480,267,600,213,720,176C840,139,960,117,1080,133.3C1200,149,1320,203,1380,229.3L1440,256V320H0Z"></path></svg>');
    animation: waveMove2 24s linear infinite reverse;
}

.wave3 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff11" d="M0,256L48,234.7C96,213,192,171,288,176C384,181,480,235,576,250.7C672,267,768,245,864,218.7C960,192,1056,160,1152,165.3C1248,171,1344,213,1392,234.7L1440,256V320H0Z"></path></svg>');
    animation: waveMove3 30s linear infinite;
}

@keyframes waveMove1 {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: 1000px;
    }
}

@keyframes waveMove2 {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: -1000px;
    }
}

@keyframes waveMove3 {
    from {
        background-position-x: 0;
    }

    to {
        background-position-x: 800px;
    }
}

/* ===== Floating Particles ===== */
.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 70px 70px;
    animation: floatParticles 30s linear infinite;
    z-index: 2;
}

.floating-particles::after {
    background-size: 100px 100px;
    opacity: 0.3;
    animation-duration: 40s;
}

@keyframes floatParticles {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100px 100px;
    }
}

/* ===== Floating Icons ===== */
.banner-icons {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    z-index: 3;
}

.icon-box {
    font-size: 60px;
    color: #ffffffdd;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    animation: float 4s ease-in-out infinite;
}

.icon-box:nth-child(2) {
    animation-delay: 1s;
}

.icon-box:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===== Text & Breadcrumb ===== */
.banner-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    z-index: 5;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1.2s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.breadcrumb-nav {
    position: relative;
    z-index: 5;
    margin-top: 15px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: 0.3s;
}

.breadcrumb-item a:hover {
    color: #fff;
    text-shadow: 0 0 8px #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .banner-title {
        font-size: 38px;
    }

    .icon-box {
        font-size: 40px;
    }

    .banner-icons {
        gap: 30px;
        top: 22%;
    }
}