
@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400..700;1,400..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

        :root {
            /* ===== DESIGN GUIDE PALETTE ===== */
            --navy: #0B2D5B;          /* Primary Navy   */
            --light-blue: #E8F2FF;    /* Light Blue     */
            --gold: #D4A017;          /* Gold Accent    */
            --text: #1F2937;          /* Text Dark      */
            --muted: #6B7280;         /* Text Muted     */
            --white: #FFFFFF;         /* Background     */

            /* Supporting shades derived from the palette */
            --navy-dark: #082444;
            --blue: #0B2D5B;
            --gold-light: #E9C158;
            --cream: #E8F2FF;
            --border: #D8E3F0;

            /* ===== FONTS ===== */
            --font-head: "Lora", serif;
            --font-body: "Inter", system-ui, -apple-system, sans-serif;

            /* ===== LAYOUT ===== */
            --container: 1200px;
            --pad-section: 33px;
            --pad-section-mobile: 32px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }
 @media only screen and (max-width:480px){
  html,body{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
 }

        body {
            font-family: var(--font-body);
            color: var(--text);
            background: #fff;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        img {
            max-width: 100%;
        }

        /* =========================================
           TOP BAR
        ========================================= */

        .top-bar {
            background: var(--navy);
            color: #fff;
            height: 34px;
            display: flex;
            align-items: center;
            font-size: 12px;
        }

        .top-bar-inner {
            max-width: var(--container);
            width: 100%;
            margin: auto;
            display: flex;
            justify-content: flex-end;
            gap: 20px;
            padding: 0 20px;
        }

        .top-bar span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* =========================================
           HEADER
        ========================================= */

        .main-header {
            height: 74px;
            background: #fff;
            border-bottom: 1px solid #D8E3F0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: .3s ease;
        }

        .main-header.scrolled {
            box-shadow: 0 5px 20px rgba(0, 30, 60, .08);
        }

        .header-inner {
            max-width: var(--container);
            height: 100%;
            margin: auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* LOGO */


        .main-nav {
            display: flex;
            align-items: center;
            gap: 23px;
        }

        .main-nav a {
            color: #1F2937;
            font-size: 12px;
            font-weight: 600;
            position: relative;
            padding: 29px 0;
        }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 20px;
            width: 0;
            height: 2px;display: none;
            /* background: var(--gold); */
            transition: .3s;
        }

        .main-nav a:hover,
        .main-nav a.active {
            color: var(--navy);
        }

        .main-nav a:hover::after,
        .main-nav a.active::after {
            width: 100%;
        }

        .header-btn {
            background: var(--gold);
            color: #fff !important;
            padding: 10px 17px !important;
            border-radius: 3px;
        }

        .header-btn::after {
            display: none;
        }

        .header-btn:hover {
            background: var(--navy);
        }

        /* MOBILE BUTTON */

        .mobile-toggle {
            display: none;
            border: 0;
            background: transparent;
            font-size: 27px;
            color: var(--navy);
        }
/* =====================================================
   MOEOC FOOTER
===================================================== */

.moeoc-footer {
    position: relative;
    background: #06366f;
    color: #ffffff;
    overflow: hidden;
    padding: 0 0 22px;
}


/* =====================================================
   GOLD WAVE
===================================================== */

.footer-wave {
    width: 100%;
    height: 55px;
    position: relative;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}


/* =====================================================
   TOP FOOTER
===================================================== */

.moeoc-footer-top {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr 0.75fr;
    gap: 45px;
    align-items: center;
    padding: 0 0 18px;
}


/* =====================================================
   BRAND
===================================================== */

.footer-brand {
    padding-right: 20px;
}


/* Logo */

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 13px;
}

.footer-logo-icon {
    width: 83px;
    height: 83px;
    border: 2px solid #d4a017;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.footer-logo-icon i {
    font-size: 38px;
    color: #06366f;
}


.footer-logo-box h2 {
    margin: 0;

font-family: "Lora", serif;
    font-size: 27px;
    line-height: 1;
    font-weight: 700;

    color: #ffffff;
}

.footer-logo-box span {
    display: block;

    margin-top: 4px;

    font-size: 13px;
    font-weight: 500;

    color: #ffffff;
}


/* Address */

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-address i {
    color: #ffffff;
    font-size: 21px;
    margin-top: 1px;
}

.footer-address p {
    margin: 0;

    color: #ffffff;

    font-size: 12px;
    line-height: 1.5;
}


/* Google Maps Button */

.google-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 8px 13px;

    border: 1px solid #d4a017;
    border-radius: 4px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.3s ease;
}

.google-map-btn i:first-child {
    color: #d4a017;
}

.google-map-btn i:last-child {
    font-size: 15px;
    color: #d4a017;
    margin-left: 5px;
}

.google-map-btn:hover {
    background: #d4a017;
    color: #06366f;
}

.google-map-btn:hover i {
    color: #06366f;
}


/* =====================================================
   SOCIAL
===================================================== */

.footer-social {
    padding-left: 5px;
}

.footer-social h3,
.footer-quicklinks h3 {
    margin: 0 0 13px;

    color: #ffffff;

    font-size: 21px;
    font-weight: 600;
}


.social-icons {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}


.social-icons a {
    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    font-size: 18px;

    transition: all 0.3s ease;
}


/* Social Colors */

.social-icons .linkedin {
    background: #0a66c2;
}

.social-icons .twitter {
    background: #000000;
}

.social-icons .facebook {
    background: #1877f2;
}

.social-icons .youtube {
    background: #ff0000;
}

.social-icons .instagram {
    background: linear-gradient(
        135deg,
        #405de6,
        #833ab4,
        #e1306c,
        #f77737
    );
}

.social-icons .whatsapp {
    background: #20c967;
}


.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.25);
}


/* =====================================================
   QUICK LINKS
===================================================== */

.footer-quicklinks {
    border-left: 1px solid rgba(255,255,255,0.45);
    padding-left: 27px;
}


.quicklinks-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}


.quicklinks-list a {
    color: #ffffff;

    font-size: 12px;
    line-height: 1.35;

    text-decoration: none;

    transition: all 0.25s ease;
}


.quicklinks-list a:hover {
    color: #d4a017;
    padding-left: 4px;
}


/* =====================================================
   DIVIDER
===================================================== */

.footer-divider {
    height: 1px;

    background: rgba(255,255,255,0.45);

    margin: 0 0 9px;
}


/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {
    text-align: center;
}


.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 5px;
}


.footer-legal a,
.footer-legal span {
    color: #ffffff;

    font-size: 11px;

    text-decoration: none;
}


.footer-legal a:hover {
    color: #d4a017;
}


.footer-copyright {
    color: #ffffff;

    font-size: 11px;

    margin-bottom: 5px;
}


.footer-disclaimer {
    margin: 0;

    color: rgba(255,255,255,0.9);

    font-size: 11px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .moeoc-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-quicklinks {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.35);
        padding-left: 0;
        padding-top: 20px;
    }

}


@media (max-width: 767px) {

    .moeoc-footer {
        padding-bottom: 20px;
    }

    .footer-wave {
        height: 42px;
    }

    .moeoc-footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-social {
        padding-left: 0;
    }

    .footer-quicklinks {
        padding-top: 20px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }

    .footer-legal {
        gap: 6px;
    }

    .footer-legal a,
    .footer-legal span {
        font-size: 10px;
    }

}
        /* =========================================
           HERO
        ========================================= */

        .hero {
            background:
                linear-gradient(90deg, rgba(237,246,251,.98) 0%, rgba(237,246,251,.92) 50%, rgba(237,246,251,.45) 100%),
                url("images/hero-bg.jpg") center/cover no-repeat;
            min-height: 405px;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: "";
            position: absolute;
            right: 0;
            bottom: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,.08));
            pointer-events: none;
        }

        .hero-container {
            max-width: var(--container);
            min-height: 405px;
            margin: auto;
            padding: 55px 20px;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
        }

        .hero-content {
            width: 56%;
        }

        .eyebrow {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: var(--blue);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .eyebrow::after {
            content: "";
            width: 45px;
            height: 2px;
            background: var(--gold);
        }

        .hero h1 {
            font-family: var(--font-head);
            color: var(--navy);
            font-size: clamp(38px, 4vw, 58px);
            line-height: 1.02;
            margin-bottom: 10px;
        }

        .hero-subtitle {
            font-family: var(--font-head);
            font-size: 21px;
            color: #0B2D5B;
            margin-bottom: 17px;
            font-weight: 700;
        }

        .hero-description {
            max-width: 570px;
            font-size: 13px;
            line-height: 1.8;
            color: #6B7280;
            margin-bottom: 23px;
        }

        .gold-line {
            width: 45px;
            height: 3px;
            background: var(--gold);
            margin-bottom: 14px;
        }

        .primary-btn {
            background: var(--navy);
            color: #fff;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 11px 18px;
            font-size: 12px;
            font-weight: 700;
            border-radius: 3px;
            transition: .3s;
        }

        .primary-btn:hover {
            background: var(--gold);
            color: #fff;
            transform: translateY(-2px);
        }


        /* =========================================
           GENERAL SECTION
        ========================================= */

        .section {
            padding: 28px 0;
        }

        .container-custom {
            max-width: var(--container);
            margin: auto;
            padding: 0 20px;
        }

        .section-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .section-heading-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-heading h2 {
            font-family: var(--font-head);
            color: var(--navy);
            font-size: 20px;
            margin: 0;
        }

        .section-heading .line {
            width: 35px;
            height: 2px;
            background: var(--gold);
        }

        .view-all {
            color: var(--navy);
            font-size: 11px;
            font-weight: 700;
        }

        .view-all i {
            color: var(--gold);
        }


        /* =========================================
           INFORMATION CARDS
        ========================================= */

        .info-grid {
            display: grid;
            margin-top: 20px;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }


        .info-card::before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 3px;
            width: 0;

            background: var(--gold);
            transition: .3s;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(6,43,82,.09);
            border-color: #c7d8e5;
        }

        .info-card:hover::before {
            width: 100%;
        }

        .info-icon {
            width: 46px;
            height: 46px;
            margin: 0 auto 11px;
            background: var(--light-blue);
            border-radius: 50%;
            color: var(--navy);
            display: flex;
            align-items: center;
            text-align: center;
            justify-content: center;
            font-size: 22px;
        }

        .info-card {
            border-top: 3px solid var(--light-blue);
        }

        .info-card h3 {
            font-family: var(--font-head);
            color: var(--navy);
            font-size: 14px;
            text-align: center;
            line-height: 1.35;
            font-weight: 700;
            margin-bottom: 7px;
        }

        .info-card p {
            font-size: 10.5px;
            text-align: center;
            line-height: 1.55;
            color: #6B7280;
            margin-bottom: 11px;
        }

        .card-link {
            font-size: 10px;
            font-weight: 700;
            color: var(--navy);
        }

        .card-link i {
            color: var(--gold);
        }

        .info-card-clickable {
            display: block;
            color: inherit;
            cursor: pointer;
        }

        .info-card-clickable:hover {
            color: inherit;
        }


        /* =========================================
           COUNTRY SECTION
        ========================================= */

        .country-section {
            background: #FFFFFF;
            border-top: 1px solid #D8E3F0;
            border-bottom: 1px solid #D8E3F0;
        }

        .country-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
        }

        .country-card {
            min-height: 75px;
            border: 1px solid var(--border);
            background: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 8px;
            transition: .3s;
        }

        .country-card:hover {
            border-color: var(--gold);
            transform: translateY(-3px);
        }

        .country-flag {
            font-size: 23px;
            line-height: 1;
            margin-bottom: 6px;
        }

        .country-card span:last-child {
            font-size: 9px;
            font-weight: 600;
            color: #1F2937;
            text-align: center;
        }


        /* =========================================
           TOPICS
        ========================================= */

        .topic-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
        }

        .topic-card {
            border: 1px solid var(--border);
            background: #fff;
            min-height: 90px;
            padding: 14px 8px;
            text-align: center; box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
            transition: .3s;
        }

        .topic-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 22px rgba(6,43,82,.08);
        }

        .topic-card i {
            display: block;
            color: var(--navy);
            font-size: 22px;
            margin-bottom: 8px;
        }

        .topic-card span {
            font-size: 9px;
            line-height: 1.3;
            font-weight: 600;
            /* color: #1F2937; */
            display: block;
        }


        /* =========================================
           ABOUT
        ========================================= */

        .about-section {
            background: #fff;
            padding: 32px 0;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-label {
            color: var(--gold);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .about-content h2 {
            font-family: var(--font-head);
            color: var(--navy);
            font-size: 27px;
            margin-bottom: 12px;
        }

        .about-content p {
            color: #6B7280;
            font-size: 11px;
            line-height: 1.75;
            margin-bottom: 9px;
        }

        .about-btn {
            display: inline-flex;
            margin-top: 10px;
        }

        .about-content-single {
            max-width: 640px;
        }

        .about-content-single h2 {
            font-family: var(--font-head);
            color: var(--navy);
            font-size: 24px;
            margin-bottom: 12px;
        }

        .about-content-single p {
            color: #6B7280;
            font-size: 11.5px;
            line-height: 1.75;
            margin-bottom: 9px;
        }

        /* =========================================
           MINI INFO SECTIONS
           (India Immigration Law / Legal Info & Awareness)
        ========================================= */

        .india-law-section {
            background: var(--cream);
        }

        .mini-section-intro {
            max-width: 620px;
            color: #6B7280;
            font-size: 11.5px;
            line-height: 1.7;
            margin: -6px 0 16px;
        }

        .mini-points {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .mini-points .point {
            background: #fff;
            border: 1px solid var(--border);
            padding: 14px;
        }

        /* =========================================
           IMPORTANT INFORMATION PANEL
        ========================================= */

        .important-info-panel {
            background: var(--light-blue);
            border: 1px solid var(--border);
            border-left: 3px solid var(--gold);
            padding: 20px 22px;
        }

        .important-info-title {
            font-family: var(--font-head);
            color: var(--navy);
            font-size: 14px;
            margin-bottom: 14px;
        }

        .points {
            display: grid;
            gap: 13px;
        }

        .point {
            display: flex;
            gap: 13px;
            align-items: flex-start;
        }

        .point-icon {
            flex: 0 0 35px;
            height: 35px;
            border-radius: 50%;
            background: #ffffff;
            color: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
        }

        .point h4 {
            color: var(--navy);
            font-size: 12px;
            margin-bottom: 3px;
        }

        .point p {
            margin: 0;
            color: #6B7280;
            font-size: 10px;
            line-height: 1.45;
        }


        /* =========================================
           FOOTER
        ========================================= */

        footer {
            background: var(--navy-dark);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .footer-top-gold {
            height: 4px;
            background: var(--gold);
            position: relative;
        }

        .footer-top-gold::after {
            content: "";
            position: absolute;
            left: 20%;
            right: 20%;
            top: -5px;
            height: 8px;
            border-top: 2px solid var(--gold-light);
            border-radius: 50%;
        }

        .footer-main {
            padding: 28px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1.3fr;
            gap: 45px;
        }

        .footer-brand {
          
            gap: 10px;
            align-items: flex-start;
        }

        .footer-brand .brand-logo {
            border-color: #fff;
        }

        .footer-brand .brand-logo i {
            color: #fff;
        }

        .footer-brand strong {
            color: #fff;
        }

        .footer-brand span {
            color: white;
        }

        .footer-address {
            margin-top: 15px;
            font-size: 10px;
            line-height: 1.6;
            color: rgba(255,255,255,.9);
        }

        .footer-map {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--gold-light);
            border: 1px solid rgba(226,194,108,.5);
            padding: 7px 11px;
            margin-top: 10px;
            font-size: 9px;
            font-weight: 700;
        }

        .footer-title {
            font-family: var(--font-head);
            color: #fff;
            font-size: 13px;
            margin-bottom: 11px;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 7px 20px;
        }

        .footer-links a {
            color: rgba(255,255,255,.9);
            font-size: 9.5px;
            transition: .2s;
        }

        .footer-links a:hover {
            color: var(--gold-light);
        }

        .social-icons {
            display: flex;
            gap: 7px;
            margin-top: 16px;
        }

        .social-icons a {
            width: 37px;
            height: 37px;
            border-radius: 50%;
            background: white;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            transition: .3s;
        }

        .social-icons a:hover {
            background: var(--gold);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.13);
            padding: 10px 0;
        }

        .footer-bottom-inner {
            max-width: var(--container);
            margin: auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            gap: 15px;
        }

        .footer-bottom span,
        .footer-bottom a {
            color: rgba(255,255,255,.75);
            font-size: 8.5px;
        }


        /* =========================================
           DISCLAIMER
        ========================================= */

        .disclaimer {
            background: #E8F2FF;
            color: #6B7280;
            text-align: center;
            padding: 9px 15px;
            font-size: 9px;
            border-top: 1px solid #d9e7ef;
        }


        /* =========================================
           SCROLL TOP
        ========================================= */

        .scroll-top {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 38px;
            height: 38px;
            background: var(--gold);
            color: #fff;
            border: 0;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .3s ease;
            z-index: 999;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: var(--navy);
            transform: translateY(-3px);
        }


        /* =========================================
           ANIMATIONS
        ========================================= */

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Staggered reveal for grid/list children */
        .info-grid > *:nth-child(1),
        .topic-grid > *:nth-child(1),
        .country-grid > *:nth-child(1),
        .mini-points > *:nth-child(1),
        .points > *:nth-child(1) { transition-delay: .03s; }

        .info-grid > *:nth-child(2),
        .topic-grid > *:nth-child(2),
        .country-grid > *:nth-child(2),
        .mini-points > *:nth-child(2),
        .points > *:nth-child(2) { transition-delay: .1s; }

        .info-grid > *:nth-child(3),
        .topic-grid > *:nth-child(3),
        .country-grid > *:nth-child(3),
        .mini-points > *:nth-child(3),
        .points > *:nth-child(3) { transition-delay: .17s; }

        .info-grid > *:nth-child(4),
        .topic-grid > *:nth-child(4),
        .country-grid > *:nth-child(4),
        .points > *:nth-child(4) { transition-delay: .24s; }

        .topic-grid > *:nth-child(5),
        .country-grid > *:nth-child(5) { transition-delay: .31s; }

        .topic-grid > *:nth-child(6),
        .country-grid > *:nth-child(6) { transition-delay: .38s; }

        .country-grid > *:nth-child(7) { transition-delay: .45s; }
        .country-grid > *:nth-child(8) { transition-delay: .52s; }

        /* Hero entrance */
        @keyframes heroFadeUp {
            from { opacity: 0; transform: translateY(18px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero-content h1,
        .hero-content h2,
        .hero-content .hero-gold-line,
        .hero-content p,
        .hero-content .hero-primary-btn {
            opacity: 0;
            animation: heroFadeUp .7s cubic-bezier(.22,.61,.36,1) forwards;
        }

        .hero-content h1 { animation-delay: .05s; }
        .hero-content h2 { animation-delay: .12s; }
        .hero-content .hero-gold-line { animation-delay: .18s; }
        .hero-content p { animation-delay: .24s; }
        .hero-content .hero-primary-btn { animation-delay: .32s; }

        /* Touch/press feedback for cards on mobile */
        .info-card:active,
        .topic-card:active,
        .country-card:active {
            transform: translateY(-2px) scale(.98);
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal,
            .hero-content h1,
            .hero-content h2,
            .hero-content .hero-gold-line,
            .hero-content p,
            .hero-content .hero-primary-btn {
                animation: none !important;
                transition: none !important;
                opacity: 1 !important;
                transform: none !important;
            }
        }


        /* =========================================
           RESPONSIVE
        ========================================= */

        @media (max-width: 991px) {

            .main-nav {
                position: absolute;
                left: 0;
                top: 74px;
                width: 100%;
                background: #fff;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 0 25px;
                box-shadow: 0 10px 25px rgba(0,0,0,.1);
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: max-height .35s ease, opacity .3s ease, padding .35s ease;
            }

            .main-nav.show {
                max-height: 500px;
                opacity: 1;
                padding: 10px 25px 20px;
            }

            .main-nav a {
                padding: 13px 0;
            }

            .main-nav a::after {
                bottom: 5px;
            }

            .mobile-toggle {
                display: block;
            }

            .hero-content {
                width: 70%;
            }

            .info-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .country-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .topic-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .mini-points {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .footer-grid > div:last-child {
                grid-column: 1 / -1;
            }
        }


        @media (max-width: 767px) {

            .top-bar {
                display: none;
            }

            .main-header {
                height: 68px;
            }

            .main-nav {
                top: 68px;
            }

            .brand-text strong {
                font-size: 16px;
            }

            .brand-logo {
                width: 42px;
                height: 42px;
            }

            .hero {
                min-height: auto;
            }

            .hero-container {
                min-height: 480px;
                padding: 55px 20px;
                align-items: flex-start;
            }

            .hero-content {
                width: 100%;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-description {
                font-size: 12px;
            }

            .section {
                padding: 20px 0;
            }

            .info-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .country-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .topic-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-grid > div:last-child {
                grid-column: auto;
            }

            .footer-bottom-inner {
                flex-direction: column;
                text-align: center;
            }

            .important-info-panel {
                padding: 16px 16px;
            }

            .about-section {
                padding: 20px 0;
            }

            .about-content-single h2 {
                font-size: 19px;
            }

            .mini-points {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .mini-section-intro {
                margin: -4px 0 12px;
                font-size: 11px;
            }

            .india-law-section,
            .legal-awareness-section,
            .important-info-section {
                padding: 18px 0;
            }
        }


        @media (max-width: 480px) {

            .info-grid {
                grid-template-columns: 1fr 1fr;
                gap: 7px;
            }

            .country-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .topic-grid {
                grid-template-columns: 1fr 1fr;
            }

            .hero h1 {
                font-size: 36px;
            }

            .section-heading h2 {
                font-size: 18px;
            }

            .info-card {
                min-height: 155px;
                padding: 14px 10px 12px;
            }

            .info-card h3 {
                font-size: 12px;
            }

            .info-card p {
                font-size: 12px;
                margin-bottom: 6px;
            }
        }
.top-bar {
    background: #0B2D5B;
    color: #fff;
    height: 42px;
    display: flex;
    align-items: center;
}

.top-bar-inner {
    max-width: var(--container);
    width: 100%;
    margin: auto;
    padding: 0 20px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}

.top-bar-inner > span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    white-space: nowrap;
}

.top-bar-inner > span i {
    color: #D4A017;
    font-size: 13px;
}


/* =========================
   SEARCH BAR
========================= */

.top-search {
    height: 28px;
    width: 190px;

    display: flex;
    align-items: center;

    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 3px;

    overflow: hidden;
}

.top-search input {
    width: 100%;
    height: 100%;

    border: 0;
    outline: 0;

    background: transparent;
    color: #fff;

    padding: 0 10px;
    font-size: 11px;
}

.top-search input::placeholder {
    color: rgba(255,255,255,.7);
}

.top-search button {
    width: 34px;
    height: 100%;

    border: 0;
    background: #D4A017;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: .3s ease;
}

.top-search button:hover {
    background: #fff;
    color: #0B2D5B;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .top-bar {
        height: auto;
        padding: 8px 0;
    }

    .top-bar-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 15px;
    }

    .top-search {
        width: 170px;
    }

}.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    width: 190px;


    display: flex;
    align-items: center;
}

.brand-logo img {
    width: 100%;
    height: 100%;

    display: block;
}/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 375px;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            #E8F2FF 0%,
            #E8F2FF 52%,
            #E8F2FF 100%
        );
}


/* =========================================
   WORLD MAP BACKGROUND
========================================= */

.hero-map {
    position: absolute;
    inset: 0;

    background-image: url("images/world-map.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    opacity: 0.16;

    pointer-events: none;
}


/* =========================================
   HERO WRAPPER
========================================= */

.hero-wrapper {
    position: relative;
    z-index: 2;

    min-height: 340px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LEFT CONTENT
========================================= */

.hero-content {
    width: 57%;
    padding: 40px 0 45px;
}


/* Eyebrow */

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 6px;

    margin-bottom: 9px;

    color: #6B7280;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.4px;
}

.hero-eyebrow span {
    color: #D4A017;
}


/* Heading */

.hero-content h1 {
    margin: 0;

    color: #0B2D5B;

    font-family: var(--font-head);

    font-size: 40px;
    line-height: 1.08;

    font-weight: 700;
}


/* Subtitle */

.hero-content h2 {
    margin: 5px 0 0;

    color: #0B2D5B;

    font-family: var(--font-head);

    font-size: 17px;
    line-height: 1.3;

    font-weight: 500;
}


/* Gold Line */

.hero-gold-line {
    width: 58px;
    height: 3px;

    margin: 13px 0 15px;

    background: #D4A017;
}


/* Description */

.hero-content p {
    max-width: 530px;

    margin: 0 0 20px;

    color: #6B7280;

    font-size: 12px;
    line-height: 1.7;
}


/* =========================================
   BUTTON
========================================= */

.hero-primary-btn {

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 11px 18px;

    background: #0B2D5B;

    color: #ffffff !important;

    font-size: 10px;
    font-weight: 600;

    text-decoration: none !important;

    border: 1px solid #0B2D5B;

    transition: all .3s ease;
}

.hero-primary-btn i {
    font-size: 11px;

    transition: transform .3s ease;
}

.hero-primary-btn:hover {
    background: #D4A017;
    border-color: #D4A017;
    color: #ffffff !important;
}

.hero-primary-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   RIGHT SIDE
========================================= */

.hero-right {
    position: relative;

    width: 43%;
    height: 340px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
}


/* =========================================
   QUOTE BOX
========================================= */

.hero-quote {

position: absolute;

top: -27px;

right: 15px;

width: 145px;

min-height: 172px;

padding: 28px 18px;

background: rgb(255 255 255 / 26%);

border-left: 1px solid #D8E3F0;

z-index: 3;
}


.quote-mark {
    display: block;

    color: #0B2D5B;

    font-family: var(--font-head);

    font-size: 34px;
    line-height: 20px;

    font-weight: 700;
}


.hero-quote p {

margin: 5px 0 0;

color: #0B2D5B;

font-family: var(--font-head);

font-size: 12px;

font-style: italic;

line-height: 1.45;

font-weight: 600;
}


.quote-line {

    display: block;

    width: 35px;
    height: 2px;

    margin-top: 12px;

    background: #D4A017;
}


/* =========================================
   GLOBE IMAGE
========================================= */

.hero-visual {

position: absolute;

bottom: -5px;

width: 730px;

z-index: 2;
}

.hero-visual img {

    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content h2 {
        font-size: 16px;
    }

    .hero-quote {
        right: 195px;
    }

    .hero-visual {
        width: 340px;
        right: -25px;
    }

}


@media (max-width: 991px) {

    .hero-wrapper {
        min-height: auto;
    }

    .hero-content {
        width: 100%;
        padding: 40px 0;
    }

    .hero-right {
        display: none;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-section::after {
        width: 100%;
    }

}


@media (max-width: 575px) {

    .hero-content {
        padding: 30px 15px 34px;
    }

    .hero-content h1 {
        font-size: 27px;
    }

    .hero-content h2 {
        font-size: 14px;
    }

    .hero-content p {
        font-size: 11px;
        line-height: 1.6;
    }

    .hero-eyebrow {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .hero-primary-btn {
        padding: 10px 14px;
        font-size: 9px;
    }

}/* =========================================
   COUNTRY SECTION
========================================= */

.country-section {
    padding: 24px 0 18px;
    background: #fff;
}


/* Heading */

.country-section .section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 9px;
}

.country-section .section-heading-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-section .section-heading h2 {
    margin: 0;

    color: #0B2D5B;

    font-family: var(--font-head);

    font-size: 15px;
    font-weight: 700;
}

.country-section .line {
    width: 28px;
    height: 2px;
    background: #D4A017;
}

.country-section .view-all {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #173f62 !important;
    font-size: 8px;
    font-weight: 600;
    text-decoration: none !important;
}
/* View All */

.country-section .view-all i {
    font-size: 8px;
}


/* =========================================
   COUNTRY GRID
========================================= */

.country-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 4px;
    width: 100%;
    padding-top: 11px;
}


/* =========================================
   COUNTRY CARD
========================================= */

.country-card {
    min-height: 67px;

    padding: 7px 4px 6px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #fff;

    border: 1px solid #D8E3F0;

    border-radius: 2px;
     box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);

    transition: all .3s ease;
}

.country-card:hover {
    transform: translateY(-2px);

    border-color: #D4A017;

    box-shadow: 0 5px 15px rgba(20, 55, 85, .07);
}


/* =========================================
   FLAG
========================================= */

.country-flag {
    width: 30px;
    height: 21px;

    margin-bottom: 5px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.country-flag img {
    width: 30px;
    height: 20px;

    display: block;

    object-fit: cover;

    border-radius: 1px;

    box-shadow: 0 1px 3px rgba(0,0,0,.12);
}


/* Globe */

.country-flag.other-country {
    color: #0B2D5B;
}

.country-flag.other-country i {
    font-size: 22px;
}


/* Country Name */

.country-card > span:last-child {
    display: block;

    color: #1F2937;

    font-size: 7px;

    line-height: 1.25;

    font-weight: 500;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .country-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .country-card {
        min-height: 75px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .country-section {
        padding: 18px 0;
    }

    .country-section .section-heading h2 {
        font-size: 14px;
    }

    .country-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }

    .country-card {
        min-height: 78px;
        padding: 9px 5px;
    }

    .country-flag,
    .country-flag img {
        width: 36px;
        height: 24px;
    }

    .country-flag.other-country i {
        font-size: 25px;
    }

    .country-card > span:last-child {
        font-size: 9px;
    }

}
.section-heading{
   display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 9px;
}
.info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    transition: all 0.3s ease;
}

/* Hover Effect */
.info-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
    transform: translateY(-3px);
}



/* Footer: Quick Links column (4-column layout per design guide) */
.footer-top {

    grid-template-columns: 2.1fr 3.8fr 1fr !important;
    align-items: start !important;
    gap: 32px;

}

.footer-quicklinks h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: var(--font-head);
    font-size: 20px;
    text-align: left;
}

