
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body .navbar-fixed-top .navbar {
    background: #ffffff !important;
}
body ul.nav.navbar-nav li {
    margin-top: 0;
}
body .dropdown-menu {
    border: unset;
}
.navbar-default .navbar-nav>li>a {
    color: #0c56ad;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif!important;
}
body .container.banner-live-text-vertical-align {
    background-color: #ffffff !important;
}
body .navbar-fixed-top .navbar {
    box-shadow: 0 2px 10px rgba(7, 58, 119, 0.06);
}
body .login-band {
    height: 0!important;
}
body .login-band .login-band {
    position: absolute!important;
}
body .login-search-area {
    display: none!important;
}
.banner-live-text .login-area .navbar-brand {
    position: absolute!important;
}
a[title="Facebook"] {
    margin-left: 10px;
}
a[title="Instagram"] {
    margin-left: 10px;
    margin-right: 5px;
}
a[title="Facebook"], a[title="Instagram"] {
    font-size: 16px !important;
    color: #ffffff !important;
    background: #073a77;
    width: 30px;
    height: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 4rem;
}
.navbar .navbar-nav>li>.menu-item.menu-item-secondary {
    margin: 0 0 0 15px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    background-color: #f9bc05;
    color: #073a77;
    border: 1.5px solid #f9bc05;
    padding: 10px 20px !important;
}
.navbar .navbar-nav>li>.menu-item.menu-item-secondary:hover, .navbar .navbar-nav>li>.menu-item.menu-item-secondary:focus {
    background-color: #d19f08;
}
.navbar .navbar-nav>li>.menu-item.menu-item-primary {
    margin: 0 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    border: 1.5px solid #073a77!important;
    color: #073a77!important;
    background: transparent;
    padding: 10px 20px !important;
}
.navbar .navbar-nav>li>.menu-item.menu-item-primary:hover, .navbar .navbar-nav>li>.menu-item.menu-item-primary:focus {
    background-color: #073a77!important;
    color: #ffffff!important;
}
@media (min-width: 769px) {
    body .navbar-nav>li>a, body .navbar-nav>li>span {
        padding: 10px 8px!important;    
    }
}


/* --- SECTION: ADDRESS BAR (THE SHARP DESIGN) --- */
.address-bar-section { background-color: #F0F8FD; margin-bottom: 1px; position: relative; }
.address-wrapper {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0; /* Pure bar look */
}
.addr-block-light {
    background-color: #00AEEF; /* Sky Blue */
    color: white;
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
}
.addr-block-light h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}
/* Diagonal cut between light and dark blue */
.addr-block-light::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 13px solid #00AEEF;
    z-index: 2;
    transform: translateY(-50%);
}
.addr-block-dark {
    background-color: #073A77;
    color: white;
    padding: 40px 60px;
    flex: 2;
    position: relative;
    clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 0% 100%);
    display: flex;
    align-items: center;
}
.addr-block-white {
    background-color: #F0F8FD;
    padding: 40px;
    flex: 1.5;
    display: flex;
    align-items: center;
}
.addr-info { display: flex; gap: 20px; align-items: flex-start; }
.addr-info h4 { font-size: 18px!important; font-weight: 800!important; margin-bottom: 5px; margin-top: 0px; }
.addr-block-dark .addr-info h4 {
    color: #ffffff;
}
.addr-block-white .addr-info h4 {
    color: #051d43!important;
}
.addr-info p {
    font-size: 14px !important;
    opacity: 0.9;
    line-height: 1.4 !important;
}
.addr-block-dark .addr-info p {
    color: #ffffff;
}
.yellow-location-pin {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}




