* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* --- Logo Colors --- */
:root {
    --orange: #F36F21;
    --blue: #0B3C74;
    --white: #ffffff;
}

/* --- Top Bar --- */
.topbar {
    width: 100%;
    background: var(--blue);
    color: var(--white);
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeDown 0.8s ease-in-out;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

.topbar-left,
.topbar-right {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.topbar a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.topbar a:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

/* Language Selector */
.lang-select select {
    background: var(--white);
    border: none;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.lang-select select:hover {
    border: 2px solid var(--orange);
}

/* Responsive */
@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .topbar-left,
    .topbar-right {
        justify-content: center;
    }
}

/* ---------------------------------------------------
   Root Colors
----------------------------------------------------*/
:root {
    --blue: #0B3C74;
    --orange: #F36F21;
    --white: #ffffff;
}

/* ---------------------------------------------------
   Navbar Base
----------------------------------------------------*/
.navbar {
    width: 100%;
    background: var(--white);
    padding: 10px 25px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);

    animation: slideDown 0.7s ease-in-out;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.nav-logo img {
    height: 55px;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ---------------------------------------------------
   Nav Links Desktop
----------------------------------------------------*/
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    left: -100%;   /* ADD THIS */
}

.nav-links a {
    color: var(--blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--orange);
    transform: translateY(-3px);
}

/* CTA Button */
.cta-btn {
    padding: 8px 15px;
    background: var(--orange);
    color: var(--white);
    border-radius: 5px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: var(--white);
    color: var(--blue);
    transform: scale(1.05);
}

/* ---------------------------------------------------
   Dropdown Menu
----------------------------------------------------*/
.dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 40px;
    left: 0;
    padding: 10px 0;
    min-width: 180px;
    border-radius: 5px;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    color: var(--white);
    animation: menuFade 0.25s ease-in-out;
}

@keyframes menuFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    transition: 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--orange);
    color: var(--white);
}

/* ---------------------------------------------------
   Mobile Responsive
----------------------------------------------------*/
.nav-toggle {
    display: none;
    font-size: 28px;
    color: var(--black);
    cursor: pointer;
}

/* Mobile Mode */
@media (max-width: 900px) {

    .nav-links {
        position: absolute;
        max-width: 600px;
        top: 80px;
        left: -100%;        /* REQUIRED */
        flex-direction: column;
        padding: 10px;
        gap: 20px;
        text-align: center;
        transition: 0.4s ease;
    }

    .nav-links.show {
        left: 0;
        background: var(--white);
    }

    .nav-toggle {
        display: block;
    }

    .dropdown:hover .dropdown-menu {
        position: static;
        display: block;
    }
}

/* BRAND COLORS */
:root {
    --orange: #f26a21;
    --blue: #003b73;
    --light: #ffffff;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 10%;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* Grid layout */
.contact-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Cards */
.contact-card {
    background: #f8f8f8;
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: 0.4s ease;
    cursor: pointer;
}

/* Hover Effects */
.contact-card:hover {
    transform: translateY(-12px);
    background: #2b6cb0;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Icons */
.contact-icon {
    font-size: 45px;
    color: #2b6cb0;
    margin-bottom: 20px;
    transition: 0.4s;
}

.contact-card:hover .contact-icon {
    color: #fff;
}

/* Card Titles */
.contact-card h3{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}



/* Links */
.contact-card a {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #2b6cb0;
    text-decoration: none;
    transition: 0.3s;
}

.contact-card:hover a {
    color: #fff;
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Contact Form + Map Section */
.contact-form-map-section {
    padding: 80px 10%;
    background: #ffffff;
}

/* Title */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

/* GRID: Form Left + Map Right */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* FORM BOX */
.contact-form-box {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

/* Form Fields */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

/* Focus effect */
input:focus, textarea:focus {
    border-color: #2b6cb0;
    box-shadow: 0 0 5px rgba(43,108,176,0.3);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 14px;
    background: #2b6cb0;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #1e4f85;
    transform: translateY(-3px);
}

/* Success Message */
.success-message {
    display: none;
    margin-top: 15px;
    color: #2b6cb0;
    font-weight: 700;
    text-align: center;
}

/* MAP BOX */
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 26px;
    }

    .submit-btn {
        font-size: 16px;
    }
}


/* ======================================
   FOOTER BASE STYLING
====================================== */

.as-footer {
    background: linear-gradient(135deg, #164478, #2465a6);
    color: white;
    padding: 70px 20px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* glowing animation background */
.as-footer::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,122,0,0.25), transparent 70%);
    animation: footerGlow 12s linear infinite;
}

@keyframes footerGlow {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

/* FOOTER GRID */
.as-footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* COLUMN */
.as-footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    color: #ff7a00;
    font-weight: 600;
}

.as-footer-col p {
    color: #ddd;
    font-size: 0.95rem;
}

.as-footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff7a00;
}

/* Circular Logo Wrapper */
.as-footer-logo-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #00aaff; /* you can match your brand color */
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: 0.4s ease;
}

/* Logo Image */
.as-footer-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slight hover animation */
.as-footer-logo-circle:hover {
    transform: scale(1.08);
    border-color: #0077cc;
    box-shadow: 0 0 12px rgba(0, 170, 255, 0.4);
}

/* LIST LINKS */
.as-footer-col ul {
    list-style: none;
}

.as-footer-col ul li {
    margin-bottom: 10px;
}

.as-footer-col ul li a {
    text-decoration: none;
    color: #e4e4e4;
}



/* SOCIAL ICONS */
.as-social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 1.2rem;
    color: white;
    border: 1px solid #ff7a00;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.as-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.as-social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #dd7f3c; /* your theme color */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
    color: #fff;
    font-size: 18px;
}

/* Hover effect */
.as-social-icons a:hover {
    background: #0077cc;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 170, 255, 0.4);
}

.as-social-icons a:hover {
    background: #ff7a00;
    transform: translateY(-5px);
}

/* CONTACT INFO */
.as-contact-info li {
    margin-bottom: 10px;
    color: #e4e4e4;
}
.as-contact-info i {
    color: #ff7a00;
    margin-right: 8px;
}
.as-contact-info li a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: none;
}
/* WhatsApp SVG icon */
.as-contact-info li a svg {
    color: #ff7a00; 
    transition: none;
}
/* FOOTER BOTTOM */
.as-footer-bottom {
    text-align: center;
    margin-top: 40px;
    z-index: 2;
    position: relative;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.as-footer-bottom p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .as-footer {
        text-align: center;
    }
    .as-social-icons a {
        margin-bottom: 10px;
    }
}