.quicklinks-list {
    display: grid;
    gap: 11px;
}

.quicklinks-list a {
    color: rgba(255,255,255,.9) !important;
    text-decoration: none !important;
    font-size: 14.5px;
    transition: color .2s ease;
}

.quicklinks-list a:hover {
    color: var(--gold) !important;
}

@media (max-width: 991px) {
    .footer-top { grid-template-columns: 1fr 1fr !important; }
    .footer-quicklinks { grid-column: 1 / -1; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.3); }
}

@media (max-width: 575px) {
    .footer-top { display: flex !important; flex-direction: column; }
    .footer-quicklinks { text-align: center; border-top: 1px solid rgba(255,255,255,.5); padding-top: 22px; }
    .footer-quicklinks h3 { text-align: center; }
    .quicklinks-list { justify-items: center; }
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-size: 16px;
    line-height: 1.6;
}


/* -----------------------------------------------------
   1. TYPOGRAPHY — DESKTOP SCALE-UP
----------------------------------------------------- */

/* Top bar + header */
.top-bar-inner > span      { font-size: 13.5px; }
.top-search input          { font-size: 13px; }
.main-nav a                { font-size: 14px; }
.header-btn                { font-size: 13.5px; }

/* Hero */
.hero-content h1           {font-size: 34px;line-height: 1.1;}
.hero-content h2           { font-size: 22px; }
.hero-content p            { font-size: 15.5px; line-height: 1.75; max-width: 580px; }
.hero-primary-btn          { font-size: 13.5px; padding: 13px 22px; }
.hero-primary-btn i        { font-size: 14px; }
.hero-quote p              {font-size: 16px;}

p {}

/* Section headings */
.section-heading h2,
.country-section .section-heading h2 {
    font-size: 24px;
    color: var(--navy);
    font-weight: 700;
}

.section-heading .line,
.country-section .line {
    width: 38px;
    height: 3px;
    background: var(--gold);
}

.view-all,
.country-section .view-all {
    font-size: 13px;
    color: var(--navy) !important;
}

.view-all i,
.country-section .view-all i {
    font-size: 13px;
    color: var(--gold);
}

/* Main information cards */
.info-icon                 { width: 56px; height: 56px; font-size: 27px; }
.info-card h3              { font-size: 18px; line-height: 1.35; margin-bottom: 10px; }
.info-card p               { font-size: 13.5px; line-height: 1.65; }

/* Country cards */
.country-card > span:last-child {font-size: 16px;line-height: 1.35;font-weight: 600;}
.country-flag,
.country-flag img          { width: 42px; height: 28px; }
.country-flag.other-country i { font-size: 28px; }

/* Topic cards */
.topic-card                { min-height: 118px; padding: 20px 12px; }
.topic-card i              { font-size: 28px; margin-bottom: 12px; }
.topic-card span           { font-size: 13px; line-height: 1.4; }

/* About */
.about-label               { font-size: 13px; }
.about-content-single h2   { font-size: 32px; }
.about-content-single p    { font-size: 15.5px; line-height: 1.8; margin-bottom: 12px; }

/* Mini sections + Important Information */
.mini-section-intro        { font-size: 15px; line-height: 1.75; max-width: 680px; }
.important-info-title      { font-size: 19px; margin-bottom: 18px; }
.point-icon                { flex: 0 0 44px; height: 44px; font-size: 20px; }
.point h4                  { font-size: 15.5px; margin-bottom: 5px; }
.point p                   { font-size: 13.5px; line-height: 1.6; }

/* Footer */
.footer-address p          { font-size: 16px; }
.google-map-btn            {font-size: 14px;padding: 12px 20px;/* padding-top: 15px; */margin-top: 20px;}
.social-grid a span:last-child { font-size: 12px; }
.footer-navigation a       { font-size: 15px; }
.footer-navigation > span  { font-size: 15px; }
.copyright                 { font-size: 14px; }
.footer-legal a            { font-size: 13px; }
.footer-legal span         { font-size: 13px; }


/* -----------------------------------------------------
   2. MOEOC THEME — NAVY / LIGHT BLUE / GOLD
----------------------------------------------------- */

/* Alternating section backgrounds for rhythm */
.country-section {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: none;
}

#information.country-section {
    background: var(--light-blue);
    border-top: none;
}

.india-law-section {
    background: var(--light-blue);
}

.about-section,
.legal-awareness-section,
.important-info-section {
    background: var(--white);
}

/* Cards: navy text, light-blue accents, gold on interaction */
.info-card {
    border: 1px solid var(--border);
    border-top: 3px solid var(--light-blue);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(6,43,82,.06);
}

.info-card:hover {
    border-top-color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 10px 26px rgba(6,43,82,.13);
}

.info-icon {
    background: var(--light-blue);
    color: var(--navy);
}



.info-card h3 { color: var(--navy); }

.country-card,
.topic-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(6,43,82,.06);
}

.country-card:hover,
.topic-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 20px rgba(6,43,82,.12);
}

.topic-card i { color: var(--navy); }
.topic-card:hover i { color: var(--gold); }
.topic-card span {/* color: var(--navy); */}

/* Mini point cards */
.mini-points .point {
    border: 1px solid var(--border);
    border-left: 3px solid var(--light-blue);
    border-radius: 8px;
    padding: 18px;
    transition: .3s ease;
}

.mini-points .point:hover {
    border-left-color: var(--gold);
    box-shadow: 0 6px 18px rgba(6,43,82,.09);
}

.mini-points .point-icon {
    background: var(--light-blue);
    color: var(--navy);
}

/* Important Information panel */
.important-info-panel {
    background: var(--light-blue);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
}

.important-info-panel .point-icon {
    background: var(--white);
    color: var(--navy);
}

/* Buttons */
.hero-primary-btn {
    background: var(--navy);
    border-color: var(--navy);
    border-radius: 4px;
}

.hero-primary-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.hero-gold-line,
.quote-line {
    background: var(--gold);
}


/* -----------------------------------------------------
   3. SPACING — DESIGN GUIDE (64px desktop / 32px mobile)
----------------------------------------------------- */

.section              { padding: var(--pad-section) 0; }
.about-section        { padding: var(--pad-section) 0; }
.country-section      { padding: var(--pad-section) 0; }
.section-heading      { margin-bottom: 32px; }
.info-grid            { margin-top: 0; gap: 20px; }
.country-grid         {gap: 14px;}
.topic-grid           { gap: 16px; }
.mini-points          { gap: 20px; }
.mini-section-intro   { margin: 0 0 24px; }

.container-custom     { padding: 0 24px; }



/* -----------------------------------------------------
   3b. BUTTON STYLES — DESIGN GUIDE
----------------------------------------------------- */

/* Primary — navy */
.hero-primary-btn,
.primary-btn {
    background: var(--navy);
    color: #fff !important;
    border: 1.5px solid var(--navy);
    border-radius: 8px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
}

.hero-primary-btn:hover,
.primary-btn:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(11,45,91,.18);
    transform: none;
}

/* Secondary — gold (Contact Us) */
.header-btn {
    background: var(--gold) !important;
    color: #fff !important;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    padding: 12px 22px !important;
    font-size: 14px;
    font-weight: 600;
}

.header-btn:hover {
    background: #bd8f14 !important;
    border-color: #bd8f14;
}

.view-all:hover i,
.country-section .view-all:hover i {
    transform: translateX(4px);
}


/* -----------------------------------------------------
   4. TABLET
----------------------------------------------------- */

@media (max-width: 991px) {

    .hero-content h1        { font-size: 40px; }
    .hero-content h2        { font-size: 20px; }
    .section-heading h2,
    .country-section .section-heading h2 { font-size: 22px; }
    .about-content-single h2 { font-size: 28px; }

    .moeoc-footer .container-custom { padding: 55px 25px 0; }
}


/* -----------------------------------------------------
   5. MOBILE
----------------------------------------------------- */

@media (max-width: 767px) {

    .brand-logo {
        width: 130px !important;
        height: auto !important;
    }

    .header-inner { padding: 0 15px; }

    /* Typography stays large and readable on mobile */
    .hero-content h1        { font-size: 33px; }
    .hero-content h2        { font-size: 18px; }
    .hero-content p         { font-size: 14.5px; line-height: 1.75; }
    .hero-primary-btn       { font-size: 13px; padding: 13px 20px; }

    .section-heading h2,
    .country-section .section-heading h2 { font-size: 20px; }
    .view-all,
    .country-section .view-all { font-size: 12px; }

    .info-icon              { width: 50px; height: 50px; font-size: 24px; }
    .info-card h3           { font-size: 15.5px; }
    .info-card p            { font-size: 12.5px; line-height: 1.6; }

    .country-card > span:last-child { font-size: 12.5px; }
    .topic-card span        { font-size: 12.5px; }
    .topic-card i           { font-size: 26px; }

    .about-content-single h2 { font-size: 24px; }
    .about-content-single p  { font-size: 14.5px; }
    .mini-section-intro      { font-size: 14px; }

    .important-info-title   { font-size: 17px; }
    .point h4               { font-size: 14.5px; }
    .point p                { font-size: 12.5px; }

    /* Design guide: 32px mobile section padding, 16px side padding */
    .section,
    .about-section,
    .country-section,
    .india-law-section,
    .legal-awareness-section,
    .important-info-section {
        padding: var(--pad-section-mobile) 0 !important;
    }

    .container-custom { padding: 0 16px !important; }

    .section-heading  { margin-bottom: 20px; }
    .info-grid        { gap: 12px; }
    .country-grid     { gap: 12px; }
    .topic-grid       { gap: 12px; }
    .mini-points      { gap: 12px; }

    .hero-primary-btn,
    .primary-btn      { font-size: 14px; padding: 13px 22px; }
    .view-all,
    .country-section .view-all { font-size: 13px; padding: 9px 16px; }

    .moeoc-footer .container-custom { padding: 44px 16px 0 !important; }
    .footer-wave      { height: 40px; }
}


@media (max-width: 480px) {

    .brand-logo   {width: 168px !important;}
    .header-inner { padding: 0 12px; }

    .hero-content h1  { font-size: 29px; }
    .hero-content p   { font-size: 14px; }

    .hero-primary-btn {
        width: 100%;
        justify-content: center;
    }.top-bar{
		display: none !important;
	}

    .info-card        { min-height: 0; padding: 18px 12px; }
    .info-card h3     { font-size: 15px; }
    .info-card p      { font-size: 12px; }

    .mini-points .point { padding: 14px; }

    .section-heading h2,
    .country-section .section-heading h2 {font-size: 17px;}
}.info-card {
    min-height: 300px;
    padding: 25px 22px;
    background: #fff;
    border: 1px solid #e2e8ef;
    border-radius: 4px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(7, 59, 124, 0.10);
}

.mobile-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

.mobile-search,
.mobile-toggle {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    line-height: 1;
    font-size: 18px; /* small icon */
}

.mobile-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px; /* Delhi text */
    font-weight: 500;
    white-space: nowrap;
}

.mobile-location i {
    font-size: 15px; /* location icon */
}

