
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    color: #333;
    background-color: #f5f8fb;
}

header {
    background-color: #1a4c8c;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 60px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #d0e3ff;
}

.hero {
    height: 90vh;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 20px;
}

.hero-text h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2em;
}

.btn {
    display: inline-block;
    background: linear-gradient(90deg, #1a4c8c, #428fd4);
    color: white;
    padding: 12px 30px;
    margin-top: 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(26, 76, 140, 0.3);
}

.content {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
    padding: 0 20px;
}

h2 {
    color: #1a4c8c;
    margin-bottom: 20px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service span {
    font-size: 2em;
}

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

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
    background: white;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

th {
    background: linear-gradient(90deg, #1a4c8c, #3b76c5);
    color: white;
}

.note {
    font-size: 0.9em;
    color: #666;
}

.contact {
    background-color: #eef4fa;
    padding: 60px 20px;
    text-align: center;
}

.contact-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

footer {
    background-color: #1a4c8c;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
