/* =========================================
   1. GLOBAL VARIABLES & UTILITIES
   ========================================= */
:root {
    --primary-gold: #A58743; 
    --dark-navy: #0D2F3C;  
    --bg-light-grey: #f4f6f8;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    line-height: 1.6;
}

html {
    scroll-behavior: auto !important; 
}

/* Helper Classes */
.text-gold { color: var(--primary-gold) !important; }
.bg-navy { background-color: var(--dark-navy) !important; }


.btn-custom-gold {
    background-color: var(--primary-gold);
    color: #fff;
    padding: 10px 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border: none;
    display: inline-block;
    transition: background-color 0.3s;
    border-radius: 0;
}
.btn-custom-gold:hover {
    background-color: #8c7238;
    color: #fff;
}

.btn-custom-navy {
    background-color: var(--dark-navy);
    color: #fff;
    padding: 10px 15px 10px 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    transition: background-color 0.3s;
}
.btn-custom-navy:hover {
    background-color: #051a28;
    color: #fff;
}
.btn-custom-navy .icon-circle {
    width: 28px;
    height: 28px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-custom-navy .icon-circle i {
    font-size: 0.7rem;
    color: #fff;
    margin-left: 2px;
}

.pageanchor {
  margin-top: -80px;
  height: 80px;
  display: block;
}

/* =========================================
   2. NAVIGATION
   ========================================= */
.navbar {
    background-color: rgba(7, 38, 57, 1);
	height:90px;
	padding:0px;
}

.navbar .container{
	padding: 0px;
	height:100%;
	max-width:100%;
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

.nav-item{
	padding: 6px 0px;
}

.mobileShow{
	display: none;
}

.nav-link {
    color: #fff !important;
    font-size: 17px;
	padding: 0 20px !important;
    text-transform: uppercase;
    font-weight: 400;
	font-family: Arial, 'Noto Sans', sans-serif!important;
}
.nav-link:hover,.nav-link.active { color: #edb400!important; }
.navbar-collapse {
    text-align: center;
}

.langChangeBtn{
	height:100%;
	background: #A58743;
	color:#fff;
	width:120px;
	position: absolute;
	right:0px;
	top:0px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
}

.langChangeBtn a{
	color:#fff;
	text-decoration: none;
	padding:10px 10px;
	font-size:17px;
}

.navbar-toggler {
    border: none !important;
    outline: none !important;
    padding: 0;
    margin-right: 0;
    transition: transform 0.3s ease;
}
.navbar-toggler i {
    font-size: 1.8rem;
    transition: color 0.3s ease;
}
.navbar-toggler:hover i {
    color: var(--primary-gold) !important;
}

.navbar-toggler .icon-bar {
    display: none;
}
.navbar-toggler .icon-close {
    display: inline-block;
    animation: fadeInRotate 0.3s ease forwards;
}
.navbar-toggler.collapsed .icon-bar {
    display: inline-block;
    animation: fadeInRotateReverse 0.3s ease forwards;
}
.navbar-toggler.collapsed .icon-close {
    display: none;
}

@keyframes fadeInRotate {
    from { opacity: 0; transform: rotate(-90deg); }
    to { opacity: 1; transform: rotate(0deg); }
}
@keyframes fadeInRotateReverse {
    from { opacity: 0; transform: rotate(90deg); }
    to { opacity: 1; transform: rotate(0deg); }
}


@media (max-width: 1480px) {
	.nav-link {
	    font-size: 16px;
	    padding: 0 15px !important;
	}
	.navbar-brand.mx-5{
		margin-right:2rem!important;
		margin-left:2rem!important;
	}
}


@media (max-width: 1360px) {
	.nav-link {
	    font-size: 15px;
	    padding: 0 10px !important;
	}
	.langChangeBtn a {
	    padding: 10px 8px;
	    font-size: 15px;
	}
	.langChangeBtn {
	    width: 100px;
	}
	
	.navbar-brand.mx-5{
		margin-right:1.5rem!important;
		margin-left:1.5rem!important;
	}
}


@media (max-width: 1280px) {
	.navbar-brand img {
	    height: 35px;
	    width: auto;
	}
	.nav-link {
	    font-size: 14px;
	    padding: 0 8px!important;
	}
	.navbar-brand.mx-5 {
	    margin-right: 1rem!important;
	    margin-left: 1rem!important;
	}
	.langChangeBtn {
	    width: 72px;
	}
	.langChangeBtn a {
	    color: #fff;
	    text-decoration: none;
	    padding: 10px 4px;
	    font-size: 14px;
	}
}


@media (max-width: 991px) {
	.navbar .container {
	    padding: 0px 20px;
	}
    .navbar-brand img { height: 35px; }
    .navbar-nav {
        margin-top: 20px;
        padding-bottom: 20px;
        /* border-top: 1px solid rgba(255,255,255,0.1); */
    }
	.nav-link {
	    font-size: 17px;
	    padding: 12px 0px !important;
	}
	.navbar-collapse{
		background: #051a28;
		z-index: 1000;
		position: absolute;
		width: 100%;
		top: 90px;
		left: 0px;
	}
	.navbar-nav.nav-left{
		padding-bottom:0px;
		margin-bottom:0px;
	}
	.navbar-nav.nav-right{
		padding:0px;
		margin:0px;
		padding-bottom:30px;
	}
	.mobileShow{
		display: block;
	}
	
	.langChangeBtn{
		display:none;
	}
}

@media (max-width: 768px) {
	.navbar {
	    height: 90px;
	}
	
}

/* =========================================
   3. HERO SECTION (Banner)
   ========================================= */
.hero-section {
    background:  url('../images/homebanner_img.jpg');
    background-size: cover;
    background-position: top center;
    height: 720px; 
    display: flex;
	margin-top:90px;
    align-items: center;
    color: white;
}
.hero-section .hero-wrapper {
    max-width: 70%;
}
.hero-section .hero-brand-name {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
	margin-top:-2rem;
}
.hero-section .hero-title {
    font-family: 'Merriweather', serif; 
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
	font-weight: 600;
	text-transform: capitalize;
}
.hero-section .hero-desc {
    font-size: 1.2rem;
	line-height:1.4;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-section .btn{
	margin-top:0px;
}

@media (max-width: 768px) {
	.hero-section {
	    margin-top: 90px;
	}
}

/* =========================================
   4. INTRO FEATURES SECTION
   ========================================= */
.intro-features-section {
    padding: 100px 0 80px;
    text-align: center;
    background-color: #fff;
}
.intro-features-section .intro-heading {
    max-width: 950px;
    margin: 0 auto 70px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    color: var(--dark-navy);
    line-height: 1.3;
}
.intro-features-section .feature-icon {
    margin-bottom: 25px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.intro-features-section .feature-icon img {
    display: block;
	width:100px;
}
.intro-features-section .feature-label {
    font-size: 1rem;
    font-weight: 400;
    color: #0D2F3C;
	margin-top:20px;
    font-family: 'Lato', sans-serif;
}

/* =========================================
   5. ABOUT SECTION
   ========================================= */
.about-section {
    padding: 60px 0 100px;
    background-color: #fff;
}
.about-section .about-title {
    color: var(--dark-navy);
    margin-bottom: 30px;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    line-height: 1.3;
}
.about-section .about-text {
    color: #072639; 
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.4;
}
.about-section .about-actions {
    margin-top: 3rem;
}

.about-section .imgBox{
	padding:5%;
}

.about-section img {
    box-shadow: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}



/* =========================================
   6. BUSINESS SECTION
   ========================================= */
.business-section {
    background-color: var(--dark-navy);
    color: white;
    padding: 100px 0;
}
.business-section .business-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    font-family: 'Lato', sans-serif;
}
.business-section .business-text-lg {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2.5rem;
    line-height: 1.4;
}
.business-section .business-subtitle {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Lato', sans-serif;
}
.business-section .business-text-sm {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}
.business-section .content-img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

/* =========================================
   7. CEO SECTION
   ========================================= */
.ceo-section {
    padding: 100px 0;
    background-color: #fff;
}
.ceo-section .ceo-title {
    color: var(--dark-navy);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Lato', sans-serif;
	padding-bottom:2rem;
	border-bottom: 1px solid #DDDDDD;
}
.ceo-section .ceo-desc {
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.5;
    font-size: 0.95rem;
}
/* CEO 双图布局调整 */
.ceo-img-tall {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.ceo-img-portrait {
    width: 100%;
    height: auto; 
    object-fit: cover;
}
.ceo-section .row.g-4 {
    align-items: flex-start;
}
.ceo-section .citylandImg{
	margin-top:6rem;
}
.ceo-section .ceoprofileImg{
	
}

@media (max-width: 768px) {
	.ceo-section .citylandImg{
		margin-top:2rem;
	}
}

/* =========================================
   8. CORE STRENGTHS SECTION
   ========================================= */
.strengths-section {
    background-color: var(--bg-light-grey);
    padding: 80px 0 140px 0px;
}
.strengths-section .strengths-heading {
    color: var(--dark-navy);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}
.strengths-section .strength-card {
    background-color: var(--dark-navy);
    color: white;
    padding: 40px 40px 120px;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}
.strengths-section .strength-card:hover {
    transform: translateY(-5px);
}
.strengths-section .strength-text {
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* =========================================
   9. VISION SECTION
   ========================================= */
.vision-section {
    padding: 80px 0;
    background-color: #fff;
}
.vision-section .vision-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.4rem;
}
.vision-section .vision-block, 
.vision-section .mission-block {
    margin-bottom: 3rem;
}
.vision-section .vision-subhead {
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}
.vision-section .vision-text {
    color: #666;
    font-size: 0.95rem;
	line-height: 1.3;
}
.vision-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   10. FOOTER SECTION
   ========================================= */
.footer-top {
    background-color: #051522;
    padding: 90px 0;
    color: white;
    position: relative;
    background-image: url(../images/contactus_bg.jpg);
	background-size: cover;
}
.footer-top .footer-label {
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 700;
}
.footer-top .footer-cta-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-family: 'Lato', sans-serif;
}
.footer-top .footer-email-link a {
    color: var(--primary-gold);
    text-decoration: underline;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.footer-top .footer-email-link a:hover {
    color: #fff;
}

/* Part 2: Bottom (Links) */
.footer-bottom {
    background-color: #546373;
    padding: 50px 0;
    color: white;
    font-size: 0.85rem;
}
.footer-legal-links li {
    margin-right: 25px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
}
.footer-legal-links li a{
	color:#fff;
	text-decoration: none;
}
.footer-legal-links li i {
    margin-right: 8px;
    font-size: 0.9rem;
}
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #546373;
    border-radius: 50%;
    margin-left: 10px;
    text-decoration: none;
    transition: transform 0.3s;
}
.footer-socials a:hover {
    transform: translateY(-3px);
}
.footer-socials a i {
    font-size: 0.9rem;
}
.footer-disclaimer {
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    line-height: 1.6;
    max-width: 900px;
}
.footer-copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
}


@media (max-width: 768px) {
	
	.hero-section .hero-wrapper {
	    max-width: 90%;
	}
	.hero-section .hero-title {
	    font-size: 2rem;
	}
	.hero-section .hero-desc {
	    font-size: 1rem;
	    line-height: 1.3;
	}
	
	.about-section .about-actions{
		flex-direction: column;
	}
	
	.intro-features-section .intro-heading {
	    font-size: 1.8rem;
	}
	
	.intro-features-section .intro-heading br{
		display: none;
	}
	.btn-custom-gold,.btn-custom-navy {
	    width: 80%;
	}
	
	.feature-item{
		margin-bottom:30px;
	}
	
	.footer-top{
		padding:60px 20px;
	}
	.footer-top .footer-cta-title {
	    font-size: 1.3rem;
	    line-height: 1.4;
	}
}