@media (max-width: 991px) {
    .mobile-actions {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
.hero-map {
    position: absolute;
    inset: 0;
    background-image: url(../images/hero.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.16;
    pointer-events: none;
}/* =========================================================
   KEY INFORMATION - MOBILE 2 COLUMN
========================================================= */

@media (max-width: 767px) {

    .key-information-section {
        padding: 32px 0 !important;
        overflow: hidden !important;
    }

    .key-information-section .container {
        width: 100% !important;
        max-width: 100% !important;

        padding-left: 16px !important;
        padding-right: 16px !important;
    }


    /* -----------------------------------------
       SECTION HEADER
    ----------------------------------------- */

    .key-info-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        margin-bottom: 18px !important;
        gap: 10px !important;
    }

    .key-info-title {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .key-info-title h2 {
        font-size: 20px !important;
        line-height: 1.2 !important;

        margin: 0 !important;
    }

    .key-info-title span {
        width: 28px !important;
        height: 3px !important;

        display: block !important;
        flex-shrink: 0 !important;
    }

    .explore-all {
        font-size: 10px !important;

        white-space: nowrap !important;

        display: inline-flex !important;
        align-items: center !important;

        gap: 4px !important;
    }

    .explore-all i {
        font-size: 11px !important;
    }


    /* -----------------------------------------
       BOOTSTRAP ROW
       2 COLUMNS
    ----------------------------------------- */

    .key-information-section .row {
        display: flex !important;
        flex-wrap: wrap !important;

        margin-left: -5px !important;
        margin-right: -5px !important;

        --bs-gutter-x: 10px !important;
        --bs-gutter-y: 10px !important;
    }


    /* -----------------------------------------
       EACH CARD COLUMN
    ----------------------------------------- */

    .key-information-section .row > [class*="col-"] {
        width: 50% !important;
        flex: 0 0 50% !important;

        max-width: 50% !important;

        padding-left: 5px !important;
        padding-right: 5px !important;
    }


    /* -----------------------------------------
       CARD
    ----------------------------------------- */

    .info-card {
        height: 100% !important;
        min-height: 245px !important;

        padding: 16px 12px !important;

        border-radius: 10px !important;

        display: flex !important;
        flex-direction: column !important;

        background: #ffffff !important;
    }


    /* -----------------------------------------
       ICON
    ----------------------------------------- */

    .info-icon {
        width: 42px !important;
        height: 42px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        margin-bottom: 12px !important;

        flex-shrink: 0 !important;
    }

    .info-icon i {
        font-size: 23px !important;
    }


    /* -----------------------------------------
       CARD TITLE
    ----------------------------------------- */

    .info-card h3 {
        font-size: 14px !important;
        line-height: 1.25 !important;

        margin: 0 0 9px !important;

        min-height: 35px !important;
    }


    /* -----------------------------------------
       CARD DESCRIPTION
    ----------------------------------------- */

    .info-card p {
        font-size: 12px !important;
        line-height: 1.5 !important;

        margin: 0 0 12px !important;

        flex-grow: 1 !important;
    }


    /* -----------------------------------------
       EXPLORE
    ----------------------------------------- */

    .card-explore {
        display: inline-flex !important;
        align-items: center !important;

        gap: 5px !important;

        font-size: 10px !important;

        margin-top: auto !important;
    }

    .card-explore i {
        font-size: 11px !important;
    }

}


/* =========================================================
   375px
========================================================= */

@media (max-width: 375px) {

    .key-information-section {
        padding: 28px 0 !important;
    }

    .key-information-section .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .key-info-title h2 {
        font-size: 13px !important;
    }

    .key-info-title span {
        width: 24px !important;
    }

    .explore-all {
        font-size: 9px !important;
    }

    .info-card {
        min-height: 225px !important;
        padding: 13px 10px !important;
    }

    .info-icon {
        width: 38px !important;
        height: 38px !important;

        margin-bottom: 9px !important;
    }

    .info-icon i {
        font-size: 20px !important;
    }

    .info-card h3 {
        font-size: 12px !important;
        line-height: 1.25 !important;
    }

    .info-card p {
        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    .card-explore {
        font-size: 9px !important;
    }
}


/* =========================================================
   390px
========================================================= */

@media (min-width: 376px) and (max-width: 400px) {

    .info-card {
        min-height: 235px !important;
        padding: 15px 11px !important;
    }

    .key-info-title h2 {
        font-size: 19px !important;
    }

    .info-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .info-icon i {
        font-size: 21px !important;
    }

    .info-card h3 {
        font-size: 13px !important;
    }

    .info-card p {
        font-size: 12px !important;
    }
}


/* =========================================================
   414px
========================================================= */

@media (min-width: 401px) and (max-width: 767px) {

    .info-card {
        min-height: 250px !important;
        padding: 16px 13px !important;
    }

    .key-info-title h2 {
        font-size: 20px !important;
    }

    .info-icon {
        width: 42px !important;
        height: 42px !important;
    }

    .info-icon i {
        font-size: 23px !important;
    }

    .info-card h3 {
        font-size: 14px !important;
    }

    .info-card p {
        font-size: 12px !important;
    }
}/* =========================================================
   COUNTRY SECTION - MOBILE RESPONSIVE
   375px / 390px / 414px
========================================================= */

@media (max-width: 767px) {

    /* SECTION */
    .country-section {
        padding: 35px 0 !important;
        overflow: hidden !important;
    }

    .country-section .container-custom {
        width: 100% !important;
        max-width: 100% !important;

        padding-left: 15px !important;
        padding-right: 15px !important;

        margin: 0 auto !important;
    }


    /* =========================================
       HEADING
    ========================================= */

    .country-section .section-heading {
        display: flex !important;
        align-items: flex-end !important;
        justify-content: space-between !important;

        gap: 10px !important;
        margin-bottom: 20px !important;
    }

    .country-section .section-heading-left {
        max-width: 75% !important;
    }

    .country-section .section-heading h2 {
        font-size: 20px !important;
        line-height: 1.2 !important;

        margin: 0 !important;
    }

    .country-section .section-heading .line {
        width: 35px !important;
        height: 3px !important;

        margin-top: 8px !important;
    }

    .country-section .view-all {
        font-size: 10px !important;

        white-space: nowrap !important;

        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;

        flex-shrink: 0 !important;
    }

    .country-section .view-all i {
        font-size: 11px !important;
    }


    /* =========================================
       COUNTRY GRID
       2 COLUMNS
    ========================================= */

    .country-section .country-grid {
        display: grid !important;

        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 10px !important;

        width: 100% !important;
    }


    /* =========================================
       COUNTRY CARD
    ========================================= */

    .country-section .country-card {
        width: 100% !important;
        min-height: 105px !important;

        padding: 14px 10px !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: center !important;
        justify-content: center !important;

        text-align: center !important;

        border-radius: 8px !important;

        box-sizing: border-box !important;
    }


    /* =========================================
       FLAG BOX
    ========================================= */

    .country-section .country-flag {
        width: 52px !important;
        height: 34px !important;

        margin-bottom: 9px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        overflow: hidden !important;
    }


    .country-section .country-flag img {
        width: 52px !important;
        height: auto !important;

        max-width: 100% !important;

        display: block !important;

        object-fit: contain !important;
    }


    /* OTHER COUNTRY GLOBE */

    .country-section .country-flag.other-country {
        width: 52px !important;
        height: 34px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .country-section .other-country i {
        font-size: 28px !important;
    }


    /* =========================================
       COUNTRY NAME
    ========================================= */

    .country-section .country-card span {
        display: block !important;

        font-size: 12px !important;
        line-height: 1.25 !important;

        font-weight: 500 !important;

        margin: 0 !important;
    }

}


/* =========================================================
   375px
========================================================= */

@media (max-width: 375px) {

    .country-section {
        padding: 28px 0 !important;
    }

    .country-section .container-custom {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .country-section .section-heading {
        margin-bottom: 16px !important;
    }

    .country-section .section-heading h2 {
        font-size: 13px !important;
    }

    .country-section .view-all {
        font-size: 9px !important;
    }

    .country-section .country-grid {
        gap: 8px !important;
    }

    .country-section .country-card {
        min-height: 95px !important;
        padding: 11px 8px !important;
    }

    .country-section .country-flag,
    .country-section .country-flag.other-country {
        width: 46px !important;
        height: 30px !important;

        margin-bottom: 7px !important;
    }

    .country-section .country-flag img {
        width: 46px !important;
    }

    .country-section .other-country i {
        font-size: 24px !important;
    }

    .country-section .country-card span {
        font-size: 10px !important;
    }
}


/* =========================================================
   390px
========================================================= */

@media (min-width: 376px) and (max-width: 400px) {

    .country-section {
        padding: 32px 0 !important;
    }

    .country-section .section-heading h2 {
        font-size: 15px !important;
    }

    .country-section .country-grid {
        gap: 9px !important;
    }

    .country-section .country-card {
        min-height: 100px !important;
        padding: 13px 9px !important;
    }

    .country-section .country-flag,
    .country-section .country-flag.other-country {
        width: 50px !important;
        height: 32px !important;
    }

    .country-section .country-flag img {
        width: 50px !important;
    }

    .country-section .other-country i {
        font-size: 26px !important;
    }

    .country-section .country-card span {
        font-size: 11px !important;
    }
}


/* =========================================================
   414px
========================================================= */

@media (min-width: 401px) and (max-width: 767px) {

    .country-section {
        padding: 35px 0 !important;
    }

    .country-section .section-heading h2 {
        font-size: 14px !important;
    }

    .country-section .country-grid {
        gap: 10px !important;
    }

    .country-section .country-card {
        min-height: 108px !important;
        padding: 14px 10px !important;
    }

    .country-section .country-flag,
    .country-section .country-flag.other-country {
        width: 54px !important;
        height: 35px !important;
    }

    .country-section .country-flag img {
        width: 54px !important;
    }

    .country-section .other-country i {
        font-size: 29px !important;
    }

    .country-section .country-card span {
        font-size: 12px !important;
    }
}
    /* ================================
   KEY INFORMATION SECTION
================================ */

.key-information-section {
    padding: 70px 0;
    background: #ffffff;
}

/* Header */
.key-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.key-info-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.key-info-title h2 {
    margin: 0;
    color: #073b7c;
font-family: "Lora", serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
}

.key-info-title span {
    width: 43px;
    height: 3px;
    background: #d9a928;
    display: block;
    border-radius: 5px;
}

/* Explore All */
.explore-all {
    color: #073b7c;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s ease;
}

.explore-all i {
    font-size: 17px;
    text-decoration: none;
}

.explore-all:hover {
    color: #d39d18;
}


/* ================================
   CARD ROW
================================ */

.key-info-row {
    border: 1px solid #e2e8ef;
}


/* ================================
   CARD
================================ */

.key-info-row {
    border: none;
}

/* ================================
   ICON
================================ */

.info-icon {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.info-icon i {
    color: #063d80;
    font-size: 32px;
    line-height: 1;
}

.refugee-icon i {
    color: #d39e16;
}


/* ================================
   CARD TITLE
================================ */

.info-card h3 {
    color: #073b7c;
    font-family:"Gelasio", serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    margin: 8px 0 12px;
}


/* ================================
   DESCRIPTION
================================ */

.info-card p {
    color: #5d6b7b;
    font-size: 15px;
    line-height: 1.45;
    margin: 0 0 14px;
}


/* ================================
   EXPLORE LINK
================================ */

.card-explore {
    color: #063d80;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    text-align:  center;
    gap: 9px;
    transition: all 0.3s ease;
}

.card-explore i {
    font-size: 17px;
    transition: transform 0.3s ease;
}

.card-explore:hover {
    color: #d39e16;
}

.card-explore:hover i {
    transform: translateX(5px);
}

/* =========================================
   OTHER AREAS OF INFORMATION
========================================= */

.other-info-section {
    padding: 15px 0 26px;
    background: #fff;
}


/* =========================
   HEADER
========================= */

.other-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.other-info-title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.other-info-title h2 {
    margin: 0;
    color: #073b7c;
font-family: "Lora", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.other-info-title span {
    width: 42px;
    height: 3px;
    background: #d6a522;
    display: block;
    border-radius: 10px;
}


/* Explore All Topics */

.other-explore-all {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #073b7c;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;

    transition: 0.3s ease;
}

.other-explore-all i {
    font-size: 17px;
}

.other-explore-all:hover {
    color: #d6a522;
}


/* =========================
   CARD
========================= */

.other-info-card {
    min-height: 115px;

    padding: 14px 8px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;

    background: #fff;

    border: 1px solid #e2e8ef;
    border-radius: 4px;

    text-decoration: none;

    box-shadow: 0 2px 8px rgba(7, 59, 124, 0.03);

    transition: all 0.3s ease;
}


/* Hover */

.other-info-card:hover {
    transform: translateY(-4px);

    border-color: #cbdbea;

    box-shadow: 0 8px 22px rgba(7, 59, 124, 0.10);
}
/* ==========================================
   ABOUT MOEOC SECTION
========================================== */

.about-moeoc-section {
    padding: 30px 0;
    background: #ffffff;
}

.about-moeoc-box {
    background: #ffffff;
    border: 1px solid #e1e7ef;
    border-radius: 5px;
    overflow: hidden;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.about-moeoc-content {
    padding: 25px 30px 28px;
    height: 100%;
}


/* Heading */

.about-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.about-heading h2 {
    margin: 0;
    color: #073b7c;
font-family: "Lora", serif;
    font-size: 24px;
    font-weight: 700;
}

.about-heading span {
    width: 43px;
    height: 3px;
    background: #d5a522;
    border-radius: 10px;
    display: block;
}


/* Paragraph */

.about-moeoc-content p {
    color: #344f70;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 18px;
    max-width: 650px;
}


/* ==========================================
   BUTTON
========================================== */

.about-moeoc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    margin-top: 2px;
    padding: 11px 18px;

    min-width: 250px;

    background: #073b7c;
    color: #ffffff;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 600;
    text-decoration: none;

    transition: all 0.3s ease;
}

.about-moeoc-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.about-moeoc-btn:hover {
    background: #d5a522;
    color: #ffffff;
}

.about-moeoc-btn:hover i {
    transform: translateX(5px);
}


/* ==========================================
   RIGHT INFORMATION PANEL
========================================== */

.moeoc-info-panel {
    height: 100%;
    margin: 12px;
    padding: 10px 15px;

    background: #fafdff;

    border: 1px solid #e1e7ef;
    border-radius: 4px;
}


/* ==========================================
   INFORMATION ITEM
========================================== */

.moeoc-info-item {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 6px 0;
}


/* Icon */

.moeoc-info-icon {
    width: 35px;
    min-width: 35px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.moeoc-info-icon i {
    color: #063d80;
    font-size: 27px;
    line-height: 1;
}


/* Text */

.moeoc-info-text {
    flex: 1;
}

.moeoc-info-text p {
    margin: 0;

    color: #385474;

    font-size: 12px;
    line-height: 1.4;
}


/* ==========================================
   HOVER EFFECT
========================================== */

.moeoc-info-item {
    transition: all 0.25s ease;
}

.moeoc-info-item:hover {
    transform: translateX(3px);
}

.moeoc-info-item:hover .moeoc-info-icon i {
    color: #d5a522;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .about-moeoc-content {
        padding: 30px;
    }

    .moeoc-info-panel {
        margin: 0 20px 20px;
    }

}


@media (max-width: 767px) {

    .about-moeoc-section {
        padding: 20px 0;
    }

    .about-moeoc-content {
        padding: 25px 20px;
    }

    .about-heading h2 {
        font-size: 21px;
    }

    .about-heading span {
        width: 32px;
    }

    .about-moeoc-content p {
        font-size: 12px;
    }

    .about-moeoc-btn {
        width: 100%;
        min-width: auto;
    }

    .moeoc-info-panel {
        margin: 0 15px 15px;
        padding: 12px;
    }

}

/* =========================
   ICON
========================= */

.other-info-icon {
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 5px;
}

.other-info-icon i {
    font-size: 36px;
    color: #063d80;
    line-height: 1;

    transition: all 0.3s ease;
}

.other-info-card:hover .other-info-icon i {
    transform: scale(1.08);
}


/* =========================
   CARD TITLE
========================= */

.other-info-card h3 {
    margin: 0;

    color: #073b7c;


    font-size: 12px;
    font-weight: 600;

    line-height: 1.25;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .other-info-title h2 {
        font-size: 22px;
    }

    .other-info-card {
        min-height: 115px;
    }

}


@media (max-width: 767px) {

    .other-info-section {
        padding: 35px 0;
    }

    .other-info-header {
        gap: 15px;
        align-items: flex-start;
    }

    .other-info-title {
        gap: 10px;
    }

    .other-info-title h2 {
        font-size: 19px;
    }

    .other-info-title span {
        width: 30px;
    }

    .other-explore-all {
        font-size: 11px;
        white-space: nowrap;
    }

    .other-info-icon i {
        font-size: 32px;
    }

    .other-info-card h3 {
        font-size: 11px;
    }

}


@media (max-width: 480px) {

    .other-info-header {
        flex-direction: column;
    }

    .other-explore-all {
        align-self: flex-end;
    }

}
/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .info-card {
        border-bottom: 1px solid #e2e8ef;
    }

    .info-card:nth-child(2) {
        border-right: 0;
    }

    .info-card:nth-child(3),
    .info-card:nth-child(4) {
        border-bottom: 0;
    }

}


@media (max-width: 767px) {

    .key-information-section {
        padding: 50px 0;
    }

    .key-info-header {
        align-items: flex-start;
        gap: 15px;
    }

    .key-info-title {
        gap: 10px;
    }

    .key-info-title h2 {
        font-size: 22px;
    }

    .key-info-title span {
        width: 30px;
    }

    .explore-all {
        font-size: 11px;
        white-space: nowrap;
    }

    .info-card {
        border-right: 0 !important;
        border-bottom: 1px solid #e2e8ef !important;
    }

    .info-card:last-child {
        border-bottom: 0 !important;
    }

}






















/* =========================================
   HERO ANIMATIONS
========================================= */

/* Main Hero */
.hero-section {
    overflow: hidden !important;
}

/* Left Content */
.hero-content {
    animation: heroContentIn 1s ease-out both !important;
}

/* Heading */
.hero-content h1 {
    animation: heroHeadingIn 0.9s ease-out 0.15s both !important;
}

/* Gold Line */
.hero-gold-line {
    transform-origin: left center !important;
    animation: heroLineIn 0.7s ease-out 0.45s both !important;
}

/* Subtitle */
.hero-subtitle {
    animation: heroTextIn 0.8s ease-out 0.55s both !important;
}

/* Paragraphs */
.hero-content p {
    animation: heroTextIn 0.8s ease-out 0.7s both !important;
}

.hero-content p:nth-of-type(2) {
    animation-delay: 0.85s !important;
}

/* Button */
.hero-primary-btn {
    animation: heroButtonIn 0.8s ease-out 1s both !important;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease !important;
}

/* Button Hover */
.hero-primary-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(8, 45, 91, 0.22) !important;
}

.hero-primary-btn i {
    transition: transform 0.3s ease !important;
}

.hero-primary-btn:hover i {
    transform: translateX(5px) !important;
}


/* =========================================
   RIGHT SIDE
========================================= */

.hero-right {
    animation: heroRightIn 1s ease-out 0.25s both !important;
}

/* Quote */
.hero-quote {
    animation: heroQuoteIn 0.9s ease-out 0.6s both !important;
}

/* Quote Line */
.quote-line {
    transform-origin: left center !important;
    animation: heroLineIn 0.6s ease-out 0.9s both !important;
}

/* Hero Image */
.hero-visual {
    animation: heroImageIn 1.1s ease-out 0.45s both !important;
}

/* Image itself - subtle floating */
.hero-visual img {
    animation: heroFloat 4s ease-in-out 1.5s infinite !important;
}


/* =========================================
   KEYFRAMES
========================================= */

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroHeadingIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroLineIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroRightIn {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroQuoteIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImageIn {
    from {
        opacity: 0;
        transform: translateY(35px) scale(0.92);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .hero-content {
        animation: heroMobileContent 0.8s ease-out both !important;
    }.hero-map{
		display: block !important;
	}

    .hero-right {
        animation: none !important;
    }

    .hero-visual img {
        animation: heroMobileFloat 4s ease-in-out 1.2s infinite !important;
    }

    .hero-primary-btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}

@keyframes heroMobileContent {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroMobileFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}


/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-section *,
    .hero-section *::before,
    .hero-section *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}.hero-map{
	display: none;
}/* =========================================
   KEY INFORMATION - PREMIUM DESIGN
========================================= */

.key-information-section {
    position: relative !important;
    padding: 75px 0 !important;
    background: #f7f9fc !important;
    overflow: hidden !important;
}

/* Soft background decoration */
.key-information-section::before {
    content: "" !important;
    position: absolute !important;
    width: 280px !important;
    height: 280px !important;
    border-radius: 50% !important;
    background: rgba(8, 45, 91, 0.035) !important;
    top: -120px !important;
    right: -80px !important;
    pointer-events: none !important;
}

.key-information-section::after {
    content: "" !important;
    position: absolute !important;
    width: 220px !important;
    height: 220px !important;
    border-radius: 50% !important;
    background: rgba(212, 160, 23, 0.035) !important;
    bottom: -100px !important;
    left: -80px !important;
    pointer-events: none !important;
}


/* =========================================
   SECTION HEADER
========================================= */

.key-info-header {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    margin-bottom: 38px !important;
}

.key-info-title {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.key-info-title h2 {
    margin: 0 !important;
    color: #082d5b !important;
    /* font-family: Georgia, "Times New Roman", serif !important; */
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.key-info-title span {
    width: 48px !important;
    height: 4px !important;
    display: block !important;
    background: #d4a017 !important;
    border-radius: 5px !important;
    margin-top: 8px !important;
}

.explore-all {
    color: #082d5b !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    transition: all 0.3s ease !important;
}

.explore-all i {
    transition: transform 0.3s ease !important;
}

.explore-all:hover {
    color: #d4a017 !important;
}

.explore-all:hover i {
    transform: translateX(5px) !important;
}


/* =========================================
   CARD ROW
========================================= */

.key-information-section .row {
    position: relative !important;
    z-index: 2 !important;
}


/* =========================================
   PREMIUM CARD
========================================= */

.info-card {
    position: relative !important;
    height: 100% !important;
    min-height: 285px !important;
    padding: 28px 25px !important;
    background: #ffffff !important;
    border: 1px solid #e8edf3 !important;
    border-radius: 14px !important;
    overflow: hidden !important;

    display: flex !important;
    flex-direction: column !important;

    box-shadow: 0 8px 30px rgba(8, 45, 91, 0.06) !important;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease !important;
}


/* Gold top line */
.info-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 4px !important;
    background: #d4a017 !important;
    transition: width 0.4s ease !important;
}


/* Subtle background glow */
.info-card::after {
    content: "" !important;
    position: absolute !important;
    width: 110px !important;
    height: 110px !important;
    border-radius: 50% !important;
    background: rgba(8, 45, 91, 0.025) !important;
    top: -45px !important;
    right: -45px !important;
    transition: transform 0.4s ease !important;
    pointer-events: none !important;
}


/* Card hover */
.info-card:hover {
    transform: translateY(-9px) !important;
    border-color: rgba(212, 160, 23, 0.45) !important;
    box-shadow: 0 18px 40px rgba(8, 45, 91, 0.12) !important;
}

.info-card:hover::before {
    width: 100% !important;
}

.info-card:hover::after {
    transform: scale(1.5) !important;
}


/* =========================================
   ICON
========================================= */

.info-icon {
    position: relative !important;
    z-index: 2 !important;

    width: 58px !important;
    height: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin-bottom: 22px !important;

    background: #eef4fb !important;
    border: 1px solid #dce8f5 !important;
    border-radius: 12px !important;

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease !important;
}

.info-icon i {
    color: #082d5b !important;
    font-size: 27px !important;
    line-height: 1 !important;
    transition: color 0.3s ease, transform 0.3s ease !important;
}

.info-card:hover .info-icon {
    background: #082d5b !important;
    border-color: #082d5b !important;
    transform: translateY(-3px) rotate(-3deg) !important;
    box-shadow: 0 8px 20px rgba(8, 45, 91, 0.2) !important;
}

.info-card:hover .info-icon i {
    color: #ffffff !important;
    transform: scale(1.08) !important;
}


/* =========================================
   CARD CONTENT
========================================= */

.info-card h3 {
    position: relative !important;
    z-index: 2 !important;

    color: #082d5b !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;

    margin: 0 0 13px !important;
}

.info-card p {
    position: relative !important;
    z-index: 2 !important;
    color: #687587 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
    margin: 0 0 20px !important;
    flex-grow: 1 !important;
}


/* =========================================
   EXPLORE LINK
========================================= */

.card-explore {
    position: relative !important;
    z-index: 2 !important;

    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;

    width: fit-content !important;

    color: #082d5b !important;
    font-size: 12px !important;
    font-weight: 700 !important;

    text-decoration: none !important;

    transition: color 0.3s ease !important;
}

.card-explore i {
    font-size: 14px !important;
    transition: transform 0.3s ease !important;
}

.card-explore:hover {
    color: #d4a017 !important;
}

.card-explore:hover i {
    transform: translateX(5px) !important;
}


/* =========================================
   CARD ANIMATION
========================================= */

.info-card {
    animation: keyCardReveal 0.7s ease both !important;
}

.col-lg-3:nth-child(1) .info-card {
    animation-delay: 0.1s !important;
}

.col-lg-3:nth-child(2) .info-card {
    animation-delay: 0.2s !important;
}

.col-lg-3:nth-child(3) .info-card {
    animation-delay: 0.3s !important;
}

.col-lg-3:nth-child(4) .info-card {
    animation-delay: 0.4s !important;
}

@keyframes keyCardReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .key-information-section {
        padding: 55px 0 !important;
    }

    .key-info-title h2 {
        font-size: 27px !important;
    }

    .info-card {
        min-height: 270px !important;
        padding: 23px 20px !important;
    }

    .info-card h3 {
        font-size: 18px !important;
    }

    .info-card p {
        font-size: 12px !important;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .key-information-section {
        padding: 38px 0 !important;
    }

    .key-information-section .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .key-info-header {
        align-items: flex-end !important;
        gap: 8px !important;
        margin-bottom: 22px !important;
    }

    .key-info-title {
        gap: 8px !important;
        flex-wrap: wrap !important;
    }

    .key-info-title h2 {
        font-size: 21px !important;
        line-height: 1.2 !important;
    }

    .key-info-title span {
        width: 32px !important;
        height: 3px !important;
        margin-top: 5px !important;
    }

    .explore-all {
        font-size: 10px !important;
        gap: 4px !important;
        white-space: nowrap !important;
    }

    .key-information-section .row {
        --bs-gutter-x: 10px !important;
        --bs-gutter-y: 10px !important;
        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    .key-information-section .row > [class*="col-"] {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .info-card {
        min-height: 235px !important;
        padding: 17px 13px !important;
        border-radius: 10px !important;
        box-shadow: 0 5px 18px rgba(8, 45, 91, 0.06) !important;
    }

    .info-icon {
        width: 43px !important;
        height: 43px !important;
        border-radius: 9px !important;
        margin-bottom: 14px !important;
    }

    .info-icon i {
        font-size: 21px !important;
    }

    .info-card h3 {
        font-size: 14px !important;
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
    }

    .info-card p {
        font-size: 12px !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }

    .card-explore {
        font-size: 10px !important;
        gap: 4px !important;
    }

    .card-explore i {
        font-size: 11px !important;
    }

    /* Disable large hover movement on touch */
    .info-card:hover {
        transform: translateY(-4px) !important;
    }
}


/* =========================================
   375px
========================================= */

@media (max-width: 375px) {

    .key-information-section {
        padding: 30px 0 !important;
    }

    .key-information-section .container {
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    .key-info-title h2 {
        font-size: 18px !important;
    }

    .explore-all {
        font-size: 9px !important;
    }

    .info-card {
        min-height: 220px !important;
        padding: 14px 11px !important;
    }

    .info-icon {
        width: 38px !important;
        height: 38px !important;
        margin-bottom: 11px !important;
    }

    .info-icon i {
        font-size: 19px !important;
    }

    .info-card h3 {
        font-size: 12px !important;
        margin-bottom: 7px !important;
    }

    .info-card p {
        font-size: 12px !important;
        line-height: 1.45 !important;
    }

    .card-explore {
        font-size: 9px !important;
    }
}


/* =========================================
   390px
========================================= */

@media (min-width: 376px) and (max-width: 400px) {

    .info-card {
        min-height: 230px !important;
    }

    .info-card h3 {
        font-size: 13px !important;
    }

    .info-card p {
        font-size: 12px !important;
    }
}


/* =========================================
   414px
========================================= */

@media (min-width: 401px) and (max-width: 767px) {

    .key-information-section {
        padding: 40px 0 !important;
    }

    .key-info-title h2 {
        font-size: 21px !important;
    }

    .info-card {
        min-height: 245px !important;
        padding: 18px 14px !important;
    }

    .info-icon {
        width: 45px !important;
        height: 45px !important;
    }

    .info-card h3 {
        font-size: 14px !important;
    }

    .info-card p {
        font-size: 12px !important;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .key-information-section *,
    .key-information-section *::before,
    .key-information-section *::after {
        animation: none !important;
        transition: none !important;
    }
}/* =========================================
   COUNTRY SECTION - PREMIUM DESIGN
========================================= */

.country-section {
    position: relative !important;
    padding: 25px 0 !important;
    background: #ffffff !important;
    overflow: hidden !important;
}


/* Background decoration */
.country-section::before {
    content: "" !important;
    position: absolute !important;
    width: 300px !important;
    height: 300px !important;
    border-radius: 50% !important;
    background: rgba(8, 45, 91, 0.025) !important;
    top: -150px !important;
    left: -100px !important;
    pointer-events: none !important;
}

.country-section::after {
    content: "" !important;
    position: absolute !important;
    width: 240px !important;
    height: 240px !important;
    border-radius: 50% !important;
    background: rgba(212, 160, 23, 0.025) !important;
    bottom: -120px !important;
    right: -80px !important;
    pointer-events: none !important;
}


/* =========================================
   SECTION HEADING
========================================= */

.country-section .section-heading {
    position: relative !important;
    z-index: 2 !important;

    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;

    gap: 20px !important;
    margin-bottom: 38px !important;
}

.country-section .section-heading-left {
    max-width: 720px !important;
}

.country-section .section-heading h2 {
    margin: 0 !important;
    color: #082d5b !important;
    /* font-family: Georgia, "Times New Roman", serif !important; */
    font-size: 26px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.country-section .section-heading .line {
    width: 48px !important;
    height: 4px !important;

    margin-top: 12px !important;

    background: #d4a017 !important;
    border-radius: 5px !important;
}

.country-section .view-all {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;

    color: #082d5b !important;
    font-size: 13px !important;
    font-weight: 600 !important;

    text-decoration: none !important;
    white-space: nowrap !important;

    transition: color 0.3s ease !important;
}

.country-section .view-all i {
    transition: transform 0.3s ease !important;
}

.country-section .view-all:hover {
    color: #d4a017 !important;
}

.country-section .view-all:hover i {
    transform: translateX(5px) !important;
}




/* =========================================
   COUNTRY CARD
========================================= */

.country-section .country-card {
    position: relative !important;
    min-height: 155px !important;
    padding: 12px 1px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #ffffff !important;
    border: 1px solid #e7edf4 !important;
    border-radius: 14px !important;
    box-shadow: 0 7px 25px rgba(8, 45, 91, 0.055) !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease !important;
}


/* Gold top border */
.country-section .country-card::before {
    content: "" !important;

    position: absolute !important;
    top: 0 !important;
    left: 0 !important;

    width: 0 !important;
    height: 3px !important;

    background: #d4a017 !important;

    transition: width 0.4s ease !important;
}


/* Soft card glow */
.country-section .country-card::after {
    content: "" !important;

    position: absolute !important;

    width: 100px !important;
    height: 100px !important;

    border-radius: 50% !important;

    background: rgba(8, 45, 91, 0.025) !important;

    top: -45px !important;
    right: -45px !important;

    transition: transform 0.45s ease !important;
}


/* Hover */
.country-section .country-card:hover {
    transform: translateY(-8px) !important;

    border-color: rgba(212, 160, 23, 0.45) !important;

    box-shadow:
        0 16px 35px rgba(8, 45, 91, 0.11) !important;
}

.country-section .country-card:hover::before {
    width: 100% !important;
}

.country-section .country-card:hover::after {
    transform: scale(1.5) !important;
}


/* =========================================
   FLAGS
========================================= */

.country-section .country-flag {
    position: relative !important;
    z-index: 2 !important;

    width: 62px !important;
    height: 42px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin-bottom: 14px !important;

    border-radius: 5px !important;

    overflow: hidden !important;

    background: #f5f7fa !important;

    box-shadow:
        0 3px 10px rgba(8, 45, 91, 0.08) !important;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease !important;
}

.country-section .country-flag img {
    width: 62px !important;
    height: auto !important;

    max-width: 100% !important;

    display: block !important;

    object-fit: contain !important;

    transition: transform 0.35s ease !important;
}

.country-section .country-card:hover .country-flag {
    transform: translateY(-3px) !important;

    box-shadow:
        0 6px 15px rgba(8, 45, 91, 0.13) !important;
}

.country-section .country-card:hover .country-flag img {
    transform: scale(1.06) !important;
}


/* =========================================
   OTHER COUNTRIES ICON
========================================= */

.country-section .country-flag.other-country {
    background: #eef4fb !important;
}

.country-section .other-country i {
    color: #082d5b !important;
    font-size: 31px !important;

    transition:
        color 0.3s ease,
        transform 0.35s ease !important;
}

.country-section .country-card:hover .other-country i {
    color: #d4a017 !important;
    transform: rotate(10deg) scale(1.08) !important;
}


/* =========================================
   COUNTRY NAME
========================================= */

.country-section .country-card span {
    position: relative !important;
    z-index: 2 !important;

    display: block !important;

    color: #082d5b !important;

    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 600 !important;

    transition: color 0.3s ease !important;
}

.country-section .country-card:hover span {
    color: #b3860b !important;
}


/* =========================================
   REVEAL ANIMATION
========================================= */

.country-section .country-card {
    animation: countryCardReveal 0.7s ease both !important;
}

.country-section .country-card:nth-child(1) {
    animation-delay: 0.05s !important;
}

.country-section .country-card:nth-child(2) {
    animation-delay: 0.12s !important;
}

.country-section .country-card:nth-child(3) {
    animation-delay: 0.19s !important;
}

.country-section .country-card:nth-child(4) {
    animation-delay: 0.26s !important;
}

.country-section .country-card:nth-child(5) {
    animation-delay: 0.33s !important;
}

.country-section .country-card:nth-child(6) {
    animation-delay: 0.40s !important;
}

.country-section .country-card:nth-child(7) {
    animation-delay: 0.47s !important;
}

.country-section .country-card:nth-child(8) {
    animation-delay: 0.54s !important;
}

@keyframes countryCardReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .country-section {
        padding: 55px 0 !important;
    }

    .country-section .section-heading h2 {
        font-size: 27px !important;
    }

    .country-section .country-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    .country-section .country-card {
        min-height: 145px !important;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .country-section {
        padding: 38px 0 !important;
    }

    .country-section .container-custom {
        width: 100% !important;
        max-width: 100% !important;

        padding-left: 15px !important;
        padding-right: 15px !important;

        margin: 0 auto !important;
    }

    .country-section .section-heading {
        align-items: flex-end !important;
        gap: 10px !important;
        margin-bottom: 22px !important;
    }

    .country-section .section-heading-left {
        max-width: 74% !important;
    }

    .country-section .section-heading h2 {
        font-size: 21px !important;
        line-height: 1.2 !important;
    }

    .country-section .section-heading .line {
        width: 32px !important;
        height: 3px !important;
        margin-top: 8px !important;
    }

    .country-section .view-all {
        font-size: 10px !important;
        gap: 4px !important;
    }

    .country-section .country-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
    }

    .country-section .country-card {
        min-height: 110px !important;
        padding: 15px 10px !important;
        border-radius: 10px !important;

        box-shadow:
            0 5px 16px rgba(8, 45, 91, 0.055) !important;
    }

    .country-section .country-flag {
        width: 50px !important;
        height: 32px !important;

        margin-bottom: 9px !important;

        border-radius: 4px !important;
    }

    .country-section .country-flag img {
        width: 50px !important;
    }

    .country-section .country-flag.other-country {
        width: 50px !important;
        height: 32px !important;
    }

    .country-section .other-country i {
        font-size: 25px !important;
    }

    .country-section .country-card span {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    .country-section .country-card:hover {
        transform: translateY(-4px) !important;
    }
}


/* =========================================
   375px
========================================= */

@media (max-width: 375px) {

    .country-section {
        padding: 30px 0 !important;
    }

    .country-section .container-custom {
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    .country-section .section-heading h2 {
        font-size: 16px !important;
    }

    .country-section .view-all {
        font-size: 9px !important;
    }

    .country-section .country-grid {
        gap: 8px !important;
    }

    .country-section .country-card {
        min-height: 96px !important;
        padding: 12px 8px !important;
    }

    .country-section .country-flag {
        width: 46px !important;
        height: 30px !important;
        margin-bottom: 7px !important;
    }

    .country-section .country-flag img {
        width: 46px !important;
    }

    .country-section .country-flag.other-country {
        width: 46px !important;
        height: 30px !important;
    }

    .country-section .other-country i {
        font-size: 23px !important;
    }

    .country-section .country-card span {
        font-size: 10px !important;
    }
}


/* =========================================
   390px
========================================= */

@media (min-width: 376px) and (max-width: 400px) {

    .country-section {
        padding: 34px 0 !important;
    }

    .country-section .section-heading h2 {
        font-size: 19px !important;
    }

    .country-section .country-card {
        min-height: 103px !important;
    }

    .country-section .country-flag {
        width: 49px !important;
        height: 32px !important;
    }

    .country-section .country-flag img {
        width: 49px !important;
    }

    .country-section .country-card span {
        font-size: 10.5px !important;
    }
}


/* =========================================
   414px
========================================= */

@media (min-width: 401px) and (max-width: 767px) {

    .country-section {
        padding: 40px 0 !important;
    }

    .country-section .section-heading h2 {
        font-size: 21px !important;
    }

    .country-section .country-card {
        min-height: 112px !important;
        padding: 15px 10px !important;
    }

    .country-section .country-flag {
        width: 54px !important;
        height: 35px !important;
    }

    .country-section .country-flag img {
        width: 54px !important;
    }

    .country-section .country-card span {
        font-size: 12px !important;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .country-section *,
    .country-section *::before,
    .country-section *::after {
        animation: none !important;
        transition: none !important;
    }
}/* =========================================
   OTHER INFORMATION - PREMIUM DESIGN
========================================= */

.other-info-section {
    position: relative !important;
    padding: 75px 0 !important;
    background: #f7f9fc !important;
    overflow: hidden !important;
}


/* Background Decoration */
.other-info-section::before {
    content: "" !important;
    position: absolute !important;
    width: 280px !important;
    height: 280px !important;
    border-radius: 50% !important;
    background: rgba(8, 45, 91, 0.03) !important;
    top: -130px !important;
    right: -90px !important;
    pointer-events: none !important;
}

.other-info-section::after {
    content: "" !important;
    position: absolute !important;
    width: 220px !important;
    height: 220px !important;
    border-radius: 50% !important;
    background: rgba(212, 160, 23, 0.035) !important;
    bottom: -100px !important;
    left: -80px !important;
    pointer-events: none !important;
}


/* =========================================
   SECTION HEADING
========================================= */

.other-info-section .section-heading {
    position: relative !important;
    z-index: 2 !important;

    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;

    gap: 20px !important;
    margin-bottom: 38px !important;
}

.other-info-section .section-heading-left {
    max-width: 700px !important;
}

.other-info-section .section-heading h2 {
    margin: 0 !important;
    color: #082d5b !important;
    /* font-family: Georgia, "Times New Roman", serif !important; */
    font-size: 32px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.other-info-section .section-heading .line {
    width: 48px !important;
    height: 4px !important;

    margin-top: 12px !important;

    background: #d4a017 !important;
    border-radius: 5px !important;
}

.other-info-section .view-all {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;

    color: #082d5b !important;
    font-size: 13px !important;
    font-weight: 600 !important;

    text-decoration: none !important;
    white-space: nowrap !important;

    transition: color 0.3s ease !important;
}

.other-info-section .view-all i {
    transition: transform 0.3s ease !important;
}

.other-info-section .view-all:hover {
    color: #d4a017 !important;
}

.other-info-section .view-all:hover i {
    transform: translateX(5px) !important;
}


/* =========================================
   CARD ROW
========================================= */

.other-info-section .row {
    position: relative !important;
    z-index: 2 !important;
}


/* =========================================
   OTHER INFO CARD
========================================= */

.other-info-card {
    position: relative !important;

    width: 100% !important;
    min-height: 175px !important;

    padding: 25px 15px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;

    background: #ffffff !important;
    border: 1px solid #e5ebf2 !important;
    border-radius: 13px !important;

    text-decoration: none !important;

    box-shadow:
        0 7px 24px rgba(8, 45, 91, 0.055) !important;

    overflow: hidden !important;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease !important;
}


/* Gold Top Accent */
.other-info-card::before {
    content: "" !important;

    position: absolute !important;
    top: 0 !important;
    left: 0 !important;

    width: 0 !important;
    height: 3px !important;

    background: #d4a017 !important;

    transition: width 0.4s ease !important;
}


/* Soft Circle */
.other-info-card::after {
    content: "" !important;

    position: absolute !important;

    width: 95px !important;
    height: 95px !important;

    border-radius: 50% !important;

    background: rgba(8, 45, 91, 0.025) !important;

    top: -40px !important;
    right: -40px !important;

    transition: transform 0.4s ease !important;

    pointer-events: none !important;
}


/* Hover */
.other-info-card:hover {
    transform: translateY(-8px) !important;

    border-color: rgba(212, 160, 23, 0.45) !important;

    box-shadow:
        0 17px 35px rgba(8, 45, 91, 0.11) !important;
}

.other-info-card:hover::before {
    width: 100% !important;
}

.other-info-card:hover::after {
    transform: scale(1.5) !important;
}


/* =========================================
   ICON
========================================= */

.other-info-icon {
    position: relative !important;
    z-index: 2 !important;

    width: 55px !important;
    height: 55px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin-bottom: 18px !important;

    background: #eef4fb !important;
    border: 1px solid #dce8f5 !important;

    border-radius: 11px !important;

    transition:
        background 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease !important;
}

.other-info-icon i {
    color: #082d5b !important;

    font-size: 25px !important;
    line-height: 1 !important;

    transition:
        color 0.3s ease,
        transform 0.3s ease !important;
}


/* Icon Hover */
.other-info-card:hover .other-info-icon {
    background: #082d5b !important;
    border-color: #082d5b !important;

    transform: translateY(-3px) rotate(-3deg) !important;

    box-shadow:
        0 8px 18px rgba(8, 45, 91, 0.18) !important;
}

.other-info-card:hover .other-info-icon i {
    color: #ffffff !important;

    transform: scale(1.08) !important;
}


/* =========================================
   CARD TITLE
========================================= */

.other-info-card h3 {
    position: relative !important;
    z-index: 2 !important;
    margin: 0 !important;
    color: #082d5b !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    transition: color 0.3s ease !important;
    /* font-family: Gelasio; */
}

.other-info-card:hover h3 {
    color: #b3860b !important;
}


/* =========================================
   CARD ANIMATION
========================================= */

.other-info-card {
    animation: otherInfoReveal 0.7s ease both !important;
}

.other-info-section .col-lg-2:nth-child(1) .other-info-card {
    animation-delay: 0.05s !important;
}

.other-info-section .col-lg-2:nth-child(2) .other-info-card {
    animation-delay: 0.12s !important;
}

.other-info-section .col-lg-2:nth-child(3) .other-info-card {
    animation-delay: 0.19s !important;
}

.other-info-section .col-lg-2:nth-child(4) .other-info-card {
    animation-delay: 0.26s !important;
}

.other-info-section .col-lg-2:nth-child(5) .other-info-card {
    animation-delay: 0.33s !important;
}

.other-info-section .col-lg-2:nth-child(6) .other-info-card {
    animation-delay: 0.40s !important;
}

@keyframes otherInfoReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .other-info-section {
        padding: 55px 0 !important;
    }

    .other-info-section .section-heading h2 {
        font-size: 27px !important;
    }

    .other-info-card {
        min-height: 155px !important;
    }

    .other-info-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 14px !important;
    }

    .other-info-icon i {
        font-size: 22px !important;
    }

    .other-info-card h3 {
        font-size: 14px !important;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .other-info-section {
        padding: 38px 0 !important;
    }

    .other-info-section .container {
        width: 100% !important;
        max-width: 100% !important;

        padding-left: 15px !important;
        padding-right: 15px !important;

        margin: 0 auto !important;
    }

    .other-info-section .section-heading {
        align-items: flex-end !important;
        gap: 10px !important;
        margin-bottom: 22px !important;
    }

    .other-info-section .section-heading-left {
        max-width: 72% !important;
    }

    .other-info-section .section-heading h2 {
        font-size: 21px !important;
        line-height: 1.2 !important;
    }

    .other-info-section .section-heading .line {
        width: 32px !important;
        height: 3px !important;
        margin-top: 8px !important;
    }

    .other-info-section .view-all {
        font-size: 10px !important;
        gap: 4px !important;
    }


    /* 2 columns */
    .other-info-section .row {
        --bs-gutter-x: 10px !important;
        --bs-gutter-y: 10px !important;

        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    .other-info-section .row > [class*="col-"] {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;

        padding-left: 5px !important;
        padding-right: 5px !important;
    }


    /* Cards */
    .other-info-card {
        min-height: 125px !important;

        padding: 15px 10px !important;

        border-radius: 10px !important;

        box-shadow:
            0 5px 17px rgba(8, 45, 91, 0.055) !important;
    }

    .other-info-icon {
        width: 42px !important;
        height: 42px !important;

        margin-bottom: 10px !important;

        border-radius: 9px !important;
    }

    .other-info-icon i {
        font-size: 20px !important;
    }

    .other-info-card h3 {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    .other-info-card:hover {
        transform: translateY(-4px) !important;
    }
}


/* =========================================
   375px
========================================= */

@media (max-width: 375px) {

    .other-info-section {
        padding: 30px 0 !important;
    }

    .other-info-section .container {
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    .other-info-section .section-heading h2 {
        font-size: 18px !important;
    }

    .other-info-section .view-all {
        font-size: 9px !important;
    }

    .other-info-section .row {
        --bs-gutter-x: 8px !important;
        --bs-gutter-y: 8px !important;

        margin-left: -4px !important;
        margin-right: -4px !important;
    }

    .other-info-section .row > [class*="col-"] {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .other-info-card {
        min-height: 112px !important;
        padding: 13px 8px !important;
    }

    .other-info-icon {
        width: 36px !important;
        height: 36px !important;

        margin-bottom: 8px !important;
    }

    .other-info-icon i {
        font-size: 18px !important;
    }

    .other-info-card h3 {
        font-size: 10px !important;
    }
}


/* =========================================
   390px
========================================= */

@media (min-width: 376px) and (max-width: 400px) {

    .other-info-section {
        padding: 34px 0 !important;
    }

    .other-info-section .section-heading h2 {
        font-size: 19px !important;
    }

    .other-info-card {
        min-height: 120px !important;
    }

    .other-info-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .other-info-icon i {
        font-size: 19px !important;
    }

    .other-info-card h3 {
        font-size: 10.5px !important;
    }
}


/* =========================================
   414px
========================================= */

@media (min-width: 401px) and (max-width: 767px) {

    .other-info-section {
        padding: 40px 0 !important;
    }

    .other-info-section .section-heading h2 {
        font-size: 21px !important;
    }

    .other-info-card {
        min-height: 130px !important;
        padding: 16px 11px !important;
    }

    .other-info-icon {
        width: 44px !important;
        height: 44px !important;
    }

    .other-info-icon i {
        font-size: 21px !important;
    }

    .other-info-card h3 {
        font-size: 11.5px !important;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .other-info-section *,
    .other-info-section *::before,
    .other-info-section *::after {
        animation: none !important;
        transition: none !important;
    }
}/* =========================================
   ABOUT MOEOC - PREMIUM DESIGN
========================================= */

.about-moeoc-section {
    position: relative !important;
    padding: 80px 0 !important;
    background: #ffffff !important;
    overflow: hidden !important;
}


/* Background Decoration */
.about-moeoc-section::before {
    content: "" !important;
    position: absolute !important;
    width: 350px !important;
    height: 350px !important;
    border-radius: 50% !important;
    background: rgba(8, 45, 91, 0.025) !important;
    top: -180px !important;
    left: -150px !important;
    pointer-events: none !important;
}

.about-moeoc-section::after {
    content: "" !important;
    position: absolute !important;
    width: 260px !important;
    height: 260px !important;
    border-radius: 50% !important;
    background: rgba(212, 160, 23, 0.03) !important;
    bottom: -130px !important;
    right: -100px !important;
    pointer-events: none !important;
}


/* =========================================
   MAIN BOX
========================================= */

.about-moeoc-box {
    position: relative !important;
    z-index: 2 !important;

    background: #f7f9fc !important;

    border: 1px solid #e6ecf3 !important;
    border-radius: 18px !important;

    overflow: hidden !important;

    box-shadow:
        0 12px 40px rgba(8, 45, 91, 0.07) !important;
}


/* =========================================
   LEFT CONTENT
========================================= */

.about-moeoc-content {
    height: 100% !important;

    padding: 50px 50px !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}


/* Heading */
.about-heading {
    display: flex !important;
    align-items: center !important;
    gap: 13px !important;
    margin-bottom: 22px !important;
font-family: "Lora", serif;
}

.about-heading h2 {
    margin: 0 !important;
    color: #082d5b !important;
    /* font-family: Georgia, "Times New Roman", serif !important; */
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.about-heading span {
    display: block !important;

    width: 48px !important;
    height: 4px !important;

    margin-top: 8px !important;

    background: #d4a017 !important;
    border-radius: 5px !important;
}


/* Paragraph */
.about-moeoc-content > p {
    color: #667384 !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
    margin: 0 0 15px !important;
    max-width: 650px !important;
}


/* Button */
.about-moeoc-btn {
    width: fit-content !important;

    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;

    margin-top: 12px !important;

    padding: 12px 19px !important;

    background: #082d5b !important;
    color: #ffffff !important;

    border-radius: 6px !important;

    text-decoration: none !important;

    font-size: 12px !important;
    font-weight: 600 !important;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease !important;
}

.about-moeoc-btn i {
    transition: transform 0.3s ease !important;
}

.about-moeoc-btn:hover {
    background: #d4a017 !important;
    color: #ffffff !important;

    transform: translateY(-3px) !important;

    box-shadow:
        0 8px 20px rgba(8, 45, 91, 0.18) !important;
}

.about-moeoc-btn:hover i {
    transform: translateX(5px) !important;
}


/* =========================================
   RIGHT INFORMATION PANEL
========================================= */

.moeoc-info-panel {
    height: 100% !important;

    padding: 32px 30px !important;

    background: #082d5b !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;

    position: relative !important;
}


/* Gold side accent */
.moeoc-info-panel::before {
    content: "" !important;

    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 4px !important;
    height: 100% !important;

    background: #d4a017 !important;
}


/* =========================================
   INFO ITEM
========================================= */

.moeoc-info-item {
    display: flex !important;
    align-items: flex-start !important;

    gap: 14px !important;

    padding: 14px 0 !important;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;

    transition: transform 0.3s ease !important;
}

.moeoc-info-item:last-child {
    border-bottom: none !important;
}


/* Icon */
.moeoc-info-icon {
    width: 38px !important;
    height: 38px !important;
    flex: 0 0 38px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* background: rgba(255, 255, 255, 0.10) !important; */
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 8px !important;
    transition:
        background 0.3s ease,
        transform 0.3s ease !important;
}

.moeoc-info-icon i {
    color: #2992e8 !important;
    font-size: 17px !important;
    line-height: 1 !important;
}


/* Text */
.moeoc-info-text {
    flex: 1 !important;
}

.moeoc-info-text p {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}


/* Item Hover */
.moeoc-info-item:hover {
    transform: translateX(5px) !important;
}

.moeoc-info-item:hover .moeoc-info-icon {
    background: #d4a017 !important;

    transform: scale(1.05) !important;
}

.moeoc-info-item:hover .moeoc-info-icon i {
    color: #082d5b !important;
}


/* =========================================
   ANIMATION
========================================= */

.about-moeoc-content {
    animation: aboutContentReveal 0.8s ease both !important;
}

.moeoc-info-panel {
    animation: aboutPanelReveal 0.9s ease 0.15s both !important;
}

.moeoc-info-item {
    animation: aboutItemReveal 0.6s ease both !important;
}

.moeoc-info-item:nth-child(1) {
    animation-delay: 0.3s !important;
}

.moeoc-info-item:nth-child(2) {
    animation-delay: 0.4s !important;
}

.moeoc-info-item:nth-child(3) {
    animation-delay: 0.5s !important;
}

.moeoc-info-item:nth-child(4) {
    animation-delay: 0.6s !important;
}

.moeoc-info-item:nth-child(5) {
    animation-delay: 0.7s !important;
}


@keyframes aboutContentReveal {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aboutPanelReveal {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aboutItemReveal {
    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .about-moeoc-section {
        padding: 55px 0 !important;
    }

    .about-moeoc-content {
        padding: 38px 30px !important;
    }

    .about-heading h2 {
        font-size: 28px !important;
    }

    .about-moeoc-content > p {
        font-size: 13px !important;
    }

    .moeoc-info-panel {
        padding: 25px 22px !important;
    }

    .moeoc-info-text p {
        font-size: 11px !important;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .about-moeoc-section {
        padding: 38px 0 !important;
    }

    .about-moeoc-section .container {
        width: 100% !important;
        max-width: 100% !important;

        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .about-moeoc-box {
        border-radius: 12px !important;
    }


    /* LEFT */
    .about-moeoc-content {
        padding: 28px 18px !important;
    }

    .about-heading {
        gap: 8px !important;
        margin-bottom: 16px !important;
    }

    .about-heading h2 {
        font-size: 22px !important;
        line-height: 1.2 !important;
    }

    .about-heading span {
        width: 32px !important;
        height: 3px !important;
        margin-top: 5px !important;
    }

    .about-moeoc-content > p {
        font-size: 10px !important;
        line-height: 1.6 !important;

        margin-bottom: 10px !important;
    }

    .about-moeoc-btn {
        margin-top: 5px !important;
        padding: 10px 13px !important;
        font-size: 12px !important;
        gap: 5px !important;
    }


    /* RIGHT PANEL */
    .moeoc-info-panel {
        padding: 18px 17px !important;
    }

    .moeoc-info-panel::before {
        width: 3px !important;
    }

    .moeoc-info-item {
        gap: 10px !important;
        padding: 10px 0 !important;
    }

    .moeoc-info-icon {
        width: 32px !important;
        height: 32px !important;
        flex-basis: 32px !important;

        border-radius: 7px !important;
    }

    .moeoc-info-icon i {
        font-size: 14px !important;
    }

    .moeoc-info-text p {
        font-size: 9px !important;
        line-height: 1.45 !important;
    }

    .moeoc-info-item:hover {
        transform: translateX(3px) !important;
    }
}


/* =========================================
   375px
========================================= */

@media (max-width: 375px) {

    .about-moeoc-section {
        padding: 30px 0 !important;
    }

    .about-moeoc-section .container {
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    .about-moeoc-content {
        padding: 23px 14px !important;
    }

    .about-heading h2 {
        font-size: 19px !important;
    }

    .about-heading span {
        width: 28px !important;
    }

    .about-moeoc-content > p {
        font-size: 8.5px !important;
        line-height: 1.5 !important;
    }

    .about-moeoc-btn {
        font-size: 8px !important;
        padding: 9px 10px !important;
    }

    .moeoc-info-panel {
        padding: 14px 13px !important;
    }

    .moeoc-info-item {
        gap: 8px !important;
        padding: 8px 0 !important;
    }

    .moeoc-info-icon {
        width: 29px !important;
        height: 29px !important;
        flex-basis: 29px !important;
    }

    .moeoc-info-icon i {
        font-size: 12px !important;
    }

    .moeoc-info-text p {
        font-size: 8px !important;
    }
}


/* =========================================
   390px
========================================= */

@media (min-width: 376px) and (max-width: 400px) {

    .about-moeoc-section {
        padding: 34px 0 !important;
    }

    .about-heading h2 {
        font-size: 20px !important;
    }

    .about-moeoc-content > p {
        font-size: 14px !important;
    }

    .moeoc-info-text p {
        font-size: 10.5px !important;
    }
}


/* =========================================
   414px
========================================= */

@media (min-width: 401px) and (max-width: 767px) {

    .about-moeoc-section {
        padding: 40px 0 !important;
    }

    .about-moeoc-content {
        padding: 30px 19px !important;
    }

    .about-heading h2 {
        font-size: 22px !important;
    }

    .about-moeoc-content > p {
        font-size: 10px !important;
    }

    .moeoc-info-panel {
        padding: 20px 18px !important;
    }

    .moeoc-info-icon {
        width: 34px !important;
        height: 34px !important;
        flex-basis: 34px !important;
    }

    .moeoc-info-text p {
        font-size: 9.5px !important;
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    .about-moeoc-section *,
    .about-moeoc-section *::before,
    .about-moeoc-section *::after {
        animation: none !important;
        transition: none !important;
    }
}
/* Mobile */
@media (max-width: 767px) {

    .footer-quicklinks {
        text-align: left;
    }

    .footer-quicklinks h3 {
        text-align: left;
    }

    .quicklinks-list {
        align-items: flex-start;
        text-align: left;
    }

    .quicklinks-list a {
        text-align: left;
    }
    .quicklinks-list {
    justify-items: left !important;
}
}.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
}

@media (min-width: 992px) {
    .mobile-menu {
        display: none !important;
    }

    .mobile-toggle {
        display: none;
    }
}

@media (max-width: 991px) {
    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        z-index: 9999;
    }

    .mobile-menu a {
        display: block;
        padding: 12px 5px;
        color: #123d70;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px solid #eee;
    }

    .mobile-toggle {
        background: none;
        border: 0;
        font-size: 28px;
        color: #123d70;
        cursor: pointer;
    }
}/* =========================================
   MOEOC INFORMATION SECTION
========================================= */

.moeoc-info-section {
    padding: 70px 0;
    background: #ffffff;
}

.moeoc-info-heading {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.moeoc-info-heading h2 {
    margin: 0;
    color: #0b2d5b;
    font-size: 30px;
    font-weight: 700;
    display: inline-block;
}

.heading-line {
    display: inline-block;
    width: 55px;
    height: 3px;
    background: #d4a017;
    margin-left: 12px;
    vertical-align: middle;
}

.heading-meta {
    font-size: 12px;
    color: #6b7280;
}

.heading-meta span {
    margin: 0 8px;
    color: #d4a017;
}


/* =========================================
   TOP INFORMATION CARDS
========================================= */

.moeoc-info-grid {
    border-top: 1px solid #dce8f5;
    border-left: 1px solid #dce8f5;
}

.moeoc-info-grid > div {
    border-right: 1px solid #dce8f5;
    border-bottom: 1px solid #dce8f5;
}

.moeoc-info-card {
    min-height: 205px;
    padding: 22px 18px;
    text-align: center;
    background: #f7fbff;
    transition: all 0.3s ease;
    height: 100%;
}

.moeoc-info-card:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(11, 45, 91, 0.10);
    position: relative;
    z-index: 2;
}


/* ICON */

.info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf3ff;
    border-radius: 8px;

    color: #0b2d5b;
    font-size: 25px;
}

.moeoc-info-card h3 {
    color: #0b2d5b;
    /* font-family: "Playfair Display", serif; */
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 9px;
}

.moeoc-info-card p {
    color: #5f6b7a;
    font-family: "Inter", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.45;
    margin: 0;
}


/* =========================================
   BOTTOM CARDS
========================================= */

.moeoc-bottom-grid {
    margin-top: 8px;
}

.moeoc-bottom-grid > div {
    border-right: 1px solid #dce8f5;
}

.moeoc-bottom-card {
    min-height: 125px;
    padding: 20px 18px;
    background: #edf6ff;

    display: flex;
    gap: 13px;
    align-items: flex-start;

    height: 100%;
}

.bottom-icon {
    min-width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0b2d5b;
    font-size: 22px;
}

.moeoc-bottom-card h3 {
    margin: 0 0 5px;

    color: #0b2d5b;
   
    font-size: 15px;
    font-weight: 700;
}

.moeoc-bottom-card p {
    margin: 0;

    color: #5f6b7a;
    font-family: "Inter", Arial, sans-serif;
    font-size: 10.5px;
    line-height: 1.45;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .moeoc-info-section {
        padding: 55px 0;
    }

    .moeoc-info-heading h2 {
        font-size: 27px;
    }

    .heading-meta {
        font-size: 11px;
    }

    .moeoc-info-card {
        min-height: 220px;
    }

    .moeoc-bottom-card {
        min-height: 160px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .moeoc-info-section {
        padding: 45px 15px;
    }

    .moeoc-info-heading {
        display: block;
        margin-bottom: 20px;
    }

    .moeoc-info-heading h2 {
        font-size: 25px;
    }

    .heading-line {
        width: 40px;
        margin-left: 8px;
    }

    .heading-meta {
        margin-top: 8px;
        font-size: 10px;
    }

    /* One card per row */

    .moeoc-info-grid {
        border-left: 0;
    }

    .moeoc-info-grid > div {
        border-right: 0;
    }

    .moeoc-info-card {
        min-height: auto;
        padding: 22px 25px;
        text-align: center;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .moeoc-info-card h3 {
        font-size: 16px;
    }

    .moeoc-info-card p {
        max-width: 400px;
        margin: auto;
        font-size: 12px;
        line-height: 1.6;
    }


    /* Bottom cards */

    .moeoc-bottom-grid {
        margin-top: 8px;
    }

    .moeoc-bottom-grid > div {
        border-right: 0;
        border-bottom: 1px solid #dce8f5;
    }

    .moeoc-bottom-card {
        min-height: auto;
        padding: 20px;
    }

    .moeoc-bottom-card h3 {
        font-size: 16px;
    }

    .moeoc-bottom-card p {
        font-size: 11px;
        line-height: 1.55;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .moeoc-info-heading h2 {
        font-size: 22px;
    }

    .heading-meta {
        font-size: 9px;
    }

    .moeoc-info-card {
        padding: 20px 18px;
    }

    .moeoc-info-card h3 {
        font-size: 15px;
    }

    .moeoc-info-card p {
        font-size: 11px;
    }

    .moeoc-bottom-card {
        padding: 18px 15px;
    }
}/* =========================================
   FOUNDER & IMPORTANT INFORMATION
========================================= */

.moeoc-founder-info {
    padding: 35px 0;
    background: #ffffff;
}


/* MAIN CARD */

.moeoc-feature-card {
    background: #f7fbff;
    border: 1px solid #dce8f5;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 3px 12px rgba(11, 45, 91, 0.05);
}


/* =========================================
   HEADING
========================================= */

.feature-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 14px 5px;
}

.feature-icon {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0b2d5b;
    font-size: 18px;
}

.feature-heading h2 {
    margin: 0;

    color: #0b2d5b;

    font-size: 17px;
    font-weight: 700;
}

.feature-line {
    width: 38px;
    height: 2px;
    background: #d4a017;
    margin-left: 3px;
}


/* =========================================
   FOUNDER CONTENT
========================================= */

.feature-content {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 14px 10px;
}


/* IMAGE */

.founder-image {
    width: 254px;
    min-width: 255px;
    height: 109px;
    overflow: hidden;
    border-radius: 4px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* TEXT */

.feature-text {
    flex: 1;
}

.feature-text p {
    margin: 0 0 4px;
    color: #5f6b7a;
    font-family: "Inter", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.4;
}

.feature-text strong {
    color: #0b2d5b;
}


/* BUTTON */

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 3px;
    padding: 5px 12px;

    background: #0b2d5b;
    color: #ffffff;

    font-size: 10px;
    font-weight: 600;

    text-decoration: none;
    border-radius: 3px;

    transition: all 0.3s ease;
}

.feature-btn i {
    font-size: 9px;
}

.feature-btn:hover {
    background: #d4a017;
    color: #ffffff;
}


/* =========================================
   IMPORTANT INFORMATION
========================================= */

.important-card {
    background: #fff8e7;
    border-color: #f0dfae;
}

.important-content {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 0 14px 11px;
}

.important-icon {
    width: 32px;
    min-width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #0b2d5b;
    font-size: 22px;
}

.important-content .feature-text {
    flex: 1;
}


/* =========================================
   HOVER EFFECT
========================================= */

.moeoc-feature-card {
    transition: all 0.3s ease;
}

.moeoc-feature-card:hover {
    box-shadow: 0 7px 20px rgba(11, 45, 91, 0.09);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .moeoc-founder-info {
        padding: 30px 15px;
    }

    .feature-content {
        gap: 15px;
    }

    .founder-image {
        width: 110px;
        min-width: 110px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .moeoc-founder-info {
        padding: 30px 15px;
    }

    .feature-heading {
        padding: 12px 15px 7px;
    }

    .feature-heading h2 {
        font-size: 17px;
    }

    .feature-content {
        display: block;
        padding: 5px 15px 15px;
    }

    .founder-image {
        width: 100%;
        height: 180px;
        margin-bottom: 12px;
    }

    .feature-text p {
        font-size: 12px;
        line-height: 1.55;
    }

    .feature-btn {
        padding: 7px 14px;
        font-size: 11px;
        margin-top: 6px;
    }

    .important-content {
        display: block;
        padding: 8px 15px 15px;
    }

    .important-icon {
        margin-bottom: 8px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .founder-image {
        height: 160px;
    }

    .feature-heading h2 {
        font-size: 16px;
    }

    .feature-line {
        width: 30px;
    }

    .feature-text p {
        font-size: 11px;
    }
}/* =========================================
   FOUNDER HERO
========================================= */

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;

    color: #5d6b7d;
    font-size: 13px;
    font-weight: 500;
}

.hero-breadcrumb span {
    color: #d4a017;
    font-weight: 700;
}


.hero-label {
    margin-bottom: 8px;

    color: #d4a017;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.hero-content h1 {
    margin: 0;
    color: #0b2d5b;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.05;
}


.hero-content h1 span {
    display: block;
    margin-top: 8px;
    color: #0b2d5b;
    font-size: clamp(24px, 3vw, 32px);
}


.hero-gold-line {
    width: 75px;
    height: 4px;

    margin: 22px 0;

    border-radius: 10px;

    background: #d4a017;
}


.hero-content p {
    max-width: 680px;
    margin: 0 0 5px;
    color: #34445a;
    font-size: 18px;
    line-height: 1.7;
}


.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 12px;
    padding: 12px 20px;

    color: #fff;
    background: #0b2d5b;

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all .3s ease;
}

.hero-subtitle {
    font-family: var(--font-head);
    font-size: 19px;
    color: #0B2D5B;
    margin-bottom: 17px;
}
.hero-btn i {
    color: #d4a017;
    transition: transform .3s ease;
}


.hero-btn:hover {
    color: #fff;
    background: #123e75;
    transform: translateY(-2px);
}


.hero-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .hero-content {
        text-align: left;
    }

    .hero-breadcrumb {
        flex-wrap: wrap;
        font-size: 11px;
        margin-bottom: 15px;
    }

    .hero-label {
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.08;
    }

    .hero-content h1 span {
        margin-top: 7px;
        font-size: 24px;
        line-height: 1.2;
    }

    .hero-gold-line {
        width: 60px;
        height: 3px;
        margin: 18px 0;
    }

    .hero-subtitle {
        gap: 5px;
        font-size: 11px;
        line-height: 1.7;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-btn {
        padding: 11px 17px;
        font-size: 13px;
    }
}
    :root {
        --primary-navy: #0B2D5B;
        --light-blue: #E8F2FF;
        --gold: #D4A017;
        --white: #ffffff;
        --text-dark: #18324f;
        --border-color: #d8e5f2;
    }

    /* ================================
       MAIN SECTION
    ================================= */
    .professional-section {
        padding: 80px 0;
        background: #f8fbff;
        position: relative;
        overflow: hidden;
    }

    .professional-section::before {
        /* content: ""; */
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(212, 160, 23, 0.06);
        top: -120px;
        right: -100px;
    }

    .professional-section::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(11, 45, 91, 0.04);
        bottom: -100px;
        left: -80px;
    }

    .professional-inner {
        /* position: relative; */
        z-index: 2;
    }


    /* ================================
       SECTION HEADING
    ================================= */
    .professional-heading {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .professional-heading h2 {
        margin: 0;
        color: var(--primary-navy);
        font-size: 28px;
        font-weight: 800;
        letter-spacing: -0.3px;
    }

    .heading-line {
        width: 55px;
        height: 3px;
        background: var(--gold);
        border-radius: 10px;
    }


    /* ================================
       TOPIC CARDS
    ================================= */
    .topic-card {
        height: 100%;
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 10px;
        padding: 25px 13px 22px;
        text-align: center;
        position: relative;
        overflow: hidden;
        transition: all 0.35s ease;
        box-shadow: 0 5px 20px rgba(11, 45, 91, 0.05);
    }

    .topic-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 4px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }

    .topic-card:hover {
        transform: translateY(-8px);
        border-color: rgba(212, 160, 23, 0.45);
        box-shadow: 0 15px 35px rgba(11, 45, 91, 0.12);
    }

    .topic-card:hover::before {
        transform: scaleX(1);
    }

    .topic-icon {
        width: 58px;
        height: 58px;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: var(--light-blue);
        color: var(--primary-navy);
        font-size: 28px;
        transition: all 0.35s ease;
    }

    .topic-card:hover .topic-icon {
        background: var(--primary-navy);
        color: var(--gold);
        transform: scale(1.08);
    }

    .topic-card h3 {
        color: var(--primary-navy);
        font-size: 16px;
        line-height: 1.3;
        font-weight: 800;
        /* margin-bottom: 12px; */
        /* min-height: 42px; */
    }

    .topic-card p {
        color: #60748a;
        font-size: 13px;
        line-height: 1.65;
        margin: 0;
    }


    /* ================================
       INFORMATION PANELS
    ================================= */
    .info-panel {
        height: 100%;
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 7px 25px rgba(11, 45, 91, 0.06);
        transition: all 0.3s ease;
    }

    .info-panel:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(11, 45, 91, 0.11);
    }

    .info-panel-header {
        padding: 17px 20px;
        background: var(--light-blue);
        border-bottom: 1px solid var(--border-color);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .info-panel-header .panel-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: var(--primary-navy);
        color: var(--gold);
        font-size: 20px;
    }

    .info-panel-header h3 {
        margin: 0;
        color: white;
        font-size: 17px;
        font-weight: 800;
        line-height: 1.3;
    }

    .info-panel-header span {
        color: white;
        font-size: 11px;
        display: block;
        margin-top: 2px;
    }

    .info-panel-body {
        padding: 20px;
    }

    .info-list {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .info-list li {
        position: relative;
        padding-left: 22px;
        margin-bottom: 12px;
        color: #52687e;
        font-size: 13px;
        line-height: 1.5;
    }

    .info-list li:last-child {
        margin-bottom: 0;
    }

    .info-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 7px;
        width: 7px;
        height: 7px;
        background: var(--gold);
        border-radius: 50%;
    }

    .info-list li strong {
        color: var(--primary-navy);
    }


    /* ================================
       SMALL GOLD LABEL
    ================================= */
    .section-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--gold);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .section-label::before {
        content: "";
        width: 28px;
        height: 2px;
        background: var(--gold);
    }


    /* ================================
       RESPONSIVE
    ================================= */
    @media (max-width: 1199px) {

        .topic-card {
            padding: 22px 14px;
        }

        .topic-card h3 {
            font-size: 15px;
        }

        .topic-card p {
            font-size: 12px;
        }
    }


    @media (max-width: 991px) {

        .professional-section {
            padding: 60px 0;
        }

        .professional-heading h2 {
            font-size: 25px;
        }

        .topic-card {
            padding: 24px 18px;
        }

        .topic-card h3 {
            font-size: 16px;
        }

        .topic-card p {
            font-size: 13px;
        }
    }


    @media (max-width: 767px) {

        .professional-section {
            padding: 50px 0;
        }

        .professional-heading {
            gap: 10px;
            margin-bottom: 22px;
        }

        .professional-heading h2 {
            font-size: 22px;
            line-height: 1.3;
        }

        .heading-line {
            width: 35px;
        }

        .topic-card {
            padding: 23px 20px;
        }

        .topic-icon {
            width: 55px;
            height: 55px;
            font-size: 25px;
        }

        .topic-card h3 {
            min-height: auto;
            font-size: 16px;
        }

        .info-panel-header {
            padding: 15px;
        }

        .info-panel-body {
            padding: 18px;
        }
    }


    @media (max-width: 575px) {

        .professional-section {
            padding: 40px 0;
        }

        .professional-heading {
            align-items: flex-start;
        }

        .professional-heading h2 {
            font-size: 20px;
        }

        .section-label {
            font-size: 10px;
            letter-spacing: 1.2px;
        }

        .topic-card {
            padding: 22px 18px;
            border-radius: 9px;
        }

        .topic-icon {
            margin-bottom: 13px;
        }

        .topic-card h3 {
            font-size: 16px;
        }

        .topic-card p {
            font-size: 13px;
        }

        .info-panel {
            border-radius: 9px;
        }

        .info-panel-header h3 {
            font-size: 15px;
        }

        .info-list li {
            font-size: 12.5px;
        }
    }
<style>

/* =========================================
   MOEOC INFORMATION SECTION
========================================= */

.moeoc-info-section {
    position: relative;
    padding: 50px 20px;
    overflow: hidden;

    background:
        
        #f7f8fa;
}


/* Decorative background */
.moeoc-info-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(180, 140, 50, 0.10);
    border-radius: 50%;
    top: -280px;
    right: -180px;
}

.moeoc-info-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(180, 140, 50, 0.08);
    border-radius: 50%;
    bottom: -200px;
    left: -150px;
}


.moeoc-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1250px;
    margin: auto;
}


/* =========================================
   HEADING
========================================= */

.moeoc-info-heading {
    text-align: center;
    margin-bottom: 55px;
}

.heading-content {
    max-width: 760px;
    margin: auto;
}


.heading-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 15px;
    margin-bottom: 18px;

    border: 1px solid rgba(181, 142, 58, 0.25);
    border-radius: 50px;

    background: rgba(255, 255, 255, 0.75);

    color: #a47b2c;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.heading-tag i {
    font-size: 12px;
}


.moeoc-info-heading h2 {
    margin: 0;

    color: #16263d;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.12;

    font-weight: 800;
    letter-spacing: -1.5px;
}


.moeoc-info-heading h2 span {
    color: #b18a3b;
}


.moeoc-info-heading p {
    max-width: 650px;
    margin: 18px auto 0;

    color: #697386;

    font-size: 16px;
    line-height: 1.7;
}


.heading-line {
    /* position: relative; */
    display: block;
    /* width: 65px; */
    /* height: 3px; */
    /* margin: 25px auto 0; */
    background: #b18a3b;
    border-radius: 20px;
}


.heading-line::before,
.heading-line::after {
    content: "";
    position: absolute;
    top: 0;

    width: 6px;
    height: 3px;

    background: #16263d;
}

.heading-line::before {
    left: -12px;
}

.heading-line::after {
    right: -12px;
}


/* =========================================
   MAIN CARD GRID
========================================= */

.moeoc-info-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* =========================================
   INFORMATION CARD
========================================= */

.moeoc-info-card {
    position: relative;

    min-height: 315px;

    padding: 32px 28px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.90);

    border: 1px solid #e8ebef;
    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(24, 38, 61, 0.055);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.moeoc-info-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #16263d,
        #b18a3b,
        #16263d
    );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.4s ease;
}


.moeoc-info-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background: rgba(177, 138, 59, 0.055);

    transition: transform 0.4s ease;
}


.moeoc-info-card:hover {
    transform: translateY(-8px);

    border-color: rgba(177, 138, 59, 0.35);

    box-shadow:
        0 20px 45px rgba(24, 38, 61, 0.12);
}


.moeoc-info-card:hover::before {
    transform: scaleX(1);
}


.moeoc-info-card:hover::after {
    transform: scale(1.8);
}


/* Number */

.card-number {
    position: absolute;

    top: 20px;
    right: 22px;

    color: #e8ebef;

    font-size: 38px;
    line-height: 1;

    font-weight: 800;

    transition: color 0.3s ease;
}


.moeoc-info-card:hover .card-number {
    color: rgba(177, 138, 59, 0.16);
}


/* Icon */

.info-icon {
    position: relative;
    z-index: 2;

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 16px;

    background: linear-gradient(
        145deg,
        #182b45,
        #263e5d
    );

    color: #d6b45d;

    font-size: 25px;

    box-shadow:
        0 10px 20px rgba(22, 38, 61, 0.16);

    transition:
        transform 0.35s ease,
        border-radius 0.35s ease;
}


.moeoc-info-card:hover .info-icon {
    transform: translateY(-3px) rotate(-3deg);

    border-radius: 50%;
}


/* Card heading */

.moeoc-info-card h3 {
    position: relative;
    z-index: 2;
    /* font-family: "Gelasio", serif; */
    margin: 0 0 13px;
    color: #172840;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 750;
}


/* Card paragraph */

.moeoc-info-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #707a89;

    font-size: 14px;
    line-height: 1.75;
}


/* Arrow */

.card-arrow {
    position: absolute;

    left: 28px;
    bottom: 22px;

    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f2f4f7;

    color: #9a762e;

    font-size: 13px;

    opacity: 0;
    transform: translateX(-10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.moeoc-info-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================
   BOTTOM INFORMATION CARDS
========================================= */

.moeoc-bottom-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 22px;
}


.moeoc-bottom-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 20px;

    padding: 30px 27px;

    min-height: 220px;

    border-radius: 18px;

    background: #172840;

    overflow: hidden;

    box-shadow:
        0 12px 35px rgba(22, 38, 61, 0.12);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.moeoc-bottom-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    top: -90px;

    border-radius: 50%;

    background: rgba(177, 138, 59, 0.12);
}


.moeoc-bottom-card::after {
    content: "";

    position: absolute;

    width: 70px;
    height: 70px;

    left: -35px;
    bottom: -35px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.035);
}


.moeoc-bottom-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(22, 38, 61, 0.20);
}


/* Bottom icon */

.bottom-icon {
    position: relative;
    z-index: 2;

    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.09);

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #d8b65e;

    font-size: 21px;
}


.bottom-content {
    position: relative;
    z-index: 2;
}


.bottom-content > span {
    display: block;

    margin-bottom: 6px;

    color: #c8a653;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}


.bottom-content h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 20px;
    line-height: 1.3;
}


.bottom-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.67);

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1100px) {

    .moeoc-info-section {
        padding: 80px 20px;
    }

    .moeoc-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .moeoc-bottom-grid {
        grid-template-columns: 1fr;
    }

    .moeoc-bottom-card {
        min-height: auto;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .moeoc-info-section {
        padding: 65px 16px;
    }

    .moeoc-info-heading {
        margin-bottom: 38px;
    }

    .moeoc-info-heading h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .moeoc-info-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .moeoc-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .moeoc-info-card {
        min-height: 300px;
        padding: 25px 22px;
    }

    .info-icon {
        width: 56px;
        height: 56px;

        margin-bottom: 20px;

        font-size: 22px;
    }

    .moeoc-info-card h3 {
        font-size: 18px;
    }

    .moeoc-info-card p {
        font-size: 13px;
    }

    .card-arrow {
        left: 22px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .moeoc-info-section {
        padding: 55px 14px;
    }

    .heading-tag {
        font-size: 9px;
        letter-spacing: 1px;
        padding: 7px 12px;
    }

    .moeoc-info-heading h2 {
        font-size: 30px;
        line-height: 1.18;
    }

    .moeoc-info-heading p {
        margin-top: 14px;

        font-size: 13px;
    }

    .moeoc-info-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .moeoc-info-card {
        min-height: auto;

        padding: 25px 22px 28px;

        border-radius: 16px;
    }

    .moeoc-info-card h3 {
        padding-right: 35px;

        font-size: 19px;
    }

    .moeoc-info-card p {
        font-size: 13.5px;
        line-height: 1.7;
    }

    /* Keep arrow visible on mobile */
    .card-arrow {
        position: relative;

        left: auto;
        bottom: auto;

        margin-top: 20px;

        opacity: 1;
        transform: none;
    }

    .card-number {
        font-size: 30px;
        top: 18px;
        right: 18px;
    }


    /* Bottom cards */

    .moeoc-bottom-grid {
        grid-template-columns: 1fr;

        gap: 14px;

        margin-top: 14px;
    }

    .moeoc-bottom-card {
        flex-direction: column;

        gap: 16px;

        padding: 25px 22px;

        border-radius: 16px;
    }

    .bottom-icon {
        width: 50px;
        height: 50px;
    }

    .bottom-content h3 {
        font-size: 19px;
    }

    .bottom-content p {
        font-size: 13px;
        line-height: 1.7;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .moeoc-info-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .moeoc-info-heading h2 {
        font-size: 27px;
    }

    .heading-tag {
        font-size: 8px;
    }

    .moeoc-info-card {
        padding: 22px 19px;
    }

    .moeoc-info-card h3 {
        font-size: 18px;
    }

    .moeoc-bottom-card {
        padding: 22px 19px;
    }
}


/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {

    .moeoc-info-card,
    .moeoc-info-card::before,
    .moeoc-info-card::after,
    .info-icon,
    .card-arrow,
    .moeoc-bottom-card {
        transition: none !important;
    }
}

</style>/* =========================================
   ABOUT PAGE QUICK TABS
========================================= */

.about-tabs-section {
    position: relative;
    z-index: 20;

    background: #ffffff;

    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;

    box-shadow: 0 4px 15px rgba(11, 45, 91, 0.05);
}


.about-tabs-wrapper {
    min-height: 58px;

    display: flex;
    align-items: center;
    gap: 18px;
}


/* =========================================
   LABEL
========================================= */

.about-tabs-label {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    gap: 8px;

    padding-right: 18px;

    color: #0b2d5b;

    font-size: 13px;
    font-weight: 700;

    border-right: 1px solid #e5e7eb;
}


.about-tabs-label i {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    border-radius: 6px;

    color: #0b2d5b;
    background: #e8f2ff;

    font-size: 13px;
}


/* =========================================
   TABS NAVIGATION
========================================= */

.about-tabs {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 4px;

    overflow-x: auto;

    scrollbar-width: none;

    white-space: nowrap;
}

.about-tabs::-webkit-scrollbar {
    display: none;
}


/* =========================================
   INDIVIDUAL TAB
========================================= */

.about-tab {
    position: relative;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;

    min-height: 58px;

    padding: 0 13px;

    color: #536174;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    transition:
        color .25s ease,
        background .25s ease;
}


.about-tab::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 0;

    height: 3px;

    border-radius: 3px 3px 0 0;

    background: #d4a017;

    transform: scaleX(0);

    transition: transform .25s ease;
}


.about-tab:hover {
    color: #0b2d5b;
}


.about-tab:hover::after,
.about-tab.active::after {
    transform: scaleX(1);
}


.about-tab.active {
    color: #0b2d5b;
    font-weight: 700;
}


/* =========================================
   STICKY VERSION
   Remove this block if you don't want
   tabs to remain visible while scrolling.
========================================= */

.about-tabs-section {
    position: sticky;
    top: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .about-tabs-wrapper {
        gap: 12px;
    }

    .about-tabs-label {
        padding-right: 12px;
    }

    .about-tab {
        padding: 0 10px;

        font-size: 11px;
    }

    .about-tab::after {
        left: 10px;
        right: 10px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .about-tabs-section {
        position: relative;
    }

    .about-tabs-wrapper {
        min-height: 54px;

        gap: 10px;
    }

    .about-tabs-label {
        gap: 6px;

        padding-right: 10px;

        font-size: 11px;
    }

    .about-tabs-label span {
        display: none;
    }

    .about-tabs-label i {
        width: 30px;
        height: 30px;

        font-size: 13px;
    }

    .about-tabs {
        gap: 2px;

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;
    }

    .about-tab {
        min-height: 54px;

        padding: 0 11px;

        font-size: 11px;
    }

    .about-tab::after {
        left: 11px;
        right: 11px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .about-tabs-wrapper {
        gap: 7px;
    }

    .about-tab {
        padding: 0 9px;
        font-size: 10px;
    }

    .about-tab::after {
        left: 9px;
        right: 9px;
    }
}/* ==============================
   PAGE TABS
============================== */

.moeoc-page-tabs {
    width: 100%;
    background: #ffffff;
    border: 1px solid #dcebf8;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(11, 45, 91, 0.06);
    overflow: hidden;
    margin-bottom: 35px;
}

.moeoc-page-tabs-inner {
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: thin;
    white-space: nowrap;
}

.moeoc-page-tabs-inner::-webkit-scrollbar {
    height: 4px;
}

.moeoc-page-tabs-inner::-webkit-scrollbar-thumb {
    background: #9ed3f5;
    border-radius: 20px;
}

.moeoc-tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 20px 17px;
    color: #63758b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
}

.moeoc-tab i {
    color: #0b2d5b;
    font-size: 14px;
}

.moeoc-tab::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 0;

    height: 3px;

    background: #d4a017;

    transform: scaleX(0);
    transition: transform .3s ease;
}

.moeoc-tab:hover,
.moeoc-tab.active {
    color: #0b2d5b;
    background: #f5faff;
}

.moeoc-tab:hover::after,
.moeoc-tab.active::after {
    transform: scaleX(1);
}


/* Smooth scrolling */

html {
    scroll-behavior: smooth;
}


/* Offset for sticky header if you have one */




/* MOBILE */

@media (max-width: 767px) {

    .moeoc-page-tabs {
        border-radius: 9px;
        margin-bottom: 25px;
    }

    .moeoc-tab {
        padding: 14px 13px;
        font-size: 11px;
    }

    .moeoc-tab::after {
        left: 12px;
        right: 12px;
    }

}
/* =================================
   MOBILE
================================= */

@media (max-width: 767px) {

    .moeoc-page-tabs {
        border-radius: 8px;
        margin-bottom: 25px;  
    }
  
    .moeoc-page-tabs-inner {
        display: flex;
        flex-wrap: nowrap;

        overflow-x: auto;
        overflow-y: hidden;

        width: 100%;

        /* Mobile touch scroll */
        touch-action: pan-x;

        /* Hide scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .moeoc-page-tabs-inner::-webkit-scrollbar {
        display: none;
    }

    .moeoc-tab {
        flex: 0 0 auto;

        display: inline-flex;
        align-items: center;

        padding: 14px 16px;

        font-size: 11px;

        white-space: nowrap;
    }

}


/* =================================
   SMALL MOBILE
================================= */

@media (max-width: 480px) {

    .moeoc-tab {
        padding: 13px 14px;
        font-size: 13px;
    }

}/* =================================
   MOBILE HORIZONTAL TAB SCROLL
================================= */

.moeoc-page-tabs {
    width: 100%;
  
}

.moeoc-page-tabs-inner {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.moeoc-page-tabs-inner::-webkit-scrollbar {
    display: none;
}

.moeoc-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    z-index: 999999;
}

/* ==============================
   MEMBERSHIP PANEL
================================ */

.membership-group h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0B2D5B;
    margin-bottom: 14px;
}

.membership-group + .membership-group {
    border-top: 1px solid #e4eaf2;
    margin-top: 20px;
    padding-top: 20px;
}

.info-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.info-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 14px;
    line-height: 1.5;
    color: #26364a;
    margin-bottom: 11px;
}

/* =========================================
   PROFESSIONAL TOPIC CARDS
========================================= */

.topic-card {
    position: relative;
    height: 100%;
    min-height: 245px;

    padding: 28px 20px 24px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 12px;

    text-align: center;

    overflow: hidden;

    box-shadow: 0 4px 18px rgba(11, 45, 91, 0.06);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Top Gold Line */
.topic-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #d4a017;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.3s ease;
}


/* Soft Background Circle */
.topic-card::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -65px;
    bottom: -65px;

    border-radius: 50%;

    background: rgba(232, 242, 255, 0.65);

    transition: transform 0.4s ease;
}


/* Hover */
.topic-card:hover {
    transform: translateY(-7px);

    border-color: rgba(212, 160, 23, 0.45);

    box-shadow:
        0 14px 35px rgba(11, 45, 91, 0.13);
}


.topic-card:hover::before {
    transform: scaleX(1);
}


.topic-card:hover::after {
    transform: scale(1.6);
}


/* =========================================
   ICON
========================================= */

.topic-icon {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #e8f2ff;

    border: 1px solid rgba(11, 45, 91, 0.08);

    color: #0b2d5b;

    font-size: 24px;

    transition:
        all 0.3s ease;
}


.topic-card:hover .topic-icon {
    background: #0b2d5b;

    color: #d4a017;

    border-radius: 50%;

    transform: translateY(-3px);
}


/* =========================================
   TITLE
========================================= */

.topic-card h3 {
    position: relative;
    z-index: 2;
    /* min-height: 52px; */
    /* margin: 0 0 12px; */
    color: #0b2d5b;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}


/* =========================================
   DESCRIPTION
========================================= */

.topic-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: #5f6b7a;

    font-family: "Inter", Arial, sans-serif;

    font-size: 12.5px;

    line-height: 1.65;
}


/* =========================================
   BOOTSTRAP COLUMN ALIGNMENT
========================================= */

.country-section .row,
.topic-section .row {
    align-items: stretch;
}

.topic-card {
    display: flex;
    flex-direction: column;
}

.topic-card p {
    flex-grow: 1;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1200px) {

    .topic-card {
        min-height: 250px;

        padding: 27px 18px 24px;
    }

    .topic-card h3 {
        font-size: 16px;
    }

    .topic-card p {
        font-size: 12px;
    }
}


/* =========================================
   TABLET / SMALL DESKTOP
========================================= */

@media (max-width: 1199px) {

    .topic-card {
        min-height: 255px;
    }

    .topic-card h3 {
        font-size: 18px;
    }

    .topic-card p {
        font-size: 13px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 767px) {

    .topic-card {
        min-height: 225px;

        padding: 24px 22px;

        border-radius: 12px;
    }
.hero-visual{right: -4px;}
    .topic-icon {
        width: 54px;
        height: 54px;

        margin-bottom: 16px;

        font-size: 22px;
    }

    .topic-card h3 {
        min-height: auto;

        margin-bottom: 10px;

        font-size: 18px;
    }

    .topic-card p {
        font-size: 13px;

        line-height: 1.65;
    }

    .topic-card:hover {
        transform: translateY(-4px);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .topic-card {
        min-height: auto;

        padding: 24px 22px 25px;

        text-align: left;

        border-radius: 14px;
    }


    /* Icon left aligned on mobile */
    .topic-icon {
        width: 52px;
        height: 52px;

        margin: 0 0 16px;

        border-radius: 11px;

        font-size: 21px;
    }


    .topic-card h3 {
        margin-bottom: 9px;

        padding-right: 10px;

        font-size: 19px;

        line-height: 1.35;
    }


    .topic-card p {
        font-size: 13.5px;

        line-height: 1.7;
    }


    /* Keep hover subtle on touch devices */
    .topic-card:hover {
        transform: translateY(-3px);
    }

    .topic-card:hover .topic-icon {
        border-radius: 50%;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .topic-card {
        padding: 21px 18px 22px;
    }

    .topic-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 14px;

        font-size: 20px;
    }

    .topic-card h3 {
        font-size: 17px;
    }

    .topic-card p {
        font-size: 12.5px;
    }
}

/* ACTIVE DOT */

.active-dot {
    background: #D4A017;
}


/* INTERNATIONAL ITEM */

.membership-item {
    display: grid !important;
    grid-template-columns: 8px 1fr auto;
    align-items: start !important;
    column-gap: 9px;
}


/* NAME */

.membership-name {
    line-height: 1.5;
}


/* STATUS BADGES */

.membership-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}


/* ACTIVE */

.membership-status.active {
    background: #20b45a;
    color: #fff;
}


/* PREVIOUS */

.membership-status.previous {
    background: #eef1f5;
    color: #8a94a3;
}


/* MOBILE */

@media (max-width: 767px) {

    .membership-item {
        grid-template-columns: 8px 1fr;
    }

    .membership-status {
        grid-column: 2;
        justify-self: start;
        margin-top: 3px;
    }

    .membership-name {
        font-size: 13px;
    }

}/* =========================================
   MOEOC FOUNDER CARD
========================================= */

.moeoc-feature-card.founder-card {

    position: relative;

    width: 100%;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(11, 45, 91, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.moeoc-feature-card.founder-card:hover {

    transform: translateY(-5px);

    border-color: rgba(212, 160, 23, 0.35);

    box-shadow:
        0 18px 45px rgba(11, 45, 91, 0.12);
}


/* =========================================
   HEADING
========================================= */

.founder-card .feature-heading {

    position: relative;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px 24px;

    background: #f8fafc;

    border-bottom: 1px solid #e5e7eb;
}


/* Heading Icon */

.founder-card .feature-icon {

    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #0b2d5b;

    color: #d4a017;

    font-size: 18px;

    box-shadow:
        0 5px 15px rgba(11, 45, 91, 0.16);
}


/* Title */

.founder-card .feature-title span {

    display: block;

    margin-bottom: 2px;

    color: #d4a017;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.founder-card .feature-title h2 {

    margin: 0;

    color: #0b2d5b;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 25px;

    line-height: 1.1;

    font-weight: 700;
}


/* Gold Line */

.founder-card .feature-line {

    width: 55px;

    height: 3px;

    margin-left: 5px;

    border-radius: 20px;

    background: #d4a017;
}


/* =========================================
   CONTENT
========================================= */

.founder-card .feature-content {

    display: grid;

    grid-template-columns: 300px 1fr;

    gap: 32px;

    padding: 28px;
}


/* =========================================
   FOUNDER IMAGE
========================================= */

.founder-card .founder-image {

position: relative;

width: 100%;

min-height: 202px;

overflow: hidden;

border-radius: 13px;

background: #0b2d5b;
}


.founder-card .founder-image img {

display: block;

width: 100%;

height: 100%;

min-height: 209px;

object-fit: cover;

object-position: center;

transition: transform 0.5s ease;
}


.founder-card:hover .founder-image img {

    transform: scale(1.035);
}


/* Image overlay */

.founder-image-overlay {

    position: absolute;

    left: 15px;
    bottom: 15px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(11, 45, 91, 0.90);

    border: 1px solid rgba(212, 160, 23, 0.6);

    color: #d4a017;

    font-size: 17px;
}


/* =========================================
   TEXT CONTENT
========================================= */

.founder-card .feature-text {

    display: flex;

    flex-direction: column;

    justify-content: center;

    min-width: 0;
}


/* Label */

.founder-label {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    width: fit-content;

    margin-bottom: 8px;

    padding: 6px 10px;

    color: #0b2d5b;

    background: #e8f2ff;

    border-radius: 5px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.founder-label i {

    color: #d4a017;

    font-size: 10px;
}


/* Name */

.founder-card .feature-text h3 {

    margin: 0;

    color: #0b2d5b;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 31px;

    line-height: 1.2;

    font-weight: 700;
}


/* Position */

.founder-position {

    margin-top: 4px;

    margin-bottom: 17px;

    color: #d4a017;

    font-size: 15px;

    font-weight: 700;
}


/* =========================================
   PRACTICE AREAS
========================================= */

.founder-practice {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 18px;
}


.founder-practice span {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 9px;

    color: #40516a;

    background: #f7f9fc;

    border: 1px solid #e6eaf0;

    border-radius: 5px;

    font-size: 10px;

    line-height: 1.3;
}


.founder-practice i {

    color: #0b2d5b;

    font-size: 10px;
}


/* =========================================
   PARAGRAPHS
========================================= */

.founder-card .feature-text p {

    margin: 0 0 10px;

    color: #5d6878;

    font-size: 14px;

    line-height: 1.7;
}


.founder-card .feature-text p:last-of-type {

    margin-bottom: 18px;
}


/* =========================================
   BUTTON
========================================= */

.founder-card .feature-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    width: fit-content;

    padding: 11px 17px;

    color: #ffffff;

    background: #0b2d5b;

    border: 1px solid #0b2d5b;

    border-radius: 5px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.founder-card .feature-btn i {

    color: #d4a017;

    transition: transform 0.3s ease;
}


.founder-card .feature-btn:hover {

    color: #ffffff;

    background: #123e75;

    border-color: #123e75;

    transform: translateY(-2px);
}


.founder-card .feature-btn:hover i {

    transform: translateX(4px);
}


/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 991px) {

    .founder-card .feature-content {

        grid-template-columns: 240px 1fr;

        gap: 24px;

        padding: 24px;
    }


    .founder-card .founder-image {

        min-height: 270px;
    }


    .founder-card .founder-image img {

        min-height: 270px;
    }


    .founder-card .feature-text h3 {

        font-size: 27px;
    }


    .founder-card .feature-text p {

        font-size: 13px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 767px) {

    .founder-card .feature-heading {

        padding: 16px 18px;

        gap: 11px;
    }


    .founder-card .feature-icon {

        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 16px;
    }


    .founder-card .feature-title h2 {

        font-size: 22px;
    }


    .founder-card .feature-line {

        width: 40px;
    }


    .founder-card .feature-content {

        grid-template-columns: 1fr;

        gap: 22px;

        padding: 20px;
    }


    .founder-card .founder-image {

        width: 100%;

        height: 330px;

        min-height: 330px;
    }


    .founder-card .founder-image img {

        width: 100%;
        height: 330px;

        min-height: 330px;

        object-position: center top;
    }


    .founder-card .feature-text h3 {

        font-size: 28px;
    }


    .founder-card .feature-text p {

        font-size: 13.5px;

        line-height: 1.7;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .moeoc-feature-card.founder-card {

        border-radius: 13px;
    }


    .founder-card .feature-heading {

        padding: 14px 15px;
    }


    .founder-card .feature-icon {

        width: 38px;
        height: 38px;

        flex-basis: 38px;

        border-radius: 8px;

        font-size: 15px;
    }


    .founder-card .feature-title span {

        font-size: 8px;
    }


    .founder-card .feature-title h2 {

        font-size: 20px;
    }


    .founder-card .feature-line {

        width: 30px;

        height: 2px;
    }


    .founder-card .feature-content {

        padding: 16px;

        gap: 20px;
    }


    .founder-card .founder-image {

        height: 290px;

        min-height: 290px;

        border-radius: 11px;
    }


    .founder-card .founder-image img {

        height: 290px;

        min-height: 290px;
    }


    .founder-image-overlay {

        left: 12px;
        bottom: 12px;

        width: 38px;
        height: 38px;

        font-size: 15px;
    }


    .founder-label {

        font-size: 8px;

        padding: 5px 8px;
    }


    .founder-card .feature-text h3 {

        font-size: 25px;
    }


    .founder-position {

        font-size: 14px;

        margin-bottom: 14px;
    }


    .founder-practice {

        gap: 6px;

        margin-bottom: 16px;
    }


    .founder-practice span {

        padding: 6px 8px;

        font-size: 9.5px;
    }


    .founder-card .feature-text p {

        font-size: 13px;

        line-height: 1.65;
    }


    .founder-card .feature-btn {

        width: 100%;

        padding: 12px 15px;

        font-size: 12px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .founder-card .feature-content {

        padding: 13px;
    }


    .founder-card .founder-image {

        height: 260px;

        min-height: 260px;
    }


    .founder-card .founder-image img {

        height: 260px;

        min-height: 260px;
    }


    .founder-card .feature-text h3 {

        font-size: 23px;
    }


    .founder-practice span {

        width: 100%;

        justify-content: flex-start;
    }

}.contact-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.contact-location i {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.contact-location span {
    line-height: 1.4;
}.mobile-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-location i {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.mobile-location span {
    font-size: 14px;
    line-height: 1.4;
    white-space: nowrap;
}/* =========================
   ABOUT HEADING
========================= */
.about-heading {
    margin-bottom: 30px;
}

.about-heading .about-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: 8px;
}

.about-heading h2 {
    margin: 0;
    color: #0B2D5B;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

.about-heading .heading-line {
    display: block;
    width: 65px;
    height: 3px;
    background: #D4A017;
    margin: 14px 0 12px;
    border-radius: 5px;
}

.about-heading p {
    margin: 0;
    color: #555;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {

    .about-heading {
        margin-bottom: 22px;
    }

    .about-heading .about-label {
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }

    .about-heading h2 {
        font-size: 28px;
        line-height: 1.25;
    }

    .about-heading .heading-line {
        width: 50px;
        height: 3px;
        margin: 10px 0;
    }

    .about-heading p {
        font-size: 15px;
        line-height: 1.5;
    }
}.topic-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topic-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

/* MOEOC BRAND */
.hero-brand {

    gap: 7px;
    margin-bottom: 8px;
    color: #0B2D5B;
}

.hero-brand strong {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-brand span {
    font-size: 17px;
    font-weight: 500;
}

/* SPECIALIZATION */
.hero-specialization {
    margin: 0 0 18px;
    color: #5d7593;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
}/* =========================================
   QUALIFICATION INFO PANEL
========================================= */

.info-panel {
    height: 100%;
    background: #ffffff;
    border: 1px solid #dfe8f2;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 45, 91, 0.08);
    display: flex;
    flex-direction: column;
}

/* =========================================
   HEADER
========================================= */

.info-panel-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: #0B2D5B;
    min-height: 92px;
}

.panel-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #D4A017;
    color: #ffffff;

    font-size: 23px;
}

.panel-title {
    min-width: 0;
}

.panel-title h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
}

.panel-title span {
    display: block;
    color: white;
    font-size: 13px;
    line-height: 1.4;
}

/* =========================================
   BODY
========================================= */

.info-panel-body {
    flex: 1;
    padding: 24px 25px 26px;
}

/* =========================================
   LIST
========================================= */

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    position: relative;
    padding: 0 0 17px 23px;
    margin: 0 0 15px;
    color: #52677f;
    font-size: 14px;
    line-height: 1.7;
    border-bottom: 1px solid #e8eef5;
}

.info-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Small bullet */
.info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;

    width: 7px;
    height: 7px;
    border-radius: 50%;

    background: #D4A017;
}

/* Strong text */
.info-list li strong {
    color: #0B2D5B;
    font-weight: 700;
}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 992px) {

    .info-panel-header {
        padding: 24px 26px;
    }

    .info-panel-body {
        padding: 27px 28px 30px;
    }

    .info-list li {
        font-size: 14px;
        line-height: 1.7;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .info-panel {
        margin-bottom: 24px;
    }

    .info-panel-header {
        padding: 20px 22px;
    }

    .info-panel-body {
        padding: 23px 22px 25px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .info-panel {
        border-radius: 15px;
        margin-bottom: 20px;
    }
 .hero-content h1 {
        font-size: 28px !important;
        line-height: 1.08;
    }
    .info-panel-header {
        min-height: auto;
        padding: 18px 18px;
        gap: 13px;
    }

    .panel-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        border-radius: 10px;
        font-size: 19px;
    }

    .panel-title h3 {
        font-size: 20px;
    }

    .panel-title span {
        font-size: 12px;
    }

    .info-panel-body {
        padding: 20px 18px 22px;
    }

    .info-list li {
        padding-left: 17px;
        padding-bottom: 13px;
        margin-bottom: 13px;

        font-size: 13.5px;
        line-height: 1.65;
    }

    .info-list li::before {
        width: 6px;
        height: 6px;
        top: 8px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .info-panel-header {
        padding: 16px;
    }

    .panel-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .panel-title h3 {
        font-size: 18px;
    }

    .info-panel-body {
        padding: 18px 16px 20px;
    }

    .info-list li {
        font-size: 13px;
    }
}.hero-quote {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-left: 18px;
    border-left: 2px solid #D4A017;
}/* =========================================
   DISCLAIMER POPUP
========================================= */

.disclaimer-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.72);

    padding: 20px;
}


/* MODAL */

.disclaimer-modal {
    width: 100%;
    max-width: 815px;
    max-height: 90vh;

    background: #ffffff;

    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);

    display: flex;
    flex-direction: column;
}


/* HEADER */

.disclaimer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 28px;

    background: #ffffff;
}

.disclaimer-header h2 {
    margin: 0;

    color: #e51f12;
    font-size: 23px;
    font-weight: 500;
}

.disclaimer-close {
    border: 0;
    background: transparent;

    color: #777;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;
}

.disclaimer-close:hover {
    color: #000;
}


/* BODY */

.disclaimer-body {
    margin: 0 18px;
    padding: 0 15px 5px 5px;

    max-height: 570px;
    overflow-y: auto;

    color: #f11b12;
    font-size: 19px;
    line-height: 1.7;

    text-align: justify;
}

.disclaimer-body p {
    /* margin: 0 0 20px; */
}


/* SCROLLBAR */

.disclaimer-body::-webkit-scrollbar {
    width: 9px;
}

.disclaimer-body::-webkit-scrollbar-track {
    background: #eeeeee;
}

.disclaimer-body::-webkit-scrollbar-thumb {
    background: #999999;
    border-radius: 10px;
}


/* FOOTER */

.disclaimer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 40px 28px;
}

.disclaimer-btn {
    min-width: 105px;

    padding: 11px 22px;

    border: 0;
    border-radius: 4px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

.agree-btn,
.disagree-btn {
    background: #f52b16;
}

.disclaimer-btn:hover {
    background: #d91f0d;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .disclaimer-overlay {
        padding: 10px;
    }

    .disclaimer-modal {
        max-height: 94vh;
    }

    .disclaimer-header {
        padding: 14px 18px;
    }

    .disclaimer-header h2 {
        font-size: 20px;
    }

    .disclaimer-close {
        font-size: 28px;
    }

    .disclaimer-body {
        max-height: 65vh;

        margin: 0 10px;
        padding: 0 10px 5px 3px;

        font-size: 15px;
        line-height: 1.65;
    }

    .disclaimer-body p {
        margin-bottom: 16px;
    }

    .disclaimer-footer {
        padding: 15px 18px 20px;
    }

    .disclaimer-btn {
        min-width: 90px;
        padding: 10px 16px;
        font-size: 13px;
    }

}.disclaimer-registration {
    margin-top: 25px;
    padding: 14px 16px;

    background: #fff7f5;
    border-left: 4px solid #f52b16;

    color: #d91f0d;
    font-size: 16px;
    line-height: 1.5;
}

.disclaimer-registration strong {
    font-weight: 700;
}/* =========================================
   PAGE TABS - CENTER ALIGN
========================================= */

.moeoc-page-tabs-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
}

/* Tab */
.moeoc-tab {
    flex: 0 0 auto;
    white-space: nowrap;
}


/* =========================================
   MOBILE - HORIZONTAL SCROLL
========================================= */

@media (max-width: 767px) {

    .moeoc-page-tabs {
        width: 100%;
        overflow: hidden;
    }
    
.feature-text p {
   
    margin-left: 0px !important;
}



    .moeoc-page-tabs-inner {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;

        width: 100%;
        padding: 8px 12px;

        gap: 8px;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        touch-action: pan-x;
    }

    .moeoc-page-tabs-inner::-webkit-scrollbar {
        display: none;
    }

    .moeoc-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }

}/* =========================================
   IMPORTANT INFORMATION
========================================= */

.important-section {
    scroll-margin-top: 46px;
}

.important-card {
    /* margin: 38px 0 !important; */
}

.feature-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-heading-content {
    display: flex;
    flex-direction: column;
}

.feature-heading h2 {
    margin: 0;
    color: #0B2D5B;
    font-size: 22px;
    font-weight: 700;
}

.feature-line {
    width: 55px;
    height: 3px;
    margin-top: 8px;
    background: #D4A017;
    border-radius: 5px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #E8F2FF;
    color: #0B2D5B;

    border-radius: 10px;
    font-size: 20px;
}

.important-content {
    margin-top: 22px;
}

.feature-text p {
    color: #52677d;
    font-size: 16px;
    line-height: 1.8;
    margin-left: 53px;
}


/* BUTTON */

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 8px;
    padding: 12px 20px;

    border: 0;
    border-radius: 6px;

    background: #0B2D5B;
    color: #fff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;
    text-decoration: none;

    transition: .3s ease;
}

.feature-btn:hover {
    background: #D4A017;
    color: #fff;
}

.feature-btn i {
    font-size: 12px;
}/* =========================================
   DISCLAIMER POPUP
========================================= */

.disclaimer-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(5, 24, 48, .78);
}

.disclaimer-modal {
    width: 100%;
    max-width: 820px;
    max-height: 90vh;

    background: #fff;
    border-radius: 12px;
    overflow: hidden;

    box-shadow: 0 20px 60px rgba(11,45,91,.3);

    display: flex;
    flex-direction: column;
}


/* HEADER */

.disclaimer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 28px;

    background: #0B2D5B;
    border-bottom: 3px solid #D4A017;
}

.disclaimer-header h2 {
    margin: 0;
    color: #fff;
    font-size: 23px;
}

.disclaimer-close {
    border: 0;
    background: transparent;
    color: #fff;

    font-size: 30px;
    cursor: pointer;
}

.disclaimer-close:hover {
    color: #D4A017;
}


/* BODY */

.disclaimer-body {
    max-height: 570px;
    overflow-y: auto;

    padding: 25px 30px;

    color: #334E68;
    font-size: 16px;
    line-height: 1.75;
}

.disclaimer-body p {
    margin: 0 0 9px;
}


/* REGISTRATION */

.disclaimer-registration {
    margin-top: 25px;
    padding: 15px 18px;

    background: #E8F2FF;
    border-left: 4px solid #D4A017;
    border-radius: 5px;

    color: #0B2D5B;
    font-size: 15px;
    line-height: 1.6;
}


/* FOOTER */

.disclaimer-footer {
    display: flex;
    justify-content: space-between;

    padding: 18px 30px 22px;

    background: #f8fbff;
    border-top: 1px solid #dce8f3;
}

.disclaimer-btn {
    min-width: 110px;
    padding: 11px 25px;

    border-radius: 5px;
    cursor: pointer;

    font-size: 14px;
    font-weight: 700;
}

.agree-btn {
    background: #0B2D5B;
    border: 1px solid #0B2D5B;
    color: #fff;
}

.agree-btn:hover {
    background: #D4A017;
    border-color: #D4A017;
}

.disagree-btn {
    background: #E8F2FF;
    border: 1px solid #0B2D5B;
    color: #0B2D5B;
}

.disagree-btn:hover {
    background: #0B2D5B;
    color: #fff;
}


/* MOBILE */

@media (max-width: 767px) {

    .important-section {
        scroll-margin-top: 80px;
    }

    .feature-heading h2 {
        font-size: 21px;
    }

    .feature-icon {
        width: 43px;
        height: 43px;
        min-width: 43px;
        font-size: 18px;
    }

    .disclaimer-overlay {
        padding: 10px;
    }

    .disclaimer-modal {
        max-height: 94vh;
    }

    .disclaimer-header {
        padding: 15px 18px;
    }

    .disclaimer-header h2 {
        font-size: 19px;
    }

    .disclaimer-body {
        max-height: 65vh;
        padding: 20px 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .disclaimer-footer {
        padding: 14px 18px 18px;
    }

    .disclaimer-btn {
        min-width: 90px;
        padding: 10px 16px;
        font-size: 12px;
    }

}/* =========================================
   QUALIFICATIONS PANEL
========================================= */


.panel-title span {
    display: block;

    margin-top: 3px;

    color: #D4A017;
    font-size: 13px;
    font-weight: 600;
}


/* BODY */

.info-panel-body {
    padding: 22px 25px;
}


/* QUALIFICATION TEXT */

.qualification-list {
    width: 100%;
}

.qualification-list p {
    display: block;

    margin: 0;
    padding: 12px 0;

    color: #536b82;
    font-size: 15px;
    line-height: 1.7;

    border-bottom: 1px solid #edf2f7;
}

.qualification-list p:first-child {
    padding-top: 0;
}

.qualification-list p:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.qualification-list strong {
    color: #0B2D5B;
    font-weight: 700;
}

.qualification-list span {
    color: #536b82;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .info-panel-header {
        padding: 15px 17px;
        gap: 11px;
    }

    .panel-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 17px;
    }

    .panel-title h3 {
        font-size: 19px;
    }

    .panel-title span {
        font-size: 12px;
    }

    .info-panel-body {
        padding: 17px 18px;
    }

    .qualification-list p {
        padding: 11px 0;
        font-size: 14px;
        line-height: 1.65;
    }

}/* ==============================
   COMPACT IMPORTANT INFORMATION
================================ */

.important-card {
    width: 100%;
    background: #fffaf0;
    border: 1px solid #ead9a8;
    border-radius: 14px;
    padding: 18px 22px;
    margin: 25px 0;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.04);
}

.important-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Icon */
.important-card .feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: #eaf3ff;
    color: #073c6d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
}

/* Content */
.important-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.important-text {
    flex: 1;
}

.important-text h2 {
    margin: 0 0 5px;
    font-size: 21px;
    font-weight: 700;
    color: #073c6d;
}

.important-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #52657a;
}

/* Button */
.important-card .feature-btn {
    flex-shrink: 0;
    border: none;
    background: #073c6d;
    color: #fff;
    padding: 12px 18px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.important-card .feature-btn i {
    margin-left: 7px;
    color: #e5a900;
    transition: transform 0.3s ease;
}

.important-card .feature-btn:hover {
    background: #e5a900;
    color: #073c6d;
}

.important-card .feature-btn:hover i {
    transform: translateX(4px);
}


/* ==============================
   MOBILE
================================ */

@media (max-width: 767px) {

    .important-card {
        padding: 16px;
        border-radius: 12px;
    }

    .important-wrapper {
        align-items: flex-start;
        gap: 12px;
    }

    .important-card .feature-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 16px;
    }

    .important-content {
        display: block;
    }

    .important-text h2 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .important-text p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .important-card .feature-btn {
        padding: 9px 14px;
        font-size: 13px;
    }
}.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: transparent !important;
    border: 1px solid #0B2D5B;
    color: #0B2D5B;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: transparent !important;
    color: #0B2D5B;
    border-color: #0B2D5B;
}.immigration-topics-section {
    width: 100%;
    padding: 55px 20px;
    background: #ffffff;
}

.immigration-container {
    max-width: 1320px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 24px;
}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}



