
/*============================ GLOBAL =======================================*/
:root{
    --primary-color: #219f9c;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    background: #f6f7fb;
    color: #232f39;
    padding-top: 70px; 
}

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    background: #093748;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(33,48,70,0.08);
    height: 80px;
    display: flex;
    align-items: center;
    /* border-bottom: 2px solid #257d8d; */
    padding: 0;
}
.navbar > .container{
    height: 100%;
}
.navbar nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 80px;
    gap: 24px;
}
.navbar-menu li {
    position: relative;
    /*height: 45px;*/
    height: 80px;
    padding: 0;
}
.navbar-menu a {
    color: #e8f4f8;
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    text-decoration: none;
    padding: 0px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.1;
    text-align: center;
    /*height: 60px;*/
    height: 100%;
    transition: background 0.2s, color 0.2s;
    border: none;
    background: none;
    /* white-space: pre-line;  */
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.navbar-menu a:hover {
    background-color: #074a5a; 
    color: #fff;
    cursor: pointer;
}
.navbar-menu .nav-search a {
    background: #0996b0;
    color: #fff;
    font-weight: 700;
    border-radius: 0;
    height: 60px;
    padding: 0 16px;
    display: flex;
    align-items: center;
}
/* Nav Right Group - Language Selector and Contact Button */
.nav-right-group {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 80px;
}

/* Language Selector */
.language-selector {
    height: 80px;
    display: flex;
    align-items: center;
    margin-right: 0;
}
.language-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    height: 50px;
    min-width: 44px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.language-link:hover {
    background-color: #074a5a;
}
.language-code {
    color: #e8f4f8;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: block;
}

/* Mobile Language Selector */
.nav-language-mobile {
    display: none;
    width: 100%;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    padding-top: 16px;
}
.language-mobile-options {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    padding-top: 10px;
}
.language-mobile-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    min-width: 44px;
    height: 40px;
}
.language-mobile-option:hover {
    background-color: #074a5a;
}
.language-mobile-option span {
    color: #e8f4f8;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-nav-item{
    height: 80px;
    align-content: center;
    background: var(--primary-color);
}
.contact-nav-item a{
    padding: 0 50px;
    color: #fff;
    height: 100%;
    display: block;
    align-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.1;
}
.navbar-menu .nav-contact a {
    background: #257d8d;
    color: #fff;
    font-weight: 400;
    border-radius: 0;
    height: 60px;
    padding: 0 16px;
    display: flex;
    align-items: center;
}
.navbar-menu li:not(.nav-search):not(.nav-contact) a:hover {
    color: #fff;
}
.navbar-menu .active a {
    color: #fff;
    font-weight: 300;
    position: relative;
}
.navbar-menu .active a::after {
    content: "";
    position: absolute;
    bottom: 30%;     
    left: 0;
    right: 0;
    height: 1.5px;
    background: #e95670;  
    border-radius: 1px;
    width: 80%;  
    margin: 0 auto;
}
.navbar-logo {
    margin-right: 32px;
    display: flex;
    align-items: center;
    height: 60px;
}
.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}
.navbar-toggle .bar {
    width: 28px;
    height: 3px;
    background: #e8f4f8;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}
/* Burger to X animation when menu is open */
.navbar-toggle.open .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.navbar-toggle.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.navbar-toggle.open .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/*============== FOOTER ================*/
.footer{
	/*background-color: #24262b;*/
    background-color: #093748;
    padding: 70px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}

.footer-col p{
    color: #bbbbbb;
    font-size: 16px;
    font-weight: 300;
}

.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul{
    padding-left: 0;
}
.footer-col ul li{
    list-style: none;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}
.copyright{
    margin: 0 auto;
    padding: 5px;
    text-align: center;
    background-color: #24262b;
    color: #bbbbbb;
}
.copyright p{
    font-size: 12px;
    margin-bottom: 0;
}
/* p.short-desc{
    font-size: 12px;
    color: #bbbbbb;
    padding: 20px;
    padding-left: 8px;
} */



.footer-1 {
  position: relative;
  display: inline-block;
}

/* Overlay-style description: no layout impact */
.footer-1 .short-desc {
  position: absolute;
  left: 50%;
  top: 100%;                 /* start below the logo */
  transform: translateX(-50%);
  margin-top: 0.5rem;
  /*background: rgba(0, 0, 0, 0.8);*/
  color: #507784;
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-in-out;
}

/* show on hover, still no extra footer padding/height */
.footer-1:hover .short-desc {
  opacity: 1;
  pointer-events: auto;
}



/*responsive*/
@media(max-width: 767px){
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media(max-width: 574px){
    .footer-col{
        width: 100%;
    }
}

/* Hide mobile contact item on desktop */
.nav-contact-mobile {
    display: none;
}

/*============================ RESPONSIVE =======================================*/
@media (max-width: 1200px) {
    .navbar-menu {
        /*gap: 10px;*/
        font-size: 0.95rem;
    }
    .navbar-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #093748;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 0 20px 0;
        gap: 0;
        box-shadow: 0 5px 14px rgba(0,0,0,0.10);
        z-index: 1050;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
    }
    .navbar-menu.open {
        transform: translateX(0);
    }
    .navbar-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 17px;
    }
    /* Hide desktop contact button on mobile */
    .contact-nav-item {
        display: none;
    }
    /* Show mobile contact item in menu */
    .nav-contact-mobile {
        display: block;
    }
    /* Show mobile language selector */
    .nav-language-mobile {
        display: block;
    }
    /* Hide desktop language selector on mobile */
    .language-selector {
        display: none;
    }
    .navbar-menu li {
        width: 100%;
        height: auto;
    }
    .navbar-menu a {
        width: 100%;
        padding: 14px 24px;
        text-align: left;
        height: auto;
    }
}
/*============================ END RESPONSIVE =======================================*/



