/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.01em;
}

body {
    background: linear-gradient(135deg, #f7fafd 0%, #e9f0fa 100%);
    color: #1a2340;
    line-height: 1.7;
    min-height: 100vh;
    font-size: 18px;
}

/* Header */
header {
    background: #fff;
    padding: 40px 40px 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 32px rgba(26,35,64,0.10);
    border-bottom: 4px solid #0a3d91;
    border-radius: 0 0 32px 32px;
    transition: background 0.3s;
    height: 115px;
}
.logo {
    color: #0a3d91;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 2.5px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-shadow: 0 2px 8px rgba(26,35,64,0.06);

}
.logo img {
    width: 160px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(26,35,64,0.08);
}
nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
}
nav ul li a {
    color: #0a3d91;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 10px;
    font-size: 18px;
    letter-spacing: 1px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(26,35,64,0.04);
    top: -18px;
    position: relative;
    right: -10px;
}
nav ul li a:hover, nav ul li a.active {
    background: #e9f0fa;
    color: #f7b500;
    box-shadow: 0 4px 16px rgba(26,35,64,0.10);
}
.menu-toggle {
    display: none;
    font-size: 36px;
    color: #0a3d91;
    cursor: pointer;
}

/* Banner/Hero */
.banner {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-radius: 0 0 48px 48px;
    box-shadow: 0 8px 32px rgba(26,35,64,0.10);
    margin-bottom: 0;
    background: none;
    z-index: 0;
}
.banner-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    min-width: 100%;
    min-height: 100%;
    pointer-events: none;
    transition: filter 0.3s;
}
.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(10, 61, 145, 0.32); /* slightly lighter for more video visibility */
    z-index: 0;
}
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 32px 32px 32px 32px;
    background: rgba(255,255,255,0.18);
    border-radius: 32px;
    box-shadow: 0 2px 24px rgba(26,35,64,0.18);
    backdrop-filter: blur(0px) saturate(1.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.banner h1 {
    font-family: "lobster";
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2em;
    color:whitesmoke;
}
.banner p, #typewriter {
    font-size: 26px;
    margin-bottom: 24px;
    color: #f7f7f7;
    text-shadow: 1px 1px 8px rgba(26,35,64,0.12);
    font-family: "lobster";
    white-space: nowrap;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@keyframes typing {
    from {width: 0; }
    to{ width: 100%}
}

@keyframes blink-caret {
    from ,to {border-color: transparent; }
    50% { border-color: white; }
}

#typewriter::after {
    content: "|";
    animation: blink 1s infinite;
    color: #00ffcc;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


.btn {
    display: inline-block;
    padding: 16px 38px;
    background: linear-gradient(90deg, #0a3d91, #1a2340);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-top: 18px;
    box-shadow: 0 4px 16px rgba(26,35,64,0.12);
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: 2px solid #f7b500;
}
.btn:hover {
    background: linear-gradient(90deg, #1a2340, #0a3d91);
    color: #f7b500;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px rgba(26,35,64,0.18);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: none; }
}

/* Card/Section Styles */
.about, .products, .clients, .stats {
    background: rgba(255,255,255,0.96);
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(26,35,64,0.08);
    margin: 0 auto 56px auto;
    padding: 80px 32px 60px 32px;
    max-width: 1200px;
    backdrop-filter: blur(2px);
}
.about h2, .products h2, .clients h2, .stats h2 {
    font-family: 'Poppins', 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 40px;
    margin-bottom: 32px;
    color: #0a3d91;
    font-weight: 900;
    letter-spacing: 1.2px;
}
.about h2 {
    font-family: 'Saira', 'Inter', 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    text-align: center;
}
.about p {
    font-family: 'Saira', 'Inter', 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
    text-align: justify;
    font-size: 20px;
}
.about p, .product-info p, .clients p, .stat-box p {
    color: #1a2340;
    font-size: 19px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto 36px auto;
    padding: 20px 0;
}
.product-item {
    background: rgba(255,255,255,0.98);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26,35,64,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    backdrop-filter: blur(1px);
}
.product-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(26,35,64,0.15);
}
.product-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
}
.product-info {
    padding: 24px 20px 20px 20px;
    flex: 1;
}
.product-info h4 {
    font-family: 'Poppins', 'Inter', 'Segoe UI', Arial, sans-serif;
    margin-bottom: 10px;
    color: #0a3d91;
    font-size: 22px;
    font-weight: 700;
}

/* Clients Section */
.client-showcase {
    background: #f7fafd;
    border-radius: 32px;
    box-shadow: 0 8px 40px rgba(26,35,64,0.12);
    border: 1.5px solid #e9f0fa;
    margin-bottom: 56px;
    padding: 60px 40px;
    backdrop-filter: blur(2px);
}
.client-showcase h3 {
    font-size: 32px;
    margin-bottom: 48px;
    color: #0a3d91;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-align: center;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.client-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(26,35,64,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e9f0fa;
    animation: slideInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.client-card:nth-child(1) { animation-delay: 0.1s; }
.client-card:nth-child(2) { animation-delay: 0.2s; }
.client-card:nth-child(3) { animation-delay: 0.3s; }
.client-card:nth-child(4) { animation-delay: 0.4s; }
.client-card:nth-child(5) { animation-delay: 0.5s; }
.client-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(26,35,64,0.15);
}
.client-card:hover .client-logo {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(26,35,64,0.20);
}
.client-logo {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: 0 4px 16px rgba(26,35,64,0.10);
    border: 2px solid #e9f0fa;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(26,35,64,0.15);
}
.client-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.client-card h4 {
    font-size: 22px;
    color: #0a3d91;
    font-weight: 700;
    margin-bottom: 16px;
}
.client-card p {
    font-size: 16px;
    color: #1a2340;
    line-height: 1.6;
}



.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
}
.stat-box {
    background: rgba(255,255,255,0.92);
    padding: 44px 24px;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(26,35,64,0.08);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    backdrop-filter: blur(2px);
}
.stat-box:hover {
    box-shadow: 0 8px 32px rgba(26,35,64,0.18);
    transform: translateY(-4px) scale(1.03);
}
.stat-box span {
    font-size: 48px;
    color: #0a3d91;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 1px 1px 8px rgba(26,35,64,0.08);
}

