@media (max-width: 768px) {
    #hero h2 {
        font-size: 40px;
    }
}

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 125px;
    top: 0;
    left: 0;
    right: 0;
}

/* =========================================
   PREMIUM BREADCRUMB SECTION
========================================= */
.breadcrumb_sections {
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 74, 173, 0.08);
    position: relative;
    z-index: 9;
}

.breadcrumb_sections .breadcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: transparent;
}

.breadcrumb_sections .breadcrumb li {
    font-size: 15px;
    font-weight: 500;
    color: #5b6b84;
    position: relative;
    padding-right: 22px;
    margin-right: 14px;
    line-height: 1.6;
}

.breadcrumb_sections .breadcrumb li:not(:last-child)::after {
    content: "›";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ff7a2f;
    font-size: 18px;
    font-weight: 700;
}

.breadcrumb_sections .breadcrumb li a {
    color: #0b57d0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb_sections .breadcrumb li a:hover {
    color: #ff7a2f;
    text-decoration: none;
}

.breadcrumb_sections .breadcrumb li:last-child {
    color: #0b2c5f;
    font-weight: 700;
    margin-right: 0;
    padding-right: 0;
}

/* MOBILE */
@media (max-width: 767px) {
    .breadcrumb_sections {
        padding: 14px 0;
    }

    .breadcrumb_sections .breadcrumb {
        display: block;
    }

    .breadcrumb_sections .breadcrumb li {
        display: inline-block;
        font-size: 13px;
        margin-right: 8px;
        padding-right: 14px;
    }

    .breadcrumb_sections .breadcrumb li:not(:last-child)::after {
        font-size: 14px;
    }
}

/* =========================================
   PREMIUM PAID MARKETING SECTION
========================================= */
.premium-paid-section {
    padding: 10px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.premium-section-heading {
    max-width: 900px;
    margin: auto;
    margin-bottom: 60px;
}

.premium-badge {
    display: inline-block;
    background: rgba(241,111,51,0.08);
    color: #f16f33;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.premium-section-heading h1 {
    font-size: 48px;
    font-weight: 800;
    color: #488bca;
    margin-bottom: 18px;
}

.premium-section-heading p {
    font-size: 18px;
    color: #5f6b7a;
    line-height: 1.9;
}

/* Left Content */
.premium-paid-content p {
    font-size: 17px;
    color: #5f6b7a;
    line-height: 1.9;
    margin-bottom: 20px;
}

.premium-feature-list {
    margin-top: 30px;
}

.premium-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(11,44,95,0.05);
    border: 1px solid #eef3f8;
}

.premium-feature-item i {
    color: #f16f33;
    font-size: 20px;
    margin-top: 3px;
}

.premium-feature-item span {
    font-size: 16px;
    color: #0b2c5f;
    font-weight: 600;
    line-height: 1.7;
}

/* CTA */
.premium-paid-cta {
    margin-top: 35px;
}

