/* Custom Styles for School Features Section */

html,
body {
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

.container {
    overflow: hidden;
    /* Prevent children from overflowing */
}

.school-features .row {
    overflow: hidden;
    /* Prevent row from expanding */
}

.feature-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.school-features {
    background-color: #ffffff;
    padding: 4rem 0;
}

.school-features h2 {
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 2rem;
}

.feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-card .icon {
    color: #3498db;
}

.feature-card h3 {
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.feature-card:hover {
    transform: scale(1.8);
}

@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 2rem;
    }
    .feature-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center;
    }
}


/* footer */


/* Footer Styling */

.footer {
    background: #1d3557;
    color: white;
}

.footer h5 {
    color: #fca311;
}

.footer .highlight {
    /* color: #fca311; */
    color: black;
    font-weight: bold;
}


/* Footer Links */

.footer-link {
    color: #f8f9fa;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-link:hover {
    /* color: #fca311; */
    color: black;
    transform: translateX(5px);
}


/* Social Media Icons */

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: white;
    font-size: 22px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #fca311;
    transform: scale(1.2);
}


/* Footer Bottom */

.footer .small {
    font-size: 13px;
    margin-top: 20px;
}


/* Responsive */

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
}