
/* ==========================================
   SERVICE DETAIL PAGE - CRYSTAL CLEAR
   FULL DARK NAVY + WHITE/GOLD TEXT
   COLORS: #000E23, #F5C842, #FFFFFF
   ========================================== */

.service-detail-page {
    background: #00112b;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* ==========================================
   BACKGROUND GLOW EFFECTS
   ========================================== */

.service-detail-page::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.service-detail-page::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* ==========================================
   CONTAINER OVERLAY
   ========================================== */

.service-detail-page .container {
    position: relative;
    z-index: 1;
}

/* ==========================================
   HERO TITLE - CRYSTAL
   ========================================== */

.service-detail-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 22px;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 30px rgba(245, 200, 66, 0.05);
}

.service-detail-page h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F5C842, transparent);
    margin-top: 14px;
    border-radius: 4px;
}

/* ==========================================
   H2 HEADINGS - CRYSTAL
   ========================================== */

.service-detail-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 45px;
    margin-bottom: 18px;
    padding-left: 18px;
    border-left: 5px solid #F5C842;
    color: #FFFFFF;
    transition: all 0.3s ease;
    text-shadow: 0 2px 20px rgba(245, 200, 66, 0.03);
}

.service-detail-page h2:hover {
    border-left-color: #F5C842;
    padding-left: 24px;
    color: #F5C842;
}

/* ==========================================
   H3 HEADINGS - CRYSTAL
   ========================================== */

.service-detail-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    color: #F5C842;
    display: inline-block;
    position: relative;
}

.service-detail-page h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F5C842, transparent);
    margin-top: 4px;
    border-radius: 2px;
}

/* ==========================================
   PARAGRAPHS - CRYSTAL
   ========================================== */

.service-detail-page p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
}

.service-detail-page p strong {
    color: #F5C842;
    font-weight: 700;
}

/* ==========================================
   LIST STYLING - CRYSTAL
   ========================================== */

.service-detail-page ul,
.service-detail-page ol {
    padding-left: 0;
    margin-bottom: 25px;
    list-style: none;
}

.service-detail-page ul li {
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    transition: all 0.3s ease;
}

.service-detail-page ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #F5C842;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 0 20px rgba(245, 200, 66, 0.2);
}

.service-detail-page ul li:hover {
    padding-left: 40px;
    color: #FFFFFF;
}

.service-detail-page ul li:hover::before {
    color: #F5C842;
    transform: scale(1.2);
}

.service-detail-page ol {
    padding-left: 0;
    list-style: none;
    counter-reset: item;
}

.service-detail-page ol li {
    margin-bottom: 12px;
    padding-left: 38px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    counter-increment: item;
    transition: all 0.3s ease;
}

.service-detail-page ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    color: #F5C842;
    font-weight: 700;
    font-size: 17px;
    text-shadow: 0 0 20px rgba(245, 200, 66, 0.15);
}

.service-detail-page ol li:hover {
    padding-left: 46px;
    color: #FFFFFF;
}

/* ==========================================
   CTA BOX - CRYSTAL
   ========================================== */

.service-detail-page .cta-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 35px;
    border-radius: 20px;
    margin-top: 45px;
    border: 1px solid rgba(245, 200, 66, 0.06);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.service-detail-page .cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.03), transparent 70%);
}

.service-detail-page .cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 200, 66, 0.02), transparent 70%);
}

