:root {
    --primary-color: "#1d8d0b";
    --secondary-color: "#ff5733";
  }

.key-features {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.key-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
   }

.section-title p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Fix for equal height cards */
.features-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.feature-col {
    padding: 15px;
    display: flex;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6b46c1, #e91e63);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #6b46c1, #e91e63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b46c1, #e91e63);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.2;
}

.feature-icon i {
    font-size: 40px;
    color: white;
}

.feature-content {
   
    display: flex;
    flex-direction: column;
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: #6b46c1;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
    
}

/* Statistics Section */


/* Responsive Design */
@media (max-width: 768px) {
    .key-features {
        padding: 30px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .features-row {
        margin: -10px;
    }
    
    .feature-col {
        padding: 10px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 35px;
    }
    
    .stats-section {
        padding: 40px 0;
        margin-top: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}
/* About Section */
.about-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(233, 30, 99, 0.1));
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(107, 70, 193, 0.1));
    border-radius: 50%;
    transform: translate(-50%, 50%);
    z-index: 1;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6b46c1, #e91e63);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-title .highlight {
    color: #6b46c1;
    position: relative;
}

.about-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #6b46c1, #e91e63);
    border-radius: 2px;
}

.about-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #495057;
}

.about-features li i {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #6b46c1, #e91e63);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 10px;
    flex-shrink: 0;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #6b46c1, #e91e63);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(107, 70, 193, 0.3);
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
    color: white;
    text-decoration: none;
}

.about-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* Image Section */
.about-image {
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(233, 30, 99, 0.1));
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    z-index: 3;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item-small {
    flex: 1;
}

.stat-number-small {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b46c1;
    display: block;
    margin-bottom: 5px;
}

.stat-label-small {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .about-stats {
        position: static;
        margin-top: 20px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item-small {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .about-features li {
        font-size: 0.9rem;
    }
}
/* Admission CTA Section */
.admission-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #6b46c1 0%, #e91e63 100%);
    position: relative;
    overflow: hidden;
}

.admission-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.admission-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.admission-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.admission-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.admission-highlight {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.admission-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.admission-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.admission-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.admission-feature i {
    color: #ffd700;
    font-size: 1.2rem;
}

.admission-btn {
    display: inline-flex;
    align-items: center;
    background: #ffd700;
    color: #333;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.admission-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    color: #333;
    text-decoration: none;
}

@media (max-width: 768px) {
    .admission-title {
        font-size: 2.2rem;
    }
    
    .admission-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

