/* =======================
        1. GLOBAL STYLES & RESET
        ======================= */
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #1378AC;
    --accent-color: #2281B1;
    --accent-hover: #c0392b;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ffffff;
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arimo", sans-serif;
    background: none !important;
    color: var(--text-dark);
    line-height: 1.5;
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1210px;
    }

}


p {
    font-family: "Montserrat", sans-serif;
}

h2 {
    font-weight: 100;
}

span {
    font-weight: 100;
    font-family: "Montserrat", sans-serif;
}



/* =======================
        2. HEADER & NAVBAR CONTAINER
        ======================= */
.site-header {
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-height: 80px;
}

/* Logo styling */
.logo {
    flex-shrink: 0;
    z-index: 1001;
    
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
    background: linear-gradient(135deg, #1a2b4c 0%, #2c3e66 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.logo a:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

.logo img {
    width: 195px;
    height: 25px;
    vertical-align:text-top !important;
}

/* =======================
        3. MAIN NAVIGATION MENU
        ======================= */
.main-nav {
    /* flex: 1;
    display: flex;
    justify-content: left; */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    font-weight: 300;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--text-dark);
    padding: 8px 0;
    transition: var(--transition);
    display: inline-block;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

/* Active menu item style */
.nav-menu li.current-menu-item a,
.nav-menu li.current-page-ancestor a {
    color: var(--accent-color);
    font-weight: 600;
}

/* LEFT + RIGHT */
.nav-left,
.nav-right {
    /* flex: 1; */
}

.nav-left {
    /* display: flex; */
    justify-content: flex-start;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-search a {
    color: #333;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.nav-search a:hover {
    color: var(--accent-color);
}

.btn-nav {
    padding: 5px 12px;
    border: solid 1px #000000;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #000000;
    font-size: 0.6rem;
}

/* Reusable Button */
.btn-main {
    /* background: var(--accent-color); */
    color: #fff !important;
    padding: 10px 24px;
    /* border-radius: 40px; */
    border: solid 1px #fff;
    /* font-weight: 600; */
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    /* box-shadow: 0 2px 6px rgba(231, 76, 60, 0.2); */
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

/* Hover */
.btn-main:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(231, 76, 60, 0.25);
}

/* Active */
.btn-main:active {
    transform: translateY(0);
}

/* Arrow */
.btn-main::after {
    content: " ";
    font-weight: 700;
    transition: transform 0.2s;
}

.btn-main:hover::after {
    transform: translateX(3px);
}

/* =======================
        5. MOBILE RESPONSIVE DESIGN
        ======================= */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 28px;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: all 0.25s ease-in-out;
}

/* Mobile toggle animation (open state) */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Tablet & Mobile styles */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 0.8rem;
    }

    .nav-menu li a {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .nav-menu li.btn-brochure a {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 880px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 380px;
        height: 100vh;
        background: var(--bg-light);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        padding: 100px 30px 40px;
        transition: right 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        z-index: 1000;
        justify-content: flex-start;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        font-size: 1.1rem;
        padding: 8px 0;
        white-space: normal;
        width: 100%;
        display: block;
    }

    .nav-menu li.btn-brochure {
        margin: 8px 0 0 0;
        width: 100%;
    }

    .nav-menu li.btn-brochure a {
        display: inline-flex;
        width: auto;
        justify-content: center;
        text-align: center;
        padding: 12px 28px;
    }

    /* backdrop overlay when mobile menu is open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(3px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .header-container {
        min-height: 70px;
    }

    .logo a {
        font-size: 1.6rem;
    }
}

/* Small mobile adjustments */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-menu li.btn-brochure a {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Ensure dropdown compatibility if needed (future proof) */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 100;
}

.nav-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}



/* HERO */
.inner-hero {
    height: 40vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(3, 87, 171, 0.38),
            rgba(0, 134, 251, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0;
}

.container1 {
    max-width: 1000px;
    margin: auto;
}

.hero-header {
    font-weight: 700;
    color: #fff;
}

.hero-bread {
    color: #fff;
    font-weight: 500;
}

.hero-bread a {
    text-decoration: none;
    color: #fff;
}


/* Additional accessibility */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: static;
    width: auto;
    height: auto;
    background: var(--primary-color);
    color: white;
    padding: 10px;
    z-index: 10000;
}

.thin-line {
    border: none;
    height: 1px;
    background-color: #2a2a2a;
    /* adjust color */
    margin: 30px 0;
}

/* FOOTER */

/* TOP BAR */
.footer-top-bar {
    background: #e8e8e8;
    padding: 12px 0;
    border-top: 1px solid #ddd;
}

/* INNER */
.footer-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* SOCIAL ICONS */
.footer-social a {
    margin-right: 12px;
    font-size: 14px;
    color: #333;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--accent-color);
}

/* MENU LINKS */
.footer-top-menu a {
    margin-left: 20px;
    font-size: 0.85rem;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.footer-top-menu a:hover {
    color: var(--accent-color);
}

.site-footer {
    background: #0d0f11;
    color: #ccc;
    padding: 30px 0;
    font-size: 0.9rem;
}

/* GRID */
.footer-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* LOGO */
.footer-logo img {
    height: 30px;
    width: 195px;
    margin-bottom: 20px;
}

/* TEXT */
.footer-about p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-about .copyright {
    font-size: 0.75rem;
    color: #666;
}

/* HEADINGS */
.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* CONNECT */
.footer-connect {
    display: flex;

}

.footer-connect h4 {
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 20px;
    align-content: flex-end;
}

.footer-connect h4::after {
    content: "→";
    display: inline-block;
    transform: rotate(45deg);
    /* 🔥 45° top-right */
    transition: 0.2s;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 12px;

}

.social-icons a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    align-content: flex-end;
    margin: 0px 0px 20px 10px;
}

.social-icons a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .row-2 {
        grid-template-columns: 1fr !important;
    }
}
@media (max-width: 768px) {
  .footer-top-inner {
    flex-direction: column;
    gap: 10px;
  }

  .footer-top-menu {
    text-align: center;
  }
}