/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background-color: #f5f5f5;
}

ol, ul {
    padding-left: 0rem !important;
}

h4 {
        font-size: 1.2rem !important;
    }

/* Utility */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header / Top Bar */
.main-header {
  background-color: #ffffff;
  padding: 20px 30px;
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 10;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}

.header-left,
.header-right {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 0.9rem;
  color: #555;
}

.header-right a {
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.header-center {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 80vh;
  background: url(assets/wealth.webp) center center / cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: end;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 800px;
}

.hero-text-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.hero-text h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 30px;
}

.discover-btn {
  background: #005BAC;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 25px;
  transition: 0.3s ease;
}

.discover-btn:hover {
  background: #003f80;
}

/* Scrolling Text */
.scrolling-text {
  background-color: #000;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.scrolling-container p {
  display: inline-block;
  animation: scrollText 15s linear infinite;
  font-size: 1.2rem;
  font-weight: bold;
}

.video-text-section {
  display: flex;
  flex-wrap: wrap;
  margin: 80px 0;
}

.video-box,
.text-box {
  flex: 1 1 50%;
  min-width: 300px;
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-box {
  padding: 40px;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-box h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #002f5f;
}

.text-box p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}


@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Grid Section */
.grid-section {
  padding: 60px 0;
  background-color: #fff;
}

.grid-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.grid-container.reverse {
  flex-direction: row-reverse;
}

.grid-container .text {
  flex: 1;
}

.grid-container .text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.grid-container .text p {
  font-size: 1rem;
}

.grid-container .image {
  flex: 1;
}

/* Our Solutions */
.our-solutions {
  padding: 60px 0;
  /* background-color: #f2f2f2; */
  text-align: center;
}

.our-solutions h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.6rem;
    margin-bottom: 10px;
    font-family: VerlagSSm, Tahoma, sans-serif;
    font-weight: 500;
}

/* Commitment Section */
/* .commit-growth {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
} */

.commit-growth h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: VerlagSSm, Tahoma, sans-serif;
}

.commit-growth p {
  font-size: 1rem;
  max-width: 800px;
  margin: auto;
}


.commit-growth {
  background-image: url(assets/Committing-to-Growth.jpg);
  /* background-size: cover; */
  background-position: center;
  background-repeat: no-repeat;
  padding: 166px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.commit-growth::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.5); Optional: dark overlay */
  z-index: 0;
}

.commit-growth .container {
  position: relative;
  z-index: 1;
}


.insights {
  padding: 80px 20px;
  /* background-color: #f9f9f9; */
  text-align: center;
}

.insight-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.insight {
  max-width: 360px;
  text-align: left;
}

.insight img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.insight h3 {
  font-size: 20px;
  margin-top: 16px;
  color: #222;
}

.insight p {
  margin: 10px 0 16px;
  color: #555;
}

.discover-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #004481;
  text-decoration: none;
  transition: color 0.3s ease;
}

.discover-link i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.discover-link:hover {
  color: #002f5f;
}

.discover-link:hover i {
  transform: translateX(4px);
}


/* About Section */
.about {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* CTA Section */
.cta {
  padding: 50px 0;
  background-color: #005BAC;
  text-align: center;
  color: white;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta .btn {
  background-color: #fff;
  color: #005BAC;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta .btn:hover {
  background-color: #e6e6e6;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: white;
}

.footer-top {
  padding: 60px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand {
  flex: 1;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.9rem;
}

.social-icons a {
  color: white;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #005BAC;
}

.footer-grid div {
  flex: 1;
  min-width: 150px;
}

.footer-grid h4 {
  margin-bottom: 15px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-grid ul li a {
  color: white;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-grid ul li a:hover {
  color: #ccc;
}

.footer-bottom {
  padding: 15px 0;
  background-color: #111;
  text-align: center;
  font-size: 0.8rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  font-size: 0.95rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-left,
.navbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #333;
}

.navbar-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #005BAC;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #005BAC;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #333;
}


/* Topbar Styles */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.9rem;
  position: relative;
  z-index: 999;
}

.left-info,
.right-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar i {
  margin-right: 6px;
  color: #333;
}

.topbar span,
.topbar a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.topbar a:hover,
.topbar span:hover {
  color: #005BAC;
  cursor: pointer;
}



/* Header/Nav Styling */
.main-header {
  background-color: #ffffff;
  padding: 10px 30px;
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 10;
}

.header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}

.header-left {
  justify-self: start;
}

.header-center {
  justify-self: center;
  font-size: 20px;
  font-weight: bold;
}

.header-right {
  justify-self: end;
}

.header-right a,
.header-left span {
  text-decoration: none;
  color: #333;
}

.logo {
  font-family: "Georgia", serif;
  font-size: 34px;
  font-weight: bold;
  color: #002c5f;

}

.logo img {
  width: 15%;
  height: auto;
}

.text-start {
  font-family: VerlagSSm, Tahoma, sans-serif;
}
h2{
  font-family: VerlagSSm, Tahoma, sans-serif;
  font-size: 1.938rem !important;
}


/* Overlay container */
.overlay-nav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.95);
  overflow-x: hidden;
  transition: 0.5s;
}




/* Close button */
.overlay-nav .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 40px;
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/* Overlay content */
.overlay-nav .overlay-content {
  position: relative;
  top: 30%;
  width: 100%;
  text-align: center;
}

.overlay-nav .overlay-content a {
  padding: 8px;
  text-decoration: none;
  font-size: 24px;
  color: white;
  display: block;
  transition: 0.3s;
}

.overlay-nav .overlay-content a:hover {
  color: #ccc;
}



/* Basic header layout */
.main-header {
  background: white;
  padding: 10px 20px;
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  border-bottom: 1px solid #ddd;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-left span,
.header-right a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
}


/* Desktop only */
@media screen and (min-width: 768px) {
  .header-left span,
  .header-right a {
    display: contents;
  }

  /*#burgerIcon {*/
  /*  display: none;*/
  /*}*/
}

/* Mobile View */
@media screen and (max-width: 768px) {
  .header-left span,
  .header-right a:not(#burgerIcon),
  .header-right a i:not(.fa-bars) {
    display: none !important;
  }

  #burgerIcon {
    display: inline-flex;
    font-size: 20px;
    color: #333;
    padding: 5px;
  }

  .logo img {
    height: auto;
    width: 23%;
  }
 
}


/* Responsive Behavior */
@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }
  
  span.span-2 {
    display: none;
}
span.span-1 {
    display: none;
}
a.a-1 {
    display: none;
}
a.a-2 {
    display: none;
}

  .left-info,
  .right-info {
    gap: 15px;
    margin: 5px 0;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .navbar-left span,
  .navbar-right a:not(:last-child) {
    display: none;
  }

  .navbar-center {
    position: static;
    transform: none;
  }

  .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .grid-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text-box {
    padding: 20px;
  }

  .cards {
    flex-direction: column;
    gap: 20px;
  }

  .header-container {
    flex-direction: row-reverse;
    gap: 10px;
  }
}
