/* ==========================================================================
   Harrington Global Securities - Independent Styles
   Prefix: .hgs-
   ========================================================================== */
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

html, :root {
    scroll-behavior: auto !important;
    scroll-padding-top: 120px !important;
}

@media (max-width: 991px) {
    html, :root {
        scroll-padding-top: 54px !important;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px; 
}

body {
    font-family: "Proxima Nova",  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .hgs-nav-link, .btn, .hgs-history-year, .hgs-asset-stats-num {
    font-family: "Proxima Nova", "ProximaNova-Bold", sans-serif;
    font-weight: 700; 
}

p, .hgs-nav-link, .hgs-ft-list a, .hgs-ft-disclaimer p {
    font-weight: 400;
}

/* --- 1. Top Bar --- */
.hgs-top-bar {
    background-color: #151515;
    padding: 10px 0;
    width: 100%;
}

.hgs-top-bar-text {
    color: #e0e0e0;
    font-size: 15px; 
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* --- 2. Header --- */
.hgs-header {
    background-color: #ffffff;
    padding: 24px 0 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    position: relative;
    z-index: 1050; 
	position: sticky;
    top: -0.5px;
    width: 100%;
    z-index: 1050;
    
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    html {
        scroll-padding-top: 80px;
    }
    .hgs-header {
        padding: 15px 0;
    }
}

section[id] {
    scroll-margin-top: 0px!important;
}

.hgs-header-container {
    padding: 0 4%;
    max-width: 1800px;
}

.hgs-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.hgs-action-buttons {
    margin-bottom: 18px;
}

.hgs-btn-outline {
    color: #e3000f;
    border: 1px solid #e3000f;
    background-color: transparent;
    padding: 8px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hgs-btn-outline:hover {
    background-color: #e3000f;
    color: #ffffff;
}

.hgs-btn-solid {
    color: #ffffff;
    background-color: #e3000f;
    border: 1px solid #e3000f;
    padding: 8px 24px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.hgs-btn-solid:hover {
    background-color: #D91222!important;
    color: #ffffff!important;
    border-color: #D91222!important;
}

.hgs-nav-menu {
    gap: 32px;
}

.hgs-nav-link {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 10px 0; 
}

.hgs-nav-link:hover {
    color: #e3000f;
}

.hgs-dropdown-icon {
    font-size: 11px;
    vertical-align: middle;
    margin-left: 2px;
    font-weight: bold;
}

.hgs-dropdown-wrapper {
    position: relative;
}

.hgs-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: #ffffff;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 4px;
    padding: 15px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.hgs-dropdown-wrapper:hover .hgs-dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.hgs-dropdown-menu a {
    display: block;
    padding: 10px 30px;
    color: #333333;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.hgs-dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #e3000f;
    padding-left: 35px; 
}

.hgs-lang-toggle {
    color: #000000;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.hgs-lang-toggle:hover {
    opacity: 0.7;
}

.hgs-mobile-toggle {
    width: 24px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hgs-mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #111111;
    border-radius: 2px;
}

.hgs-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #f9f9f9;
    z-index: 1200; 
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hgs-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hgs-mobile-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px; 
    background: #f9f9f9;
}

.hgs-mobile-logo {
    height: 28px; 
    width: auto;
}

.hgs-mobile-close-btn {
    background: transparent;
    border: none;
    font-size: 22px;
    color: #000000;
    cursor: pointer;
    padding: 0 5px;
    display: flex;
    align-items: center;
}

.hgs-mobile-overlay-content {
    text-align: center;
    padding: 40px 20px;
    flex-grow: 1;
    overflow-y: auto; 
    transform: translateY(15px);
    transition: all 0.4s ease;
    opacity: 0;
}

.hgs-mobile-overlay.active .hgs-mobile-overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.hgs-mobile-overlay-content a:not(.btn) {
    display: block;
    font-size: 18px; 
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.hgs-mobile-overlay-content a:hover:not(.btn) {
    color: #e3000f;
}

.hgs-lang-dropdown {
    position: relative;
    display: inline-block;
}

.hgs-lang-menu {
    position: absolute;
    top: 100%;
    right: 0; 
    background: #ffffff;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 4px;
    padding: 10px 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.hgs-lang-dropdown:hover .hgs-lang-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.hgs-lang-menu a {
    display: block;
    padding: 8px 20px;
    color: #333333;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
}

.hgs-lang-menu a:hover {
    background-color: #f8f9fa;
    color: #e3000f;
}

.hgs-lang-menu a.active {
    color: #e3000f;
    font-weight: 600;
}

.hgs-mobile-lang-selector {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hgs-mobile-lang-selector span {
    font-size: 16px;
    color: #999999;
    cursor: pointer;
    font-weight: 500;
}

.hgs-mobile-lang-selector span.active {
    color: #000000;
    font-weight: 600;
}

.hgs-lang-divider {
    color: #dddddd !important;
    font-weight: 300 !important;
}

@media (max-width: 991px) {
    .hgs-lang-dropdown {
        display: none; 
    }
}

.hgs-mobile-actions {
    margin-top: 50px;
    padding: 0 40px; 
}

.hgs-mobile-actions .btn {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
}

.hgs-top-bar-email {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.hgs-top-bar-email i {
    margin-right: 8px;
	margin-top:4px;
    color: #e3000f;
    font-size: 14px;
}

.hgs-top-bar-email:hover {
    color: #ffffff;
}

.hgs-mobile-email {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 16px !important;
    color: #666666 !important;
    margin-bottom: 20px !important;
}

.hgs-mobile-email i {
    margin-right: 8px;
    color: #e3000f;
}

.hgs-hero-section {
    width: 100%;
    height: 780px; 
    position: relative;
}

.swiper-slide {
    position: relative;
    height: 100%;
}

.hgs-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hgs-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%);
    z-index: 0;
}

.hgs-hero-container {
    max-width: 1400px;
    padding: 0 4%;
}

.hgs-hero-title {
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
	margin-top:-8%;
}

.hgs-hero-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px; 
    line-height: 1.6;
    margin-bottom: 36px;
}

.hgs-hero-btn {
    padding: 12px 36px;
    font-size: 15px;
}

.hgs-custom-pagination.swiper-pagination-bullets {
    bottom: 40px !important;
}

.hgs-custom-pagination .swiper-pagination-bullet {
    width: 36px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 0;
    opacity: 1;
    transition: background-color 0.3s ease;
}

.hgs-custom-pagination .swiper-pagination-bullet-active {
    background-color: #ffffff;
}

.hgs-container {
    max-width: 1440px;
    padding: 0 5%;
    margin: 0 auto;
}
.hgs-text-red { color: #e3000f; }

/* ==========================================================================
   About Us .hgs-about-us
   ========================================================================== */
.hgs-about-us {
    background-color: #ffffff;
    padding: 60px 0 40px 0;
}

.hgs-features-row { margin-bottom: 80px; }

.hgs-feature-item { padding-right: 30px; }

.hgs-feature-icon {
    height: 48px; width: auto;
    display: block; margin-bottom: 24px;
}

.hgs-feature-title {
    color: #000;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hgs-feature-desc {
    color: #454545;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.hgs-about-img-col { padding-right: 0; }
.hgs-about-img { width: 100%; display: block; }
.hgs-about-text-col { padding-left: 80px; }

.hgs-about-title {
    color: #000000;
    font-size: 36px; 
    font-weight: 600;
    margin-bottom: 32px;
}

.hgs-about-text {
    color: #454545;
    font-size: 18px; 
    line-height: 1.6;
    margin-bottom: 24px;
}

.hgs-text-bold { color: #333333; }

.hgs-btn-outline-red {
    display: inline-block;
    color: #D91222;
    border: 1px solid #D91222;
    background-color: transparent;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 16px;
	border-radius:0px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hgs-btn-outline-red:hover {
    background-color: #D91222;
    color: #ffffff;
}

/* ==========================================================================
   Business Coverage (.hgs-business-coverage)
   ========================================================================== */
.hgs-business-coverage {
    background-color: #ffffff;
    padding:60px 0 60px 0;
}

.hgs-section-header { margin-bottom: 30px; }

.hgs-section-title {
    color: #000000;
    font-size: 36px; 
    font-weight: 600;
    margin-bottom: 12px;
}

.hgs-title-underline {
    width: 40px; height: 3px;
    background-color: #e3000f; margin-bottom: 24px;
}

.hgs-section-subtitle {
    color: #454545;
    font-size: 18px;
    line-height: 1.6;
    max-width: 90%;
    margin-bottom: 0;
}

.hgs-business-item { margin-bottom: 50px; }

.hgs-biz-card { padding-right: 20px; }

.hgs-biz-img { width: 100%; margin-bottom: 24px; display: block; }

.hgs-biz-title {
    color: #000000;
    font-size: 24px; 
    font-weight: 500;
    margin-bottom: 16px;
}

.hgs-biz-desc {
    color: #454545;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hgs-biz-link {
    color: #e3000f;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.hgs-biz-link:hover { color: #a00008; }
.hgs-link-icon { font-size: 12px; margin-left: 6px; margin-top: 1px; }


/* ==========================================================================
   Global Office Distribution (.hgs-office-distribution)
   ========================================================================== */
.hgs-office-distribution {
    background-color: #f8f9fa;
    padding:80px 0 80px 0px;
}

.hgs-office-left { padding-right: 5%; }

.hgs-office-title {
    color: #000000;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

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

.hgs-office-item {
    position: relative; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 16px; border-bottom: 1px solid #e0e0e0; transition: all 0.3s ease;
}
.hgs-office-item:first-child { border-top: 1px solid #e0e0e0; }

.hgs-office-city-name {
    color: #000000;
    font-size: 21px; 
    font-weight: 400; transition: font-weight 0.3s ease;
}

.hgs-office-arrow { color: #999999; font-size: 20px; }
.hgs-office-item.active .hgs-office-city-name { font-weight: 600; }
.hgs-office-item.active::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width:4px; height: 28px; background-color: #e3000f;
}

.hgs-office-img-wrapper { position: relative; width: 100%; overflow: hidden; }
.hgs-office-img { width: 100%; display: block; }
.hgs-office-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 60px 40px 30px 40px; background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,0.9) 100%);
}

.hgs-office-hq-title { color: #ffffff; font-size: 28px; font-weight: 600; margin-bottom: 8px; }
.hgs-office-address { color: #cccccc; font-size: 21px; line-height: 1.6; margin-bottom: 0; }


/* ==========================================================================
   Development History (.hgs-history)
   ========================================================================== */
.hgs-history { background-color: #ffffff; padding: 60px 0 80px 0; }
.hgs-history-header { margin-bottom: 40px; }

.hgs-history-main-title {
    color: #000000;
    font-size: 34px; 
    font-weight: 600; margin-bottom: 16px;
}

.hgs-history-subtitle {
    color: #454545;
    font-size: 17px; 
    line-height: 1.6;
}

.hgs-history-col { margin-bottom: 24px; }
.hgs-history-card {
    background-color: #f7f7f7; padding: 40px 35px; height: 100%; display: flex; flex-direction: column;
}

.hgs-history-icon { height: 50px; width: auto; margin-bottom: 24px; align-self: flex-start; }
.hgs-history-year { color: #000000; font-size: 42px; font-weight: 700; margin-bottom: 16px; }

.hgs-history-title {
    color: #000000;
    font-size: 18px;
    font-weight: 600; line-height: 1.4; margin-bottom: 20px;
}

.hgs-history-desc {
    color: #666666;
    font-size: 16px; 
    line-height: 1.7; margin-bottom: 0;
}

.hgs-history-list { list-style: none; padding: 0; margin: 0; }
.hgs-history-list li {
    color: #454545;
    font-size: 16px;
    margin-bottom: 8px; display: flex; align-items: flex-start;
}

.hgs-check-icon { color: #e3000f; font-size: 18px; margin-right: 8px; font-weight: 800; margin-top: 1px; }
.hgs-history-stat-num { font-size: 42px; font-weight: 700; margin-bottom: 4px; line-height: 1; }

/* ==========================================================================
   Core Business Banner (.hgs-core-business-banner)
   ========================================================================== */
.hgs-core-business-banner {
    background-color: #050505;
    background-image: url('../img/core-business-bg.jpg'); 
    background-position: right center; background-repeat: no-repeat; background-size: cover;
    padding: 120px 0;
}

.hgs-cb-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 600; margin-bottom: 24px;
}

.hgs-cb-desc {
    color: #cccccc;
    font-size: 21px; 
    line-height: 1.6; margin-bottom: 0;
}

/* ==========================================================================
   Institutional Securities Brokerage Services 
   ========================================================================== */
.hgs-brokerage-services { background-color: #f7f8f9; padding: 80px 0 100px 0; }
.hgs-brokerage-header { margin-bottom: 40px; }

.hgs-brokerage-title {
    color: #000;
    font-size: 36px;
    font-weight: 600; margin-bottom: 16px;
}

.hgs-brokerage-desc {
    color: #454545;
    font-size: 18px; 
    line-height: 1.6; margin-bottom: 0;
}

.hgs-brokerage-col { margin-bottom: 24px; }
.hgs-brokerage-card { background-color: #ffffff; padding: 35px 40px; height: 100%; display: flex; flex-direction: column; }

.hgs-bcard-title {
    color: #000000;
    font-size: 24px; 
    font-weight: 600; margin-bottom: 24px;
}

.hgs-bcard-subtext { color: #666666; font-size: 16px; margin-bottom: 12px; }
.hgs-bcard-list { list-style: none; padding: 0; margin: 0 0 16px 0; }
.hgs-bcard-list li {
    color: #333333;
    font-size: 18px; 
    margin-bottom: 10px; display: flex; align-items: center;
}

.hgs-bcard-grid-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hgs-bcard-logos { margin-top: auto; padding-top: 40px; display: flex; align-items: center; gap: 24px; }
.hgs-bcard-logos img { height: 48px; width: auto; object-fit: contain; }

/* ==========================================================================
   Investment Banking Services (.hgs-ib-services)
   ========================================================================== */
.hgs-ib-services { background-color: #ffffff; padding: 60px 0 40px 0; }
.hgs-ib-img-col { padding-right: 0; }
.hgs-ib-img { width: 100%; display: block; }
.hgs-ib-text-col { padding-left: 80px; }

.hgs-ib-title {
    color: #000000;
    font-size: 36px; 
    font-weight: 600; margin-bottom: 24px;
}

.hgs-ib-desc {
    color: #454545;
    font-size: 21px; 
    line-height: 1.5; margin-bottom: 40px;
}

.hgs-ib-subheading { color: #000000; font-size: 16px; margin-bottom: 16px; }
.hgs-ib-list { list-style: none; padding: 0; margin: 0 0 32px 0; }
.hgs-ib-list li {
    color: #000000;
    font-size: 16px; 
    font-weight: 500; margin-bottom: 12px; display: flex; align-items: center;
}

.hgs-ib-btn { padding: 10px 40px; font-size: 14px; }
.hgs-industry-row { margin-top: 80px; }
.hgs-industry-title { color: #000000; font-size:32px; font-weight: 600; margin-top: 10px; }
.hgs-ind-item { display: flex; align-items: center; margin-bottom: 24px; }
.hgs-ind-icon-box {
    width: 60px; height: 60px; background-color: #f7f7f7; border-radius: 6px;
    display: flex; align-items: center; justify-content: center; margin-right: 16px; flex-shrink: 0;
}
.hgs-ind-icon-box img { width: 32px; height: 32px; object-fit: contain; }

.hgs-ind-text {
    color: #333333;
    font-size: 21px; 
    font-weight: 500; 
	line-height: 1.3;
}

/* ==========================================================================
   Global Research Center (.hgs-research-center)
   ========================================================================== */
.hgs-research-center { background-color: #ffffff; padding: 40px 0 40px 0; }
.hgs-research-top-row { margin-bottom: 60px; }
.hgs-research-text-col { padding-right: 40px; }
.hgs-research-img-col { padding-left: 0; }
.hgs-research-img { width: 100%; display: block; }

.hgs-research-title {
    color: #000000;
    font-size: 36px;
    font-weight: 600; margin-bottom: 20px;
}

.hgs-research-desc {
    color: #454545;
    font-size: 21px;
    line-height: 1.6; margin-bottom: 30px;
}

.hgs-research-subheading { color: #333333; font-size: 18px; margin-bottom: 16px; }
.hgs-research-list { list-style: none; padding: 0; margin: 0 0 32px 0; }
.hgs-research-list li {
    color: #000000;
    font-size: 18px;
    margin-bottom: 12px; display: flex; align-items: center;
}
.hgs-research-list li strong { font-weight: 600; }
.hgs-research-btn { padding: 10px 40px; font-size: 15px; }

.hgs-rcard-col { padding-right: 15px; padding-left: 15px; }
.hgs-rcard-col:first-child { padding-right: 25px; }
.hgs-rcard-col:last-child { padding-left: 25px; }
.hgs-rcard-box {
    background-color: #f7f7f7; padding: 40px 30px; text-align: center; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hgs-rcard-icon { height: 80px; width: auto; margin-bottom: 20px; }

.hgs-rcard-title {
    color: #000000;
    font-size: 28px; 
    font-weight: 500; margin-bottom: 12px;
}

.hgs-rcard-desc {
    color: #666666;
    font-size: 18px; 
    line-height: 1.6; margin-bottom: 20px;
}
.hgs-rcard-footer { color: #e3000f; font-size:18px; font-weight: 500; }
.hgs-section-divider { width: 100%; height: 1px; background-color: #eeeeee; margin: 20px 0; }

/* ==========================================================================
   Asset Management Business (.hgs-asset-mgmt)
   ========================================================================== */
.hgs-asset-mgmt { background-color: #ffffff; padding: 40px 0 100px 0; }
.hgs-asset-img-col { padding-right: 0; }
.hgs-asset-img { width: 100%; display: block; }
.hgs-asset-text-col { padding-left: 80px; }

.hgs-asset-title {
    color: #000000;
    font-size: 36px; 
    font-weight: 600; margin-bottom: 20px;
}

.hgs-asset-desc {
    color: #454545;
    font-size: 21px;
    line-height: 1.6; margin-bottom: 30px;
}

.hgs-asset-subheading { color: #454545; font-size: 18px; margin-bottom: 16px; }
.hgs-asset-list { list-style: none; padding: 0; margin: 0 0 40px 0; }
.hgs-asset-list li {
    color: #000000;
    font-size: 18px; 
    margin-bottom: 12px; display: flex; align-items: center;
}
.hgs-asset-list li strong { font-weight: 600; }
.hgs-asset-stats-num { color: #e3000f; font-size: 42px; font-weight: 600; margin-bottom: 8px; }
.hgs-asset-stats-label { color: #888888; font-size: 16px; margin-bottom: 0; }

/* ==========================================================================
   Institutional Clients (.hgs-clients-types)
   ========================================================================== */
.hgs-clients-banner { width: 100%; overflow: hidden; background-color: #f0f0f0; }
.hgs-clients-banner-img { display: block; object-fit: cover; max-height: 400px; }

.hgs-clients-types { background-color: #ffffff; padding: 60px 0 40px 0; }
.hgs-clients-icon-row { margin-top: 60px; }
.hgs-client-icon-col { margin-bottom: 30px; }
.hgs-client-icon { height: 64px; width: auto; margin-bottom: 24px; }

.hgs-client-name {
    color: #000000;
    font-size:21px; 
    font-weight: 600;
}

/* ==========================================================================
   Partner Institutions (.hgs-partners)
   ========================================================================== */
.hgs-partners { background-color: #f7f8f9; padding: 80px 0 80px 0; }
.hgs-partners-title { color: #000000; font-size: 28px; font-weight: 600; margin-bottom: 30px; }
.hgs-partner-col { margin-bottom: 20px; }
.hgs-partner-card { background-color: #ffffff; height: 120px; display: flex; align-items: center; justify-content: center; padding: 20px 40px; }
.hgs-partner-logo { max-width: 100%; max-height: 40px; object-fit: contain; }

/* ==========================================================================
   Regulation and Compliance (.hgs-compliance-network)
   ========================================================================== */
.hgs-compliance-network { background-color: #ffffff; padding: 80px 0; }
.hgs-compliance-row { margin-top: 40px; }
.hgs-compliance-img-col { padding-right: 40px; }
.hgs-compliance-text-col { padding-left: 40px; }

.hgs-compliance-subtitle {
    color: #000000;
    font-size: 24px; 
    font-weight: 600; line-height: 1.5; margin-bottom: 24px;
}

.hgs-compliance-desc {
    color: #454545;
    font-size: 18px;
    line-height: 1.7; margin-bottom: 30px;
}

.hgs-compliance-list-title { color: #333333; font-size: 16px; margin-bottom: 16px; }
.hgs-compliance-list { list-style: none; padding: 0; margin: 0; }
.hgs-compliance-list li {
    color: #000000;
    font-size: 18px; 
    margin-bottom: 12px; display: flex; align-items: flex-start;
}

.hgs-compliance-list li strong { font-weight: 600; margin-top: -1px; }

.hgs-network-row { padding-top: 20px; }
.hgs-network-text-col { padding-right: 40px; }

.hgs-network-title {
    color: #000000;
    font-size:36px; 
    font-weight: 600; line-height: 1.2; margin-bottom: 24px;
}

.hgs-network-desc {
    color: #454545;
    font-size: 18px; 
    line-height: 1.6; margin-bottom: 40px;
}

.hgs-network-stats-row { margin-bottom: 40px; }
.hgs-net-stat-num { color: #454545; font-size: 36px; font-weight: 300; margin-bottom: 0px; }
.hgs-net-stat-label { color: #999999; font-size: 16px; }
.hgs-network-footer-text { color: #666666; font-size: 16px; line-height: 1.6; margin-bottom: 0; }

/* ==========================================================================
   Institutional Research Capabilities (.hgs-research-caps-dark)
   ========================================================================== */
.hgs-research-caps-dark {
	background-color: #15181e; padding: 120px 0; color: #ffffff;
	 background-image: url('../img/research-caps-bg.jpg'); 
    background-position: center bottom; background-repeat: no-repeat; background-size: cover;
	height:800px;
}
.hgs-rcdark-text-col { padding-right: 60px; }

.hgs-rcdark-title {
    color: #ffffff;
    font-size: 36px; 
    font-weight: 600; line-height: 1.3; margin-bottom: 24px;
}

.hgs-rcdark-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px; 
    line-height: 1.7; margin-bottom: 40px;
}

.hgs-rcdark-list { list-style: none; padding: 0; margin: 0; }
.hgs-rcdark-list li {
    color: #ffffff;
    font-size: 18px; 
    font-weight: 500; margin-bottom: 16px; display: flex; align-items: center;
}

.hgs-check-icon-red { color: #e3000f; font-size: 16px; margin-right: 10px; font-weight: bold; }

/* ==========================================================================
   Vision & Mission (.hgs-vision-mission)
   ========================================================================== */
.hgs-vision-mission { background-color: #ffffff; padding: 60px 0 120px 0px; }
.hgs-vm-top-row { margin-bottom: 80px; }
.hgs-vm-text-col { padding-right: 60px; }
.hgs-vm-img { display: block; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.hgs-vm-block { margin-bottom: 50px; }

.hgs-vm-title {
    color: #000000;
    font-size: 32px;
    font-weight: 600; margin-bottom: 16px;
}

.hgs-vm-divider { width: 100%; height: 1px; background-color: #f0f0f0; margin-bottom: 24px; }

.hgs-vm-desc {
    color: #454545;
    font-size: 18px; 
    line-height: 1.6; margin-bottom: 0;
}

.hgs-cv-main-title {
    color: #000000;
    font-size:32px; 
    font-weight: 600; margin-bottom: 30px;
}
.hgs-cv-img { margin-bottom: 16px; display: block; }
.hgs-cv-title { color: #000000; font-size: 20px; font-weight: 600; margin-bottom: 0; }

/* ==========================================================================
   Footer (.hgs-footer)
   ========================================================================== */
.hgs-footer-top { background-color: #16151a; padding: 80px 0 60px 0; }
.hgs-ft-brand-title { color: #ffffff; font-size: 30px; font-weight: 700; margin-bottom: 24px; }
.hgs-ft-phone { color: #ffffff; font-size: 16px; margin-bottom: 20px; display: flex; align-items: center; }
.hgs-ft-email {
    margin-bottom: 30px; 
    display: flex;
    align-items: center;
}

.hgs-ft-email a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.hgs-ft-email a i {
    margin-right: 8px;
    font-size: 16px;
    color: #ffffff; 
}

.hgs-ft-email a:hover {
    color: #cccccc;
}
.hgs-ft-phone i { margin-right: 8px; font-size: 16px; }
.hgs-ft-socials { display: flex; gap: 12px; }
.hgs-social-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border: 1px solid #ccc; border-radius: 50%;
    color: #fff; text-decoration: none; transition: all 0.3s ease;
}
.hgs-social-link:hover { background-color: #ffffff; color: #16151a; border-color: #ffffff; }

.hgs-ft-col-title { color: #ffffff; font-size: 20px; font-weight: 600; margin-bottom: 30px; }
.hgs-ft-list { list-style: none; padding: 0; margin: 0; }
.hgs-ft-list li { margin-bottom: 20px; }
.hgs-ft-list a { color: #ccc; font-size: 15px; text-decoration: none; transition: color 0.3s ease; }
.hgs-ft-list a:hover { color: #ffffff; }

.hgs-footer-bottom { background-color: #f4f5f7; padding: 40px 0; }
.hgs-ft-disclaimer p { color: #454545; font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.hgs-ft-disclaimer p:last-child { margin-bottom: 0; }
.hgs-ft-disclaimer a { color: #0056b3; text-decoration: underline; }
.hgs-ft-disclaimer a:hover { color: #003d82; }
.hgs-copyright { margin-top: 24px; }



@media (max-width: 991px) {
    .hgs-about-us, .hgs-business-coverage, .hgs-office-distribution, .hgs-history, 
    .hgs-brokerage-services, .hgs-ib-services, .hgs-research-center, .hgs-asset-mgmt, 
    .hgs-clients-types, .hgs-partners, .hgs-compliance-network, .hgs-vision-mission {
        padding: 50px 0; 
    }
    .hgs-research-caps-dark { padding: 60px 0; }

    .hgs-features-row { margin-bottom: 40px; }
    .hgs-feature-item { margin-bottom: 40px; padding-right: 15px; }
    .hgs-about-text-col, .hgs-ib-text-col, .hgs-asset-text-col, .hgs-compliance-text-col {
        padding-left: 15px; margin-top: 30px;
    }
    .hgs-office-left, .hgs-research-text-col, .hgs-compliance-img-col, 
    .hgs-network-text-col, .hgs-rcdark-text-col, .hgs-vm-text-col {
        padding-right: 15px; margin-bottom: 40px;
    }
    .hgs-rcard-col:first-child, .hgs-rcard-col:last-child { padding: 0 15px; margin-bottom: 24px; }
    
    .hgs-network-map-col, .hgs-rcdark-img-col { margin-top: 30px; }
    .hgs-cv-col { margin-bottom: 30px; }
    .hgs-footer-top { padding: 50px 0 20px 0; }
    .hgs-ft-col { margin-bottom: 40px; }
    
    .hgs-hero-title { font-size: 36px; }
    .hgs-hero-desc { font-size: 16px; }
    .hgs-about-title, .hgs-section-title, .hgs-history-main-title, .hgs-cb-title, 
    .hgs-rcdark-title, .hgs-asset-title { font-size: 28px; }
    .hgs-biz-title, .hgs-office-title, .hgs-brokerage-title, .hgs-vm-title, .hgs-cv-main-title { font-size: 24px; }
}