/* ---------- Section spacing (homepage) ---------- */
    .section {
    padding: 4rem 0;
    }

    /* ---------- Header ---------- */
.main-header {
    background: #ffffff;      /* white header */
    position: sticky;
    top: 0;
    z-index: 100;
}


    .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    }

    .logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    }

    .logo {
    height: 180px;
    width: auto;
    }

    .logo-text h1 {
    color: #003366;
    font-size: 1.4rem;
    margin: 0;
    }

    .logo-text p {
    color: #003366;
    font-size: 0.9rem;
    margin: 0;
    }

    .logo-name {
    color: #003366;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
}

    .main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    }

    .main-nav a{
    font-size:1.20rem;
    color: #003366;
    font-weight:600;
    position:relative;
    padding-bottom:.2rem;
    }

    .main-nav a.active::after,
    .main-nav a:hover::after {
    content: "";
    display: block;
    height: 2px;
    background: #0096ff;
    margin-top: 4px;
    }

    /* ---------- Hero ---------- */
    .hero {
    background: url("../images/servicesimage.jpg") center/cover no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    }

    .hero-overlay {
    width: 100%;
    background: rgba(2, 33, 99, 0.4);
    padding: 3.5rem 0;
    }

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

.hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

    .hero-content p {
    font-size: 1.2rem;
    color: #f8f8f8;
    margin-bottom: 1.5rem;
    }

    /* ---------- Buttons ---------- */
    .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    }

    .btn {
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid transparent;
    }

    .primary-btn {
    background: #003366;
    color: #fff;
    }

    .secondary-btn {
    background: #fff;
    color: #003366;
    }

    /* ---------- About Preview ---------- */
    .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    }

    .about-cards {
    display: grid;
    gap: 1rem;
    }

    .info-card {
    background: #f4f8ff;
    padding: 1.25rem;
    border-radius: 1rem;
    }

    /* ---------- Footer ---------- */
    .main-footer {
    background: #003366;
    color: #fff;
    padding-top: 2.5rem;
    }

    .footer-top {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #284765;
    }

    .footer-column h4 {
    margin-bottom: 0.75rem;
    font-size: 1.40rem;
    }

    .footer-column p {
    font-size: 1.20rem;
    color: #cfd9e5;
    margin-bottom: 0.35rem;
    }

    .social-row {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 0.75rem;
    }

    .social-icon{
    width: 44px;        /* ⬅️ bigger & ADA tap-target friendly */
    height: 44px;
    object-fit: contain;
}

    .logo-Medium{
    width: 260px;   /* ⬅️ matches your desired size */
    max-width: 100%;
    height: auto;
}


    .footer-bottom-wrapper {
    background: #00172c;
    }

    .footer-bottom {
    padding: 0.9rem 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    }

    .footer-bottom p {
    font-size: 1rem;
    color: #cfd9e5;
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    }

    @media (max-width: 720px) {
    .about-inner {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-overlay {
        padding: 2.5rem 0;
    }
    }
