/* General Body Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    background: #fff;
    color: #333;
    padding: 1rem 0;
    border-bottom: 3px solid #0056b3;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007bff;
}

/* Hero Section */
.hero {
    background: url('../images/school-bg.jpg') no-repeat center center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay for readability */
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button {
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: #0056b3;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.welcome-message, .quick-links {
    text-align: center;
}

.welcome-message h2, .quick-links h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #007bff;
}

.link-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.link-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 300px;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links img {
    height: 24px;
    margin-left: 15px;
}

/* Mission & Vision Section */
.mission-vision {
    background-color: #fff;
    padding: 4rem 0;
}

.mission-vision-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.photo-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.photo-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission-vision h2 {
    color: #007bff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.mission-vision h3 {
    color: #333;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
    display: inline-block;
}

/* CBSE Section */
.cbse-section {
    padding: 4rem 0;
}



.link-list {
    list-style-type: none;
    padding: 0;
}

.link-list li {
    margin-bottom: 10px;
}

.link-list li a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.link-list li a:hover {
    color: #0056b3;
    text-decoration: underline;
}


<style>
#aflliation {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: relative;
}

#aflliation td, #aflliation th {
  border: 2px solid #ddd;
  padding: 8px;
}

#aflliation tr:nth-child(even){background-color: #f2f2f2;}

#aflliation tr:hover {background-color: #ddd;}

#aflliation th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #4CAF50;
  color: white;
}
</style>