﻿@font-face {
    font-family: "HindSiliguriWeb";
    src: url("/fonts/Hind_Siliguri_Regular.woff2") format("woff2"), url("/fonts/Hind_Siliguri_Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "LiSirajeeSanjarWeb";
    src: url("/fonts/Li_Sirajee_Sanjar.woff2") format("woff2"), url("/fonts/Li_Sirajee_Sanjar.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.bangla-text {
    font-family: "HindSiliguriWeb" !important;
}

.about-us-header {
    position: relative;
    background: linear-gradient(180deg, rgba(97, 255, 115, 0.35) 0%, #ffffff 75%);
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.about-us-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/images/about-header-bg.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.about-us-header > div {
    position: relative;
    z-index: 1;
    width: 100%;
}


@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.about-us-header-title {
    color: #14532d;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    text-align: center;
}

.about-us-header-subtitle {
    font-family: 'LiSirajeeSanjarWeb' !important;
    font-size: 1.7rem;
    color: rgb(39, 39, 39);
    opacity: 0.95;
    max-width: 1600px;
    margin: 0 auto;
    text-align: justify;
    padding: 0px 40px;
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.line-clamp.expanded {
    -webkit-line-clamp: unset;
}

.read-more-toggle {
    margin-top: 12px;
    background: none;
    border: none;
    color: #15803d; 
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.2s ease;
}

.read-more-toggle:hover {
    color: #166534;
}

.read-more-toggle.rotated {
    transform: rotate(180deg);
}

.profile-card {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #deffecba);
    border: 1px solid #dde5ff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    padding: 28px 28px;
    overflow: hidden;
    margin-bottom: 40px;
}

.profile-card::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at center, rgb(139 255 137 / 38%), transparent 60%);
    opacity: 0.7;
}

.profile-img {
    width: 280px;
    height: 280px;
    border-radius: 18px;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 26px;
    font-weight: 700;
    color: rgb(0 144 59);
}

.profile-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgb(173 229 191 / 34%);
    color: #317d0b;
    font-size: 14px;
    font-weight: 600;
    margin: 6px 0 14px;
}

.profile-role-badge i {
    font-size: 16px;
}

.profile-info p {
    font-size: 16px;
    color: #374861;
    line-height: 1.8;
    margin-bottom: 8px;
}

.profile-contact {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.bio-text {
    font-size: 18px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bio-text.expanded {
    -webkit-line-clamp: unset;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: #0A4EC2;
    cursor: pointer;
    display: inline-block;
    margin-top: 2px;
}

.read-more-founder-dev {
    color: #0ac288 !important;
}

.read-more:hover {
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgb(234 255 242);
}

.contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgb(10 208 82 / 9%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #0ad087;
    font-size: 18px;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7b8ba6;
    margin-bottom: 1px;
}

.contact-value {
    font-size: 14px;
    color: #34435c;
    font-weight: 600;
    word-break: break-all;
}

.contact-value a {
    color: #0ad096;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

.panel-card {
    background: #ffffff;
    border: 1px solid #e4e9f7;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    transition: 0.25s ease;
    height: 100%;
}

.panel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.panel-img {
    width: 130px;
    height: 130px;
    border-radius: 14px;
    object-fit: cover;
    background: #f1f5ff;
    flex-shrink: 0;
}

.panel-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 4px 0;
    color: #0A4EC2;
}

.panel-role {
    font-size: 14px;
    font-weight: 600;
    color: #1FB6CE;
    margin-bottom: 8px;
}

.panel-info p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 8px;
}

.panel-contact {
    font-size: 15px;
    font-weight: 600;
    color: #444f64;
}

@media (max-width: 576px) {
    .panel-img {
        width: 100px;
        height: 100px;
    }
}

.mv-box {
    background: white;
    padding: 22px 20px;
    border-radius: 16px;
    border: 1px solid #e2e8ff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    height: 100%;
}

.mv-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0A4EC2;
    margin-bottom: 10px;
}

.mv-box p {
    font-size: 16px;
    color: #4a5b78;
    line-height: 1.7;
    margin: 0;
}

.cta-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff, #e8f3ff);
    text-align: center;
}

.cta-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0A4EC2;
}

.cta-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #0A4EC2, #1FB6CE);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-top: 14px;
}

.cta-btn:hover {
    opacity: 0.92;
}

@media (max-width: 768px) {
    .profile-card {
        padding: 22px 20px;
    }

    .profile-img {
        width: 170px;
        height: 170px;
    }

    .profile-contact {
        grid-template-columns: 1fr; 
    }
}

.panel-section-bg {
    background: #f8fbff;
    padding: 60px 20px;
    border-radius: 22px;
    border: 1px solid #dbe3ff;
}
