body {
  font-family: 'Poppins', sans-serif;
}

/* Navbar Styling */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #4fa3c2; /* Light fresh blue for a clean, modern finance look */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) 0 3px 10px rgba(0, 0, 0, 0.1);
}

.logo-img {
  width: 42px;
  height: 42px;
}

.brand-title {
  font-size: 1.6rem;
  color: #ffffff;
}

.nav-link {
  font-size: 1.05rem;
  color: #e3e3e3 !important;
  transition: 0.3s;
}

.nav-link:hover {
  color: #87d4ff !important;
}

.nav-link.active {
  color: #87d4ff !important;
  font-weight: 600;
}

.nav-gap .nav-item {
  margin-left: 15px;
}

/* CTA Button */
.custom-btn {
  background-color: #87d4ff;
  color: #12343b;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}

.custom-btn:hover {
  background-color: #87d4ff;
  color: #12343b;
}

/* Hero Section Styling */
.hero-section {
  background: linear-gradient(135deg, #e8f6fa 0%, #c9e9f2 100%);
  min-height: 100vh; /* Cover full page */
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-title {
  font-size: 2.8rem;
  color: #0b2e4f;
}

.hero-subtext {
  font-size: 1.1rem;
  color: #444;
  max-width: 90%;
}

.hero-btn-primary {
  background-color: #0b2e4f;
  color: #fff;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn-primary:hover {
  background-color: #234f6a;
  color: #fff;
}

.hero-btn-secondary {
  background-color: #f7d774;
  color: #12343b;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn-secondary:hover {
  background-color: #ffe9a9;
}

.hero-image {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  border-radius: 15px;
}

.hero-image:hover,
.hero-image:active {
  transform: scale(1.05) translateY(-5px); /* Zoom + lift */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* Soft glow */
}


/* CTA Button */
.custom-btn {
  background-color: #f7d774;
  color: #12343b;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}

.custom-btn:hover {
  background-color: #ffe9a9;
  color: #12343b;
}


/* WHO WE ARE SECTION */
.who-we-are {
  background: #f7fcff;
}

.who-title {
  font-size: 2.4rem;
  color: #0b2e4f;
}

.who-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #4f5d68;
  font-size: 1.05rem;
  line-height: 1.7;
}

.who-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  transition: all 0.35s ease;
  border: 1px solid #e6f0f4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  height: 100%;
}

.who-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.who-icon {
  font-size: 2.5rem;
  color: #0b2e4f;
  margin-bottom: 15px;
}

/* CTA Button */
.custom-btn {
  background-color: #f7d774;
  color: #12343b;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.3s;
}

.custom-btn:hover {
  background-color: #ffe9a9;
  color: #12343b;
}

/* Services Section */
.services-section {
  padding-top: 120px; /* Increase to push content lower */
}
.services-section h2 {
  margin-top: 60px; /* Pushes the title down */
}

.services-section .container {
  padding-top: 80px; /* Moves everything down */
}

.service-list {
  cursor: pointer;
}
.service-item.active {
  background-color: #4fa3c2;
  color: #fff;
  font-weight: 600;
}
.service-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 15px;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.service-card i {
  color: #4fa3c2;
}


.why-choose-us {

  padding: 0 0;
}

.why-choose-us .image-wrapper {
  overflow: hidden;
  border-radius: 15px;
}

.why-choose-us .image-wrapper img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.why-choose-us .image-wrapper img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.why-choose-us h2 {
  color: #4fa3c2;
  font-size: 2.5rem;
}

.why-choose-us p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
}

.why-choose-us li {
  font-size: 1.1rem;
}

.why-choose-us i {
  color: #4fa3c2;
  font-size: 1.3rem;
}

