/* Geometos Neue Font */
@font-face {
  font-family: 'Geometos Neue';
  src: url('../fonts/geometos-neue-bold.eot');
  src: url('../fonts/geometos-neue-bold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/geometos-neue-bold.woff2') format('woff2'),
       url('../fonts/geometos-neue-bold.woff') format('woff'),
       url('../fonts/Geometos.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* ===================================
   GLOBAL STYLES & TYPOGRAPHY
   =================================== */

html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  color: #012169;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Typography Hierarchy */
h1, h2 {
  font-family: 'Geometos Neue', sans-serif;
  color: #012169;
  font-weight: bold;
}

h3, h4, h5, h6 {
  color: #012169;
  font-weight: 600;
}

h1 {
  font-size: 36px;
  line-height: 1.2;
}

h2 {
  font-size: 22px;
  line-height: 1.3;
}

h3 {
  font-size: 18px;
  line-height: 1.4;
}

h4 {
  font-size: 14px;
  line-height: 1.4;
}

/* Global Paragraph Styles */
p {
  font-size: 16px;
  color: #012169;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: justify;
}

/* team-member-title not to be justify */
.team-member-title, .team-member-experience {
    text-align: left;
}

.text-center p,
.text-sm-center p,
.text-md-center p,
.text-lg-center p,
.text-xl-center p {
  text-align: center;
}

/* Global Link Styles (except header/footer) */
a:not(.nav-link):not(.navbar-brand):not(.footer-link):not(.btn):not([class*="sidebar"]):not(.market-reports-btn):not(.footer-bottom-links a):not(.office-phone):not(.footer-links-2 a):not(.social-icon):not(.footer-links a):not(.about-link) {
    color: #012169;
    text-decoration: underline;
}

a:not(.nav-link):not(.navbar-brand):not(.footer-link):not(.btn):not([class*="sidebar"]):hover {
  color: #012169;
}

.container {
  max-width: 1140px;
}

.btn:focus, 
.btn:active:focus, 
.btn-link.nav-link:focus, 
.form-control:focus, 
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* ===================================
   HEADER STYLING
   =================================== */
.site-header {
    background-color: #1a3a52;
    padding: 0;
    z-index: 3;
}

.site-header .navbar {
  background-color: #1a3a52;
  padding: 0.75rem 0;
}

.site-header .logo-img {
  height: 25px;
  width: auto;
}

.site-header .navbar-nav {
  gap: 1rem;
}

    .site-header .nav-link {
        color: #becdd6;
        font-size: 12px;
        padding: 0.5rem 0.75rem;
        transition: opacity 0.3s ease;
        text-decoration: underline;
    }

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: #ffffff;
  opacity: 0.8;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    height: calc(100vh - 60px);
    max-height: 800px;
    display: flex;
    align-items: center;
    background-image: url('../img/home/makkah.jpg');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(30, 70, 110, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 0;
}

.hero-title {
    font-size: 58px;
    font-family: "Josefin Sans", sans-serif;
    color: #ffffff;
    letter-spacing: 2px;
    line-height: 80px;
    text-transform: uppercase;
}

.hero-title2 {
    font-size: 35px;
    color: #ffffff;
    font-family: "Josefin Sans", sans-serif;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-underline {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 2rem;
}

.hero-logo {
  max-width: 120px;
  height: auto;
}

.hero-cta-btn {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  color: #1a3a52;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border: none;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.hero-cta-btn:hover {
  background-color: #ffffff;
  color: #1a3a52;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-logo {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-section {
    min-height: 500px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }
}

/* About Us & Services Section */
.about-services-section {
  background-color: #fff;
  padding: 5rem 0;
}

.section-logo {
    max-width: 550px;
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
}

.section-heading {
    font-size: 18px;
    font-family: 'Geometos Neue', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.about-content {
    border-left: 10px solid #5091cd;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.about-text {
  font-size: 16px;
  margin-bottom: 1.5rem;
}

.about-links {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-family: 'Geometos Neue', sans-serif;
    font-weight: 100;
}

.about-link {
    font-size: 14px;
    color: #6c757d;
    font-family: 'Geometos Neue', sans-serif;
    text-decoration: underline;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.about-link:hover {
  color: #012169;
}

.service-item {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
}

.service-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-decoration: underline;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #012169;
    margin: 0;
}

.services-link {
  text-align: right;
}

/* Responsive adjustments for About & Services */
@media (max-width: 991px) {
  .about-services-section {
    padding: 4rem 0;
  }
  
  .section-logo {
    max-width: 300px;
  }
}

@media (max-width: 767px) {
  .about-services-section {
    padding: 3rem 0;
  }
  
  .section-heading {
    font-size: 1.3rem;
  }
  
  .about-text {
    font-size: 0.95rem;
  }
}

/* Our Way of Working Section */
.working-section {
  background-color: #ffffff;
  padding-bottom: 5rem;
}

.working-header {
    background: linear-gradient(90deg, #1A242C 0%, #42567B 50%, #7D99AC 100%);
    padding: 2.5rem 0 2rem 0;
    margin-bottom: 3rem;
}

.working-title {
  font-family: 'Geometos Neue', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

.working-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.working-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.working-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.working-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(170, 170, 170, 1) 0%, rgba(191, 191, 191, 0.3) 100%);
    display: flex;
    align-items: flex-start;
    padding: 1rem;
}

.working-card-title {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Geometos Neue', sans-serif;
    color: #13216a;
    letter-spacing: 1px;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
}

.working-card-content {
  padding:1.5rem 0;
  background-color: #ffffff;
  flex-grow: 1;
}

.working-card-text {
  font-size: 16px;
  margin: 0;
}

/* Responsive adjustments for Working Section */
@media (max-width: 991px) {
  .working-title {
    font-size: 2rem;
  }
  
  .working-card-title {
    font-size: 1.3rem;
  }
  
  .working-section {
    padding-bottom: 4rem;
  }
}

@media (max-width: 767px) {
  .working-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .working-header {
    padding: 1.5rem 0;
    margin-bottom: 2rem;
  }
  
  .working-card-title {
    font-size: 1.2rem;
  }
  
  .working-card-overlay {
    padding: 1.5rem;
  }
  
  .working-section {
    padding-bottom: 3rem;
  }
}

/* Our Global Numbers Section */
.global-numbers-section {
    background: linear-gradient(90deg, #1A242C 0%, #42567B 50%, #7D99AC 100%);
    padding: 4rem 0;
    color: #ffffff;
}

.global-numbers-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Geometos Neue', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: left;
    text-transform: uppercase;
}

.global-numbers-underline {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin: 0 auto 3rem;
}

.number-stat {
  text-align: center;
  padding: 1rem;
}

.stat-number {
    font-size: 46px;
    font-family: 'Geometos Neue', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Responsive adjustments for Global Numbers */
@media (max-width: 991px) {
  .global-numbers-title {
    font-size: 1.75rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .global-numbers-section {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  .global-numbers-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .global-numbers-underline {
    width: 150px;
    margin-bottom: 2rem;
  }
  
  .global-numbers-section {
    padding: 2.5rem 0;
  }
}

/* Market Reports Section */
.market-reports-section {
  background-color: #f8f9fa;
  padding: 5rem 0;
}

.market-reports-title {
    font-size: 36px;
    font-family: 'Geometos Neue', sans-serif;
    font-weight: 700;
    color: #1a3a52;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.market-reports-content {
  border-left: 10px solid #4a90e2;
  padding-left: 2rem;
}

.market-reports-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.market-reports-text {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.market-reports-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: #2c4a66;
  color: #ffffff;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
   border-radius: 4px;
}

.market-reports-btn:hover {
  background-color: #1a3a52;
  color: #ffffff!important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for Market Reports */
@media (max-width: 991px) {
  .market-reports-title {
    font-size: 2rem;
  }
  
  .market-reports-subtitle {
    font-size: 1.3rem;
  }
  
  .market-reports-section {
    padding: 4rem 0;
  }
}

@media (max-width: 767px) {
  .market-reports-title {
    font-size: 1.75rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
  }
  
  .market-reports-subtitle {
    font-size: 1.2rem;
  }
  
  .market-reports-text {
    font-size: 1rem;
  }
  
  .market-reports-content {
    padding-left: 1.5rem;
  }
  
  .market-reports-btn {
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
  }
  
  .market-reports-section {
    padding: 3rem 0;
  }
}

/* Our Notable Clients Section */
.clients-section {
  background-color: #ffffff;
  padding: 5rem 0;
}

.clients-title {
    font-size: 36px;
    font-family: 'Geometos Neue', sans-serif;
    font-weight: 700;
    color: #1a3a52;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.clients-logos {
  margin-top: 2rem;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: #1a3a52;
}

.client-logo img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive adjustments for Clients Section */
@media (max-width: 991px) {
  .clients-title {
    font-size: 2rem;
  }
  
  .clients-section {
    padding: 4rem 0;
  }
}

@media (max-width: 767px) {
  .clients-title {
    font-size: 1.75rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
  }
  
  .client-logo {
    height: 80px;
    padding: 0.75rem;
  }
  
  .client-logo img {
    max-height: 60px;
  }
  
  .clients-section {
    padding: 3rem 0;
  }
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Go to Top Button */
.go-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #1a3a52;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.go-to-top-btn:hover {
  background-color: #012169;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.go-to-top-btn.show {
  display: flex;
}

.go-to-top-btn svg {
  width: 24px;
  height: 24px;
}

/* Footer Styling */
.site-footer {
    background-color: #1e3a5f;
    color: #becdd6;
    margin-top: auto;
}

.footer-main {
  background-image: url('../img/home/footer_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0 2rem;
  position: relative;
}

    .footer-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(1, 33, 105, 0.95) 0%, rgba(1, 33, 105, 0.95) 100%);
    }

.footer-main .container {
  position: relative;
  z-index: 1;
}

.footer-logo {
  max-width: 250px;
  height: auto;
  margin-bottom: 3rem;
}

.footer-heading {
    font-size: 16px;
    font-family: 'Geometos Neue', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    color: #becdd6;
}

.office-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #becdd6;
}

.office-address {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #becdd6;
}

.office-phone {
    color: #58718d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-phone:hover {
  color: #ffffff!important;
}

.social-icons {
    margin-top: 1rem;
    border-radius: 50px;
    background-color: #00003e;
    opacity: 0.6;
    text-align: center;
    padding: 10px 10px 1px 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 0 12px;
}

.social-icon:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.social-icon svg {
  width: 30px;
  height: 30px;
}

.footer-links-2 {
    list-style: none;
    padding: 0;
    margin: 0;
}
    .footer-links-2 a {
        color: #becdd6;
        text-decoration: underline;
        font-size: 12px;
        transition: color 0.3s ease;
    }

        .footer-links-2 a:hover {
            color: #ffffff;
        }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    column-gap: 2rem;
    row-gap: 0;
}
    .footer-links a {
        color: #becdd6;
        text-decoration: underline;
        font-size: 12px;
        transition: color 0.3s ease;
    }

.footer-links a:hover, .footer-links-2 a:hover {
  color: #ffffff!important;
}

.footer-bottom {
    background-color: #00003e;
    padding: 1.5rem 0;
}

.footer-bottom-links {
  margin-bottom: 1rem;
}

    .footer-bottom-links a {
        color: #becdd6;
        text-decoration: underline;
        font-size: 11px;
        margin-right: 1.5rem;
        transition: color 0.3s ease;
    }

.footer-bottom-links a:hover {
  color: #ffffff!important;
}

.footer-copyright {
    font-size: 11px;
    line-height: 1.6;
    color: #becdd6;
    margin: 0;
}

/* Ensure footer stays at bottom */
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

/* About Us Page - Who We Are Hero Section */
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.about-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../img/about/about_us_hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.about-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  animation: zoomIn 3s ease-out forwards;
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0;
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-hero-underline {
  width: 100%;
  max-width: 1000px;
  height: 3px;
  background-color: #ffffff;
  margin-bottom: 3rem;
}

.about-hero-text {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}

.about-hero-text p {
  margin-bottom: 1.5rem;
  color:#fff;
}

.about-hero-logo {
  max-width: 150px;
  height: auto;
  margin-top: 1rem;
}

/* Responsive adjustments for About Hero */
@media (max-width: 991px) {
  .about-hero-title {
    font-size: 3rem;
  }
  
  .about-hero-text {
    font-size: 1rem;
  }
  
  .about-hero-logo {
    margin-top: 2rem;
    max-width: 120px;
  }
}

@media (max-width: 767px) {
  .about-hero-title {
    font-size: 2.5rem;
  }
  
  .about-hero-text {
    font-size: 0.95rem;
  }
  
  .about-hero-section {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .about-hero-underline {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .about-hero-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }
}

/* Our Global Heritage Section */
@keyframes slideInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.heritage-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../img/about/about_horizon.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 4rem 0;
}

.heritage-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  animation: zoomIn 2s ease-out forwards;
  z-index: 0;
}

.heritage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.heritage-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.heritage-banner {
  background-color: rgba(26, 58, 82, 0.9);
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  animation: slideInLeft 1s ease-out forwards;
}

.heritage-banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.heritage-text-box {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem;
  animation: slideInLeft 1s ease-out 0.3s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.heritage-heading {
  font-size: 1.2rem;
  font-weight: 400;
  color: #012169;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  line-height: 1.4;
}

.heritage-heading-bold {
    display: block;
    font-weight: 700;
    color: #012169;
    font-size: 1.5rem;
}

.heritage-subheading {
    font-size: 1rem;
    font-weight: 700;
    color: #012169;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.heritage-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #012169;
    text-align: justify;
    margin: 0;
}

/* Timeline */
.heritage-timeline {
  position: relative;
  margin-top: 4rem;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background-color: rgba(26, 58, 82, 0.7);
  border-radius: 8px;
}

.timeline-line {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 0;
}

.timeline-item {
  position: relative;
  flex: 1;
  text-align: center;
  animation: slideInLeft 1s ease-out forwards;
  opacity: 0;
}

.timeline-item:nth-child(2) { animation-delay: 0.5s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }
.timeline-item:nth-child(5) { animation-delay: 0.8s; }
.timeline-item:nth-child(6) { animation-delay: 0.9s; }
.timeline-item:nth-child(7) { animation-delay: 1s; }
.timeline-item:nth-child(8) { animation-delay: 1.1s; }
.timeline-item:nth-child(9) { animation-delay: 1.2s; }

.timeline-marker {
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  min-height: 40px;
}

.timeline-description {
    padding: 1rem;
    font-size: 0.7rem;
    line-height: 1.5;
    color: #fff;
    text-align: left;
    min-height: 150px;
    text-align: center;
}

/* Responsive adjustments for Heritage Section */
@media (max-width: 1400px) {
  .timeline-title {
    font-size: 0.7rem;
  }
  
  .timeline-description {
    font-size: 0.65rem;
    padding: 0.75rem;
  }
}

@media (max-width: 1200px) {
  .heritage-timeline {
    flex-wrap: wrap;
  }
  
  .timeline-item {
    flex: 0 0 calc(25% - 1rem);
    margin-bottom: 2rem;
  }
  
  .timeline-line {
    display: none;
  }
}

@media (max-width: 991px) {
  .heritage-banner-title {
    font-size: 2rem;
  }
  
  .heritage-text-box {
    padding: 2rem;
  }
  
  .timeline-item {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (max-width: 767px) {
  .heritage-banner-title {
    font-size: 1.75rem;
  }
  
  .heritage-text-box {
    padding: 1.5rem;
  }
  
  .heritage-description {
    font-size: 0.9rem;
  }
  
  .heritage-timeline {
    margin-top: 2rem;
  }
  
  .timeline-item {
    flex: 0 0 100%;
  }
  
  .timeline-description {
    min-height: auto;
  }
}

@media (max-width: 575px) {
  .heritage-banner {
    padding: 2rem 1.5rem;
  }
  
  .heritage-banner-title {
    font-size: 1.5rem;
  }
}

/* Our Global Presence Section */
.global-presence-section {
  padding: 5rem 0;
}

.global-presence-title {
    font-size: 26px;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    color: #6c757d;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.4;
}

.global-presence-title-bold {
    display: block;
    font-weight: 700;
    color: #1a315c;
    font-size: 26px;
}

.countries-list {
    border-top: 2px solid #1a3a52;
    border-bottom: 2px solid #1a3a52;
    padding: 2rem 0;
    margin-top: 1rem;
}

.country-column {
  list-style: none;
  padding: 0;
  margin: 0;
}

.country-column li {
  font-size: 0.9rem;
  color: #1a3a52;
  padding: 0.25rem 0;
  font-weight: 500;
}

.world-map-container {
  text-align: center;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
}

.world-map {
  max-width: 100%;
  height: auto;
}

.presence-stats-banner {
  background-color: #012169;
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.presence-stat {
  display: inline-block;
  padding: 0 1.5rem;
}

.presence-divider {
  color: #ffffff;
  font-weight: 400;
}

.presence-description-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #012169;
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.presence-description-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #012169;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive adjustments for Global Presence */
@media (max-width: 991px) {
  .global-presence-section {
    padding: 4rem 0;
  }
  
  .presence-stats-banner {
    font-size: 1rem;
  }
  
  .presence-stat {
    padding: 0 1rem;
  }
}

@media (max-width: 767px) {
  .global-presence-section {
    padding: 3rem 0;
  }
  
  .global-presence-title-bold {
    font-size: 1.5rem;
  }
  
  .country-column li {
    font-size: 0.85rem;
  }
  
  .world-map-container {
    padding: 1rem;
  }
  
  .presence-stats-banner {
    font-size: 0.85rem;
    padding: 1rem;
  }
  
  .presence-stat {
    display: block;
    padding: 0.5rem 0;
  }
  
  .presence-divider {
    display: none;
  }
  
  .presence-description-title {
    font-size: 1.1rem;
  }
  
  .presence-description-text {
    font-size: 0.95rem;
  }
}

/* Story Behind the Star Section */
.star-story-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../img/about/about_stars.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 4rem 0;
}

.star-story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  animation: zoomIn 2s ease-out forwards;
  z-index: 0;
}

.star-story-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.star-story-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.star-story-box {
  background-color: rgba(248, 249, 250, 0.95);
  padding: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: 2rem;
  animation: slideInLeft 1s ease-out 0.5s forwards;
  opacity: 0;
  animation-fill-mode: forwards;
}

.star-logo-box {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.star-logo {
  max-width: 80px;
  height: auto;
  display: block;
}

.star-story-heading {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Geometos Neue', sans-serif;
    color: #6c757d;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    line-height: 1.4;
}

.star-story-heading-bold {
  display: block;
  font-weight: 700;
  color: #1a3a52;
  font-size: 1.3rem;
}

.star-story-text {
  color: #1a3a52;
}

.star-story-text p {
  font-size: 0.9rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1.5rem;
}

.star-story-text p:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for Star Story Section */
@media (max-width: 991px) {
  .star-story-box {
    margin-right: 0;
    max-width: 100%;
    padding: 2.5rem;
  }
  
  .star-story-section {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .star-story-box {
    padding: 2rem;
  }
  
  .star-logo-box {
    padding: 0.75rem;
  }
  
  .star-logo {
    max-width: 60px;
  }
  
  .star-story-heading {
    font-size: 0.9rem;
  }
  
  .star-story-heading-bold {
    font-size: 1.1rem;
  }
  
  .star-story-text p {
    font-size: 0.85rem;
  }
  
  .star-story-section {
    padding: 3rem 0;
  }
}

/* Our Brands Section */
.brands-section {
  background-color: #ffffff;
  padding: 5rem 0;
}

.brands-heading {
  font-size: 36px;
  font-weight: 400;
  color: #6c757d;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
}

.brands-heading-bold {
  display: block;
  font-weight: bold;
  color: #1a3a52;
  font-size: 1.8rem;
}

.brands-intro-box {
  background-color: #012169;
  padding: 2rem 2.5rem;
  color: #ffffff;
}

.brands-intro-title {
    font-size: 30px;
    font-family: Garamond, serif;
    font-weight: 400;
    color: #ffffff;
    margin-bottom:0px;
    line-height: 1.4;
}

.brands-intro-subtitle {
    display: block;
    font-size: 30px;
    font-family: Garamond, serif;
    font-style: italic;
    font-weight: 300;
}

.brands-intro-text {
  font-size: 16px;
  line-height: 1.7;
  color: #012169;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.brands-intro-text:last-child {
  margin-bottom: 0;
}

.brand-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.brand-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.brand-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-logo-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.brand-logo-img {
  max-width: 200px;
  height: auto;
  display: block;
}

.brand-card-content {
  padding: 2rem 1.5rem;
  flex-grow: 1;
}

.brand-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a3a52;
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 1.3;
}

.brand-card-description {
  font-size: 0.85rem;
  line-height: 1.7;
  color: #1a3a52;
  text-align: justify;
  margin: 0;
}

.brands-cta-box {
  background-color: #b8c5d0;
  padding: 2rem 2.5rem;
}

.brands-cta-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #012169;
  margin-bottom: 0.5rem;
}

.brands-cta-text {
    font-size: 0.95rem;
    color: #012169;
    margin: 0;
}

.brands-cta-btn {
    display: inline-block;
    padding: 1rem;
    background-color: transparent;
    color: #012169 !important;
    width: 200px;
    text-align: center;
    text-decoration: none !important;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid #012169;
    transition: all 0.3s ease;
}

    .brands-cta-btn:hover {
        background-color: #012169;
        color: #ffffff !important;
    }

.brand-card-image {
    position: relative;
    overflow: hidden;
}

.brand-background-img {
    display: block;
    width: 100%;
}

.brand-tint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255,255,255, 0.6); /* Adjust color and opacity as needed */
}

.brand-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Responsive adjustments for Brands Section */
@media (max-width: 991px) {
  .brands-section {
    padding: 4rem 0;
  }
  
  .brands-intro-box {
    padding: 1.75rem 2rem;
  }
  
  .brands-intro-title {
    font-size: 1rem;
  }
  
  .brand-logo-img {
    max-width: 160px;
  }
}

@media (max-width: 767px) {
  .brands-section {
    padding: 3rem 0;
  }
  
  .brands-heading-bold {
    font-size: 1.5rem;
  }
  
  .brands-intro-box {
    padding: 1.5rem;
  }
  
  .brands-intro-title {
    font-size: 0.95rem;
  }
  
  .brands-intro-text {
    font-size: 0.85rem;
  }
  
  .brand-card-content {
    padding: 1.5rem 1.25rem;
  }
  
  .brand-card-title {
    font-size: 1rem;
  }
  
  .brand-card-description {
    font-size: 0.8rem;
  }
  
  .brand-logo-img {
    max-width: 140px;
  }
  
  .brands-cta-box {
    padding: 1.5rem;
  }
  
  .brands-cta-title {
    font-size: 1.1rem;
  }
  
  .brands-cta-text {
    font-size: 0.85rem;
  }
  
  .brands-cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* Our Team Page */
.team-page-section {
  background-color: #f8f9fa;
  padding: 5rem 0;
  min-height: 100vh;
}

.team-title-box {
  background-color: #5a8bb5;
  padding: 2rem 1.5rem;
  min-height: 200px;
}

.team-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.team-subtitle {
  font-size: 0.9rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

.team-logo-container {
  text-align: right;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #1a3a52;
}

.team-logo {
  max-width: 400px;
  height: auto;
}

.team-members-row {
  margin-bottom: 3rem;
}

.team-member-card {
  text-align: left;
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-5px);  
}

.team-member-photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e0e0e0;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.team-member-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a3a52;
  margin-bottom: 0.5rem;
}

.team-member-title {
  font-size: 0.85rem;
  color: #1a3a52;
  margin-bottom: 0.75rem;
}

.team-member-experience {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #6c757d;
  margin: 0;
}

.team-info-box {
    background-color: #becdd6;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.team-info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #012169;
    font-family: Garamond, serif;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.team-info-subtitle {
    font-style: italic;
    font-family: Garamond, serif;
    font-weight: 400;
    color: #012169;
}

.team-info-text {
  font-size: 14px;
  line-height: 1.8;
  color: #012169;
  text-align: justify;
  margin-bottom: 1rem;
}

.team-info-text:last-child {
  margin-bottom: 0;
}

.team-cta-box {
  background-color: #1a3a52;
  padding: 2rem 2.5rem;
}

.team-cta-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.team-cta-text {
  font-size: 0.95rem;
  color: #ffffff;
  margin: 0;
}

.team-cta-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}

.team-cta-btn:hover {
  background-color: #ffffff;
  color: #1a3a52;
}

/* Responsive adjustments for Team Page */
@media (max-width: 991px) {
  .team-page-section {
    padding: 4rem 0;
  }
  
  .team-main-title {
    font-size: 2rem;
  }
  
  .team-logo {
    max-width: 300px;
  }
  
  .team-logo-container {
    text-align: center;
  }
  
  .team-member-photo {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767px) {
  .team-page-section {
    padding: 3rem 0;
  }
  
  .team-title-box {
    padding: 1.5rem;
    min-height: auto;
  }
  
  .team-main-title {
    font-size: 1.75rem;
  }
  
  .team-logo {
    max-width: 250px;
  }
  
  .team-logo-container {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  
  .team-member-card {
    padding: 1.5rem 1rem;
  }
  
  .team-member-photo {
    width: 130px;
    height: 130px;
  }
  
  .team-member-name {
    font-size: 1rem;
  }
  
  .team-info-box {
    padding: 2rem 1.5rem;
  }
  
  .team-info-title {
    font-size: 1.1rem;
  }
  
  .team-info-text {
    font-size: 0.8rem;
  }
  
  .team-cta-box {
    padding: 1.5rem;
  }
  
  .team-cta-title {
    font-size: 1.1rem;
  }
  
  .team-cta-text {
    font-size: 0.85rem;
  }
  
  .team-cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===================================
   SERVICE DETAIL PAGES
   =================================== */

/* Fade-up animation utility */
@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up-element {
  --fade-up-delay: 0s;
}

.js-animations-ready .fade-up-element {
  opacity: 0;
  transform: translateY(35px);
}

.js-animations-ready .fade-up-element.fade-up-visible {
  animation: fadeUpIn 0.75s ease forwards;
  animation-delay: var(--fade-up-delay, 0s);
}

.service-detail-section {
  padding: 5rem 0;
  background-color: #fff;
}

/* Service Header */
.service-header {
  display: flex;
  align-items: stretch;
  margin-bottom: 3rem;
}

.service-header-accent {
    width: 140px;
    background-color: #58718d;
    flex-shrink: 0;
}

.service-header-content {
  background-color: transparent;
  padding: 0;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-main-title {
  font-family: 'Geometos Neue', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 1px;
}

.service-main-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0.5rem 0 0 0;
  letter-spacing: 0.5px;
}

/* Content Boxes */
.service-content-box {
  margin-bottom: 3rem;
}

.service-content-title {
  font-family: 'Geometos Neue', sans-serif;
  font-size: 16px;
  color: #fff;
  background-color: #012169;
  padding: 0.8rem 1.5rem;
  margin: 0 0 1.5rem 0;
}

.service-content-text {
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: justify;
}

.service-content-text:last-child {
  margin-bottom: 0;
}

/* Pathfinder Box */
.service-pathfinder-box {
  background-color: #c5d7e3;
  padding: 1rem;
  margin-top: 3rem;
}

.service-pathfinder-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #012169;
    margin: 0 0 1rem 0;
}

.service-pathfinder-italic {
    font-style: italic;
    font-weight: 400;
    font-family: Garamond, serif;
}

.service-pathfinder-text {
    line-height: 1.8;
    color: #012169;
    margin: 0;
}

/* Right Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.service-sidebar-title {
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.5rem;
}

.service-sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}

.service-sidebar-item {
  margin-bottom: 0;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

    .service-sidebar-item a {
        display: block;
        padding: 1rem 1.5rem;
        text-decoration: underline;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .service-sidebar-item:hover {
        border-left-color: #13216a;
        background-color: #f8f9fa;
    }

.service-sidebar-item.active {
  border-left-color: #012169;
  background-color: #f0f4f7;
}

.service-sidebar-item.active a {
  color: #012169;
}

/* Sidebar CTA Box */
.service-sidebar-cta {
  background-color: #012169;
  padding: 2rem;
  border-radius: 4px;
}

.service-sidebar-cta-title {
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem 0;
}

.service-sidebar-cta-text {
  line-height: 1.6;
  color: #fff;
  margin: 0 0 1.5rem 0;
}

.service-sidebar-cta-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    text-align: center;
    border-radius: 4px;
}

.service-sidebar-cta-btn:hover {
  background-color: #fff;
  color: #012169;
}

/* Sidebar CTA Box */
.service-sidebar-career {
    background-color: #58718d;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 4px;
}

.service-sidebar-career-title {
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
}

.service-sidebar-career-text {
    line-height: 1.6;
    color: #fff;
    margin: 0 0 1.5rem 0;
}

.service-sidebar-career-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    text-align: center;
    border-radius: 4px;
}

    .service-sidebar-career-btn:hover {
        background-color: #fff;
        color: #012169;
    }

/* Responsive Design */
@media (max-width: 991px) {
  .service-detail-section {
    padding: 3rem 0;
  }
  
  .service-header-accent {
    width: 100px;
  }
  
  .service-header-content {
    padding-left: 1.5rem;
  }
  
  .service-main-title {
    font-size: 2rem;
  }
  
  .service-main-subtitle {
    font-size: 1rem;
  }
  
  .service-sidebar {
    position: static;
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .service-detail-section {
    padding: 2rem 0;
  }
  
  .service-header {
    flex-direction: column;
  }
  
  .service-header-accent {
    width: 100%;
    height: 10px;
    margin-bottom: 1.5rem;
  }
  
  .service-header-content {
    padding-left: 0;
  }
  
  .service-main-title {
    font-size: 1.8rem;
  }
  
  .service-main-subtitle {
    font-size: 0.95rem;
  }
  
  .service-content-title {
    font-size: 1.1rem;
    padding: 0.7rem 1rem;
  }
  
  .service-content-text {
    font-size: 0.95rem;
  }
  
  .service-pathfinder-box {
    padding: 1.5rem;
  }
  
  .service-pathfinder-title {
    font-size: 1.1rem;
  }
  
  .service-pathfinder-text {
    font-size: 0.95rem;
  }
  
  .service-sidebar-cta {
    padding: 1.5rem;
  }
  
  .service-sidebar-cta-title {
    font-size: 1.1rem;
  }
  
  .service-sidebar-cta-btn {
    width: 100%;
  }
}

/* ===================================
   SECTORS WE COVER SECTION
   =================================== */

.sectors-section {
  margin-top: 3rem;
}

.sectors-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #13216a;
  margin: 0 0 2rem 0;
}

.sectors-diagram {
  width: 100%;
  
}

.sectors-bg-image {
  width: 100%;
  height: 100%;    
}

.sectors-circle-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  padding-bottom: 70%;
}

/* Outer Circle */
.sectors-outer-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(181, 199, 214, 0.7);
  border: 2px solid rgba(90, 139, 181, 0.5);
}

/* Inner Circle */
.sectors-inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: 45%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(90, 139, 181, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sectors-center-icon {
  font-size: 3rem;
}

/* Sector Items Positioned Around Circle */
.sector-item {
  position: absolute;
  text-align: center;
}

.sector-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.sector-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #13216a;
  letter-spacing: 0.5px;
}

/* Position each sector */
.sector-mixed-use {
  top: -8%;
  left: 20%;
}

.sector-residential {
  top: 8%;
  right: 5%;
}

.sector-commercial {
  right: -8%;
  top: 45%;
}

.sector-hospitality {
  bottom: 8%;
  right: 5%;
}

.sector-leisure {
  bottom: -8%;
  left: 45%;
}

.sector-education {
  bottom: 8%;
  left: 5%;
}

.sector-industrial {
  left: -8%;
  top: 45%;
}

/* ===================================
   KEY OFFERINGS SECTION
   =================================== */

.key-offerings-section {
  margin-top: 3rem;
}

.key-offerings-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #13216a;
  margin: 0 0 2rem 0;
}

