:root {
  --nav-bg: #0a0f1e;
  --nav-accent: #c9a84c;
  --nav-text: #e8e8f0;
  --nav-text-muted: #9a9ab0;
  --nav-hover-bg: rgba(201, 168, 76, 0.08);
  --nav-border: rgba(201, 168, 76, 0.2);
  --nav-height: 72px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;

  color: var(--nav-text);
}
.logo-img {
  width: 35px;
  height: 35px;
  border-radius: 5px;
}

/* ── NAVBAR ── */
.main-navbar {
  background: var(--nav-bg);
  height: var(--nav-height);
  border-bottom: 1px solid var(--nav-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

/* top gold line */
.main-navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--nav-accent),
    transparent
  );
}

/* ── BRAND ── */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--nav-accent);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--nav-bg);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-icon {
  transform: rotate(8deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--nav-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── NAV LINKS ── */
.navbar-nav {
  gap: 2px;
}

.nav-item .nav-link {
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--nav-text-muted) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  position: relative;
  transition: all 0.25s ease;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active {
  color: var(--nav-text) !important;
  background: var(--nav-hover-bg);
}

/* gold underline indicator */
.nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px;
  height: 2px;
  background: var(--nav-accent);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.nav-item .nav-link:hover::after,
.nav-item .nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* ── CTA BUTTON ── */
.btn-contact {
  background: var(--nav-accent);
  color: var(--nav-bg) !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 20px !important;
  border-radius: 8px;
  border: none;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
}

.btn-contact:hover {
  background: #e0bc5e !important;
  color: var(--nav-bg) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
}

.btn-contact::after {
  display: none !important;
}

/* ── TOGGLER ── */
.navbar-toggler {
  border: 1px solid var(--nav-border);
  border-radius: 8px;
  padding: 6px 10px;
  color: var(--nav-text);
  transition: background 0.2s;
}

.navbar-toggler:hover {
  background: var(--nav-hover-bg);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.25);
}

.navbar-toggler-icon {
  background-image: url("img/navbar-toggler-icon.svg");
}

/* ── MOBILE MENU ── */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #0e1326;
    border: 1px solid var(--nav-border);
    border-radius: 12px;
    margin-top: 12px;
    padding: 12px 8px;
  }

  .navbar-nav {
    gap: 2px;
  }

  .nav-item .nav-link {
    padding: 10px 16px !important;
    border-radius: 8px;
  }

  .btn-contact {
    margin: 8px 8px 4px;
    display: block;
    text-align: center;
  }
}

/* ── DEMO HERO (so page isn't empty) ── */

.hero-image {
  background-image: url("imgs/grow-img.jpg");
  background-color: #cccccc;
  height: 700px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  font-family: "Playfair Display", serif;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 50px;
}
.grow {
  font-size: 50px;
}
.jesigo {
  color: rgb(235, 220, 12);
}
.para {
  font-size: 40px;
  font-weight: bold;
  color: white;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  padding: 15px 30px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 20px;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--nav-accent);
  border-radius: 3px;
  margin: 20px auto 24px;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #0d1120;
  color: var(--nav-text);
}
.services {
  background-color: #1e4a8d; /* Blue background */
  color: white; /* White text */
  text-align: center;
  padding: 100px 20px; /* Top-Bottom 80px, Left-Right 20px */
  font-weight: 1000px;
}

.services h1 {
  font-size: 40px;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  margin-top: -50px;
}

.services p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto; /* Center paragraph */
  line-height: 1.6;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2f2f2;
}

/* Section Layout */
.card-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 80px 50px;
  flex-wrap: wrap;
  margin-top: 100px;
}

/* Card Design */
.card {
  background: #ffffff;
  width: 320px;
  padding: 40px 25px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin-top: -150px;
}

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

/* Icon */
.icon {
  font-size: 50px;
  color: #1e4a8d;
  margin-bottom: 20px;
}

/* Heading */
.card h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Paragraph */
.card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Button */
.card a {
  text-decoration: none;
  font-weight: bold;
  color: black;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f2f2f2;
}

/* Button Container */
.btn-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  margin-top: -50px;
}

/* Common Button Style */
.btn {
  padding: 20px 50px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-block;
}

/* Blue Button */
.btn-primary {
  background-color: #1e4a8d;
  color: white;
}

.btn-primary:hover {
  background-color: #163a6d;
}

/* Outline Button */
.btn-outline {
  border: 2px solid black;
  color: black;
  background: transparent;
}

.btn-outline:hover {
  background: black;
  color: white;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Section Background */
.about-section {
  background: #f2f2f2;
  padding: 80px 60px;
}

/* Container Layout */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Left Text */
.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 25px;
  color: blue;
}

.about-text p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Right Image */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Section Background */
.about-section {
  background: #f2f2f2;
  padding: 80px 60px;
}

/* Container Layout */
.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Left Text */
.about-paragraph {
  flex: 1;
}

.about-paragraph h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: blue;
}

.about-paragraph p {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Right Image */
.about-image {
  flex: 1;
  border: 2px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  margin-left: 50px;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.loan img {
  width: 100%;
  height: 500px;
  border-radius: 8px;
}
.loan-title {
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
  color: rgb(178, 190, 66);
  font-size: 40px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  padding: 20px 10px;
  border-radius: 10px;
  margin-top: -250px;
  margin-left: 750px;
}

/* Footer Styles */
.footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h2.logo {
  font-size: 22px;
  margin-bottom: 10px;
  color: #f39c12;
}

.footer-section h3 {
  margin-bottom: 10px;
  color: #f39c12;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 6px;
}

.footer-section ul li a {
  color: #ecf0f1;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #7f8c8d;
  padding-top: 15px;
  font-size: 14px;
}
.footer-services {
  h3 {
    color: #f39c12;
  }
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 2;
}
.footer-menu {
  h3 {
    color: #f39c12;
  }
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 2;

  .footer-address {
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 2;
  }

  .footer-address h3 {
    color: #f39c12;
  }

  .footer-address p {
    color: #ecf0f1;
  }
}
