* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #f0f7ff;
    color: #1a365d;
    line-height: 1.6;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 15px;
}

/* Header */
.school-header {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.school-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #22c1c3, #fdbb2d);
    border-radius: 2px;
}

.school-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #22c1c3, #fdbb2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.school-level {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.school-highlight {
    background: linear-gradient(135deg, #22c1c3, #fdbb2d);
    color: white;
    display: inline-block;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
    box-shadow: 0 6px 15px rgba(29, 78, 216, 0.2);
}

.school-tagline {
    font-size: 1.2rem;
    color: #4a5568;
    font-weight: 500;
    max-width: 750px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.school-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.school-stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #22c1c3;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vision & Mission */
.vm-section {
    margin-bottom: 30px;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.vm-card {
    border-radius: 18px;
    padding: 25px 20px;
    box-shadow: 0 12px 25px rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.12);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #22c1c3, #fdbb2d);
}

.vm-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #22c1c3, #fdbb2d);
    box-shadow: 0 8px 15px rgba(29, 78, 216, 0.2);
}

.mission-card .vm-icon {
    background: linear-gradient(135deg, #fdbb2d, #ff6a3d);
}

.vm-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 15px;
    font-weight: 800;
}

.vm-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Approach */
.approach-section {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 30px;
    box-shadow: 0 12px 25px rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 800;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #22c1c3, #fdbb2d);
    border-radius: 2px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.approach-item {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.approach-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 12px 25px rgba(29, 78, 216, 0.1);
    border-color: #fdbb2d;
}

.approach-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: white;
    background: linear-gradient(135deg, #22c1c3, #fdbb2d);
    box-shadow: 0 8px 12px rgba(29, 78, 216, 0.2);
}

.approach-item:nth-child(2) .approach-icon {
    background: linear-gradient(135deg, #fdbb2d, #ff6a3d);
}

.approach-item:nth-child(3) .approach-icon {
    background: linear-gradient(135deg, #ff6a3d, #ff3d3d);
}

.approach-item h3 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 700;
}

.approach-item p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
    flex-grow: 1;
}

/* Structure */
.structure-section {
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.05), rgba(253, 187, 45, 0.02));
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.structure-level {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.structure-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(29, 78, 216, 0.1);
    border-color: #fdbb2d;
}

.structure-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #22c1c3, #fdbb2d);
}

.level-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: white;
    background: linear-gradient(135deg, #22c1c3, #fdbb2d);
    box-shadow: 0 6px 12px rgba(29, 78, 216, 0.2);
}

.structure-level h3 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 8px;
    font-weight: 700;
}

.structure-level .grade-range {
    font-size: 0.95rem;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 10px;
    padding: 4px 12px;
    background: rgba(253, 187, 45, 0.15);
    border-radius: 15px;
    display: inline-block;
}

.structure-level p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
    flex-grow: 1;
}

/* Leadership */
.leadership-section {
    margin-bottom: 30px;
}

.leadership-header {
    text-align: center;
    margin-bottom: 20px;
}

.leadership-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 800;
}

.leadership-subtitle {
    font-size: 1rem;
    color: #4a5568;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.leader-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    gap: 15px;
    align-items: center;
    min-height: 140px;
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(29, 78, 216, 0.12);
}

.leader-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 6px 15px rgba(29, 78, 216, 0.15);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-photo:hover img {
    transform: scale(1.05);
}

.leader-info {
    flex: 1;
}

.leader-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 3px;
    font-weight: 800;
}

.leader-role {
    font-size: 0.85rem;
    color: #f59e0b;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.leader-quote {
    font-size: 0.9rem;
    color: #22c1c3;
    font-style: italic;
    margin-bottom: 5px;
    padding-left: 10px;
    border-left: 3px solid #22c1c3;
    line-height: 1.4;
}

.leader-message {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.4;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #fdbb2d, transparent);
    margin: 30px 0;
}


/* admission */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #f0f7ff;
    color: #1a365d;
    line-height: 1.6;
}

.admission-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 15px;
}

/* Header */
.admission-header {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.admission-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #22c1c3, #fdbb2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.admission-header p {
    font-size: 1.2rem;
    color: #4a5568;
    font-weight: 500;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Title */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #1a365d;
    margin-bottom: 20px;
    font-weight: 800;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #22c1c3, #fdbb2d);
    border-radius: 2px;
}

/* Admission Steps Grid */
.admission-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.step-card {
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 12px 25px rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.12);
    border-color: #fdbb2d;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #22c1c3, #fdbb2d);
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #22c1c3, #fdbb2d);
    box-shadow: 0 8px 15px rgba(29, 78, 216, 0.2);
}