/* Video container with gradient fade effect */
.right-video {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.right-video video {
    width: 100%;
    height: auto;
    display: block;
}
/* .right-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        transparent 30%, 
        rgba(201, 224, 216, 1) 60%, 
        rgba(201, 224, 216, 1) 80%, 
        #c9e0d8 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 6px;
}
.right-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        #c9e0d8 0%, 
        transparent 20%, 
        transparent 80%, 
        #c9e0d8 100%),
        linear-gradient(-45deg, 
        #c9e0d8 0%, 
        transparent 20%, 
        transparent 80%, 
        #c9e0d8 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 6px;
    opacity: 0.6;
} */

/* Breadcrumb + Hero section */
.content-hero {
    background: #c9e0d8;
    padding: 36px 0 46px 0;
    box-shadow: 0 2px 18px rgba(33,48,70,0.04);
}
.breadcrumb-nav ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px 40px;
    padding: 0;
}
.breadcrumb-nav ol li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #257d8d;
}
.breadcrumb-nav ol li {
    color: #257d8d;
    font-size: 1rem;
    font-weight: 400;
}
.breadcrumb-nav ol li a {
    color: #074a5a;
    text-decoration: none;
}
.breadcrumb-nav ol li[aria-current="page"] {
    color: #093748;
    font-weight: 700;
}
.content-hero-title {
    margin: 0 0 12px 0;
    font-size: 2.2rem;
    font-weight: 700;
    color: #093748;
}
.content-hero-subtitle {
    margin: 0;
    color: #3d4451;
    font-size: 1.15rem;
    font-weight: 350;
    line-height: 1.6;
}

