.red_color {
    color: red !important;
}

.display-hide {
    display: none;
}
body {
    /*font-family: solaimanLipi,SolaimanLipi,solaimanlipi,Vrinda,serif !important;*/
}
.eng_font {
    font-family: arial;
    font-size: 13px;
}

.checkout-form label {
    font-size: 14px !important;
}

label.error {
    color: #e52a2a !important;
    font-size: 12px !important;
    font-style: italic;
    font-weight: bold !important;
}

.small_font {
    font-size: 10px !important;
}

.textarea_c {
    height: 30px !important;
}

/* for dashboard box */
.instructor-inner h6 {
    text-align: center;
    color: white;
}
.instructor-inner .instructor-text-info {
    text-align: center;
    color: white;
}
.instructor-inner p {
    text-align: center;
    color: white;
}

/*.red_color {color:red !important};*/

.page-content {
    padding: 10px 0 10px !important;
}

/* Jannat - for avatar overlay - profile photo change  */

.photo-wrapper {
    width: 120px;
    height: 120px;
    position: relative;
}

.photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid #ebeff1;
}

.camera-overlay {
    position: absolute;
    bottom: 15px;
    right: 10px;

    /* Size */
    width: 40px; /* button width */
    height: 30px; /* button height */
    padding: 0; /* remove extra padding */

    /* Colors */
    background-color: rgb(249, 249, 249); /* button background */
    color: rgb(255, 255, 255); /* icon color */

    /* Shape & border */
    border: none; /* remove border */
    border-radius: 4px; /* small rounding, optional */
    box-shadow: none;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.camera-overlay:hover {
    background-color: #ebe3e3; /* slightly lighter black on hover */
}

/* About us */
/* ===============================
   About Us Page Styles
================================ */

/* Intro Card Section */
.intro-card p {
    text-align: justify;
    line-height: 1.7;
}

/* Agenda Card */
.agenda-card {
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

.agenda-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Circle */
.icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #575f79, #474c57);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.icon-circle i {
    color: #0d6efd;
    font-size: 1.6rem;
}

/* Headings */
h3.fw-bold {
    font-weight: 700;
    color: #222;
}

/* Responsive */
@media (max-width: 768px) {
    .agenda-card {
        margin-bottom: 20px;
    }
}

/* About Us END */

/* Status Check */
/* Status page overrides */
.custom-alert {
    border-left: 5px solid var(--bs-primary);
    border-radius: 8px;
    background-color: #f9fafb;
}

.alert-danger.custom-alert {
    border-left-color: #dc3545 !important;
}

.alert-success.custom-alert {
    border-left-color: #198754 !important;
}

.alert-warning.custom-alert {
    border-left-color: #ffc107 !important;
}

.alert-info.custom-alert {
    border-left-color: #0d6efd !important;
}

/* Status Check END */

/* Freelancer id works */

/* BANNER */
/* Container perspective for 3D look */
.freelancer-card-container {
    perspective: 1200px;
    width: 360px;
    height: 220px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* Card base styles */
.freelancer-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: cardFlip 10s infinite ease-in-out;
}

/* Front & back sides */
.card-side {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 1s ease;
}

.card-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Back side rotation */
.card-side.back {
    transform: rotateY(180deg);
}

/* Card auto-flip animation */
@keyframes cardFlip {
    0%,
    100% {
        transform: rotateY(0deg);
    }
    45%,
    55% {
        transform: rotateY(180deg);
    }
}

/* Soft floating motion */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* BANNER END */
@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/inter/Inter-Italic-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

body {
    font-family: 'Inter', sans-serif;
}

/* For essential_documents */
.essential-list {
    padding-left: 1.2rem;
    margin: 0;
}

.essential-item {
    margin-bottom: 18px;
}

.essential-item__title {
    font-size: 16px;
    margin-bottom: 6px;
}

.essential-item__desc {
    color: #475569;
    line-height: 1.6;
}

.essential-card {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    border-radius: 10px;
    padding: 12px 14px;
}

.essential-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.essential-bullets {
    padding-left: 18px;
}

.essential-bullets li {
    margin-bottom: 8px;
    color: #475569;
    line-height: 1.6;
}

.essential-note {
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    color: #334155;
}

.nid-sample-single {
    max-width: 320px;
}

.nid-sample-single img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.income-proof-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    background: #ffffff;
}

.income-group {
    margin-bottom: 16px;
}

.income-group h6 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #0f172a;
}

.income-group ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.income-group li {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 6px;
}
.bangla_font {font-family: Tiro Bangla,SolaimanLipi,serif !important;}
