/* HERO SECTION */
.about-hero {
    background: linear-gradient(135deg, #2038afc2 0%, #03afffc7 100%), url('../img/bg3.jpg') no-repeat;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-hero p {
    font-size: 14px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 20px;
    }

    .about-hero h1 {
        font-size: 2.25rem;
    }
}



/* INTRO SECTION */
.lux-intro {
    padding: 100px 20px;
    background: #ffffff;
}

.lux-intro-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lux-intro-image-wrapper {
    position: relative;
    width: 100%;
    /* Ensure width is handled */
}

.lux-intro-bg-shape {
    position: absolute;
    inset: -20px;
    background: rgb(13 138 196);
    border-radius: 100px 0 100px 0;
    transform: rotate(3deg);
    transition: 0.4s;
}

.lux-intro-image-wrapper:hover .lux-intro-bg-shape {
    transform: rotate(0);
}

.lux-intro-image {
    position: relative;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 100px 0 100px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 100%;
    /* Prevent overflow */
}

.lux-intro-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    color: #1083b9;
}

.lux-line {
    height: 1px;
    width: 40px;
    background: #222;
}

.lux-intro-title {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.lux-intro-title span {
    color: #1083b9;
    font-style: italic;
}

.lux-intro-desc {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.4;
}

.lux-intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.lux-stat-box {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lux-stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.lux-counter {
    font-size: 32px;
    /* Adjusted size */
    font-weight: 700;
    margin-bottom: 8px;
    color: #00e0ff;
}

.lux-stat-box p {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    color: #ffffff;
}


@media (max-width: 992px) {
    .lux-intro-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lux-intro-image {
        height: 400px;
    }

    .lux-intro-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .lux-intro {
        padding: 60px 20px;
    }

    .lux-intro-image {
        height: 300px;
    }

    .lux-intro-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .lux-stat-box {
        padding: 15px 5px;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .lux-intro-title {
        font-size: 28px;
    }

    .lux-intro-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .lux-stat-box {
        padding: 12px 5px;
        max-width: none;
    }

    .lux-counter {
        font-size: 20px;
    }

    .lux-stat-box p {
        font-size: 10px;
    }

    .lux-intro-bg-shape {
        border-radius: 50px 0 50px 0;
        inset: -10px;
    }

    .lux-intro-image {
        border-radius: 50px 0 50px 0;
    }
}

/* =================Chairman section================= */

/* ================= Chairman Section Redesign ================= */

.chairman-section {
    padding: 120px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.chairman-section .glass-card {
    background: #ffffff;
    border-radius: 40px;
    padding: 25px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #f0f0f0;
}

.chairman-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: center;
}

/* Image Column */
.chairman-image-container {
    position: relative;
    width: 100%;
}

.image-border-glow {
    position: absolute;
    inset: -15px;
    border: 2px solid #3b82f6;
    border-radius: 30px;
    opacity: 0.1;
    z-index: 0;
}

.chairman-image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #3b82f6;
    color: white;
    padding: 30px;
    border-radius: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.experience-badge .number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 5px;
    font-weight: 600;
}

/* Text Content */
.message-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.chairman-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 30px;
}

.chairman-title span {
    color: #3b82f6;
}

.quote-container {
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.big-quote {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 40px;
    color: #3b82f6;
    opacity: 0.2;
}

.quote-container blockquote {
    font-size: 20px;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
    font-weight: 500;
}

.extended-message {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 90%;
}

.founder-signature-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
}

.signature-details h4 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
}

.signature-details p {
    color: #3b82f6;
    font-weight: 600;
    font-size: 15px;
}

.styled-sig {
    font-family: 'Dancing Script', cursive, serif;
    font-size: 42px;
    color: #0f172a;
    opacity: 0.8;
}