.premium-btn-paid {
    display: inline-block;
    padding: 16px 34px;
    background: linear-gradient(135deg, #f16f33 0%, #ff9b54 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(241,111,51,0.25);
    transition: all .3s ease;
}

.premium-btn-paid:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

/* Right Card */
.premium-paid-card {
    background: linear-gradient(135deg, #0b2c5f 0%, #153d77 100%);
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 25px 50px rgba(11,44,95,0.15);
}

.paid-card-box {
    background: rgba(255,255,255,0.08);
    padding: 28px;
    border-radius: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.paid-card-box:last-child {
    margin-bottom: 0;
}

.paid-card-box h3 {
    color: #ff9b54;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.paid-card-box p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
    line-height: 1.7;
}

/* =========================================
   TABLET
========================================= */
@media (max-width: 991px) {

    .premium-section-heading h1 {
        font-size: 38px;
    }

    .premium-paid-card {
        margin-top: 40px;
    }
}

/* =========================================
   MOBILE
========================================= */
@media (max-width: 767px) {

    .premium-paid-section {
        padding: 10px 0;
    }

    .premium-section-heading h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .premium-section-heading p,
    .premium-paid-content p {
        font-size: 15px;
    }

    .premium-feature-item {
        padding: 14px;
    }

    .premium-feature-item span {
        font-size: 15px;
    }

    .premium-btn-paid {
        width: 100%;
        text-align: center;
    }

    .premium-paid-card {
        padding: 25px;
    }

    .paid-card-box h3 {
        font-size: 28px;
    }
}

/* =========================================
   PREMIUM WHY CHOOSE US SECTION
========================================= */
#paid-marketing-why-choose {
    padding: 10px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    position: relative;
}

/* Heading */
#paid-marketing-why-choose .premium-why-heading {
    max-width: 920px;
    margin: 0 auto 60px;
}

#paid-marketing-why-choose .premium-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(241,111,51,0.08);
    color: #f16f33;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

#paid-marketing-why-choose h2 {
    font-size: 35px;
    font-weight: 800;
    color: #488bca;
    margin-bottom: 18px;
    line-height: 1.2;
}

#paid-marketing-why-choose .premium-why-heading p {
    font-size: 18px;
    color: #5f6b7a;
    line-height: 1.9;
}

/* Left Content */
#paid-marketing-why-choose .premium-why-content p {
    font-size: 17px;
    color: #5f6b7a;
    line-height: 1.9;
    margin-bottom: 20px;
}

#paid-marketing-why-choose .premium-why-cta {
    margin-top: 30px;
}

/* Button */
#paid-marketing-why-choose .premium-btn-paid {
    display: inline-block;
    padding: 16px 34px;
    background: linear-gradient(135deg, #f16f33 0%, #ff9b54 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(241,111,51,0.25);
    transition: all 0.35s ease;
}

#paid-marketing-why-choose .premium-btn-paid:hover {
    color: #ffffff;
    transform: translateY(-4px);
}

/* Advantage Grid */
#paid-marketing-why-choose .premium-advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* Cards */
#paid-marketing-why-choose .premium-advantage-card {
    background: #ffffff;
    padding: 30px 24px;
    border-radius: 20px;
    border: 1px solid #eef3f8;
    box-shadow: 0 12px 30px rgba(11,44,95,0.06);
    transition: all 0.35s ease;
}

#paid-marketing-why-choose .premium-advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(11,44,95,0.12);
}

#paid-marketing-why-choose .premium-advantage-card i {
    font-size: 34px;
    color: #f16f33;
    margin-bottom: 18px;
}

#paid-marketing-why-choose .premium-advantage-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0b2c5f;
    margin-bottom: 12px;
}

#paid-marketing-why-choose .premium-advantage-card p {
    font-size: 15px;
    color: #5f6b7a;
    line-height: 1.8;
    margin: 0;
}

/* =========================================
   TABLET
========================================= */
@media (max-width: 991px) {

    #paid-marketing-why-choose {
        padding: 10px 0;
    }

    #paid-marketing-why-choose h2 {
        font-size: 36px;
    }

    #paid-marketing-why-choose .premium-advantage-grid {
        margin-top: 40px;
    }
}

/* =========================================
   MOBILE
========================================= */
@media (max-width: 767px) {

    #paid-marketing-why-choose {
        padding: 65px 0;
    }

    #paid-marketing-why-choose .premium-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    #paid-marketing-why-choose h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    #paid-marketing-why-choose .premium-why-heading p,
    #paid-marketing-why-choose .premium-why-content p {
        font-size: 15px;
    }

    #paid-marketing-why-choose .premium-advantage-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 35px;
    }

    #paid-marketing-why-choose .premium-advantage-card {
        padding: 24px 20px;
    }

    #paid-marketing-why-choose .premium-advantage-card h4 {
        font-size: 18px;
    }

    #paid-marketing-why-choose .premium-btn-paid {
        width: 100%;
        text-align: center;
    }
}