/* --- SECTION: LATEST NEWS --- */
.news-section {
    padding: 0 0 80px 0;
    background-color: #fff;
    position: relative;
}
.news-watermark {
    position: absolute;
    right: 0px;
    top: 50%;
    width: 217px;
    z-index: 0;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.section-header h2 { font-size: 32px!important; font-weight: 800!important; color: #073A77; }
.view-all-link { color: #073A77; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    z-index: 1;
    position: relative;
}
.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-bottom: 4px solid #F9BC05;
    transition: transform 0.3s ease;
}
.news-card:hover { transform: translateY(-10px); }
.news-img img { width: 100%; height: 180px; object-fit: cover; }
.news-content { padding: 20px; }
.news-content h3 {
    font-size: 16px;
    color: #073A77;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.3;
    margin-top: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-date { font-size: 12px; color: #888; display: block; margin-bottom: 10px; }
.news-content p { font-size: 13px!important; color: #555; line-height: 1.5!important; margin-bottom: 15px; }
.read-more { font-size: 13px; font-weight: 800; color: #073A77; display: flex; align-items: center; gap: 5px; }
.HomeContentWrapper section.band-4.band-wrapper {
    background: linear-gradient(to bottom, #f0f8fd, #ffffff);
    padding-bottom: 100px;
}
@media (max-width: 767px) {
    .section-header h2 {
        margin-top: 0px;
    }
}


@media (min-width: 768px) {
    .address-bar-section:before {
        background: #00aeef;
        content: '';
        width: 50%;
        height: 100%;
        position: absolute;
        left: 0;
    }
    
}
@media (max-width: 1024px) {
    .yellow-location-pin {
        display: none;
    }
}
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .section-title-blue {
        font-size: 26px;
    }
    .view-all-link {
        font-size: 14px;
    }
    .section-header {
        margin-bottom: 20px;
    }
    .news-section {
        padding: 0 0 50px 0;
    }
    .address-wrapper {
        display: flex;
        flex-direction: column;
    }
    .addr-block-dark {
        padding: 40px 20px;
        clip-path: none;
    }
    .addr-block-white {
        padding: 30px 20px;
    }
}
@media (max-width: 500px) {
    .news-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
}
body .navbar-fixed-top .navbar {
    background: #ffffff !important;
}
body ul.nav.navbar-nav li {
    margin-top: 0;
}
body .dropdown-menu {
    border: unset;
}
.navbar-default .navbar-nav>li>a {
    color: #0c56ad;
    font-size: 14px;
    font-weight: 600;
}
body .container.banner-live-text-vertical-align {
    background-color: #ffffff !important;
}
body .navbar-fixed-top .navbar {
    box-shadow: 0 2px 10px rgba(7, 58, 119, 0.06);
}
body .login-band {
    height: 0!important;
}
body .login-band .login-band {
    position: absolute!important;
}
body .login-search-area {
    display: none!important;
}
.banner-live-text .login-area .navbar-brand {
    position: absolute!important;
}
.navbar-default.navbar .container,
.site-footer .container {
    max-width: 1280px !important;
    width: 100% !important;
    padding: 8px 20px;
}
.navbar-nav .dropdown-menu>li a {
    font-size: 14px;
    padding: 5px 10px;
}
.navbar-nav>li>.dropdown-menu {
    padding: 10px;
    border-radius: 10px;
    border-bottom: 4px solid #f9bc05;
}
a[title="Facebook"]:hover, a[title="Instagram"]:hover {
    background: #0c56ad !important;
}
@media (min-width: 769px) {
    body .navbar-nav>li>a, body .navbar-nav>li>span {
        padding: 10px 8px!important;    
    }
}
/* --- SECTION: FOOTER --- */
/* =======================================
   FINAL FOOTER (EXACT MATCH)
======================================= */
.site-footer {
    background-color: #073A77;
    color: #ffffff;
    padding: 80px 0 40px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.1fr 1.5fr 1.1fr; /* Image jaisa alignment */
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col {
    padding-left: 0;
}
/* Vertical Dividers between columns */
.divider-left {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 35px;
}
/* Col 1: Brand */
.footer-logo {
    height: 65px;
    margin-bottom: 25px;
    display: block;
}
.footer-about {
    font-size: 14px!important;
    line-height: 1.6!important;
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 300px;
    color: #ffffff!important;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.social-icon {
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #073A77; /* Blue icons inside */
    transition: all 0.3s ease;
}
.social-icon:hover {
    background-color: #F9BC05;
    transform: translateY(-3px);
}
/* Titles */
footer h4 {
    font-size: 14px!important;
    font-weight: 800!important;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    color: #ffffff!important;
}
/* Col 2 & 3: Double Column Links */
.links-sub-grid ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
    max-width: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin-left: 0;
}
.links-sub-grid ul li {
    margin-bottom: 8px;
    line-height: normal !important;
    margin-top: 0;
}
.links-sub-grid ul li a {
    font-size: 13px;
    color: #ffffff;
    opacity: 0.8;
    text-decoration: none;
    transition: 0.3s;
}
.links-sub-grid ul li a:hover {
    opacity: 1;
    color: #F9BC05!important;
    padding-left: 4px;
}
/* Col 4: Form */
.footer-sub-form input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 14px 18px;
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1;
    height: auto;
}
.footer-sub-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.footer-sub-form > p {
    margin-bottom: 0;
}
body footer .footer-btn-sub {
    width: 100%;
    background-color: #F9BC05;
    color: #073A77!important;
    border: none;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s;
}
.footer-btn-sub:hover {
    background-color: #e5ac02;
}
body .addr-info a {
    color: #073a77 !important;
    font-weight: 600;
    text-decoration: underline;
}
.privacy-note {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 15px;
    font-size: 9px;
    opacity: 0.7;
}
/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.8;
}
.bottom-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.bottom-nav a {
    color: white;
    text-decoration: none;
}
body footer .bottom-nav a:hover {
    color: #F9BC05!important;
}
.footer-grid > div:nth-child(2) ul {
    display: block;
}
.footer-sub-form p:first-child {
    margin-bottom: 0;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #ffffff;
    margin-bottom: 14px;
    opacity: 0.8;
}
.sep { opacity: 0.3; }
/* Responsive */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: 1.2fr 1fr; gap: 20px; }
    .divider-left { border: none; padding-left: 0; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-bar { flex-direction: column; text-align: center; gap: 20px; }
    .footer-title { margin-bottom: 20px; }
    .bottom-nav {
        gap: 7px;
    }
    .privacy-note {
        justify-content: center;
    }
    .bottom-nav a,
    .copyright {
        font-size: 12px;
    }
    .footer-about {
        margin-bottom: 15px;
    }
    .footer-socials {
        margin-bottom: 25px;
    }
    .video-title {
        font-size: 26px;
    }
}
/* =======================================
   COLOR UTILITY CLASSES
======================================= */
/* Text Color Classes */
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-dark {
    color: var(--text-dark) !important;
}
.text-light {
    color: var(--bg-light) !important;
}
.text-white {
    color: var(--white) !important;
}
/* Background Color Classes */
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-secondary {
    background-color: var(--secondary) !important;
}
.bg-dark {
    background-color: var(--text-dark) !important;
}
.bg-light {
    background-color: var(--bg-light) !important;
}
.bg-white {
    background-color: var(--white) !important;
}
/* Optional: Border Color Classes */
.border-primary {
    border-color: var(--primary) !important;
}
.border-secondary {
    border-color: var(--secondary) !important;
}
body .WebsiteFooter > .container {
    max-width: 100%;
    padding: 0;
    width: 100%;
}

/* --- SECTION: FOOTER --- */
/* =======================================
   Events CSS
======================================= */
ul.upcoming-event-list {
    max-width: 1280px;
    margin: auto !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
body .upcoming-event-list>li {
    padding: 0!important;
}
.HomeContentWrapper .single-column .PageWidget:nth-child(4) {
    background: #f0f8fd;
    padding-bottom: 80px;
}
.HomeContentWrapper .MainWidgetWrapper.story {
    max-width: 1280px;
    margin: 90px auto 0;
    padding: 0 20px;
}
.HomeContentWrapper article.card.card-default {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #ffffff;
    border-radius: 20px!important;
    -webkit-box-shadow: none;
    box-shadow: 0 2px 10px rgba(7, 58, 119, 0.06) !important;
}
.HomeContentWrapper article.card .card-block * {
    font-size: 16px;
}



/* =======================================
   FINAL FOOTER (EXACT MATCH)
======================================= */
.site-footer {
    background-color: #073A77;
    color: #ffffff;
    padding: 80px 0 20px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1.1fr 1.5fr 1.1fr; /* Image jaisa alignment */
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col {
    padding-left: 0;
}
/* Vertical Dividers between columns */
.divider-left {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 35px;
}
/* Col 1: Brand */
.footer-logo {
    height: 65px;
    margin-bottom: 25px;
    display: block;
}
.footer-about {
    font-size: 14px!important;
    line-height: 1.6!important;
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 300px;
    color: #ffffff!important;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.social-icon {
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #073A77; /* Blue icons inside */
    transition: all 0.3s ease;
}
.social-icon:hover {
    background-color: #F9BC05;
    transform: translateY(-3px);
}
/* Titles */
footer h4 {
    font-size: 14px!important;
    font-weight: 800!important;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    color: #ffffff!important;
}
/* Col 2 & 3: Double Column Links */
.links-sub-grid ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    max-width: 100%;
    left: 0;
    list-style: none;
    padding: 0;
    margin-left: 0;
}
.links-sub-grid ul li {
    margin-bottom: 8px;
    line-height: normal !important;
    margin-top: 0;
}
.links-sub-grid ul li a {
    font-size: 13px;
    color: #ffffff;
    opacity: 0.8;
    text-decoration: none;
    transition: 0.3s;
}
.links-sub-grid ul li a:hover {
    opacity: 1;
    color: #F9BC05!important;
    padding-left: 4px;
}
/* Col 4: Form */
.footer-sub-form input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 14px 18px;
    color: white;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1;
    height: auto;
}
.footer-sub-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.footer-sub-form > p {
    margin-bottom: 0;
}
body footer .footer-btn-sub {
    width: 100%;
    background-color: #F9BC05;
    color: #073A77!important;
    border: none;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.3s;
}
.footer-btn-sub:hover {
    background-color: #e5ac02;
}
body .addr-info a {
    color: #073a77 !important;
    font-weight: 600;
    text-decoration: underline;
}
.privacy-note {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 15px;
    font-size: 9px;
    opacity: 0.7;
}
/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.8;
}
.bottom-nav {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.bottom-nav a {
    color: white;
    text-decoration: none;
}
body footer .bottom-nav a:hover {
    color: #F9BC05!important;
}
.footer-grid > div:nth-child(2) ul {
    display: block;
}
.footer-sub-form p:first-child {
    margin-bottom: 0;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: #ffffff;
    margin-bottom: 14px;
    opacity: 0.8;
}
.sep { opacity: 0.3; }
/* Responsive */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: 1.2fr 1fr; gap: 20px; }
    .divider-left { border: none; padding-left: 0; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-bar { flex-direction: column; text-align: center; gap: 20px; }
    .footer-title { margin-bottom: 20px; }
    .bottom-nav {
        gap: 7px;
    }
    .privacy-note {
        justify-content: center;
    }
    .bottom-nav a,
    .copyright {
        font-size: 12px;
    }
    .footer-about {
        margin-bottom: 15px;
    }
    .footer-socials {
        margin-bottom: 25px;
    }
    .video-title {
        font-size: 26px;
    }
}
/* =======================================
   COLOR UTILITY CLASSES
======================================= */
/* Text Color Classes */
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.text-dark {
    color: var(--text-dark) !important;
}
.text-light {
    color: var(--bg-light) !important;
}
.text-white {
    color: var(--white) !important;
}
/* Background Color Classes */
.bg-primary {
    background-color: var(--primary) !important;
}
.bg-secondary {
    background-color: var(--secondary) !important;
}
.bg-dark {
    background-color: var(--text-dark) !important;
}
.bg-light {
    background-color: var(--bg-light) !important;
}
.bg-white {
    background-color: var(--white) !important;
}
/* Optional: Border Color Classes */
.border-primary {
    border-color: var(--primary) !important;
}
.border-secondary {
    border-color: var(--secondary) !important;
}

.navbar-default .navbar-toggle {
    background-color: #039be5;
    padding: 14px 9px;
    border-radius: 8px;
}




@media (max-width: 767px) {
    body .navbar-default .navbar-header {
        padding-left: 0;
        padding-right: 0;
    }
    a[title="Facebook"], a[title="Instagram"] {
        margin-top: 15px !important;
    }
    .navbar .navbar-nav>li>.menu-item.menu-item-secondary {
        margin-left: 10px!important;
        margin-top: 10px;
        min-width: calc(100% - 20px);
    }
    .navbar .navbar-nav>li>.menu-item.menu-item-primary {
        margin-top: 15px;
        min-width: calc(100% - 20px);
    }
}