/* extra-aboutstyle.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.about-image-wrapper {
    /* margin-top: 150px; */
    width: 100%;
    height: 400px; /* Increased height for better image display */
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.extra-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Optional overlay for better text readability if needed */
.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Slight dark overlay */
}

.about {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px;
    margin-top: 120px;
}

.heading {
    background-color: #3498db;

    color: white;
    padding: 15px 25px;
    margin: 0 -20px 25px;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.par {
    background-color: white;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.par b {
    color: #2c3e50;
}

.par li {
    margin-bottom: 10px;
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.par li:before {
    content: "•";
    color: #3498db;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.regrd {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-style: italic;
}

.regrd b {
    color: #3498db;
    font-style: normal;
}

/* Responsive design */
@media (max-width: 768px) {
    .about-image-wrapper {
        height: 250px;
    }
    
    .heading {
        font-size: 24px;
        padding: 12px 20px;
        margin-top: 110px;
    }
    
    .par {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .about-image-wrapper {
        height: 200px;
        
    }
}