
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body{
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #021520;
}

img{
    width: 100%;
}

a, a:hover, a:focus, a:active{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a{
    text-decoration: none;
    color: #0C69A2;
}

a:hover{
    color: #4D0E0B;
}

p{
    color: #0f0f0f;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6{
    font-weight: bold;
}

h2{
    font-size: 36px;
}

h3{
    font-size: 30px;
}

h4{
    font-size: 24px;
}

.margin-auto{
    margin: 0 auto;
}

.container{
    max-width: 1440px;
}

.btn{
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
    transition: all 0.25s ease;
}

.btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.btn-sm{
    font-size: 12px;
    padding: 5px 20px !important;
}

.btn-xs{
    font-size: 10px;
    padding: 4px 12px !important;
}

.btn-red-grad{
    background: linear-gradient(
        45deg,
        rgba(48, 10, 9, 1) 0%,
        rgba(150, 31, 28, 1) 50%,
        rgba(48, 10, 9, 1) 100%
    );
    background-size: 200% 100%;
    background-position: left center;
    color: #fff;

    transition: background-position 0.3s ease;
}

.btn-red-grad:hover, .btn-red-grad:focus, .btn-red-grad:active{
    background-position: right center;
    color: #fff !important;
}

.btn-gray{
    background-color: #DDDDDD;
    border-color: #DDDDDD;
    color: #0f0f0f;
}

.btn-gray:hover{
    background-color: #cccccc;
    color: #0f0f0f;
}

.btn-white{
    background-color: #fff;
    border-color: #fff;
    color: #0c69a2;
}

.btn-white:hover{
    background-color: #0c69a2;
    color: #fff;
    border-color: #0c69a2;
}

.btn-white-outline{
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-white-outline:hover{
    background-color: #fff;
    color: #0c69a2;
}

.btn-blue{
    background-color: #0c69a2;
    border-color: #0c69a2;
    color: #fff;
}

.btn-blue:hover{
    background-color: #095280;
    color: #fff;
    border-color: #095280;
}

.btn-round{
    border-radius: 100px;
    padding: 10px 40px;
}

.btn-regis-lg{
    font-size: 18px;
    font-weight: 700;
    padding: 15px 50px;
}

.btn-red-grad:disabled{
    color: #fff;
    opacity: 0.5;
}

.btn:disabled{
    opacity: 0.5;
}

.alert-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease-out;
    margin-bottom: 10px;
}

.alert-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 600;
}

.alert-content {
    flex: 1;
}

.alert-content strong {
    font-weight: 600;
}