.heading-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #0b2d5b;
    color: #ffffff;
    border-radius: 50%;
}

.section-heading h2 {
    margin: 0;
    color: #0b2d5b;


    font-size: 28px;
    font-weight: 700;
}


/* =========================
   TOPIC GRID
========================= */

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 18px;
}

.topic-card {
    display: block;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid #d9e5ef;
    border-radius: 5px;

    text-decoration: none;
    box-shadow: 0 1px 3px rgba(11, 45, 91, 0.05);

    transition: transform 0.25s ease,
                box-shadow 0.25s ease;
}

.topic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(11, 45, 91, 0.12);
}


/* Image */

.topic-image {
    position: relative;
    height: 172px;
    overflow: hidden;
}

.topic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Number */

.topic-number {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b2d5b;
    color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
}


/* Card Content */

.topic-content {
    padding: 9px 14px 10px;
}

.topic-content h3 {
    /* margin: 0 0 3px; */
    color: #0b2d5b;
    font-size: 15px;
    line-height: 1.15;
    font-weight: 700;
}

.topic-content p {
    /* margin: 0 0 5px; */
    color: #455b70;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    line-height: 1.35;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: #0b2d5b;

    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
}

.learn-more i {
    font-size: 13px;
}


/* =========================
   SIDEBAR
========================= */

