* {
    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;
}

/* ================= HERO SECTION ================= */
.as-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
     border-radius: 30px;     /* ADD THIS */
}

/* BACKGROUND VIDEO */
.as-hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(55%);
}

/* GRADIENT OVERLAY */
.as-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* TEXT CONTENT */
.as-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light);
    max-width: 800px;
    padding: 20px;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeUp 1.2s ease forwards;
}

.as-hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0;
    animation: fadeDown 1.5s ease forwards;
}

.as-hero-subtitle {
    font-size: 1.3rem;
    margin: 15px 0 35px;
    opacity: 0;
    animation: fadeInText 1.8s ease forwards;
}

/* BUTTONS */
.as-hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.as-btn-orange,
.as-btn-blue {
    padding: 12px 35px;
    border-radius: 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.35s ease-in-out;
}

/* ORANGE BUTTON */
.as-btn-orange {
    background: var(--orange);
    color: var(--light);
}
.as-btn-orange:hover {
    background: var(--light);
    color: var(--blue);
    transform: translateY(-5px);
}

/* BLUE BUTTON */
.as-btn-blue {
    background: var(--light);
    color: var(--blue);
}
.as-btn-blue:hover {
    background: var(--orange);
    color: var(--light);
    transform: translateY(-5px);
}

/* ================= ANIMATIONS ================= */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInText {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .as-hero-title { font-size: 3rem; }
    .as-hero-subtitle { font-size: 1.1rem; }
}

@media (max-width: 480px) {
    .as-hero-title { font-size: 2.4rem; }
    .as-btn-orange, .as-btn-blue {
        width: 100%;
        text-align: center;
    }
}


/* COLORS */
:root {
    --orange: #f26a21;
    --blue: #003b73;
    --light: #ffffff;
    --dark: #1a1a1a;
}

/* SECTION MAIN */
.co-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9f9f9, #eef6ff);
    display: flex;
    justify-content: center;
}

/* FLEX CONTAINER */
.co-container {
    max-width: 1200px;
    width: 100%;
    background: var(--light);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 50px;
    border-left: 8px solid var(--orange);

    opacity: 0;
    transform: translateY(60px);
    transition: 1s ease;
}

/* LEFT TEXT */
.co-left {
    flex: 1;
}

/* Right Image */
.co-right {
    flex: 1;
    text-align: center;
}

.co-right img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    animation: fadeInImg 1.2s ease forwards;
    height: 300px;
}

/* Title */
.co-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 20px;
    animation: fadeDown 1s ease forwards;
}

/* List */
.co-list {
    margin-bottom: 25px;
    padding-left: 23px;
}

.co-list li {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--dark);
    opacity: 0;
    transform: translateX(-25px);
    animation: slideList 0.8s forwards;
}

.co-list li:nth-child(1) { animation-delay: .2s; }
.co-list li:nth-child(2) { animation-delay: .35s; }
.co-list li:nth-child(3) { animation-delay: .5s; }
.co-list li:nth-child(4) { animation-delay: .65s; }

/* Description */
.co-desc {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #444;
    opacity: 0;
    animation: fadeIn 1.2s forwards;
    animation-delay: .9s;
}

/* Animations */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0;}
    to { opacity: 1;}
}

@keyframes fadeInImg {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideList {
    from { opacity: 0; transform: translateX(-25px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Scroll reveal */
.reveal.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive */
@media(max-width: 900px) {
    .co-container {
        flex-direction: column;
        text-align: center;
        padding: 35px;
    }

    .co-left {
        order: 1;
    }

    .co-right {
        order: 2;
    }

    .co-title {
        font-size: 2.1rem;
    }

    .co-list li, .co-desc {
        font-size: 1.1rem;
    }
}

@media(max-width: 480px) {
    .co-title {
        font-size: 1.8rem;
    }
}

/* Section Base */
.mv-section {
    padding: 80px 5%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    margin-bottom: -145px;
}

/* Container */
.mv-container {
    max-width: 1200px;
}

/* Main Title */
.mv-main-title {
    font-size: 38px;
    font-weight: bold;
    color: #003d87;
    margin-bottom: 40px;
    text-align: center;
}

/* Boxes */
.mv-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #007bff;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    /* Equal Height Fix */
    display: flex;
    flex-direction: column;
    height: auto;
}

.mv-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Titles */
.mv-title {
    font-size: 28px;
    font-weight: bold;
    color: #0056c2;
    margin-bottom: 15px;
}

/* List */
.mv-list {
    margin: 15px 0 5px 25px;
    color: #333;
}

.mv-list li {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Paragraph */
.mv-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* RESPONSIVE */
@media (min-width: 900px) {
    .mv-box {
        width: 48%;
        display: inline-block;
        vertical-align: top;
    }

    .mv-left {
        margin-right: 3%;
    }
}
@media (max-width: 900px) {
    .mv-box {
        width: 100%;
        
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= CORE VALUES SECTION ================= */

:root {
    --orange: #f26a21;
    --blue: #003b73;
    --light: #ffffff;
    --dark: #1a1a1a;
}

.cv-section {
    padding: 90px 20px;
    background: var(--light);
    margin-bottom: -80px;
}

.cv-container {
    max-width: 1200px;
    margin: auto;
}

.cv-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 50px;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

/* GRID */
.cv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* BOX */
.cv-box {
    background: #f8f9fc;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    transform: translateY(40px);
    opacity: 0;
}

.cv-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

/* ICON */
.cv-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Titles */
.cv-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 10px;
}

/* Description */
.cv-desc {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

/* ================= ANIMATIONS ================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal.active {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 480px) {
    .cv-title {
        font-size: 2rem;
    }
}


:root {
    --orange: #f26a21;
    --blue: #003b73;
    --light: #ffffff;
    --dark: #1a1a1a;
}

/* SECTION */
.team-section {
    padding: 80px 20px;
    background: #fdfdfd;
}

.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-header h2 {
    font-size: 2.6rem;
    color: var(--blue);
    font-weight: 800;
    opacity: 0;
    animation: fadeDown 1s forwards;
}

.team-header p {
    margin-top: 10px;
    color: #444;
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeUp 1.3s forwards;
}

/* GRID */
.team-container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    padding:1% 10%;
}

/* TEAM CARDS */
.team-card {
    background: var(--light);
    padding: 25px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.4s ease-in-out;

    opacity: 0;
    transform: translateY(40px);
}

/* HOVER EFFECT */
.team-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.team-img img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;

    border: 5px solid var(--orange);
    transition: 0.3s ease;
}

.team-card:hover .team-img img {
    border-color: var(--blue);
}

/* TEXT */
.team-card h3 {
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
}

.team-role {
    color: var(--orange);
    font-weight: 600;
    margin-top: 5px;
}

.team-bio {
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
}

/* ANIMATIONS */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Reveal */
.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: 0.8s ease-out;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .team-header h2 {
        font-size: 2rem;
    }
}


/* ======================================
   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;
    transition: 0.3s ease;
}

.as-footer-col ul li a:hover {
    color: #ff7a00;
    padding-left: 6px;
}

/* 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;
    }
}