.alert-close {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.5;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        transform: translateY(-6px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.alert-success {
    background: linear-gradient(135deg, #e6f9f0, #f4fffb);
    color: #0f5132;
}

.alert-success .alert-icon {
    background: #0f5132;
    color: #fff;
}

.alert-warning {
    background: linear-gradient(135deg, #fff4e5, #fffaf2);
    color: #664d03;
}

.alert-warning .alert-icon {
    background: #ffc107;
    color: #000;
}

.alert-info {
    background: linear-gradient(135deg, #e7f1ff, #f3f8ff);
    color: #084298;
}

.alert-info .alert-icon {
    background: #0d6efd;
    color: #fff;
}


/* Navbar */
.web-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: 0 0 5px rgb(200,200,200);
    transition: all 0.3s ease;
    height: 80px;
}

.logo{
    width: 230px;
    display: inline-block;
}

.logo a{
    display: block;
    padding: 23px 0px;
}

.menu{
    float: right;
}

.menu{
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li{
    display: inline-block;
}

.menu li a.menu-item{
    text-decoration: none;
    color: #0C69A2;
    font-weight: 600;  
    padding: 28px 30px;
    display: inline-block;
    font-size: 15px;
    position: relative;
}

.menu li a.menu-item:hover{
    color: #0C69A2;
}

.menu li a.menu-item span{
    padding: 2px 0px;
    border-bottom: 1px solid transparent;
}

.menu li a.menu-item.active{
    color: #0C69A2;
}

.menu li a.menu-item.active span{
    border-bottom: 1px solid #0C69A2;
}

.menu li.nav-btn{
    padding: 17px 20px;
}

.menu li.nav-btn .btn-red-grad{
    background: linear-gradient(
        45deg,
        rgba(48, 10, 9, 1) 0%,
        rgba(150, 31, 28, 1) 50%,
        rgba(48, 10, 9, 1) 100%
    );
    background-size: 200% 100%;
    background-position: left center;
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-left: 0px;
    transition: background-position 0.3s ease;
}

.menu li.nav-btn .btn-red-grad.active::after{
    border: none;
}

.menu li.nav-btn .btn-red-grad:hover{
    background-position: right center;
    color: #fff;
}

/* TRANSPARENT MODE */
.web-navbar.is-transparent {
    background-color: transparent;
    box-shadow: none;
}

/* SCROLLED STATE */
.web-navbar.is-transparent.scrolled {
    background-color: #fff;
    box-shadow: 0 0 5px rgb(200,200,200);
}

/* TEXT COLORS */
.web-navbar .menu li a.menu-item {
    color: #0C69A2;
}

.web-navbar.is-transparent .menu li a.menu-item {
    color: #fff;
    text-shadow: 1px 1px 0px rgba(0,0,0,0.4);
}

.web-navbar.is-transparent .menu li a.menu-item.active span {
    border-color: #fff;
}

.web-navbar.is-transparent.scrolled .menu li a.menu-item {
    color: #0C69A2;
    text-shadow: none;
}

.web-navbar.is-transparent.scrolled .menu li a.menu-item.active span {
    border-color: #0C69A2;
}

/* DROPDOWN FIX */


/* HOVER */
.menu li a:hover {
    color: #0C69A2;
}

.nav-dropdown{
    position: relative;
}

.nav-dropdown .dropdown-list{
    position: absolute;
    visibility:hidden;
    opacity: 0;
    transition: all ease 100ms;
    left: 0px;
    width: 220px;
    background-color: #fff;
    box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.05);
    border-radius: 0px 0px 10px 10px;
    top: 70px;
}

.nav-dropdown:hover .dropdown-list{
    visibility: visible;
    opacity: 1;
    transition: all ease 100ms;
    top: 80px;
}

.nav-dropdown .dropdown-list a{
    padding: 15px 30px;
    display: block;
    color: #0C69A2;
    font-weight: 600;  
}

.nav-dropdown .dropdown-list a:hover{
    background-color: #0C69A2;
    color: #fff;
}

.nav-dropdown .dropdown-list a:last-child{
    border-radius: 0px 0px 10px 10px;
}

.web-navbar.is-transparent:not(.scrolled) .nav-dropdown .dropdown-list{
    border-radius: 10px;
}

.web-navbar.is-transparent:not(.scrolled) .nav-dropdown .dropdown-list a:first-child{
    border-radius: 10px 10px 0px 0px;
}





/* Navigation - Mobile Style */

#pull{
    display: none;
    position: absolute;
    right: 35px;
    top: 22px;
}

.nav-mobile-right{
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
}

.nav-mobile-item{
    display: inline-block;
}

.nav-mobile-item a{
    display: inline-block;
    padding: 8px 10px;
}

.hamburger{
    padding: 0px;
}

.hamburger-box{
    width: 20px;
    height: 15px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before{
    width: 24px;
    height: 2px;
    background: #116aa3;
}

.hamburger-inner:after{
    bottom: -7px;
}

.hamburger-inner:before{
    top: -7px;
}

.nav-menu-wrapper{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: #fff;
    padding: 130px 20px 60px 20px;
    z-index: 10;
    left: -100%;
    transition: all 0.3s ease;
    display: none;
}

.nav-menu-wrapper.active{
    left: 0px;
    transition: all 0.3s ease;
}

.nav-menu-wrapper h2{
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    margin: 0px;
    color: #000;
    border-bottom: 1px solid #bbbbbb;
}

.nav-mobile{
    padding: 0px;
}

.nav-mobile li{
    list-style: none;
}

.nav-mobile li a{
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-bottom: 1px solid #f1f0f0;
}

.nav-menu-wrapper .search-box{
    width: 100%;
    margin-bottom: 15px;
}

.nav-menu-wrapper .search-box .search-input{
    width: 90%;
}

.nav-menu-wrapper .search-box .search-btn{
    position: absolute;
}

/* Mobile Navigation */
.mobile-navigation{
    display: none;
    text-align: right;
    padding-right: 0px !important;
}

.mobile-navigation .mobile-nav-item{
    display: inline-block;
    border-left: 1px solid #ddd;
}

.mobile-navigation .mobile-nav-item .nav-item{
    display: inline-block;
    padding: 15px 12px 15px 16px;
    font-size: 22px;
    color: #1C2730;
    position: relative;
}

.mobile-navigation .mobile-nav-item.nav-member .nav-item{
    font-size: 20px;
}

.mobile-navigation .mobile-nav-item .nav-item .nav-icon{
    vertical-align: middle;
}

.mobile-navigation .mobile-nav-item .pull{
}

.mobile-nav-menu{
    position: fixed;
    top: 0px;
    z-index: 12;
    width: 100%;
    height: 100vh;
    padding: 80px 0px;
    background-color: #fff;
    overflow-y: auto;
    right: -100%;
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-menu.active{
    right: 0;
    transition: all 0.3s ease;
}

.mobile-nav-menu .menu{
    width: 100%;
}

.mobile-nav-menu .menu li{
    width: 100%;
}

.mobile-nav-menu .menu li a{
    padding: 15px 20px;
    display: block;
    width: 100%;
}

.mobile-nav-menu .nav-dropdown .dropdown-list{
    position: relative;
    width: 100%;
    max-width: 100%;
    display: block;
    border-radius: 0px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    top: 0;
    padding-left: 20px;
}







.page-section{
    padding: 80px 0px;
}

.page-section .page-title{
    font-size: 28px;
    font-weight: 700;
    color: #0C69A2;
    margin-bottom: 30px;
}

/* Footer */
.web-footer{
    background-color: #fff;
    color: #777777;
    padding: 50px 0px 0px 0px;
    border-top: 1px solid #ddd;
}

.footer-section{
    display: block;
}

.footer-section .footer-item{
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
    text-decoration: none;
}

.footer-section.footer-logo img{
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-section .footer-item .footer-icon{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20px;
    color: #0F0F0F;
}

.footer-section .footer-item .footer-content{
    font-size: 14px;
    color: #777;
}

.footer-copyright{
    background-color: #0f0f0f;
    text-align: center;
    padding: 20px 0px;
    font-size: 14px;
    color: #777777;
}

.footer-copyright {
    background-color: #0f0f0f;
    padding: 40px 0 30px 0px;
    font-size: 14px;
    position: relative;
    margin-top: 30px;
}

/* Gradient top border */
.footer-copyright::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(
        90deg,
        rgba(150, 31, 28, 1) 0%,
        rgba(48, 10, 9, 1) 25%,
        rgba(150, 31, 28, 1) 50%,
        rgba(48, 10, 9, 1) 75%,
        rgba(150, 31, 28, 1) 100%
    );
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #cfcfcf;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    color: #b5b5b5;
}


.content{
    padding-top: 75px;
    min-height: 70vh;
}

.content.transparent-header{
    padding-top: 0px;
}

.line-red{
    border-top-color:#4D0E0B
}

.bg-gray{
    background-color: #fafafa;
}

.form-group{
    position: relative;
    margin-bottom: 20px;
}

.form-group label{
    font-weight: 600;
    margin-bottom: 5px;
}

.form-control:focus{
    box-shadow: none;
}

.form-input{
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 2px 0px rgb(240, 240, 240);
    border-radius: 8px;
    line-height: 25px;
    font-size: 15px;
    padding: 10px 15px;
    margin-top: 5px;
}

.form-input:hover{
    border-color: #bbbbbb;
}

.form-input:focus{
    outline: none;
    border-color: #0C69A2;
}

.form-input:disabled{
    color: #ddd;
    opacity: 0.8;
    cursor: not-allowed;
}

textarea.form-input{
    min-height: 100px;
    resize: vertical;
}

.input-error{
    font-size: 12px;
    color: #b50101;
    font-weight: 400 !important;
    margin-top: 5px;
}

.box{
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0px 3px 10px 0px rgb(240, 240, 240);
    margin: 0px auto 30px;
}

.box .header{
    position: absolute;
    top: -20px;
    left: 0px;
    width: 100%;
    text-align: center;
}

.box .header .title{
    display: inline-block;
    background-color: #0C69A2;
    color: #fff;
    font-weight: 400;
    text-align: center;
    padding: 10px 20px;
    width: 100%;
    max-width: 300px;
    border-radius: 100px;
}

.box .box-title{
    font-weight: 600;
    color: #0C69A2;
    margin-bottom: 20px;
}

/* Base container */
.select2-container .select2-selection--single {
    display: block;
    width: 100%;
    height: auto;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 2px 0px rgb(240, 240, 240);
    border-radius: 8px;
    line-height: 25px;
    font-size: 15px;
    padding: 10px 15px;
    margin-top: 5px;
    box-sizing: border-box;
}

/* Rendered text */
.select2-container .select2-selection--single .select2-selection__rendered {
    color: #333;
    padding: 0;
    line-height: 25px;
}

/* Dropdown arrow */
.select2-container .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
}

/* Hover */
.select2-container--default .select2-selection--single:hover {
    border-color: #bbbbbb;
}

.select2-container--default.select2-container--focus 
.select2-selection--single {
    outline: none;
    border-color: #0C69A2;
}

.select2-container--disabled .select2-selection--single {
    color: #ddd;
    opacity: 0.8;
    cursor: not-allowed;
    background-color: #f9f9f9;
}

.select2-dropdown {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
}

.select2-results__option {
    padding: 8px 15px;
    font-size: 14px;
}

.select2-results__option--highlighted {
    background-color: #0C69A2;
    color: #fff;
}

.select2-container--default 
.select2-selection--single 
.select2-selection__placeholder {
    color: #999;
}

.select2-container .select2-selection--multiple {
    display: block;
    width: 100%;
    min-height: 47px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0px 0px 2px 0px rgb(240, 240, 240);
    border-radius: 8px;
    padding: 6px 10px;
    margin-top: 5px;
    box-sizing: border-box;
    cursor: text;
}

.select2-container--default.select2-container--focus 
.select2-selection--multiple {
    border-color: #0C69A2;
}

.select2-container--default 
.select2-selection--multiple:hover {
    border-color: #bbbbbb;
}

.select2-container--default 
.select2-selection--multiple 
.select2-selection__choice {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    /* padding: 4px 10px 4px 22px; */
    margin: 4px 6px 4px 0;
    font-size: 14px;
    color: #333;
}

.select2-container--default 
.select2-selection--multiple 
.select2-selection__choice__remove {
    color: #999;
    margin-right: 6px;
    font-weight: bold;
}

.select2-container--default 
.select2-selection--multiple 
.select2-selection__choice__remove:hover {
    color: #0C69A2;
}

/* .select2-container 
.select2-selection--multiple 
.select2-search--inline 
.select2-search__field {
    font-size: 15px;
    padding: 4px 6px;
    margin-top: 6px;
    line-height: 25px;
} */

.select2-container--disabled 
.select2-selection--multiple {
    background-color: #f9f9f9;
    opacity: 0.8;
    cursor: not-allowed;
}

.select2-container--disabled 
.select2-selection__choice__remove {
    display: none;
}

.select2-container--default
.select2-selection--single
.select2-selection__placeholder,
.select2-container--default
.select2-selection--multiple
.select2-search__field::placeholder {
    font-family: "Poppins", sans-serif;
}

.datepicker{
    padding: 10px;
}

.datepicker table tr td span{
    font-size: 14px;
    border-radius: 8px;
}

.datepicker td, .datepicker th{
    font-size: 14px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.datepicker table tr td span.active, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover, .datepicker table tr td span.active:hover{
    background-image: linear-gradient(45deg, #0C69A2, #D32F2F);
}

.page-error-container{
    max-width: 400px;
    margin: 100px auto;
    text-align: center;
}

.page-error-container h1{
    font-size: 100px;
    font-weight: 800;
}

/* Home Page Style */
.hero-banner{
    display: block;
    width: 100%;
    padding: 0px;
    color: #fff;
}

.hero-banner .hero-content{
    display: flex;
    min-height: 100vh;
    justify-content: flex-start;
    align-items: center;
}

.hero-banner .hero-content .inside-wrapper{
    max-width: 700px;
    padding: 50px 0px;
}

.hero-content h1{
    font-size: 48px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    margin-bottom: 30px;
}

.hero-cta{
    display: flex;
    gap: 15px;
}

/* Home License */
.license-section {
    background-color: #f3f3f3;
    padding: 40px 0;
}

.license-img {
    max-height: 150px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.25s ease;
}

/* Section Header */

.section-header{
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0c69a2;
    text-transform: uppercase;
}

.section-header .subtitle{
    color: #052a41;
    font-size: 20px;
    line-height: 2;
}

.section-header h2 .dark{
    color: #052a41;
}

.section-header .line {
    display: block;
    width: 60px;
    height: 3px;
    background: #1c3b57;
    margin: 20px auto 20px;
}

.section-header .line.left{
    margin: 20px 0px 40px 0px;
}


/* Home Industry FNB */
.industry-section-fnb {
    padding: 120px 0;
}

.industry-wrapper {
    position: relative;
}

/* IMAGE WRAPPER = anchor */
.industry-image {
    position: relative;
    width: 70%;
}

.industry-image img {
    width: 100%;
    display: block;
}

/* OUTLINE BOX */
.outline-box {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 100%;
    height: 100%;
    border: 2px solid #0c69a2;
    z-index: -1;
}

/* MAIN CARD (OVERLAP FIXED HERE) */
.industry-card {
    position: absolute;
    right: 0;
    bottom: -80px; /* push into overlap */

    width: 100%;
    max-width: 600px;
    z-index: 3;
}

.industry-card .inside-wrapper{
    padding: 60px 50px;
    background: #0c69a2;
    color: #fff;
}

.industry-card h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.industry-card p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
    color: #fff;
}

.industry-card .read-more{
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

/* Home Industry Pharmacy */
.industry-section-pharmacy {
    padding: 120px 0;
    margin-bottom: 100px;
}

.industry-section-pharmacy .industry-wrapper{
    display: flex;
    justify-content: flex-end;
}
    

/* IMAGE WRAPPER = anchor */
.industry-section-pharmacy .industry-image {
    position: relative;
    width: 70%;
}

/* OUTLINE BOX */
.industry-section-pharmacy .outline-box {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 100%;
    height: 100%;
    border: 2px solid #0c69a2;
    z-index: -1;
}

/* MAIN CARD (OVERLAP FIXED HERE) */
.industry-section-pharmacy .industry-card {
    position: absolute;
    left: 0;
    bottom: -80px; /* push into overlap */

    width: 100%;
    max-width: 600px;
    z-index: 3;
}

.industry-card h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.industry-card p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
    color: #fff;
}

/* Home About Section */
.home-about-section{
    background: #f3f8fa;
    padding: 100px 0px;
}

.home-about-section .about-content{
    display: flex;
    align-items: center;
}

.home-about-section .inner-wrapper{
    padding: 40px;
}

.home-about-section p{
    line-height: 2;
    margin-bottom: 30px;
}

.home-about-section .read-more{
    font-size: 18px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.read-more i{
    margin-left: 5px;
    transition: all 0.25s ease;
}

.read-more:hover i{
    margin-left: 15px;
    transition: all 0.25s ease;
}

/* Home Why Us Section */
.home-why-us-section{
    padding: 120px 0px;
    background-color: #c2dae8;
}

/* ===========================
   Why Us Section
   =========================== */

.why-us-section {
    background-color: #dce9f5; /* light blue background matching the design */
}

.why-us-card {
    background-color: #f3f8fa;
    border: 1px solid #68a2c5;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    align-items: center !important;
    transition: box-shadow 0.2s ease;
}

.why-us-card:hover {
    box-shadow: 0 4px 16px rgba(23, 95, 165, 0.10);
}

.why-us-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.why-us-text {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

/* ===========================
   Kehadiran Global Section
   =========================== */

.global-section {
    background-color: #ffffff;
    padding: 100px 0px;
}

.global-title {
    font-size: 2rem;
    letter-spacing: 0.08em;
}

.text-primary-blue {
    color: #0c69a2;
}

.text-dark-blue {
    color: #073f61;
}

.global-divider {
    width: 48px;
    height: 3px;
    background-color: #0d2d4e;
    border-radius: 2px;
}

/* ---- Tab Buttons ---- */
.global-tabs {
    background: transparent;
}

.global-tab-btn {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.55rem 1.6rem;
    border-radius: 6px;
    border: 2px solid #1a6faf;
    background: transparent;
    color: #1a6faf;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.global-tab-btn.active {
    background: #1a6faf;
    color: #ffffff;
}

.global-tab-btn:hover:not(.active) {
    background: #e8f2fa;
}

/* ---- Map Container ---- */
.map-wrapper {
    margin-top: 1.5rem;
}

.map-tab-content {
    display: none;
}

.map-tab-content.active {
    display: block;
}

.map-svg-container {
    width: 100%;
    user-select: none;
}

.world-map-img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
}

/* ---- Map Points ---- */
.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.point-dot {
    display: block;
    width: 12px;
    height: 12px;
    background-color: #1a6faf;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #1a6faf;
    transition: transform 0.2s ease;
    position: relative;
    z-index: 2;
}

.map-point:hover .point-dot {
    transform: scale(1.3);
}

/* Pulse ring animation */
.point-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(26, 111, 175, 0.4);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Tooltip label */
.point-label {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    background: #1a6faf;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateX(-50%) translateY(4px);
    z-index: 20;
}

/* Arrow below tooltip */
.point-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1a6faf;
}

.map-point:hover .point-label,
.map-point.touch-active .point-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.map-point.touch-active .point-dot {
    transform: scale(1.3);
}

.page-banner{
    min-height: 600px;
    background-size: cover !important;
}

.text-20{
    font-size: 20px;
    line-height: 1.5;
}