.immigration-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-card {
    padding: 16px;

    background: #f8fbff;
    border: 1px solid #e0ebf4;
    border-radius: 8px;
}


/* Sidebar Heading */

.sidebar-title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.sidebar-title i {
    flex-shrink: 0;
    color: #0b2d5b;
    font-size: 14px;
}

.sidebar-title h3 {
    margin: 0;

    color: #0b2d5b;


    font-size: 17px;
    line-height: 1.15;
}


/* Page Contents */

.page-contents {
    margin: 13px;
    padding-left: 22px;
    color: #0b2d5b;
}

.page-contents li {
    margin-bottom: 6px;

    padding-left: 2px;

    font-size: 12px;
    line-height: 1.3;
}

.page-contents a {
    color: #0b2d5b;
    text-decoration: none;
}

.page-contents a:hover {
    text-decoration: underline;
}


/* Legal Framework */

.framework-list {
    margin: 0;
    padding-left: 18px;
}

.framework-list li {
    margin-bottom: 7px;

    color: #455b70;

    font-size: 12px;
    line-height: 1.35;
}

.framework-list li::marker {
    color: #0b2d5b;
}


/* Resources */

.resource-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.resource-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;

    margin-bottom: 7px;
}

.resource-list li > i {
    margin-top: 2px;

    color: #0b2d5b;
    font-size: 11px;
}

