.btn-learn-more {
    display: inline-block;
    background: #dc3545; /* লাল রঙ */
    color: #fff;
    padding: 10px 25px;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}

.btn-learn-more:hover {
    background: #a71d2a;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 14px rgba(220, 53, 69, 0.5);
}

/*About us Team Section */
.team-img-wrapper {
        width: 180px;
        height: 180px;
        margin: 0 auto;
        border-radius: 50%;
        overflow: hidden;
        border: 5px solid #dc3545; /* লাল ফ্রেম */
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
    }
    .team-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* পুরো ফ্রেম ভরাট করবে */
    }


    /* 🌟 General Styles */
body {
    font-family: "Noto Sans Bengali", Arial, sans-serif;
    line-height: 1.6;
    color: #ff0000;
}


/* 🌟 Hero Section Custom Text Style */
.hero-title,
.hero-subtitle {
    display: inline-block;
    background: #dc3545;   /* লাল ব্যাকগ্রাউন্ড */
    color: #fff !important;/* সাদা টেক্সট */
    padding: 8px 20px;
    border-radius: 6px;
}


/* 🌟 Headings */
h1, h2, h3, h4, h5 {
    font-weight: 700;
}

/* 🌟 Team Section */
.team-img-wrapper {
    width: 180px;
    height: 180px;
    margin: 20px auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #dc3545;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-img-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* 🌟 Card Styles */
.card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* 🌟 Counter Section */
section[style*="#dc3545"] h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}
section[style*="#dc3545"] p {
    font-size: 1.1rem;
}

/* 🌟 Buttons */
.btn-danger {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}
.btn-danger:hover {
    background: #b02a37;
    transform: scale(1.05);
}

/* 🌟 Event Page */
.event-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card img {
    height: 220px;
    object-fit: cover;
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* 🌟 Responsive */
@media (max-width: 768px) {
    .team-img-wrapper {
        width: 140px;
        height: 140px;
    }
    section[style*="#dc3545"] h2 {
        font-size: 1.5rem;
    }
}
/*Frontend Adviser Photo card*/
.adviser-photo {
    width: 100%;          /* পুরো card এর প্রস্থ নেবে */
    height: 250px;        /* সব ফ্রেমের উচ্চতা একই হবে */
    object-fit: contain;  /* পুরো ছবি দেখা যাবে, কাটা যাবে না */
    background: #f1f1f1;  /* ফাঁকা জায়গায় হালকা ব্যাকগ্রাউন্ড */
    border-radius: 8px;
}
/* Frontend Committee Photo card */


/* member image styling */
.member-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #28a745;
    border-radius: 10px;
    margin: auto;
}

/* Responsive */