/* Footer */
footer {
    background: #0a3d91;
    color: #fff;
    text-align: center;
    padding: 48px 20px 32px 20px;
    margin-top: 60px;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -2px 16px rgba(26,35,64,0.08);
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    border-top: 4px solid #f7b500;
    z-index: 10;
    position: relative;
}
footer p {
    margin: 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 18px 44px;
    background: linear-gradient(90deg, #232946, #4f5d75);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 22px;
    font-weight: 700;
    margin-top: 22px;
    box-shadow: 0 6px 24px rgba(34,49,63,0.14);
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden;
}
.btn:hover {
    background: linear-gradient(90deg, #4f5d75, #232946);
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 12px 36px rgba(34,49,63,0.18);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, #25D366 60%, #128C7E 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(26,35,64,0.18);
    transition: transform 0.3s;
    z-index: 1000;
    font-size: 36px;
    border: 2px solid #fff;
}
.whatsapp-button:hover {
    transform: scale(1.08);
    background: #1ebe57;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #0a3d91;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s, background 0.3s, transform 0.2s;
    z-index: 1000;
    cursor: pointer;
    font-size: 28px;
    box-shadow: 0 2px 12px rgba(26,35,64,0.12);
    border: 2px solid #f7b500;
}
.back-to-top.visible {
    opacity: 1;
    transform: scale(1.08);
}
.back-to-top:hover {
    background: #1a2340;
    color: #f7b500;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* Accordion Styles */
.accordion {
    margin: 0 auto;
    max-width: 900px;
}
.accordion-item {
    margin-bottom: 10px;
    border-radius: 16px;
    overflow: hidden;
    background: #f7fafd;
    box-shadow: 0 2px 6px rgba(26,35,64,0.06);
}
.accordion-header {
    background: #e9f0fa;
    border: none;
    padding: 22px 32px;
    width: 100%;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    color: #0a3d91;
    cursor: pointer;
    outline: none;
    transition: background 0.2s;
}
.accordion-header:hover {
    background: #d0e3fa;
}
.accordion-content {
    display: none;
    padding: 22px 32px;
    background: #fff;
    color: #1a2340;
    font-size: 17px;
}
.accordion-item.active .accordion-content {
    display: block;
}

/* Section Dividers */
.section-divider {
    width: 100%;
    height: 56px;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 1200 120" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path d="M0,0V46.29c47.29,22,104.09,29.05,158,17.39C267.85,44.15,327.29,0,400,0s132.15,44.15,242,63.68C695.91,75.34,752.71,68.29,800,46.29V0Z" opacity=".25" fill="%23232946"/><path d="M0,0V15.81C47.29,37.81,104.09,44.86,158,33.2C267.85,10.96,327.29,0,400,0s132.15,10.96,242,29.49C695.91,41.15,752.71,34.1,800,12.1V0Z" opacity=".5" fill="%234f5d75"/></svg>') no-repeat center/cover;
    margin: -28px 0 32px 0;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .about, .products, .clients, .stats {
        max-width: 99vw;
        padding: 60px 8px 40px 8px;
    }
}
@media (max-width: 900px) {
    .about {
        flex-direction: column;
        gap: 24px;
        padding: 60px 8px 40px 8px;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 18px 8px;
        height: auto;
        border-radius: 0 0 18px 18px;
        position: relative;
        min-height: 70px;
        align-items: flex-start;
    }
    .logo {
        margin-bottom: 12px;
        z-index: 1002;
        position: relative;
        order: -1;
        align-self: flex-start;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        display: none;
        width: 100%;
        background-color: #0a3d91;
        padding: 18px 0 18px 0;
        border-radius: 0 0 18px 18px;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1001;
        box-shadow: 0 8px 24px rgba(26,35,64,0.12);
        transition: opacity 0.3s, transform 0.3s;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
    }
    nav ul.show {
        display: flex;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    nav ul li a {
        color: #fff !important;
        font-size: 22px;
        padding: 18px 0;
        width: 100vw;
        text-align: center;
        border-radius: 0;
        box-shadow: none;
        transition: background 0.2s, color 0.2s;
    }
    nav ul li a:hover, nav ul li a.active {
        background: #f7b500 !important;
        color: #0a3d91 !important;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 24px;
        top: 18px;
        z-index: 1003;
        font-size: 40px;
        color: #0a3d91;
        background: #fff;
        border-radius: 8px;
        padding: 4px 12px;
        box-shadow: 0 2px 8px rgba(26,35,64,0.10);
        border: 2px solid #e9f0fa;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
    }
    .menu-toggle:active {
        background: #e9f0fa;
        color: #f7b500;
    }
    .banner {
        height: 100vh;
        min-height: 320px;
        border-radius: 0 0 18px 18px;
    }
    .banner-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .banner-content {
        padding: 16px 8px;
        border-radius: 18px;
        max-width: 95vw;
        margin: 0 auto;
    }
    .banner h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 16px;
    }
    .banner p, #typewriter {
        font-size: 16px;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
        padding: 0 8px;
    }
    .about h2, .products h2, .clients h2, .stats h2 {
        font-size: 24px;
    }
    .stats-container {
        grid-template-columns: 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .clients-grid {
        grid-template-columns: 1fr;
    }
    .section-divider {
        height: 28px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .banner h1 {
        font-size: 20px;
        line-height: 1.2;
    }
    .banner p, #typewriter {
        font-size: 14px;
        line-height: 1.3;
    }
    .banner-content {
        padding: 12px 6px;
        max-width: 98vw;
    }
    .btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}

/* Very small devices */
@media (max-width: 360px) {
    .banner h1 {
        font-size: 18px;
    }
    .banner p, #typewriter {
        font-size: 13px;
    }
    .banner-content {
        padding: 10px 4px;
    }
}
  
/* Custom Footer inspired by analytical.manishalab.com */
.custom-footer {
    background: #232946;
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    padding: 48px 0 0 0;
    margin-top: 60px;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 -2px 16px rgba(26,35,64,0.08);
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 32px 32px;
    flex-wrap: wrap;
    gap: 32px;
}
.footer-col {
    flex: 1 1 220px;
    min-width: 180px;
    margin-bottom: 24px;
}
.footer-map-col {
    flex: 1 1 320px;
    min-width: 240px;
    margin-bottom: 24px;
}
.footer-map-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #f7b500;
    letter-spacing: 1px;
}
.footer-map {
    width: 100%;
    background: #0f1738;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(26,35,64,0.18);
    border: 1px solid rgba(255,255,255,0.08);
}
.footer-map iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}
.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #f7b500;
    letter-spacing: 1px;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 16px;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.footer-col ul li a:hover {
    color: #f7b500;
    text-decoration: underline;
}
.footer-bottom {
    background: #1a1a2e;
    text-align: center;
    padding: 18px 0;
    border-radius: 0 0 32px 32px;
    font-size: 15px;
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.footer-logo-col {
    flex: 1 1 220px;
    min-width: 180px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(26,35,64,0.10);
    background: #fff;
    padding: 8px;
}
.footer-desc {
    color: #fff;
    font-size: 15px;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    max-width: 220px;
}
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 16px 16px 16px;
    }
    .footer-col, .footer-map-col {
        min-width: 0;
        width: 100%;
        margin-bottom: 24px;
    }
    .footer-logo-col {
        min-width: 0;
        width: 100%;
        align-items: center;
        text-align: center;
        margin-bottom: 24px;
    }
    .footer-desc {
        max-width: 100%;
    }
}
  