.service-detail-page .cta-box h3 {
    color: #F5C842;
    font-size: 26px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-detail-page .cta-box h3::after {
    display: none;
}

.service-detail-page .cta-box p {
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

.service-detail-page .cta-box a {
    display: inline-block;
    padding: 14px 32px;
    background: #F5C842;
    color: #000E23;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 30px rgba(245, 200, 66, 0.2);
    font-size: 16px;
}

.service-detail-page .cta-box a:hover {
    background: #FFFFFF;
    color: #000E23;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 50px rgba(245, 200, 66, 0.3);
    text-decoration: none;
}

/* ==========================================
   FAQ STYLE - CRYSTAL
   ========================================== */

.service-detail-page h3 + p {
    background: rgba(245, 200, 66, 0.04);
    padding: 18px 22px;
    border-radius: 14px;
    border-left: 4px solid #F5C842;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    margin-top: 10px;
}

/* ==========================================
   BREADCRUMB - CRYSTAL
   ========================================== */

.breadcrumb {
    background: transparent;
    padding: 10px 0;
    border-radius: 0;
}

.breadcrumb a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #FFFFFF;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #F5C842;
}

/* ==========================================
   INTERNAL LINKS - CRYSTAL
   ========================================== */

.service-detail-page a {
    color: #F5C842;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-detail-page a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* ==========================================
   LOCATION SECTION - CRYSTAL
   ========================================== */

.location-category {
    margin-top: 60px;
    padding: 35px 30px;
    background: #000E23;
    border-radius: 20px;
    border: 1px solid rgba(245, 200, 66, 0.04);
    backdrop-filter: blur(10px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.category-header i {
    font-size: 24px;
    color: #F5C842;
    background: rgba(245, 200, 66, 0.06);
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(245, 200, 66, 0.02);
}

.category-header h3 {
    font-weight: 700;
    margin: 0;
    color: #FFFFFF;
}

.category-header h3::after {
    display: none;
}

/* ==========================================
   BIHAR CITIES GRID - CRYSTAL
   ========================================== */

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.city-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid rgba(245, 200, 66, 0.04);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}

.city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(245, 200, 66, 0.04);
    border-color: rgba(245, 200, 66, 0.15);
    background: rgba(245, 200, 66, 0.04);
    color: #FFFFFF;
}

.city-card .city-icon {
    color: #F5C842;
    margin-right: 8px;
}

.city-card .city-arrow {
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.city-card:hover .city-arrow {
    color: #F5C842;
    transform: translateX(4px);
}

/* ==========================================
   PATNA AREA SCROLL - CRYSTAL
   ========================================== */

.area-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 12px;
    scroll-behavior: smooth;
}

.area-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.area-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

.area-scroll-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #F5C842, transparent);
    border-radius: 10px;
}

.area-card {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(245, 200, 66, 0.04);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    color: rgba(255, 255, 255, 0.85);
}

.area-card i {
    color: #F5C842;
    transition: all 0.3s ease;
}

.area-card:hover {
    background: rgba(245, 200, 66, 0.06);
    color: #FFFFFF;
    border-color: rgba(245, 200, 66, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.area-card:hover i {
    color: #F5C842;
    transform: rotate(-15deg) scale(1.1);
}

/* ==========================================
   SIDEBAR - CRYSTAL
   ========================================== */

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(245, 200, 66, 0.04);
    padding: 28px 24px;
    border-radius: 18px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.sidebar-box:hover {
    border-color: rgba(245, 200, 66, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.sidebar-box h4,
.sidebar-box h5 {
    font-weight: 700;
    margin-bottom: 18px;
    color: #F5C842;
}

.sidebar-box h4::after,
.sidebar-box h5::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #F5C842;
    margin-top: 6px;
    border-radius: 2px;
}

.contact-box p {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-box i {
    color: #F5C842;
    margin-right: 8px;
    width: 20px;
}

/* ==========================================
   PRICING SECTION - CRYSTAL
   ========================================== */

.pricing-section {
    background: rgba(255, 255, 255, 0.01);
    padding: 60px 30px;
    border-radius: 24px;
    border: 1px solid rgba(245, 200, 66, 0.03);
}

.pricing-header h2 {
    border-left: none;
    padding-left: 0;
    color: #FFFFFF;
}

.pricing-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F5C842, transparent);
    margin-top: 8px;
    border-radius: 4px;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 35px 25px;
    border-radius: 18px;
    border: 1px solid rgba(245, 200, 66, 0.04);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    height: 100%;
    backdrop-filter: blur(10px);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(245, 200, 66, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.price-card h4 {
    font-weight: 700;
    margin-bottom: 18px;
    color: #FFFFFF;
    font-size: 22px;
}

.price-card .price {
    font-size: 34px;
    font-weight: 800;
    color: #F5C842;
    margin-bottom: 22px;
    text-shadow: 0 0 30px rgba(245, 200, 66, 0.05);
}

.price-card .price span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 22px;
}

.price-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 28px;
    position: relative;
}

.price-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F5C842;
    font-weight: 700;
}

.price-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #F5C842;
    color: #000E23;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(245, 200, 66, 0.15);
}

.price-btn:hover {
    background: #FFFFFF;
    color: #000E23;
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(245, 200, 66, 0.2);
    text-decoration: none;
}

.price-card.popular {
    border: 2px solid #F5C842;
    background: rgba(245, 200, 66, 0.02);
    box-shadow: 0 8px 40px rgba(245, 200, 66, 0.02);
}

.price-card .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #F5C842;
    color: #000E23;
    padding: 5px 18px;
    font-size: 12px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(245, 200, 66, 0.2);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 992px) {
    .service-sidebar {
        position: relative;
        top: auto;
        margin-top: 40px;
    }

    .pricing-section {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .service-detail-page {
        padding: 30px 0 40px;
    }

    .service-detail-page h1 {
        font-size: 30px;
    }

    .service-detail-page h2 {
        font-size: 22px;
        border-left-width: 4px;
        padding-left: 14px;
    }

    .service-detail-page h3 {
        font-size: 19px;
    }

    .service-detail-page p {
        font-size: 15px;
        line-height: 1.8;
    }

    .service-detail-page ul li,
    .service-detail-page ol li {
        font-size: 14px;
        padding-left: 28px;
    }

    .service-detail-page ul li:hover {
        padding-left: 34px;
    }

    .service-detail-page ol li:hover {
        padding-left: 34px;
    }

    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .location-category {
        padding: 22px 16px;
        margin-top: 40px;
        border-radius: 16px;
    }

    .service-detail-page .cta-box {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .service-detail-page .cta-box h3 {
        font-size: 22px;
    }

    .service-detail-page .cta-box a {
        padding: 12px 26px;
        font-size: 15px;
    }

    .price-card {
        padding: 25px 18px;
    }

    .price-card .price {
        font-size: 28px;
    }

    .sidebar-box {
        padding: 20px 18px;
    }
}

@media (max-width: 480px) {
    .service-detail-page {
        padding: 20px;
    }

    .service-detail-page h1 {
        font-size: 24px;
    }

    .service-detail-page h1::after {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }

    .service-detail-page h2 {
        font-size: 19px;
        border-left-width: 3px;
        padding-left: 10px;
        margin-top: 30px;
    }

    .service-detail-page h2:hover {
        padding-left: 14px;
    }

    .service-detail-page h3 {
        font-size: 17px;
    }

    .service-detail-page p {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-detail-page ul li,
    .service-detail-page ol li {
        font-size: 13px;
        padding-left: 24px;
    }

    .service-detail-page ul li::before {
        font-size: 13px;
    }

    .service-detail-page ol li::before {
        font-size: 14px;
    }

    .service-detail-page ul li:hover {
        padding-left: 28px;
    }

    .service-detail-page ol li:hover {
        padding-left: 28px;
    }

    .service-detail-page .cta-box {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .service-detail-page .cta-box h3 {
        font-size: 19px;
    }

    .service-detail-page .cta-box a {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .service-detail-page h3 + p {
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 13px;
    }

    .city-card {
        padding: 14px 16px;
        font-size: 13px;
        border-radius: 12px;
    }

    .area-card {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 30px;
    }

    .pricing-section {
        padding: 30px 14px;
        border-radius: 16px;
    }

    .pricing-header h2 {
        font-size: 22px;
    }

    .price-card {
        padding: 20px 14px;
        border-radius: 14px;
    }

    .price-card h4 {
        font-size: 18px;
    }

    .price-card .price {
        font-size: 24px;
    }

    .price-card .price span {
        font-size: 12px;
    }

    .price-card ul li {
        font-size: 13px;
        padding-left: 24px;
    }

    .price-btn {
        padding: 10px 24px;
        font-size: 14px;
        width: 100%;
    }

    .price-card .badge {
        font-size: 10px;
        padding: 3px 14px;
        top: -10px;
        right: 14px;
    }

    .location-category {
        padding: 14px 12px;
        border-radius: 14px;
        margin: 5px;
    }

    .category-header i {
        font-size: 18px;
        padding: 8px;
        border-radius: 10px;
    }

    .category-header h3 {
        font-size: 17px;
    }

    .sidebar-box {
        padding: 16px 14px;
        border-radius: 14px;
    }

    .sidebar-box h4,
    .sidebar-box h5 {
        font-size: 17px;
    }

    .contact-box p {
        font-size: 13px;
    }
}



/* ---- Header Section ---- */
.service-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.location-highlight {
    color: #3498db;
    background: rgba(52, 152, 219, 0.12);
    padding: 4px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-left: 8px;
    font-size: 2.2rem;
    transition: all 0.3s ease;
}




/* ---- Intro Paragraph ---- */
.service-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 45px auto;
    padding: 20px 30px;
    background: #000;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border-left: 5px solid #3498db;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.primary-location {
    color: #e74c3c;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.primary-location::after {
    content: '📍';
    font-size: 0.8rem;
    margin-left: 4px;
}

/* ---- Service Grid List ---- */
.service-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    padding: 0;
    margin: 0 0 50px 0;
    list-style: none;
}

.service-item {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 6px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}



.service-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 152, 219, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
}


.service-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-content strong {
    font-size: 1.05rem;
    color: #2c3e50;
    font-weight: 700;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.service-desc {
    font-size: 0.95rem;
    color: #5d6d7e;
    line-height: 1.5;
}



/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

/* ============================================================
   ANUIT SOL SECTION 1 - FIXED HEIGHT + SCROLLABLE
   COLORS: #00112B (Navy) & #F5C842 (Gold)
   ============================================================ */

.anuitsol_1 {
    background: rgba(0, 17, 43, 0.6);
    padding: 35px 30px;
    border-radius: 16px;
    border-left: 5px solid #F5C842;
    margin: 30px 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 200, 66, 0.08);
    box-shadow: 0 4px 20px rgba(0, 17, 43, 0.3);
    
    /* ===== FIXED HEIGHT + SCROLLABLE ===== */
    height: 380px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

/* ----- Custom Scrollbar Styling ----- */
.anuitsol_1::-webkit-scrollbar {
    width: 6px;
}

.anuitsol_1::-webkit-scrollbar-track {
    background: rgba(0, 17, 43, 0.4);
    border-radius: 10px;
}

.anuitsol_1::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #F5C842, rgba(245, 200, 66, 0.3));
    border-radius: 10px;
}

.anuitsol_1::-webkit-scrollbar-thumb:hover {
    background: #F5C842;
}

/* ----- Firefox Scrollbar ----- */
.anuitsol_1 {
    scrollbar-width: thin;
    scrollbar-color: #F5C842 rgba(0, 17, 43, 0.4);
}

.anuitsol_1:hover {
    background: rgba(0, 17, 43, 0.8);
    border-color: rgba(245, 200, 66, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 17, 43, 0.5);
}

.anuitsol_1 h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 18px;
    padding-left: 0;
    border-left: none;
    position: sticky;
    top: 0;
    background: rgba(0, 17, 43, 0.9);
    padding-bottom: 10px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.anuitsol_1 h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F5C842, rgba(245, 200, 66, 0.1));
    margin-top: 8px;
    border-radius: 3px;
}