.key-offerings-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.offering-item {
  display: flex;
  gap: 0;
}

.offering-accent-bar {
  width: 6px;
  background-color: #7693ab;
  flex-shrink: 0;
}

.offering-content {
  padding: 0 1.5rem;
  background-color: #fff;
  flex: 1;
}

.offering-heading {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.1rem 0;
}

.offering-text {
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

/* Responsive Design for Sectors and Offerings */
@media (max-width: 991px) {
  .sectors-circle-container {
    width: 80%;
    padding-bottom: 80%;
  }
  
  .sector-icon {
    font-size: 1.5rem;
  }
  
  .sector-label {
    font-size: 0.8rem;
  }
  
  .sectors-center-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .sectors-diagram {
    
  }
  
  .sectors-circle-container {
    width: 90%;
    padding-bottom: 90%;
  }
  
  .sector-icon {
    font-size: 1.3rem;
  }
  
  .sector-label {
    font-size: 0.75rem;
  }
  
  .sectors-center-icon {
    font-size: 2rem;
  }
  
  .offering-item {
    flex-direction: column;
  }
  
  .offering-accent-bar {
    width: 100%;
    height: 6px;
  }
  
  .offering-content {
    padding: 1rem;
  }
}

/* ===================================
   ADVISORY SECTORS GRID SECTION
   =================================== */

.advisory-sectors-section {
  margin-top: 3rem;
}

.advisory-sectors-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #012169;
  margin: 0 0 2rem 0;
  letter-spacing: 0.5px;
}

