/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
}

/* Marquee */
marquee {
    font-size: 18px;
    padding: 10px 0;
    background-color: #6c757d;
    color: white;
}
a {
    text-decoration: none;
}
marquee a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0 10px;
}

/* Card Styles */


.card h4 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.card p {
    
    color: #007bff;
    font-weight: bold;
}

/* Achievements Section */
.achievements .col-md-3 {
    margin-bottom: 30px;
}

.achievements img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.achievements img:hover {
    transform: scale(1.1);
}

.achievements h5 {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

/* Teachers Section */
.our-teachers .col-md-4 {
    margin-bottom: 30px;
}

.our-teachers img {
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.our-teachers img:hover {
    transform: scale(1.1);
}

.our-teachers h5 {
    font-size: 20px;
    margin-top: 10px;
}

.our-teachers p {
    font-size: 16px;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .row.text-center {
        flex-direction: column;
        align-items: center;
    }
    
}

 .col-sm-6 {
  position: relative;
  width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}