/* 2-Column white content section */
.content-section {
    background: #fff;
    padding: 54px 0;
}
.content-cols {
    /*max-width: 1100px;*/
    display: flex;
    gap: 56px;
    align-items: center;
    /*border-radius: 16px;*/
    /*box-shadow: 0 2px 18px rgba(33,48,70,0.07);*/
    background: #fff;
    padding: 0 40px 0 40px;
}
.content-col-image {
    flex: 1 1 320px;
    min-width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-col-image img {
    max-width: 100%;
    height: auto;
    display: block;
}
.content-col-text {
    flex: 2 1 480px;
    min-width: 240px;
    color: #232f39;
}
.content-col-text h2 {
    color: #093748;
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 18px;
}
.content-col-text p {
    font-size: 1.07rem;
    font-weight: 330;
    line-height: 1.7;
    margin-bottom: 14px;
}
/* Responsive */
@media (max-width: 1200px) {
    .navbar-menu a{
        width: fit-content;
        margin: 0 auto;
    }
    .navbar-menu .active a::after{
        bottom: 0;
        width: 60%;
    }
    .content-cols {
        flex-direction: column;
        gap: 24px;
        padding: 18px 12px;
    }
    .content-hero-title, .content-hero-subtitle, .breadcrumb-nav ol {
        margin-left: 16px;
    }
}

/* Scroll to top button */
#scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: #093748;
    border: 2px solid #257d8d;
    color: #e8f4f8;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
#scroll-to-top.stt-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#scroll-to-top:hover {
    background: #257d8d;
    border-color: #257d8d;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Dropdown menu */
.navbar-menu .has-dropdown { position: relative; }

.dropdown-chevron {
    font-size: 0.7rem;
    margin-left: 5px;
    opacity: 0.6;
    transition: transform 0.25s ease, opacity 0.25s ease;
    display: inline-block;
    vertical-align: middle;
}
.has-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 270px;
    background: #093748;
    border-top: 3px solid #257d8d;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.28);
    list-style: none;
    margin: 0;
    padding: 0.4rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 2000;
    pointer-events: none;
}
.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.nav-dropdown li {
    height: auto;
    width: 100%;
}
.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.25rem;
    height: auto;
    color: rgba(232,244,248,0.85);
    font-size: 0.9rem;
    font-weight: 300;
    white-space: nowrap;
    justify-content: flex-start;
    border-left: 3px solid transparent;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.nav-dropdown a:hover {
    background: #074a5a;
    border-left-color: #257d8d;
    color: #fff;
}
.nav-dropdown li:not(:last-child) a {
    border-bottom: 1px solid rgba(37,125,141,0.15);
}
.dropdown-item-icon {
    color: #257d8d;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: color 0.18s;
}
.dropdown-item-icon svg { width: 17px; height: 17px; }
.nav-dropdown a:hover .dropdown-item-icon { color: #e8f4f8; }

/* Prevent active underline from leaking into dropdown items */
.nav-dropdown a::after { display: none !important; }

.mobile-dropdown-btn { display: none; }

@media (max-width: 1200px) {
    .mobile-dropdown-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: #e8f4f8;
        padding: 14px 20px;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 0;
        height: 52px;
    }
    .has-dropdown {
        position: relative;
        flex-wrap: wrap;
        justify-content: center;
        height: auto !important;
    }
    .has-dropdown > a {
        flex: 0 0 auto;
        text-align: center;
        justify-content: center;
    }
    .mobile-dropdown-btn {
        position: absolute;
        right: 16px;
        top: 0;
    }
    .dropdown-chevron { display: none; }
    .nav-dropdown {
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        box-shadow: none !important;
        border-top: 1px solid rgba(37,125,141,0.3) !important;
        border-left: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        background: rgba(0,0,0,0.18) !important;
        padding: 0.25rem 0 !important;
        min-width: 0 !important;
        width: 100% !important;
        display: none !important;
    }
    .has-dropdown.dropdown-open .nav-dropdown {
        display: inline !important;
    }
    .nav-dropdown a {
        padding: 11px 16px !important;
        font-size: 0.88rem !important;
        white-space: normal !important;
        border-left: none !important;
        border-bottom: 1px solid rgba(37,125,141,0.12) !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .nav-dropdown a:hover { border-left: none !important; }
    .nav-dropdown li:last-child a { border-bottom: none !important; }
    .dropdown-item-icon { display: none !important; }
}