.step-card:nth-child(2) .step-icon {
    background: linear-gradient(135deg, #fdbb2d, #ff6a3d);
}

.step-card:nth-child(3) .step-icon {
    background: linear-gradient(135deg, #ff6a3d, #ff3d3d);
}

.step-card:nth-child(4) .step-icon {
    background: linear-gradient(135deg, #22c1c3, #ff6a3d);
}

.step-card h3 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-card p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
}

/* Notes Section */
.admission-notes {
    margin-top: 30px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.admission-notes h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 10px;
    font-weight: 700;
}

.admission-notes p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.5;
}

/* Transport Section */
.transport-section {
    margin-top: 40px;
    background: white;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 12px 25px rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.transport-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #1a365d;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 800;
    position: relative;
}

.transport-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #22c1c3, #fdbb2d);
    border-radius: 2px;
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.transport-card {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: #f8fafc;
    box-shadow: 0 10px 20px rgba(29, 78, 216, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s;
}

.transport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.12);
}

.transport-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
    background: linear-gradient(135deg, #22c1c3, #fdbb2d);
    box-shadow: 0 8px 15px rgba(29, 78, 216, 0.2);
}

.transport-card:nth-child(2) .transport-icon {
    background: linear-gradient(135deg, #fdbb2d, #ff6a3d);
}

.transport-card:nth-child(3) .transport-icon {
    background: linear-gradient(135deg, #ff6a3d, #ff3d3d);
}

.transport-card h3 {
    font-size: 1.1rem;
    color: #1a365d;
    margin-bottom: 8px;
    font-weight: 700;
}

.transport-card p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
}

/* Responsive */
@media (max-width:768px) {
    .admission-header h1 {
        font-size: 2.2rem;
    }
}


/* ----------fee--------- */*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Plus Jakarta Sans',sans-serif;
    background:#f8fbff;
    color:#1e293b;
}

.container{
    max-width:1100px;
    margin:auto;
    padding:15px 16px 40px;
}

/* PAGE HEADER */
.page-header{
    background:white;
    padding:22px 18px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 8px 20px rgba(2,132,199,0.08);
    margin-bottom:18px;
    border:1px solid #e0f2fe;
}

