/* General Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.fheading{
	  font-family: "Baskerville Old Face", "Times New Roman", serif;
	}

body {
    background: linear-gradient(to left, #223B54, #396892);
    color: #333;
    line-height: 1.6;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto; 
    font-family: "Bahnschrift SemiLight Condensed", "Segoe UI", Tahoma, Geneva, sans-serif;
}

/* Header Styles */
header {
	padding: 10px 20px;
    border-bottom: 1px solid #ddd;
    background: linear-gradient(to left, #223B54, #396892);
    color: #fff;
    text-align: center;
}

header img {
    height: 100px;
}

header h1 {
	font-family: "Lucida Console", "Courier New", monospace;
    margin: 0;
    font-size: 1.8rem;
	color: white
    margin-bottom: 0.5rem;
}

/* Section Styles */
.section {
    padding: 2rem 5%;
    background: #fff;
    margin: 1rem auto;
    max-width: 1300px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section p, .section ul {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.section ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

/* Image Styles */
.about-img {
    width: 100%;
    max-width: 300px;
	max-height: 300px;
    margin: 0.2rem 0;
    border-radius: 10px;
    
}
.about-img1 {
    width: 100%;
    max-width: 250px;
    max-height: 300px;
    margin: 0.2rem 0;
    border-radius: 10px;

    /* Flexbox alignment */
    display: flex;
    align-items: center;      /* Vertical centering */
    justify-content: flex-end; /* Aligns to the right */

    /* Wrapping and spacing */
    flex-wrap: wrap;
    gap: 1rem;
}

.about-img2 {
    width: 100%;
    max-width: 300px;
	max-height: 300px;
    margin: 0.2rem 0;
    border-radius: 10px;
    
}

.team-images {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
footer {
    background: linear-gradient(to left, #223B54, #396892);
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}
