* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: linear-gradient(90deg, #0a3d62, #1e5f8a);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav a {
    color: white;
    margin: 0 12px;
    text-decoration: none;
    font-weight: 500;
}

.nav a:hover {
    color: #ffd166;
}

.logo {
    width: 150px
}

p {
    margin-bottom: 10px;
}

.hero {
    background: linear-gradient(rgba(10, 61, 98, 0.85), rgba(30, 95, 138, 0.85)), url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 110px 0;
    text-align: center;
}

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

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

.section {
    padding: 70px 0;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.section h2 {
    margin-bottom: 20px;
    color: #0a3d62;
    text-align: center;
}

.services ul {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
}

.services li {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services li:hover {
    transform: translateY(-5px);
    background: #0a3d62;
    color: white;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th, .table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.table th {
    background: #0a3d62;
    color: white;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.badge {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

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

.gallery img {
    width: 100%;
    border-radius: 12px;
    height: 200px;
    object-fit: cover;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.contact button {
    padding: 12px;
    border: none;
    background: #0a3d62;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.contact button:hover {
    background: #1e5f8a;
}

footer {
    background: #0a3d62;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ffd166;
    color: #000;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

.contact-links {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}