.resource-list a {
    color: #0b2d5b;

    font-size: 11.5px;
    line-height: 1.25;

    text-decoration: none;
}

.resource-list a:hover {
    text-decoration: underline;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {

    .immigration-container {
        grid-template-columns: 1fr;
    }

    .immigration-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 800px) {

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .immigration-sidebar {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 520px) {

    .immigration-topics-section {
        padding: 35px 15px;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 24px;
    }

}/* =========================================
   MOEOC FAQ SECTION
========================================= */

.moeoc-faq-section {
    width: 100%;
    padding: 50px 20px 60px;
    background: #ffffff;
}

.moeoc-faq-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   FAQ HEADER
========================================= */

.moeoc-faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 22px;
}

.moeoc-faq-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.moeoc-faq-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0b2d5b;
    color: #ffffff;

    border-radius: 50%;

    font-size: 23px;
    font-weight: 700;
}

.moeoc-faq-heading h2 {
    margin: 0 0 5px;

    color: #0b2d5b;

    font-family: "Playfair Display", serif;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
}

.moeoc-faq-heading p {
    margin: 0;

    color: #455b63;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

.moeoc-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    flex-shrink: 0;

    color: #0b2d5b;

    font-size: 14px;
    font-weight: 700;

    text-decoration: underline;
}

