/* ========================================= */
/* ABOUT PAGE REDESIGN (MATCHING USER IMAGE) */
/* ========================================= */

.about-main-section {
    padding: 80px 0 100px;
    background-color: #0f172a;
    /* Match Index Hero */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    overflow: hidden;
    /* For decorative elements */

}

.about-redesign-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* LEFT CONTENT COLUMN */
.about-content-col {
    padding-top: 20px;
}

.sub-tag {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #dfdfdf;
    /* Dark grey */
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-family: var(--font-secondary);
}

.about-content-col h1 {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 5px;
    /* Tight with underline */
}

.highlight-red {
    color: rgb(172, 23, 23);
    /* Bright Red as per image */
}

.title-underline {
    margin-bottom: 30px;
    margin-top: -10px;
}

.main-desc {
    color: #fffdfd;
    line-height: 1.7;
    margin-bottom: 50px;
    font-size: 15px;
    text-align: justify;
}

/* Icons for M/V */
/* Mission/Vision Tabs */
.mission-vision-tabs {
    display: flex;
    gap: 150px;
    margin-bottom: 25px;
    justify-content: center;
}

.mv-tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mv-tab-btn.active {
    background: #fff;
    color: #183357;
    border-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mv-tab-content {
    display: none;
    animation: fadeInMV 0.4s ease-out;
}

.mv-tab-content.active {
    display: block;
}

.mv-tab-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mv-tab-content h3 i {
    color: #38bdf8;
    /* Light Blue accent */
    font-size: 24px;
}

.mv-tab-content p {
    font-size: 15px;
    color: #e2e8f0;
    line-height: 1.7;
    line-height: 1.7;
    text-align: center;
}

@keyframes fadeInMV {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* RIGHT IMAGES COLUMN (COLLAGE) */
.about-images-col {
    position: relative;
    padding-left: 20px;
}

.image-collage-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 20px;
}

/* Item 1: Large Left Image (e.g. Student working) */
.collage-item.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: 20px;
    border-top-left-radius: 60px;
    /* Custom shape */
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Item 2: Top Right */
.collage-item.item-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    border-radius: 20px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Item 3: Bottom Right */
.collage-item.item-3 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    border-radius: 20px;
    border-top-left-radius: 60px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Background Dots Decoration */
.dots-pattern {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-image: radial-gradient(#10b981 2px, transparent 2px);
    /* Green dots approx */
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.3;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-redesign-grid {
        grid-template-columns: 1fr;
    }

    .about-content-col {
        margin-bottom: 50px;
    }

    .image-collage-grid {
        height: auto;
        grid-template-columns: 1fr 1fr;
        /* Keep 2 col or switch to auto */
    }
}

@media (max-width: 600px) {
    .image-collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .collage-item.item-1,
    .collage-item.item-2,
    .collage-item.item-3 {
        grid-column: auto;
        grid-row: auto;
        height: 250px;
    }

    .mission-vision-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* MOVING STATS COUNTER */
/* ========================================= */
.counter-stats-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 240px;
}

.counter-item {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    transition: transform 0.3s;
    /* Optional: Card shadow if desired, user image has clean white look */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.03); */
}

.counter-item:hover {
    transform: translateY(-5px);
}

.counter-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
}

/* Specific icon background colors based on image */
.green-bg {
    background: #e6fcf4;
    color: #00b074;
}

.red-bg {
    background: #ffeaea;
    color: #ff4646;
}

.blue-bg {
    background: #eef2ff;
    color: #4f46e5;
}

.orange-bg {
    background: #fff5e6;
    color: #ff9f43;
}

.counter-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 10px;
}

.counter-value {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.plus-sign {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
}

.counter-label {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}


/* ========================================= */
/* BENEFICIAL / WHY CHOOSE US STYLES */
/* ========================================= */
.beneficial-section {
    padding: 80px 0 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* Background Circle Decoration (Top Right like image) */
.beneficial-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    z-index: 0;
}

.beneficial-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.ben-header {
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
    max-width: 700px;
}

.ben-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    text-align: center;
}

.ben-header .sub-tag {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.ben-header .title-underline {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.ben-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.ben-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
    text-align: center;
    position: relative;
    padding-bottom: 30px;
    transition: transform 0.3s;
}

.ben-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ben-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.ben-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.ben-card:hover .ben-img img {
    transform: scale(1.05);
}

/* Overlapping Icon Circle */
.ben-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px;
    margin: -35px auto 20px;
    /* Negative top margin to overlap */
    position: relative;
    z-index: 2;
    border: 4px solid #fff;
    /* White border to separate from img */
}

.icon-teal {
    background: #14b8a6;
}

/* Teal */
.icon-pink {
    background: #f43f5e;
}

/* Pink/Red */
.icon-blue {
    background: #3b82f6;
}

/* Blue */

.ben-content {
    padding: 0 25px;
}

.ben-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.ben-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .ben-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ========================================= */
/* CAMPUS VIDEO SECTION (ENHANCED) */
/* ========================================= */
/* ========================================= */
/* CAMPUS VIDEO & REVIEWS SECTION */
/* ========================================= */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Video Column (Left) */
.testi-video-col {
    width: 100%;
}

.video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 5px solid #fff;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reviews Column (Right) */
.reviews-col {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.reviews-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
}

.review-carousel {
    position: relative;
    min-height: 200px;
}

.review-item {
    display: none;
    animation: fadeReview 0.6s ease-out;
}

.review-item.active {
    display: block;
}

.review-quote {
    font-size: 60px;
    color: #e2e8f0;
    line-height: 1;
    margin-bottom: -20px;
    display: block;
}

.review-text {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.profile-initial {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d4ed8, #60a5fa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: 2px solid #fff;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.author-info span {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Navigation Buttons */
.review-nav {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.review-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    color: #334155;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-btn:hover {
    background: #183357;
    /* Theme Dark Blue */
    color: #fff;
    transform: translateY(-2px);
}

@keyframes fadeReview {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .testi-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reviews-col {
        padding: 30px;
    }
}