body {
    font-family: "Baloo Da 2", sans-serif;
    direction: ltr;
}

.probashi-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.probashi-header .navbar-brand {
    font-weight: 700;
    color: #9c88ff;
    font-size: 1.5rem;
}

.probashi-header .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.probashi-header .nav-link:hover,
.probashi-header .nav-link.active {
    color: #a29bfe;
}

.probashi-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #a29bfe;
    border-radius: 3px;
}

.probashi-footer {
    background-color: #9c88ff;
    color: #fff;
    padding: 40px 0 20px;
}

.probashi-footer h5 {
    color: #352b9e;
    margin-bottom: 20px;
    font-weight: 600;
}

.probashi-footer .footer-links {
    list-style: none;
    padding: 0;
}

.probashi-footer .footer-links li {
    margin-bottom: 10px;
}

.probashi-footer .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.probashi-footer .footer-links a:hover {
    color: #a29bfe;
    padding-left: 5px;
}

.probashi-footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.probashi-footer .social-links a:hover {
    background-color: #a29bfe;
    color: #9c88ff;
    transform: translateY(-3px);
}

.probashi-footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}


/* index page */
.hero-section {
    background: linear-gradient(135deg, #9c88ff 0%, #a29bfe 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.btn-vpn {
    background-color: #9c88ff;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #9c88ff;
    transition: all 0.3s;
}

.btn-vpn:hover {
    background-color: transparent;
    color: #9c88ff;
    border-color: #9c88ff;
}

.btn-recharge {
    background-color: #a29bfe;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #a29bfe;
    transition: all 0.3s;
}

.btn-recharge:hover {
    background-color: transparent;
    color: #a29bfe;
    border-color: #a29bfe;
}

.services-section {
    background-color: #fff;
}

.services-section h2 {
    color: #9c88ff;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin: 0 auto 30px;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #a29bfe;
}

.service-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #9c88ff, #a29bfe);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 30px;
}

.service-card h3 {
    color: #9c88ff;
    margin: 15px 0;
}

.how-it-works h2 {
    color: #9c88ff;
    font-weight: 700;
}

.step-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #a29bfe;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.step-card h4 {
    color: #9c88ff;
    margin-bottom: 15px;
}

.contact-section {
    background-color: #9c88ff;
    color: #fff;
}

.contact-section h2 {
    font-weight: 700;
    color: #352b9e;
}

.btn-success {
    background-color: #25D366;
    border-color: #25D366;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
    }

    .btn-vpn, .btn-recharge {
        margin: 5px 0;
        width: 100%;
    }
}

.whatsapp-cta {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    max-width: 350px;
}

.whatsapp-cta p {
    color: #fff;
    font-size: 0.9rem;
}

.hero-section img {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
}

.services-section h2 {
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
}

.services-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #a29bfe;
}


/* Vpn Services */
.vpn-hero {
    background: linear-gradient(135deg, #9c88ff 0%, #a29bfe 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.vpn-hero h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.vpn-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* ফিচার কার্ড স্টাইল */
.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #fff;
}

.feature-icon.bg-primary {
    background-color: #9c88ff;
}

.feature-icon.bg-success {
    background-color: #28a745;
}

.feature-icon.bg-warning {
    background-color: #a29bfe;
}

.feature-card h3 {
    color: #9c88ff;
    margin-bottom: 15px;
    padding: 5px;
}

/* প্রাইসিং কার্ড স্টাইল */
.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.pricing-card.popular {
    border: 2px solid #a29bfe;
    transform: scale(1.05);
}

.pricing-card.popular .pricing-header {
    background-color: #9c88ff;
    color: #fff;
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: #a29bfe;
    color: #333;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.8rem;
}

.pricing-header {
    padding: 30px 20px;
    text-align: center;
    background-color: #f8f9fa;
}

.pricing-card.popular .price {
    color: #fff;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #9c88ff;
    margin: 15px 0;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: normal;
}

.save-badge {
    background-color: #a29bfe;
    color: #fff;
    padding: 5px 10px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
}

.features-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.features-list li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    display: block;
    margin: 20px auto;
    width: 80%;
}

/* বেনিফিট সেকশন স্টাইল */
.benefit-item {
    display: flex;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background-color: #9c88ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: #9c88ff;
    margin-bottom: 5px;
}

/* FAQ সেকশন স্টাইল */
.accordion-button {
    font-weight: 600;
    color: #9c88ff;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(72, 141, 189, 0.1);
    color: #9c88ff;
}