.anuitsol_1 p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 16px;
}

.anuitsol_1 p strong {
    color: #F5C842;
    font-weight: 700;
}

.anuitsol_1 ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.anuitsol_1 ul li {
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    position: relative;
    transition: all 0.3s ease;
}

.anuitsol_1 ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #F5C842;
    font-weight: 700;
    font-size: 14px;
    top: 1px;
}

.anuitsol_1 ul li:hover {
    padding-left: 36px;
    color: #ffffff;
}

.anuitsol_1 ul li:hover::before {
    color: #F5C842;
    transform: scale(1.2);
}

.anuitsol_1 a {
    color: #F5C842;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 8px;
    border-radius: 4px;
    border-bottom: 2px solid rgba(245, 200, 66, 0.2);
}

.anuitsol_1 a:hover {
    color: #ffffff;
    background: rgba(245, 200, 66, 0.08);
    border-bottom-color: #F5C842;
    text-decoration: none;
}

/* ============================================================
   RESPONSIVE - .anuitsol_1
   ============================================================ */

@media (max-width: 768px) {
    .anuitsol_1 {
        padding: 25px 20px;
        border-radius: 14px;
        margin: 20px 0;
        border-left-width: 4px;
        height: 340px;
    }
    
    .anuitsol_1 h2 {
        font-size: 22px;
    }
    
    .anuitsol_1 h2::after {
        width: 45px;
        height: 3px;
    }
    
    .anuitsol_1 p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .anuitsol_1 ul li {
        font-size: 14px;
        padding-left: 24px;
    }
    
    .anuitsol_1 ul li::before {
        font-size: 12px;
    }
    
    .anuitsol_1 ul li:hover {
        padding-left: 30px;
    }
    
    .anuitsol_1::-webkit-scrollbar {
        width: 5px;
    }
}