.moeoc-view-all i {
    font-size: 18px;
    text-decoration: none;
}


/* =========================================
   FAQ GRID
========================================= */

.moeoc-faq-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 12px 22px;
}


/* =========================================
   FAQ ITEM
========================================= */

.moeoc-faq-item {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #cfe1f2;
    border-radius: 7px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.moeoc-faq-item:hover {
    border-color: #9fc4e5;

    box-shadow:
        0 4px 14px rgba(11, 45, 91, 0.07);
}


/* =========================================
   QUESTION BUTTON
========================================= */

.moeoc-faq-question {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 12px 15px;

    border: 0;
    outline: 0;

    background: #ffffff;

    color: #0b2d5b;

    cursor: pointer;

    text-align: left;
}


/* Number */

.moeoc-faq-number {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0b2d5b;
    color: #ffffff;

    border-radius: 8px;

    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 700;
}


/* Question */

.moeoc-faq-question-text {
    flex: 1;

    color: #0b2d5b;


    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
}


/* Chevron */

.moeoc-faq-chevron {
    flex: 0 0 auto;

    color: #0b2d5b;

    font-size: 18px;

    transition: transform 0.25s ease;
}


/* =========================================
   ANSWER
========================================= */

.moeoc-faq-answer {
    display: none;

    padding: 0 55px 16px 77px;

    color: #45658e;

    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

.moeoc-faq-item.open .moeoc-faq-answer {
    display: block;
}

.moeoc-faq-item.open .moeoc-faq-chevron {
    transform: rotate(180deg);
}

.moeoc-faq-item.open {
    border-color: #a8cce9;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 850px) {

    .moeoc-faq-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 650px) {

    .moeoc-faq-section {
        padding: 35px 15px;
    }

    .moeoc-faq-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .moeoc-faq-heading h2 {
        font-size: 25px;
    }

    .moeoc-faq-heading p {
        font-size: 13px;
    }

    .moeoc-faq-question {
        gap: 10px;
        padding: 10px;
    }

    .moeoc-faq-number {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 19px;
    }

    .moeoc-faq-question-text {
        font-size: 15px;
    }

    .moeoc-faq-answer {
        padding: 0 15px 15px 62px;
        font-size: 13px;
    }

}html {
    scroll-behavior: smooth;
}

/* Header ke neeche section properly dikhe */
#visa-immigration,
#frro,
#oci,
#citizenship,
#overstay-exit-permit,
#blacklisting-deportation,
#litigation-remedies,
#loc-travel,
#nri-cross-border {
    scroll-margin-top: 110px;
}/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}
.social-icons .reddit{
    background: #ff4500;
}
/* ================================
   NAV DROPDOWN
================================ */

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Dropdown main link */
.nav-dropdown > .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
}

