/* সাধারণ স্টাইল */
body {
    font-family: 'SolaimanLipi', 'Siyam Rupali', Arial, sans-serif !important;
    background: linear-gradient(135deg, #96c0e8  0%, #bdeac5 100%);
    min-height: 100vh;
}

.bg-gradient {
    background: linear-gradient(135deg, #0f5d71 0%, #9d1eb9 100%) !important;
}

/* হোম পেজের শাখা বক্স */
.branch-box {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 15px;
    overflow-x: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    background: #57b8ce;
}

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

.branch-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #dd6b3a;
}

/* অ্যানিমেশন ক্লাস */
.animate-pop {
    animation: popIn 0.6s ease-out;
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.animate-slide {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ফর্ম স্টাইল */
.form-container {
    background: rgb(119, 202, 185);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
}

/* বাটন স্টাইল */
.btn-primary {
    background: linear-gradient(135deg, #db1f11 0%, #2575fc 100%);
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: bold;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* প্রোফাইল কার্ড */
.profile-card {
    border-radius: 15px;
     overflow-x: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}



.profile-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    padding: 30px;
    color: white;
    text-align: center;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    object-fit: cover;
    margin-bottom: 15px;
}

/* পেমেন্ট মেথড স্টাইল */
.payment-method {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method:hover, .payment-method.selected {
    border-color: #6a11cb;
    background-color: #5b68ad;
}

.payment-method i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #6a11cb;
}

/* সোশ্যাল মিডিয়া লিংক */
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* রেস্পন্সিভ টেবিল */
.table-responsive {
    border-radius: 10px;
     overflow-x: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* নোটিশ বোর্ড */
.notice-board {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.notice-item {
    border-left: 4px solid #6a11cb;
    padding-left: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.notice-item:hover {
    background-color: #f8f9ff;
    transform: translateX(5px);
}

/* রেজাল্ট কার্ড */
.result-card {
    background:rgb(154, 54, 54);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.signature-line {
    width: 200px;
    height: 1px;
    background: #000;
    margin: 5px auto;
}

/* মোবাইল রেস্পন্সিভ */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
    
    .profile-img {
        width: 100px;
        height: 100px;
    }
    
    .form-container {
        padding: 20px;
    }
}

@media print {
    .navbar, .form-container, footer, .btn {
        display: none !important;
    }
    
    .result-card {
        box-shadow: none;
        padding: 0;
    }
}