/* Base Styles */
:root {
    --primary-color: #0056b3;
    --primary-dark: #003d7a;
    --secondary-color: #f8f9fa;
    --accent-color: #ffc107;
    --text-color: #333;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --font-main: 'Open Sans', sans-serif;
    --space-xl: clamp(4.2645336rem, calc(2.4706425447vw + 3.3751022839rem), 6.75rem);
    --neutral-ultra-dark-trans-10: rgba(26, 26, 26, 0.1);
    --primary-ultra-light: #eaf3fa;
    --bricks-border-color: #dddedf;
    --content-gap: var(--space-m) clamp(2.4rem, calc(0.5964214712vw + 2.1852882704rem), 3rem);
    --space-m: clamp(2.4rem, calc(0.5964214712vw + 2.1852882704rem), 3rem);
    --grid-2: repeat(2, minmax(0, 1fr));
    --text-xl: clamp(2.304rem, calc(0.5358075547vw + 2.1111092803rem), 2.8430224rem);
    --black-trans-80: rgba(0, 0, 0, 0.8);
    --accent-trans-10: rgba(229, 140, 0, 0.1);
    --primary-blue: #1e5589;
    --dark-navy: #0d3a6a;
    --accent-orange: #f7931e;
    --light-orange: #ffb347;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    border-color: var(--bricks-border-color);
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', Arial, sans-serif;
}

h3 {
    font-size: 26px;
}



.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

nav {
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 10px 0;
    /* smaller padding on scroll */
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--light-gray);
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}




/*================== MOBILE MENU CSS BEGIN ===============*/


.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    /* hidden by default */
    opacity: 0;
    /* hidden by default */
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
}


@media (max-width: 767px) {
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100%;
        background-color: #ffffff;
        z-index: 1000;
        transform: translateX(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        overflow-y: auto;
    }

    .mobile-menu.active {
        transform: translateX(0);
        opacity: 1;
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        color: #333;
    }

    .mobile-menu-list {
        list-style: none;
        padding: 70px 20px 40px;
        margin: 0;
    }

    .mobile-menu-list>li {
        margin-bottom: 15px;
    }

    .mobile-menu-list a {
        display: block;
        padding: 12px 0;
        color: #333;
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid #eee;
    }

    .has-dropdown .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        color: #333;
        font-weight: 500;
        border-bottom: 1px solid #eee;
        cursor: pointer;
    }

    .dropdown-icon {
        transition: transform 0.3s ease;
    }

    .has-dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-dropdown.active .dropdown-menu {
        max-height: 500px;
        /* Adjust based on content */
    }

    .dropdown-menu li a {
        padding-left: 20px;
        font-size: 0.9rem;
    }

    /* Prevent scrolling when menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
}

/*================== MOBILE MENU CSS END ===============*/



.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.top-bar {
    background: linear-gradient(90deg, #003366 0%, #2196F3 100%);
    color: white;
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .dropdown-menu a {
        color: white !important;
    }
}





@media (max-width: 768px) {
    .main-header {
        margin-top: 0;
        padding-top: 0;
    }

    body {
        margin-top: 0;
        padding-top: 0;
    }

    .container {
        margin-top: 0;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .main-nav {
        display: none;
        /* hide full nav on mobile until toggled */
    }

    .mobile-menu-toggle {
        display: inline-block;
        /* make sure the mobile menu icon is visible */
    }
}



.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-logo .iam-highlight {
    font-weight: 700;
    font-size: 1.2rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
}

.logo img {
    height: 90px;
    width: auto;
    /* Base width */
    transition: width 0.3s ease, height 0.3s ease;
    /* Smooth animation */
}

@media (max-width: 768px) {
    .logo img {
        height: 70px !important;
        width: auto;
        /* Base width */
        transition: width 0.3s ease, height 0.3s ease;
        /* Smooth animation */
    }
}


.top-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.top-nav a {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 4px 0;
}

.top-nav a.active {
    font-weight: 600;
}

.top-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFC107;
}

.mobile-top-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
}