.page-header h1{
    font-family:'Montserrat',sans-serif;
    font-size:2.3rem;
    font-weight:800;
    background:linear-gradient(135deg,#0284c7,#0ea5e9);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    margin-bottom:4px;
}

.page-header p{
    font-size:0.95rem;
    color:#475569;
}

/* SECTION TITLE */
.section-heading{
    text-align:center;
    margin:22px 0 10px;
}

.section-heading h2{
    font-family:'Montserrat',sans-serif;
    font-size:1.6rem;
    font-weight:800;
    color:#0f172a;
}

.heading-line{
    display:block;
    width:60px;
    height:4px;
    background:linear-gradient(90deg,#0284c7,#22c55e);
    margin:6px auto 0;
    border-radius:3px;
}





/* TABLE WRAP */
.table-wrap{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(2,132,199,0.08);
    border:1px solid #e0f2fe;
}

/* TABLE */
table{
    width:100%;
    border-collapse:collapse;
}

th{
    background:linear-gradient(135deg,#0284c7,#0ea5e9);
    color:white;
    padding:12px;
    font-size:0.95rem;
    font-weight:700;
}

td{
    padding:11px;
    text-align:center;
    border-bottom:1px solid #e5e7eb;
    font-size:0.9rem;
}

tr:last-child td{
    border-bottom:none;
}

tr:hover td{
    background:#f0f9ff;
}

/* NOTE */
.note-box{
    margin-top:14px;
    background:#f0f9ff;
    border-left:4px solid #0284c7;
    padding:14px 16px;
    border-radius:10px;
    font-size:0.9rem;
    color:#075985;
    box-shadow:0 6px 14px rgba(2,132,199,0.08);
}

/* RESPONSIVE */
@media(max-width:768px){
    .page-header h1{
        font-size:1.9rem;
    }
    th, td{
        padding:9px;
        font-size:0.85rem;
    }
}




/* Modern Color Scheme */
    .cbse-navy { color: #1e3a8a; }
    .cbse-blue { color: #2563eb; }
    .cbse-light-blue { color: #3b82f6; }
    .cbse-saffron { color: #f97316; }
    .cbse-light-saffron { color: #fb923c; }
    .cbse-cream { color: #fef3c7; }
    
    body {
        font-family: 'Poppins', sans-serif;
        background: #f8fafc;
        color: #1e293b;
        margin: 0;
        padding: 0;
        line-height: 1.6;
    }
    
    .container {
        max-width: 1200px;
        margin: auto;
        padding: 20px;
    }

    /* Modern Header/Banner */
    .page-header {
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
        border-radius: 24px;
        color: white;
        margin-bottom: 50px;
        box-shadow: 0 20px 60px rgba(30, 58, 138, 0.2);
        position: relative;
        overflow: hidden;
        border-bottom: 6px solid #f97316;
    }
    
    .page-header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 80%, rgba(251, 146, 60, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(30, 58, 138, 0.2) 0%, transparent 50%);
    }
    
    .page-header::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 5%;
        width: 90%;
        height: 20px;
        background: rgba(249, 115, 22, 0.3);
        filter: blur(15px);
        border-radius: 50%;
    }
    
    .header-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .page-header h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 3.5rem;
        font-weight: 900;
        letter-spacing: -1px;
        margin-bottom: 15px;
        background: linear-gradient(to right, #fff 0%, #fef3c7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .page-header .subtitle {
        font-size: 1.3rem;
        font-weight: 400;
        opacity: 0.9;
        margin-bottom: 25px;
        line-height: 1.5;
        color: #e2e8f0;
    }
    
    .header-badges {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 25px;
    }
    
    .badge {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 12px 24px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }
    
    .badge:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .badge-primary {
        background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
        border: none;
    }
    
    .badge-primary:hover {
        background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
    }
    
    .badge i {
        font-size: 1rem;
    }

    /* Faculty Group Card */
    .group-card {
        display: flex;
        align-items: stretch;
        background: #ffffff;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        margin-bottom: 30px;
        overflow: hidden;
        transition: all 0.4s ease;
        border-left: 5px solid #2563eb;
        border-top: 1px solid #e2e8f0;
    }
    
    .group-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        border-left-color: #f97316;
    }
    
    .group-photo {
        flex: 1;
        min-width: 280px;
        max-width: 350px;
        height: 280px;
        overflow: hidden;
        position: relative;
    }
    
    .group-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .group-card:hover .group-photo img {
        transform: scale(1.05);
    }
    
    .photo-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px;
        background: linear-gradient(to top, rgba(30, 58, 138, 0.8), transparent);
        color: white;
    }
    
    .photo-overlay .teacher-count {
        font-size: 0.85rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .group-info {
        flex: 2;
        padding: 25px 30px;
        display: flex;
        flex-direction: column;
    }
    
    .group-info h2 {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.8rem;
        color: #1e3a8a;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .group-info h2 i {
        font-size: 1.4rem;
        color: #f97316;
    }
    
    .group-info .description {
        font-size: 1rem;
        color: #475569;
        line-height: 1.7;
        margin-bottom: 20px;
        flex-grow: 1;
        position: relative;
        overflow: hidden;
    }
    
    .group-info .description.collapsed {
        max-height: 80px;
    }
    
    .group-info .description.expanded {
        max-height: 500px;
    }
    
    .group-details {
        background: #f1f5f9;
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 15px;
        border-left: 3px solid #3b82f6;
    }
    
    .roles {
        font-size: 0.9rem;
        color: #2563eb;
        font-weight: 500;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .roles i {
        font-size: 0.9rem;
        color: #f97316;
    }
    
    .contact {
        font-size: 0.85rem;
        color: #64748b;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .contact i {
        font-size: 0.9rem;
        color: #2563eb;
    }
    
    .toggle-btn {
        align-self: flex-start;
        padding: 10px 20px;
        background: #2563eb;
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
    }
    
    .toggle-btn:hover {
        background: #f97316;
        transform: translateY(-2px);
    }
    
    .toggle-btn i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .toggle-btn.expanded i {
        transform: rotate(180deg);
    }
    
    /* Stats Bar */
    .stats-bar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .stat-box {
        background: white;
        padding: 25px 20px;
        border-radius: 16px;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        border-top: 4px solid #f97316;
        position: relative;
        overflow: hidden;
    }
    
    .stat-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #f97316, #2563eb);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    }
    
    .stat-box:hover::before {
        opacity: 1;
    }
    
    .stat-number {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: #1e3a8a;
        display: block;
        margin-bottom: 5px;
        line-height: 1;
    }
    
    .stat-label {
        font-size: 0.95rem;
        color: #475569;
        font-weight: 500;
    }
    
    /* Responsive */
    @media (max-width: 900px) {
        .group-card {
            flex-direction: column;
        }
        
        .group-photo {
            width: 100%;
            max-width: 100%;
            height: 250px;
        }
        
        .page-header h1 {
            font-size: 2.5rem;
        }
        
        .page-header .subtitle {
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 600px) {
        .page-header {
            padding: 40px 15px;
            border-radius: 16px;
        }
        
        .page-header h1 {
            font-size: 2rem;
        }
        
        .page-header .subtitle {
            font-size: 1rem;
        }
        
        .group-info {
            padding: 20px;
        }
        
        .group-info h2 {
            font-size: 1.5rem;
        }
        
        .stats-bar {
            grid-template-columns: 1fr;
        }
        
        .header-badges {
            flex-direction: column;
            align-items: center;
        }
        
        .badge {
            width: 100%;
            max-width: 250px;
            justify-content: center;
        }
    }
    
    /* Animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .group-card {
        animation: fadeIn 0.6s ease forwards;
    }
    
    /* Floating elements animation */
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }
    
    .page-header h1 {
        animation: float 6s ease-in-out infinite;
    }