/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url('../blogs/generalblogstyling.css');

/* About Section */
.about {
    background: linear-gradient(#232932, #2c3138, #232932); /* Dark theme */
    padding: 50px 10%;
    color: white; /* Ensure text is visible */
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* About Content */
.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h1 {
    font-size: 2.5rem;
    color: #29a587; /* Use green from index page */
}

.about-content p {
    font-size: 1.1rem;
    color: #ddd; /* Light grey for better contrast */
    margin: 15px 0;
    line-height: 1.6;
}

/* Button */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #29a587; /* Green button */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #218c6b;
    transform: scale(1.05);
}

/* Profile Image */
.about-image {
    flex: 1;
    text-align: center;
}

/* .about-image img {
    width: 300px;
    border-radius: 50%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.about-image img:hover {
    transform: scale(1.05);
} */

.collegeLogo {
    width: 20px;
    height: 20;
    border-radius: 50%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}
.about-image img:hover {
    transform: scale(1.05);
}
/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
    margin-top: 30px;
}