@media (max-width: 480px) {
    .anuitsol_1 {
        padding: 18px 14px;
        border-radius: 12px;
        margin: 15px 0;
        border-left-width: 4px;
        height: 300px;
    }
    
    .anuitsol_1 h2 {
        font-size: 19px;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }
    
    .anuitsol_1 h2::after {
        width: 35px;
        height: 2px;
    }
    
    .anuitsol_1 p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .anuitsol_1 ul li {
        font-size: 13px;
        padding-left: 22px;
        margin-bottom: 8px;
    }
    
    .anuitsol_1 ul li::before {
        font-size: 11px;
    }
    
    .anuitsol_1 ul li:hover {
        padding-left: 26px;
    }
    
    .anuitsol_1 a {
        font-size: 14px;
        display: inline-block;
        padding: 2px 6px;
    }
    
    .anuitsol_1::-webkit-scrollbar {
        width: 4px;
    }
}


/*::::::::::::::::::::::REVIEW::::::::::::::::::::::::::::::::*/

/* ================= REVIEW SECTION ================= */

.review-section{
    position:relative;
    z-index:50;
    clear:both;
    padding:60px 0;
    overflow:hidden;
}

.review-section .row{
    margin-left:-12px;
    margin-right:-12px;
}

.review-section .col-sm-3{
    padding-left:12px;
    padding-right:12px;
    margin-bottom:25px;
}