.main-header {
    background: #154c83;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 1px;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav>ul>li {
    position: relative;
}

.main-nav a {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a:hover {
    color: #f7931e;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    flex-direction: column;
    visibility: hidden;
    transition: all 0.3s ease;
    gap: 1px !important;
    z-index: 100;
}

.navbar .dropdown-menu {
    display: none;
}

/* Show on hover (desktop) */
.navbar .has-dropdown:hover .dropdown-menu {
    display: block;
}

@media (max-width: 767px) {

    /* Override for mobile */
    .dropdown-menu {
        display: none;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 8px 20px;
    display: block;
    color: #333;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #003366;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-toggle {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #f9f9f9;
    cursor: pointer;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .top-nav ul {
        gap: 15px;
    }

    .main-nav ul {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .top-nav {
        position: fixed;
        top: 40px;
        left: 0;
        width: 100%;
        background-color: #003366;
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .top-nav.active {
        transform: translateY(0);
    }

    .top-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-top-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 10px 0 0 20px;
        /* display: none; */
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-actions {
        margin-left: auto;
    }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 8px 20px;
    display: block;
    color: var(--text-color);
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    display: none;
}

/* Hero Slider */
/* .hero-slider {
    height: 600px;
    margin-top: 70px;
    position: relative;
} */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    display: flex;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
}

.slide-1 {
    background-image: url('../images/hero-1.jpg');
}

.slide-2 {
    background-image: url('../images/hero-2.jpg');
}

.slide-3 {
    background-image: url('../images/hero-3.jpg');
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 700px;
}

.hero-content h1 {
    font-size: 35px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--white);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--primary-color);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.5rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.about-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* Membership Section */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.membership-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.membership-image {
    height: 200px;
    overflow: hidden;
}

.membership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.membership-card:hover .membership-image img {
    transform: scale(1.05);
}

.membership-content {
    padding: 25px;
}

.membership-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    display: flex;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.event-date {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-details {
    padding: 20px;
    flex: 1;
}

.event-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.event-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.event-meta i {
    margin-right: 5px;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-content h3 a {
    color: var(--text-color);
}

.news-content h3 a:hover {
    color: var(--primary-color);
}

.news-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* CTA Banner */
.cta-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer ul a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    margin-right: 10px;
    margin-top: 3px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 10px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 10px 0 0 15px;
        background-color: #1C2944;
        /* display: none; */
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* .hero-slider {
        height: 500px;
    } */

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .section {
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    /* .hero-slider {
        height: 400px;
    } */

    .hero-content {
        padding: 0 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}





/*=============================HERO SLIDER SECTION CSS==============/

/* Hero Slider Styles */
.hero-slider {
    height: 600px;
    position: relative;
}

.hero-swiper-container {
    width: 100%;
    height: 100%;
}


.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.slide-1 {
    background-image: url('./images/slider/slider-1.jpg');
    animation: slideFadeIn 1.5s ease-out forwards;
}

.slide-2 {
    background-image: url('./images/slider/slider-2.jpg');
    animation: slideFadeIn 1.5s ease-out forwards;
}

/* Animation classes */
.swiper-slide-active .hero-content {
    animation:
        slideFadeIn 1s ease-out forwards,
        breathing 8s infinite 1s ease-in-out;
}

.swiper-slide-prev .hero-content,
.swiper-slide-next .hero-content {
    opacity: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 65, 157, 0.545);
    z-index: 1;
    overflow: hidden;
}

.slide-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../assets/images/slider/10.jpg") center/cover no-repeat;
    background-blend-mode: overlay;
    opacity: 0.5;
    /* Control how faint the pattern is */
    z-index: -1;
}


.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: breathing 8s infinite ease-in-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.date-bar {
    background-color: white;
    color: #003366;
    font-weight: 700;
    padding: 10px 25px;
    margin-bottom: 30px;
    display: inline-block;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.btn-cta {
    background-color: #FFC107;
    color: #003366;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-cta:hover {
    background-color: #FFD54F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Corner Brackets */
.corner-bracket {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.corner-bracket.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.corner-bracket.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.corner-bracket.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.corner-bracket.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: white;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(255, 193, 7, 0.8);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Animations */
@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes breathing {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-slider {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
        /* margin-top: 140px; */
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .date-bar {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .btn-cta {
        padding: 12px 30px;
    }

    .corner-bracket {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 350px !important;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}


/*====================    ABOUT SECTION CSS ====================== */


.about-iam-section {
    background-color: #ffffff;
    padding: 80px 20px;
    width: 100%;
}

.about-iam-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-iam-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.2;
}

.iam-highlight {
    color: #2196F3;
}

.about-iam-underline {
    width: 50px;
    height: 4px;
    background-color: #FFC107;
    margin: 0 auto 25px;
}

.about-iam-subheading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 30px;
}

.about-iam-text {
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 40px;
}

.about-iam-text strong {
    color: #003366;
    font-weight: 700;
}

.about-iam-button {
    display: inline-block;
    background-color: #2196F3;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-iam-button:hover {
    background-color: #1976D2;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-iam-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-iam-section {
        padding: 60px 20px;
    }

    .about-iam-heading {
        font-size: 1.8rem;
    }

    .about-iam-subheading {
        font-size: 1.1rem;
    }

    .about-iam-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-iam-heading {
        font-size: 1.5rem;
    }

    .about-iam-button {
        width: 100%;
        padding: 15px 20px;
    }
}

/*============== BENEFITS SECTION ===============*/

/* Benefits Section Styles */
.benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    width: 100%;
    /* position: absolute; */
    /* z-index: 1 !important; */
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.benefit-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FF6D00;
    margin-bottom: 15px;
}

.benefit-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
}

/* Tablet Layout - 2 columns */
@media (max-width: 1024px) {
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Layout - 1 column */
@media (max-width: 768px) {
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}


/*==================== RESOURCES SECTION STYLES ===============*/
/* Base */
/* Resources Section */
.resources-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #003366;
    text-align: center;
    margin-bottom: 15px;
}

.heading-underline {
    width: 80px;
    height: 4px;
    background-color: #FF6D00;
    margin: 0 auto 40px;
}

/* Swiper Container */
.resources-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-bottom: 40px;
}

/* Slide Styles */
.swiper-slide {
    width: 100%;
    opacity: 0 !important;
    transition: opacity 0.3s ease;
}

.swiper-slide-active,
.swiper-slide-duplicate-active {
    opacity: 1 !important;
}

.resource-slide {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.resource-text {
    flex: 1;
    min-width: 0;
}

.resource-subheading {
    font-size: 1rem;
    font-weight: 600;
    color: #FF6D00;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.resource-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 15px;
    line-height: 1.3;
}

.resource-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 500px;
}

.resource-image {
    flex: 1;
    min-width: 0;
    /* Prevent flexbox overflow */
}

.resource-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 30px;
    bottom: auto !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #FF6D00;
    transform: scale(1.2);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .resource-slide {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .resource-text,
    .resource-image {
        width: 100%;
    }

    .resource-description {
        margin: 0 auto;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .resource-heading {
        font-size: 1.4rem;
    }
}


/*================ INDUSTRY STATS SECTION =====================*/

/* Industry Stats Section */
.industry-stats {
    padding: 15px 0;
    background-color: #eacb6fa1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.stats-image {
    flex: 1;
}

.stats-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
}

.stats-content {
    flex: 1;
}

.stats-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.3;
}

.stats-divider {
    width: 60px;
    height: 4px;
    background-color: #FFC107;
    margin-bottom: 40px;
}

.stats-grid-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-box {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

    .stats-image {
        order: 1;
    }

    .stats-content {
        order: 2;
    }

    .stats-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    .stats-divider {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .stats-grid-inner {
        grid-template-columns: 1fr;
    }

    .stats-heading {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
        text-align: center;
    }

    .stat-label {
        text-align: center;
    }

    .stat-box {
        padding: 11px;
    }
}



/*================== ABOUT SECTION BEGIN ===================*/
/* Base Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.strategic-hero {
    background-color: #f8f5f0;
    /* Light cream background */
    padding: 40px 0 0;
    position: relative;
}

.hero-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    text-align: center;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #777;
    text-align: center;
    margin-bottom: 40px;
}

.breadcrumb a {
    color: #1e5589;
    text-decoration: none;
}

.breadcrumb span {
    color: #555;
}

/* Content Block */
.hero-content-block {
    background-color: #447fb8;
    border-radius: 40px 0 0 0;
    /* Rounded top-left corner only */
    display: flex;
    color: white;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.hero-text-column {
    flex: 1;
    min-width: 0;
    /* Prevent flexbox overflow */
    padding-right: 40px;
}

.hero-image-column {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.sub-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-illustration {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content-block {
        padding: 40px;
    }

    .hero-text-column {
        padding-right: 30px;
    }

    .content-heading {
        font-size: 1.6rem;
    }

    .content-paragraph {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-content-block {
        display: flex;
        flex-direction: column;
        border-radius: 30px 30px 0 0;
        padding: 30px;
    }

    .hero-image-column {
        order: -1;
        /* Put image column first */
        margin-bottom: 1.5rem;
        /* Optional spacing */
    }

    .hero-text-column {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .content-heading {
        text-align: center;
    }

    .content-paragraph {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .sub-heading {
        text-align: center;
    }

    .hero-illustration {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-content-block {
        padding: 25px;
    }

    .content-heading {
        font-size: 1.4rem;
    }

    .sub-heading {
        font-size: 1.2rem;
    }
}

/* Vision Section */
.vision-section {
    background-color: #fdf5e6;
    /* Off-white cream */
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subheading {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 35px;
    color: #1e5589;
    /* Dark blue */
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* Goal Card */
.goal-card {
    background-color: white;
    padding-top: var(--space-xl);
    padding-right: var(--space-xl);
    padding-bottom: var(--space-xl);
    padding-left: var(--space-xl);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: -3px 4px 4px 3px var(--neutral-ultra-dark-trans-10);
    margin-left: 5rem;
    margin-top: 20px;
    margin-bottom: 15px;
}

:where(:where(.goal-card)) {
    gap: var(--content-gap);
}

.card-content {
    display: flex;
    gap: 40px;
}

.card-text {
    flex: 1;
    min-width: 0;
    /* Prevent flexbox overflow */
}

.card-heading {
    /* font-size: 1.5rem; */
    text-align: left;
    color: #1d6796;
    text-transform: uppercase;
    margin-top: -57px;
    line-height: 30px;
}

.heading-underline {
    width: 60px;
    height: 3px;
    background-color: #7fb2e5;
    margin-bottom: 30px;
    align-items: center;
    display: flex;
    font-size: 30px;
    gap: 30px;
    justify-content: flex-start;
}

#brxe-zcrljw.horizontal {
    justify-content: flex-start;
}

:where(.brxe-divider).horizontal {
    width: 100%;
}

:where(.brxe-divider) {
    align-items: center;
    display: flex;
    font-size: 30px;
    gap: 30px;
}

#brxe-zcrljw.horizontal .line {
    border-top-width: 10px;
    width: 100px;
    border-top-style: solid;
    background-color: #7fb2e5;
    border-top-color: var(--primary-ultra-light) !important;
}

#brxe-zcrljw .line {
    height: 10px;
}

:where(.brxe-divider) .line {
    position: relative;
    width: 100%;
}

.brxe-div {
    display: grid;
    align-items: initial;
    grid-template-columns: var(--grid-2);
    align-items: center;
    margin-top: 40px;

}

.individual-list {
    display: flex;
    flex-direction: row;
    column-gap: 0px;
    align-items: flex-start;
}



.goal-list {
    display: flex;
    flex-direction: column;
}

:where(:where(.brxe-div)) {
    gap: var(--content-gap) !important;
}

.goal-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.goal-number {
    font-family: "Montserrat";
    font-weight: 800;
    font-size: var(--text-xl);
}

.goal-text {
    margin-left: var(--space-m);
    line-height: 2;
    font-size: 16px;
}

.card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Number Badge */
.goal-badge {
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
    width: 85px;
    height: 85px;
    background-color: #f7931e;
    /* Orange */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    text-shadow: -1px 3px 0 var(--black-trans-80);
    color: white;
    font-size: 4rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }

    .card-content {
        gap: 30px;
    }

    .card-heading {
        font-size: 1.3rem;
        margin-top: -80px;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .brxe-div {
        display: flex;
        flex-direction: column;
    }

    .goal-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .card-content {
        flex-direction: column;
    }

    .card-image {
        order: 2;
        width: 100%;
        margin: 1rem 0;
    }

    .goal-list {
        order: 3;
    }

    .goal-heading {
        text-align: left;
    }

    .individual-list {
        flex-direction: row;
        align-items: flex-start;
    }

    .goal-number {
        min-width: 2rem;
    }

    .card-text {
        text-align: left;
    }

    .goal-badge {
        position: static;
        margin: -16px auto 1rem auto;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subheading {
        font-size: 1rem;
    }

    .goal-card {
        padding: 25px 20px;
        margin-left: 1px;
        margin-bottom: 40px;
    }

    .goal-badge {
        width: 75px;
        height: 75px;
        font-weight: 700;
        font-size: 50px;
        color: var(--white);
        text-shadow: -1px 3px 0 var(--black-trans-80);
    }
}

/*===================== ABOUT SECTION END =====================*/


/*================ FAQ SECTION BEGIN ================*/
/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e5589;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: #f7931e;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: flex-start;
    /* Critical fix - prevents height matching */
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e5589;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #0d3a6a;
}

.faq-question .chevron {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--accent-trans-10);
}

.faq-answer .answer-content {
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: var(--max-height);
    padding-bottom: 20px;
}

.faq-item.active .answer-content {
    padding: 20px;
}

.faq-answer p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-divider {
        width: 60px;
    }
}

/*================ FAQ SECTION END ================*/


/*================ SERVICES SECTION BEGIN ================*/
/* services.css */
.services-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.services-heading {
    font-size: 2.5rem;
    color: #1d6796;
    /* Example: Primary navy blue */
    margin-bottom: 10px;
}

.services-subheading {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-title {
    font-size: 1.5rem;
    color: #1d6796;
    margin: 20px;
}

.service-description {
    color: #555;
    margin: 0 20px 20px 20px;
    flex-grow: 1;
}

.service-button {
    display: inline-block;
    background-color: #f7931e;
    /* Example: Accent orange */
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    margin: 0 20px 20px 20px;
    transition: background-color 0.3s ease;
}

.service-button:hover {
    background-color: #1e5589;
    color: #fff;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/*====================== CONTACT PAGE CSS =====================*/

/* Base container */
.contact-header {

    padding: 60px 20px;
    text-align: center;
}

.contact-header .breadcrumb {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.contact-header .breadcrumb a {
    color: #1e5589;
    text-decoration: none;
}

.contact-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #0e4ba0;
}

.contact-header .underline {
    width: 50px;
    height: 4px;
    background: #f7931e;
    /* Accent color */
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #fdf6ec;
}

.contact-details {
    background: #447fb8;
    /* Brand blue */
    color: #fff;
    padding: 40px;
    border-top-right-radius: 40px;
    max-width: 400px;
    flex: 1 1 300px;
    text-align: left;
}

.contact-details h3 {
    color: #f7931e;
    /* Accent color */
    margin: 20px 0 5px;
}

.contact-details p {
    margin: 0 0 10px;
    line-height: 1.6;
    color: #ffffff;
}

.contact-illustration {
    flex: 1 1 400px;
    text-align: center;
}

.contact-illustration img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    /* .contact-content {
    flex-direction: column;
  } */

    .contact-details {
        border-top-right-radius: 20px;
        margin-bottom: 30px;
        text-align: center;
    }

    .contact-header {
        background: #fdf6ec;
        padding: 60px 20px;
        text-align: center;
    }

    .contact-illustration iframe {
        height: 300px;
        width: 100%;
    }
}

.contact-form-wrapper {
    padding: 50px 20px;
    background: #fefefe;
    /* Light neutral background for separation */
}

.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 30px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1e5589;
    /* Brand blue */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1e5589;
    box-shadow: 0 0 0 3px rgba(30, 85, 137, 0.1);
}

.contact-submit-btn {
    background: #1e5589;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 35%;
    align-self: center;
    transition: background 0.3s ease;
}

.contact-submit-btn:hover {
    background: #f7931e;
    color: white;
    font-weight: bold;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 30px 20px;
    }
}

/*================  END CONTACT FORM   ===================*/

/*================  START COMING SOON SECTION   ===================*/
.coming-soon {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.coming-soon h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #1e5589;
}

.coming-soon p {
    font-size: 1.2rem;
    color: #555;
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    .coming-soon h1 {
        font-size: 2rem;
    }

    .coming-soon p {
        font-size: 1rem;
    }

    header img {
        width: 140px;
    }
}

/*================  END COMING SOON SECTION   ===================*/

/*=================== START OF SEARCH SECTION ===========================*/
/* background: linear-gradient(90deg, #357893 0%, #1D2B4E 100%); */
.search-wrapper {
    background-image: url('../assets/images/slider/search-bg.jpg');
    color: #003366;
    border-radius: 16px;
    max-width: 1100px;
    position: relative;
    margin: 80px auto;
    padding: 60px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.search-page {

    background: linear-gradient(90deg, #357893 0%, #1D2B4E 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.search-wrapper img {
    width: auto;
    height: 100px;
    margin-bottom: 10px;
}

.search-wrapper h1 {
    margin: 10px 0 30px;
    color: white;
    font-weight: bold;
}

.search-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.search-boxes input {
    padding: 14px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.search-btn {
    background-color: #f0882f;
    color: #fff;
    font-weight: 800;
    border: none;
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #1e5589;
}

@media (max-width: 768px) {
    .search-boxes input {
        width: 100%;
    }

    .search-wrapper {
        margin: 40px 16px;
        padding: 40px 20px;
    }

    .search-btn {
        width: 100%;
    }
}

/*============================= SEARCH RESULTS SECTION CSS =============================*/

.main-search-section {
    display: flex;
    width: 100%;
    min-height: 100vh;
    background-color: #f5f7fa;
}

/* Left Panel */
.left-panel {
    width: 350px;
    background-color: #ffffff;
    border-right: 1px solid #ddd;
    padding: 15px;
    overflow-y: auto;
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
}

.reset-button {
    background-color: #f7941d;
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 15px;
    width: 100%;
}

.filter-dropdown {
    background-color: #2e3f52;
    color: white;
    border-radius: 4px;
    margin-bottom: 10px;
}

.dropdown-title {
    cursor: pointer;
    padding: 12px 16px;
    font-weight: bold;
    background-color: #2e3e50;
    color: white;
    user-select: none;
}

.checkbox-group {
    padding: 10px 14px;
    background-color: white;
    color: #333;
    border-top: 1px solid #ccc;
}

.checkbox-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Hide by default */
.hidden {
    display: none;
}

/* Right Panel */
.right-panel {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.results-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.company-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    gap: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.company-card-left {
    flex: 0 0 120px;
    text-align: center;
}

.company-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

.company-info {
    flex: 1;
}

.company-info h3 {
    margin-top: 0;
}

.company-card-middle {
    flex: 1;
    padding-left: 15px;
}

.company-links {
    margin-top: 10px;
}

/* Fade-in animation */
.fade-in {
    animation: fadeInUp 0.4s ease both;
}

.company-links .btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 5px;
    margin-right: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.btn-primary {
    background-color: #1e5589;
}

.btn-secondary {
    background-color: #f7941d;
}

.btn-secondary:hover {
    background-color: #1e5589;
}

.btn-primary:hover {
    background-color: #f7941d;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-tags {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-tag {
    background-color: #f0f0f0;
    color: #333;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid #ddd;
}

/* .company-name {
  color: #0033cc;
  font-size: 18px;
  margin-bottom: 4px;
}

.company-location,
.company-phone {
  font-size: 14px;
  color: #555;
}

.company-website {
  color: #007bff;
  font-size: 14px;
  text-decoration: none;
}

.company-meta {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.badges {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.badge {
  background-color: #0033cc;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 4px;
} */


.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    margin: 20px;
}


/* Suggestion box (dropdown) */
.suggestions {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 250px;
    overflow-y: auto;
    display: none;
}

/* Each suggestion */
.suggestion-item {
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s ease;
}

.suggestion-item:hover,
.suggestion-item.active {
    background-color: #f5f5f5;
}

/* Highlight of matched text */
.suggestion-highlight {
    font-weight: 600;
    color: #111;
}

/* Scrollbar */
.suggestions::-webkit-scrollbar {
    width: 6px;
}

.suggestions::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 3px;
}

.suggestions::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

@media (max-width: 600px) {
    .suggestions {
        max-height: 200px;
    }

    .suggestion-item {
        padding: 8px 10px;
        font-size: 13px;
    }
}


.input-button {
    text-align: center;
}

@media (max-width: 768px) {
    .main-search-section {
        flex-direction: column;
    }

    .left-panel,
    .right-panel {
        max-width: 100%;
        padding: 10px;
        flex: none;
    }

    /* Map full width */
    .map-section {
        width: 100%;
        height: 250px;
        /* smaller height for mobile */
    }

    /* Filters as collapsible card */
    .filter-section {
        margin: 10px 0;
        padding: 10px;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .filter-dropdown .dropdown-title {
        font-weight: bold;
        cursor: pointer;
        padding: 10px;
        /* background: #ffffff; */
        border-radius: 6px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .checkbox-group {
        margin-top: 8px;
        padding-left: 10px;
    }

    /* Results stacked nicely */
    .company-grid {
        grid-template-columns: 1fr;
    }

    .company-card {
        display: flex;
        flex-direction: column;
        padding: 12px;
        border-radius: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        background: #fff;
    }

    .company-logo {
        max-width: 120px;
        margin: 0 auto 12px;
        border-radius: 8px;
    }

    .company-info {
        font-size: 14px;
    }

    .service-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 10px;
    }

    .service-tag {
        background: #f0f0f0;
        color: #333;
        font-size: 12px;
        padding: 4px 8px;
        border-radius: 6px;
    }
}




.blog-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.blog-hero {
    text-align: center;
    margin-bottom: 3rem;
    background-color: antiquewhite;
}

.blog-hero h1 {
    font-size: 2.5rem;
    color: #1d3557;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1rem;
    color: #555;
}

section {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
    /* smoother animation */
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

section h2 {
    font-size: 1.8rem;
    color: #457b9d;
    margin-bottom: 1rem;
}

section p {
    margin-bottom: 1rem;
    color: #333;
}

.blog-image {
    width: auto;
    height: 500px;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.highlight {
    background: #f1f5f9;
    border-left: 4px solid #457b9d;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

ul {
    margin: 1rem 0 1rem 1.5rem;
    list-style: disc;
}

ul li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.4rem;
    }

    .blog-image {
        width: 100%;
        height: auto;
    }
}


.company-logo-na {
    width: 100px;
    /* match logo size */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #888;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.home-page {
    background: linear-gradient(135deg, #d2ddee, #b2c6e6);
}