/* Dropdown Menu Styles */
nav ul li.dropdown {
    position: relative;
}
nav ul li .dropbtn {
    cursor: pointer;
    position: relative;
    padding-right: 24px;
}
nav ul li .dropbtn::after {
    content: '\25BC';
    font-size: 12px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #0a3d91;
    pointer-events: none;
}
nav ul li .dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(26,35,64,0.12);
    border-radius: 0 0 12px 12px;
    z-index: 1002;
    padding: 12px 0;
    font-size: 16px;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    max-height: 320px;
    overflow-y: auto;
}
nav ul li .dropdown-content li {
    width: 100%;
}
nav ul li .dropdown-content li a {
    color: #0a3d91;
    padding: 10px 24px;
    display: block;
    text-align: left;
    text-decoration: none;
    border-radius: 0;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}
nav ul li .dropdown-content li a:hover {
    background: #e9f0fa;
    color: #f7b500;
}
nav ul li.dropdown:hover > .dropdown-content,
nav ul li.dropdown:focus-within > .dropdown-content {
    display: block;
}
/* Mobile Dropdown */
@media (max-width: 768px) {
    nav ul li .dropdown-content {
        color :#fff;
        position: static;
        min-width: 100vw;
        box-shadow: none;
        border-radius: 0 0 12px 12px;
        background: #0a3d91;
        padding: 0;
        max-height: 60vh;
        overflow-y: auto;
    }
    nav ul li .dropdown-content li a {
        color: #fff;
        padding: 14px 0 14px 24px;
        font-size: 18px;
        
    }
    nav ul li .dropdown-content li a:hover {
        background: #f7b500;
        color: #fff;
    }

    nav ul li .dropbtn::after {
        color: #fff;
    }
}
  
