/* styles.css */
/* Reset some default browser styles */
body {
    font-family: 'Your Bengali Font', Arial, sans-serif;
}
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Style header */
header {
    background-color: #390c74;
    color: #fff;
    text-align: center;
    padding: 25px;
}

header h1 {
    font-size: 36x;
}

/* Style navigation menu */
nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Style hero section */
/* styles.css */
/* ... Previous styles ... */

/* Style hero section */
.hero {
    background-image: url(images/sc.jpg); /* Add your image URL */
    background-size: cover;
    text-align: center;
    color: #fff;
    padding: 100px 0;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a subtle text shadow */
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Add a subtle text shadow */
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #120992;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #f12828;
}



/* Add styles for other sections (about, courses, admission, contact) */
/* styles.css */
/* ... Previous styles ... */

/* Style about section */
/* Add this to your styles.css file */
.about {
    background-color: #fff;
    padding: 60px 0;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.about-content {
    flex: 1;
    padding: 20px;
}

.about h2 {
    font-size: 28px;
    color: #333;
}

.about p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}



/* Add this to your styles.css file */
.courses {
    padding: 20px;
    background-color: #2b0d72;
    text-align: center;
}

.courses h2 {
    font-size: 24px;
    color: #faf9f9;
    margin-bottom: 10px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    font-size: 18px;
    color: #fdfafa;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding: 5px 0;
}


/* Style admission section */
.admission {
    background-color: #ff6600;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.admission h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.admission p {
    font-size: 18px;
    margin-bottom: 40px;
}

/* Style contact section */
.contact {
    background-color: #b92020;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 40px;
}


/* Style footer */
footer {
    background-color: #511c8f;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