.review-card{
    background:#ffffff;
    border:1px solid #edf2f7;
    border-radius:25px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:all .3s ease;
    position:relative;
    z-index:51;

    /*height:100%;*/
    max-height:280px;
    overflow-x:auto;

    display:flex;
    flex-direction:column;
}

.review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(24,40,87,.12);
}

.review-card .stars{
    color:#F5C842;
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:15px;
}

.review-card h4{
    color:#182857;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.review-card p{
    color:#555;
    font-size: 12px;
    line-height:1.9;
    margin:0;
    text-align: justify;
    flex-grow:1;
}

/* Fix unwanted floating elements */
.review-section *{
    position:relative;
}

.review-section:after{
    content:"";
    display:block;
    clear:both;
}

/* Tablet */

@media(max-width:991px){

.review-card{
    min-height:250px;
}

}

/* Mobile */

@media(max-width:767px){

.review-card{
    min-height:auto;
    padding:20px;
}

.review-card h4{
    font-size:20px;
}

.review-card p{
    font-size:14px;
}

}

/*::::::::::::::::::::::::::::::::::clienst:::::::::::::::::::::::::::::::::::::::::::::*/


/* ================= CLIENT SECTION ================= */



.client-badge{
display:inline-block;
background:#182857;
color:#fff;
padding:10px 22px;
border-radius:50px;
font-size:14px;
font-weight:600;
margin-bottom:20px;
}

.client-title{
font-size:42px;
font-weight:800;
color:#182857;
margin-bottom:15px;
}

.client-desc{
max-width:900px;
margin:auto;
font-size:17px;
line-height:1.9;
color:#555;
}

.client-box{
    background:#fff;
    border-radius:20px;
    padding: 8px;
    height: 145px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    border:1px solid #edf2f7;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.client-box img{
    max-width:100%;
    max-height:90px;
    object-fit:contain;
    margin-bottom:15px;
}

.client-box h6{
    font-size:15px;
    font-weight:700;
    color:#182857;
    margin:0;
    line-height:1.4;
}

.client-box:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(24,40,87,.12);
}



.client-box:hover img{
filter:none;
transform:scale(1.05);
}

.client-bottom-text{
margin-top:25px;
}

.client-bottom-text p{
font-size:17px;
color:#555;
line-height:1.8;
}

@media(max-width:768px){

.client-title{
font-size:30px;
}

.client-box{
height:130px;
padding:15px;
}

.client-box img{
max-height:65px;
}

}