/* Responsive Chairman Section */
@media (max-width: 1200px) {
    .chairman-section .glass-card {
        padding: 50px;
    }

    .chairman-grid {
        grid-template-columns: 350px 1fr;
        gap: 50px;
    }

    .chairman-title {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .chairman-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-image-container {
        max-width: 400px;
        margin: 0 auto 50px;
    }

    .message-tag {
        justify-content: center;
    }

    .quote-container {
        padding-left: 0;
    }

    .big-quote {
        display: none;
    }

    .extended-message {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .founder-signature-wrap {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .chairman-section {
        padding: 80px 0;
    }

    .chairman-section .glass-card {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .chairman-title {
        font-size: 32px;
    }

    .quote-container blockquote {
        font-size: 18px;
    }

    .experience-badge {
        padding: 15px;
        right: -10px;
        bottom: -20px;
    }

    .experience-badge .number {
        font-size: 24px;
    }
}

/* Section Base */
.values-section {
    position: relative;
    padding: 100px 20px;
    background: url("../img/bg1.jpg") center/cover no-repeat;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    z-index: 1;
    border-bottom: 2px solid white;
}

/* Dark overlay */
.values-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(12, 30, 53, 0.92), rgba(12, 30, 53, 0.85));
    z-index: -1;
}

/* Soft Gradient Overlay */
.values-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2038af40 0%, #03afff82 100%);
    z-index: 0;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 42px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
}

.underline {
    width: 80px;
    height: 4px;
    background: #3b82f6;
    margin: auto;
    border-radius: 10px;
}

/* Grid Layout */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    align-items: stretch;
}

/* Glass Card */
.value-card {
    background: rgb(255 255 255 / 8%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 45px 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Icon Box */
.icon-box {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 32px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.icon-box.vision {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.icon-box.mission {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.value-card:hover .icon-box {
    transform: scale(1.1);
}

/* Titles */
.value-card h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Text */
.value-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
    color: #e4e6e9;
    font-weight: 400;
}

/* Read More */
.read-more {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
    margin-top: auto;
}

.read-more i {
    transition: 0.3s;
}

.value-card:hover .read-more i {
    transform: translateX(6px);
}

.vision-link {
    color: #ffffff;
}

.mission-link {
    color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 80px 20px;
    }

    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 500px) {
    .values-section {
        padding: 50px 15px;
    }

    .value-card {
        padding: 30px 25px;
        min-height: auto;
    }

    .value-card p {
        font-size: 14px;
        margin-bottom: 20px;
        display: block;
        overflow: visible;
        -webkit-line-clamp: initial;
        line-clamp: initial;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .value-card h3 {
        font-size: 18px;
    }
}

/* ================= MODAL STYLING ================= */
.lux-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.lux-modal.active {
    opacity: 1;
    visibility: visible;
}

.lux-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.lux-modal-content {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #fff;
}

.lux-modal.active .lux-modal-content {
    transform: translateY(0);
}

.lux-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: 0.3s;
}

.lux-modal-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.lux-modal-header h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #00e0ff;
    font-weight: 700;
}

.lux-modal-body p {
    font-size: 12px;
    line-height: 1.6;
    color: #e2e8f0;
}


.teamx-section {
    padding: 100px 20px;
    background: #f9fafc;
    font-family: 'Segoe UI', sans-serif;
}

.teamx-container {
    max-width: 1200px;
    margin: auto;
}

.teamx-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

/* The line */
.teamx-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #19c37d;
    /* green */
    margin: 15px auto 0;
    border-radius: 2px;
}

.teamx-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 60px;
    font-size: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.teamx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.teamx-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.teamx-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.teamx-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.teamx-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.teamx-card:hover .teamx-img img {
    transform: scale(1.05);
}

.teamx-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.teamx-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111827;
}

.teamx-role {
    color: #1083b9;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.teamx-desc {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.teamx-social {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.teamx-social a {
    color: #9ca3af;
    margin-right: 18px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.teamx-social a:hover {
    color: #1083b9;
}

@media (max-width: 992px) {
    .teamx-section {
        padding: 70px 20px;
    }

    .teamx-title {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .teamx-title {
        font-size: 28px;
    }

    .teamx-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .teamx-img {
        height: 240px;
    }
}