.advisory-sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.advisory-sector-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  padding-bottom: 100%; /* Creates square aspect ratio */
}

    .advisory-sector-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
        z-index: 1;
        pointer-events: none;
    }

.advisory-sector-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.advisory-sector-card:hover .advisory-sector-image {
  opacity: 0.85;
}

.advisory-sector-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    color: #1b3c55;
    font-family: 'Geometos Neue', sans-serif;
    padding: 0.8rem;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
    z-index: 2;
    line-height: 1.3;
    width: 100%;
}

/* Responsive Design for Advisory Sectors */
@media (max-width: 991px) {
  .advisory-sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .advisory-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .advisory-sector-label {
    font-size:20px;
    padding: 0.6rem;
  }
  
  .advisory-sectors-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .advisory-sectors-grid {
    grid-template-columns: 1fr;
  }
  
  .advisory-sector-image {
    height: auto;
  }
}

/* ===================================
   ADVISORY KEY OFFERINGS SECTION
   =================================== */

.advisory-key-offerings-section {
  margin-top: 3rem;
}

.advisory-key-offerings-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #012169;
  margin: 0 0 2.5rem 0;
}

.advisory-offerings-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-left: 4px solid #7693ab;
    padding-left: 1.5rem;
}

.advisory-offering-item {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.advisory-offering-icon-wrapper {
  width: 80px;
  flex-shrink: 0;
  padding: 1rem 0;
}

.advisory-offering-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advisory-offering-icon svg {
  width: 100%;
  height: 100%;
}

.advisory-offering-content {
  flex: 1;
  padding-left: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.advisory-offering-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: #012169;
  margin: 0 0 0.8rem 0;
}

.advisory-offering-text {
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

/* Responsive Design for Advisory Key Offerings */
@media (max-width: 767px) {
  .advisory-offering-item {
    flex-direction: column;
    gap: 1rem;
  }
  
  .advisory-offering-icon-wrapper {
    width: 60px;
  }
  
  .advisory-offering-icon {
    width: 60px;
    height: 60px;
  }
  
  .advisory-offering-content {
    padding-left: 0;
    border-left: none;
    border-top: 4px solid #7693ab;
    padding-top: 1rem;
  }
}

/* ===================================
   CAPITAL MARKETS IMAGE SECTION
   =================================== */

.capital-markets-image-section {
  margin-top: 3rem;
  width: 100%;
}

.capital-markets-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
}

@media (max-width: 767px) {
  .capital-markets-image-section {
    margin-top: 2rem;
  }
}

/* ===================================
   PROJECT DEVELOPMENT IMAGE SECTION
   =================================== */

.project-dev-image-section {
  width: 100%;
}

.project-dev-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ddd;
}

@media (max-width: 767px) {
  .project-dev-image-section {
    margin-top: 2rem;
  }
}

/*Create Mobile Custom CSS*/
@media (max-width: 575px) {
    .mobile-text-center {
        text-align: center !important;
    }
  
}