/* =========================================
   ABOUT HERO SECTION
========================================= */

.about-hero {
    padding: 80px 0;
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}

/* LEFT SIDE */
.about-tag {
    font-size: 14px;
    font-weight: 600;
    color: #4F46E5;
    margin-bottom: 10px;
    display: inline-block;
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
}

.about-title span {
    color: #22c55e;
}

.about-desc {
    margin-top: 15px;
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

/* LIST */
.about-list {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.about-list li {
    margin-bottom: 12px;
    font-weight: 500;
    color: #334155;
}

.about-list i {
    color: #4F46E5;
    margin-right: 10px;
}

/* RIGHT IMAGE */
.about-img-wrap {
    position: relative;
    z-index: 2;
}

/* BACKGROUND SHAPE */
.about-hero::after {
    content: "";
    position: absolute;
    right: -100px;
    top: 0;
    width: 500px;
    height: 100%;
    background: linear-gradient(135deg, #4F46E5, #22c55e);
    border-radius: 50% 0 0 50%;
    z-index: 1;
    opacity: 0.1;
}

/* IMAGE FIX */
.about-img-wrap img {
    max-width: 100%;
    border-radius: 10px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 992px) {

    .about-title {
        font-size: 32px;
    }

    .about-hero {
        text-align: center;
    }

    .about-hero::after {
        display: none;
    }

}


/* =========================================
   STATS BAR SECTION
========================================= */

.stats-bar {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.stats-bar .container {
    background: linear-gradient(135deg, #1e3a8a, #4F46E5);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ITEMS */
.stat-item {
    color: #fff;
    padding: 15px;
    position: relative;
}

/* ICON */
.stat-item i {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

/* NUMBER */
.stat-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

/* TEXT */
.stat-item p {
    font-size: 14px;
    opacity: 0.9;
}
.counter {
    transition: all 0.3s ease;
}

/* DIVIDER LINE (DESKTOP) */
@media (min-width: 992px) {
    .stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(255,255,255,0.2);
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .stats-bar {
        margin-top: 20px;
    }

    .stat-item h3 {
        font-size: 20px;
    }

}


/* =========================================
   MISSION VISION VALUES
========================================= */

.mvv-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* TITLE */
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
}

.underline {
    width: 60px;
    height: 4px;
    background: #22c55e;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* CARD */
.mvv-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: left;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.mvv-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mvv-card .icon i {
    font-size: 24px;
    color: #fff;
}

/* ICON COLORS */
.icon.blue {
    background: linear-gradient(135deg, #4F46E5, #6366F1);
}

.icon.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* TEXT */
.mvv-card h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.mvv-card p {
    color: #64748b;
    font-size: 15px;
}

/* VALUES LIST */
.values-list {
    padding-left: 0;
    list-style: none;
}

.values-list li {
    margin-bottom: 8px;
    color: #334155;
    position: relative;
    padding-left: 20px;
}

.values-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .mvv-card {
        text-align: center;
    }

    .mvv-card .icon {
        margin: 0 auto 15px;
    }

}

/* =========================================
   TIMELINE SECTION
========================================= */

.timeline-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* MAIN LINE */
.timeline {
    position: relative;
    margin-top: 50px;
    padding-left: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #4F46E5;
}

/* ITEM */
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

/* DOT */
.timeline-dot {
    position: absolute;
    left: -2px;
    top: 5px;

    width: 14px;
    height: 14px;

    background: #4F46E5;
    border-radius: 50%;

    box-shadow: 0 0 0 4px #e0e7ff;
}

/* CONTENT */
.timeline-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.05);

    transition: 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

/* YEAR */
.timeline-content .year {
    font-size: 13px;
    font-weight: 600;
    color: #4F46E5;
}

/* TITLE */
.timeline-content h5 {
    margin-top: 5px;
    font-weight: 600;
}

/* TEXT */
.timeline-content p {
    font-size: 14px;
    color: #64748b;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (min-width: 992px) {

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        width: 50%;
        padding: 0 30px;
    }

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
    }

    .timeline-dot {
        left: 50%;
        transform: translateX(-50%);
    }

}

/* =========================================
   TEAM SECTION
========================================= */

.team-section {
    padding: 80px 0;
    background: #ffffff;
}

/* CARD */
.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
}

/* FOUNDER SPECIAL */
.team-card.founder {
    border: 2px solid #4F46E5;
}

/* IMAGE */
.team-img {
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

.team-card:hover img {
    transform: scale(1.08);
}

/* INFO */
.team-info {
    padding: 20px;
}

.team-info h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.team-info span {
    font-size: 14px;
    color: #64748b;
}

/* SOCIAL */
.team-social {
    margin-top: 12px;
}

.team-social a {
    display: inline-block;
    margin: 0 5px;
    color: #4F46E5;
    font-size: 16px;
    transition: 0.3s;
}

.team-social a:hover {
    color: #22c55e;
}

/* RESPONSIVE */
@media(max-width:768px){

    .team-img img {
        height: 220px;
    }

}

/* =========================================
   CTA BANNER
========================================= */

.cta-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* MAIN BOX */
.cta-box {
    background: linear-gradient(135deg, #4F46E5, #22c55e);
    border-radius: 20px;
    padding: 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* TEXT */
.cta-box h2 {
    font-size: 32px;
    font-weight: 700;
}

.cta-box p {
    margin-top: 10px;
    font-size: 15px;
    opacity: 0.9;
}

/* BUTTONS */
.cta-buttons {
    margin-top: 20px;
}

.cta-buttons .btn {
    margin-right: 10px;
    padding: 10px 20px;
    font-weight: 500;
}

/* IMAGE */
.cta-img {
    max-height: 280px;
}

/* BACKGROUND SHAPE */
.cta-box::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-box::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* RESPONSIVE */
@media(max-width:768px){

    .cta-box {
        padding: 30px;
        text-align: center;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .cta-img {
        margin-top: 20px;
    }

}

/* =========================================
   TESTIMONIAL SECTION
========================================= */

.testimonial-section {
    padding: 80px 0;
    background: #ffffff;
}

/* CARD */
.testimonial-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);

    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* TOP */
.testimonial-top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-top img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.testimonial-top h6 {
    margin: 0;
    font-weight: 600;
}

.testimonial-top span {
    font-size: 13px;
    color: #64748b;
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    color: #475569;
    margin-bottom: 10px;
}

/* RATING */
.rating {
    color: #f59e0b;
    font-size: 14px;
}

/* CAROUSEL CUSTOM */

.carousel-indicators button {
    background-color: #4F46E5;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #4F46E5;
    border-radius: 50%;
    padding: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .testimonial-card {
        padding: 20px;
    }

}