* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

html {
    scroll-behavior: smooth;
}

/* ===== HERO SECTION ===== */
.about-hero {
    background: linear-gradient(135deg, #534f49 0%, #615c54 100%);
    color: white;
    padding: 150px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: url('../images/murali.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0.5;
    z-index: 0;
}


.hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.3rem;
    font-weight: 300;
}

/* ===== MAIN ABOUT SECTION ===== */
.about-main {
    padding: 80px 50px;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #1D4ED8;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}



.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}
/* ====== Mission and Vision =====*/

.vision-mission {
    padding: 80px 8%;
    background: #f8fafc;
}

.vm-container {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.vm-item {
    display: flex;
    align-items: center;
    gap: 50px;
}

.vm-item.reverse {
    flex-direction: row-reverse;
}

.vm-image {
    flex: 1;
}

.vm-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.vm-text {
    flex: 1;
}

.vm-text h2 {
    font-size: 34px;
    color: #1D4ED8;
    margin-bottom: 18px;
}

.vm-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

/* responsive */
@media (max-width: 768px) {
    .vm-item,
    .vm-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .vm-text h2 {
        font-size: 26px;
    }

    .vm-text p {
        font-size: 15px;
    }
}


/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.achievements-section h2 {
    font-size: 2.5rem;
    color: #F59E0B;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.achievements-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.achievement-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #F59E0B;
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(29, 78, 216, 0.14);
}

.achievement-icon {
    font-size: 50px;
    color: #F59E0B;
    margin-bottom: 20px;
}

.achievement-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.achievement-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

   

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 30px;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .about-main {
        padding: 60px 20px;
    }

    .about-text h2 {
        font-size: 2rem;
    }
    .achievement-card {
        padding: 25px;
    }

    .achievements-section {
        padding: 60px 20px;
    }

    .achievements-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 50px 20px;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-main {
        padding: 40px 20px;
    }

    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }

 
   
    .achievements-section {
        padding: 40px 20px;
    }

    .achievements-section h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .achievement-card {
        padding: 20px;
    }

    .achievement-icon {
        font-size: 40px;
    }

    .achievement-card h3 {
        font-size: 17px;
    }

    .achievement-card p {
        font-size: 13px;
    }
}

}