/* css/ielts1.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px;
    background-color: #f9f9f9;
}

.service-card {
    width: 30%; /* Adjust width to make them fit in a row */
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.cta {
    text-align: center;
    padding: 30px;
    background-color: #0073e6;
    color: white;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.cta button {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #ff6600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta button:hover {
    background-color: #cc5200;
}
/* General Body Styles */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the footer stays at the bottom */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar Styles */
header.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    margin-top: 80px; /* Offset content for fixed navbar */
}

/* Footer Styles */
footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 10px;
    position: relative; /* Ensure it doesn't interfere with content */
    bottom: 0;
    width: 100%;
    margin-top: auto; /* Push the footer to the bottom */
}

/* Media Queries for Small Screens */
@media screen and (max-width: 768px) {
    .registration-container {
        width: 100%; /* Full width for small devices */
    }
}