/* Arrow */
.nav-dropdown > .dropdown-toggle i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

/* Dropdown box */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;

    min-width: 240px;

    padding: 10px 0;

    background: #ffffff;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 9999;
}

/* Dropdown links */
.nav-dropdown-menu a {
    display: block;

    padding: 11px 18px;

    color: #1d2b45;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}

/* Hover */
.nav-dropdown-menu a:hover {
    background: #f4f7fb;
    color: #0b4f9c;
    padding-left: 23px;
}

/* Show dropdown */
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Rotate arrow */
.nav-dropdown:hover > .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Invisible bridge between menu and dropdown */
.nav-dropdown-menu::before {
    content: "";
    /* position: absolute; */
    /* top: -12px; */
    /* left: 0; */
    /* width: 100%; */
    /* height: 12px; */
}/* =================================
   MOBILE DROPDOWN
================================= */

.mobile-dropdown {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}


/* Main dropdown button */
.mobile-dropdown-toggle {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 20px;

    background: transparent;
    border: 0;

    color: #1d2b45;

    font-family: inherit;
    font-size: 15px;
    font-weight: 500;

    text-align: left;

    cursor: pointer;
}


/* Arrow */
.mobile-dropdown-toggle i {
    font-size: 12px;

    transition: transform 0.3s ease;
}


/* Submenu */
.mobile-submenu {
    display: none;

    padding: 5px 0 8px 0;

    background: #f7f9fc;
}


/* Submenu links */
.mobile-submenu a {
    display: block;

    padding: 11px 20px 11px 35px;

    color: #475569;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition: 0.2s ease;
}


/* Hover */
.mobile-submenu a:hover {
    color: #0b4f9c;
    background: #eef4fa;
}


/* Active dropdown */
.mobile-dropdown.active
.mobile-submenu {
    display: block;
}


/* Rotate arrow */
.mobile-dropdown.active
.mobile-dropdown-toggle i {
    transform: rotate(180deg);
}


/* Button hover */
.mobile-dropdown-toggle:hover {
    color: #0b4f9c;
}/* ================================
   COMPACT IMPORTANT / DISCLAIMER
================================ */

.important-section {
    padding: 25px 0;
}

.important-card {
    padding: 0;
}

.important-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 7px 25px;
}

.feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

.important-content {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.important-text h2 {
    margin: 0 0 5px;
    font-size: 20px;
    line-height: 1.2;
}

.important-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.feature-btn {
    flex-shrink: 0;

    padding: 9px 15px;

    font-size: 13px;
    white-space: nowrap;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    .important-section {
        padding: 18px 0;
    }

    .important-wrapper {
        gap: 12px;
        padding: 15px;
        align-items: flex-start;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 16px;
    }

    .important-content {
        display: block;
    }

    .important-text h2 {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .important-text p {
        font-size: 12px;
        line-height: 1.45;
        margin-bottom: 10px;
    }

    .feature-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}