/* রেস্পন্সিভ স্টাইল */
@media (max-width: 768px) {
    .vpn-hero {
        padding: 80px 0;
        text-align: center;
    }

    .vpn-hero h1 {
        font-size: 2rem;
    }

    .vpn-hero .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

/* Recharge Section */
/* রিচার্জ হিরো সেকশন */
.recharge-hero {
    background: linear-gradient(135deg, #a29bfe 0%, #9c88ff 100%);
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.recharge-hero h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.recharge-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* অপারেটর কার্ড স্টাইল */
.operator-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

.operator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.operator-card img {
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.operator-card h3 {
    color: #9c88ff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* প্যাকেজ কার্ড স্টাইল */
.package-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #9c88ff;
}

.package-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9c88ff;
    margin-bottom: 5px;
}

.package-price {
    font-size: 1.2rem;
    color: #a29bfe;
    font-weight: 600;
    margin-bottom: 15px;
}

.operator-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #9c88ff;
}

/* প্রক্রিয়া কার্ড স্টাইল */
.process-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

.process-number {
    width: 40px;
    height: 40px;
    background-color: #a29bfe;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.process-card h4 {
    color: #9c88ff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* FAQ সেকশন স্টাইল */
.accordion-button {
    font-weight: 600;
    color: #9c88ff;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(72, 141, 189, 0.1);
    color: #9c88ff;
}

/* রেস্পন্সিভ স্টাইল */
@media (max-width: 768px) {
    .recharge-hero {
        padding: 80px 0;
        text-align: center;
    }

    .recharge-hero h1 {
        font-size: 2rem;
    }

    .recharge-hero .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .operator-card {
        padding: 15px;
    }

    .operator-card img {
        height: 40px;
    }
}

.btn-rounded {
    border-radius: 15px;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, #9c88ff 0%, #a29bfe 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.contact-hero .lead {
    font-size: 1.3rem;
}

.contact-form-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-form-card h2 {
    color: #9c88ff;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #a29bfe;
}

.form-label {
    font-weight: 600;
    color: #555;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
    border-color: #9c88ff;
    box-shadow: 0 0 0 0.25rem rgba(72, 141, 189, 0.25);
}

.btn-primary {
    background-color: #9c88ff;
    border-color: #9c88ff;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #3a7ba8;
    border-color: #3a7ba8;
}

.contact-info-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.contact-info-card h2 {
    color: #9c88ff;
    position: relative;
    padding-bottom: 15px;
}

.contact-info-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #a29bfe;
}

.contact-info-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #9c88ff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-content h4 {
    color: #9c88ff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-info-content p {
    margin-bottom: 5px;
}

.btn-success {
    background-color: #25D366;
    border-color: #25D366;
}

.btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

.opening-hours h4 {
    color: #9c88ff;
    margin-bottom: 15px;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 600;
    color: #555;
}

.map-section {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 20px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Order Page */
.bkash-hero {
    background: linear-gradient(135deg, #a29bfe 0%, #9c88ff 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.bkash-hero h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.bkash-hero .lead {
    font-size: 1.3rem;
}

/* প্রক্রিয়া কার্ড স্টাইল */
.process-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    height: 100%;
}

.process-number {
    width: 50px;
    height: 50px;
    background-color: #e2136e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.process-card h4 {
    color: #e2136e;
    margin-bottom: 15px;
}

/* অর্ডার ফর্ম কার্ড */
.order-form-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.order-form-card h2 {
    color: #e2136e;
    position: relative;
    padding-bottom: 15px;
}

.order-form-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #a29bfe;
}

.form-label {
    font-weight: 600;
    color: #555;
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.form-control:focus, .form-select:focus {
    border-color: #e2136e;
    box-shadow: 0 0 0 0.25rem rgba(226, 19, 110, 0.25);
}

.btn-primary {
    background-color: #e2136e;
    border-color: #e2136e;
    padding: 12px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #c40f5f;
    border-color: #c40f5f;
}

/* বিকাশ তথ্য কার্ড */
.bkash-info-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.bkash-info-card h2 {
    color: #e2136e;
    position: relative;
    padding-bottom: 15px;
}

.bkash-info-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #a29bfe;
}

.bkash-info-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.bkash-logo {
    width: 100px;
    margin-right: 20px;
}

.bkash-logo img {
    width: 100%;
}

.bkash-detail-item {
    margin-bottom: 10px;
}

.bkash-label {
    font-weight: 600;
    color: #555;
    display: inline-block;
    width: 120px;
}

.bkash-value {
    color: #e2136e;
    font-weight: 600;
}

.payment-instructions h4 {
    color: #e2136e;
    margin-bottom: 15px;
}

.payment-instructions ul {
    list-style-type: none;
    padding-left: 0;
}

.payment-instructions li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.payment-instructions li::before {
    content: '•';
    color: #e2136e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-success {
    background-color: #25D366;
    border-color: #25D366;
}

.btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

/* রেস্পন্সিভ স্টাইল */
@media (max-width: 768px) {
    .bkash-hero {
        padding: 80px 0;
    }

    .bkash-hero h1 {
        font-size: 2rem;
    }

    .order-form-card, .bkash-info-card {
        padding: 20px;
    }

    .bkash-info-box {
        flex-direction: column;
        text-align: center;
    }

    .bkash-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .bkash-label {
        width: auto;
        display: block;
    }

    .bkash-value {
        display: block;
    }
}
