/* General Reset */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header {
    background-color: #004085;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

header .logo {
    width: 120px;
    display: block;
    margin: 0 auto 10px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

header nav ul li a:hover {
    background-color: #0056b3;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, #004085, #007bff);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.cta-button {
    background: #ffdd57;
    color: #004085;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #ffc107;
}

/* Services Section */
.service-card img {
    width: 60px;
    margin-bottom: 10px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.service {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.service h2 {
    font-size: 1.5rem;
    color: #004085;
    margin-bottom: 10px;
}

.service p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.service a {
    display: inline-block;
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.service a:hover {
    background-color: #0056b3;
}

/* Footer */
footer .social-icons {
    margin-top: 10px;
}

footer .social-icons a img {
    width: 24px;
    margin: 0 10px;
    transition: transform 0.3s;
}

footer .social-icons a img:hover {
    transform: scale(1.2);
}

footer {
    background-color: #000c1a;
    color: white;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.fee-details {
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.fee-details h2 {
    font-size: 1.8rem;
    color: #004085;
    margin-bottom: 20px;
}

.fee-details ul {
    list-style: disc;
    margin-left: 20px;
}

.fee-details li {
    margin-bottom: 10px;
}

.fee-details a {
    color: #007bff;
    text-decoration: none;
}

.fee-details a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .services {
        grid-template-columns: 1fr;
    }
}
