/* General Body */
body {
    margin: 0;
    font-family: Segoe UI, Arial, sans-serif;
    background: #f5f7fb;
    color: #333;
}

/* Header / Nav */
.topbar {
    background:#f8f9fa;
    border-bottom:1px solid #e0e0e0;
    padding:20px 0;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
}
.nav {
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1100px;
    margin:auto;
    padding:0 20px;
}
.logo {
    font-size:28px;
    font-weight:700;
    color:#0a3d62;
}
.nav-links a {
    margin-left:25px;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    color:#333;
    transition:0.25s;
}
.nav-links a:hover {
    color:#0072ff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #0a3d62;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background:linear-gradient(120deg,#0072ff,#00c6ff);
    color:white;
    padding:50px 0;
    text-align:center;
}
.hero h1 {margin:0;font-size:34px;}
.hero p {opacity:.9;}

/* Cards */
.section-title {
    text-align:center;
    margin:40px 0 20px;
}
.cards {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    padding-bottom:40px;
}
.card {
    background:white;
    border-radius:14px;
    padding:25px;
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,0.05);
    transition:.3s;
}
.card:hover {
    transform:translateY(-6px);
    box-shadow:0 14px 28px rgba(0,0,0,0.08);
}
.card img {
    width:90px;
    height:90px;
    object-fit:contain;
    margin-bottom:12px;
}

/* Buttons */
.btn {
    display:inline-block;
    margin-top:12px;
    padding:10px 22px;
    border-radius:30px;
    text-decoration:none;
    color:white;
    font-weight:600;
    background:linear-gradient(120deg,#0072ff,#00c6ff);
    box-shadow:0 6px 16px rgba(0,114,255,0.35);
    transition:.3s;
}
.btn:hover {
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,114,255,0.5);
}

/* Search Box */
.search-box {
    max-width:500px;
    margin:40px auto;
    background:white;
    padding:35px;
    border-radius:14px;
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,0.05);
}
.search-box input {
    width:100%;
    padding:12px;
    margin:15px 0;
    border-radius:8px;
    border:1px solid #ddd;
    font-size:15px;
}

/* Result Box */
.result-box {
    background:white;
    padding:30px;
    border-radius:14px;
    margin:40px auto;
    box-shadow:0 6px 18px rgba(0,0,0,0.05);
}
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
.info-table th,
.info-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}
.info-table th {
    background: #0b3d91;
    color: white;
}

/* Footer */
.footer {
    background:#0a3d62;
    color:#ddd;
    margin-top:60px;
}
.footer-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:40px;
    padding:40px 0;
}
.footer a {
    display:block;
    color:#bbb;
    text-decoration:none;
    margin:6px 0;
}
.footer a:hover { color:#fff; }
.footer-bottom {
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.1);
    padding:14px;
    font-size:13px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .nav { flex-wrap: wrap; }
    .nav-links { display: none; width: 100%; flex-direction: column; margin-top: 10px; background: #f8f9fa; border-radius: 10px; padding: 10px 0; }
    .nav-links a { margin: 8px 0; text-align: center; font-size: 16px; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 14px; }
    .hero { padding: 30px 0; }
    .card { padding: 20px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 22px; }
    .hero p { font-size: 12px; }
    .nav-links a { font-size: 14px; }
    .search-box { padding: 20px; }
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px; /* smaller gap between sections */
        padding: 30px 0;
    }

    .footer-grid div {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
        padding: 12px 0;
        font-size: 13px;
    }
}


