 /*==============================
   HEADER / NAVIGATION BAR STYLES
============================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
}

/* HEADER BASE */
#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* NAV CONTAINER */
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 25px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo .mark {
  background: #007bff;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #222;
}


.brand-tag {
  font-size: 0.75rem;
  color: #666;
}

/* DESKTOP NAV LINKS */
.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #007bff;
  transition: width 0.3s ease;
}

.desktop-nav a:hover {
  color: #007bff;
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 32px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger .bar {
  position: relative;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

.hamburger .bar::before,
.hamburger .bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger .bar::before {
  top: -8px;
}

.hamburger .bar::after {
  top: 8px;
}

/* HAMBURGER ACTIVE STATE (X animation) */
.hamburger.active .bar {
  background: transparent;
}

.hamburger.active .bar::before {
  transform: rotate(45deg);
  top: 0;
}

.hamburger.active .bar::after {
  transform: rotate(-45deg);
  top: 0;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease;
}

.mobile-menu a {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  transition: background 0.3s ease;
}

.mobile-menu a:hover {
  background: #007bff;
  color: #fff;
}

/* MOBILE MENU ACTIVE */
.mobile-menu.active {
  display: flex;
  max-height: 400px;
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}





/* Finance Hero Section */
.finance-hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1581090700227-1e37b190418e?auto=format&fit=crop&w=1500&q=80')
    center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #007bff;
  color: #fff;
}

.btn.primary:hover {
  background: #0056b3;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .finance-hero {
    height: 80vh;
    padding: 40px 10px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}



/* Why Choose Finance Section */
.finance-why {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.finance-why h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.finance-why .section-sub {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Cards */
.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Icons */
.why-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

/* Titles & Text */
.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .finance-why h2 {
    font-size: 2rem;
  }
  .why-card {
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .finance-why h2 {
    font-size: 1.8rem;
  }
  .finance-why .section-sub {
    font-size: 1rem;
  }
  .why-card i {
    font-size: 2rem;
  }
}


.loan-calculator {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.loan-calculator h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
}

.section-sub {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.calculator-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 950px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.calc-inputs {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.input-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  display: block;
}

.input-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.input-group input:focus {
  border-color: #007bff;
  outline: none;
}

.btn.primary {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 600;
}

.btn.primary:hover {
  background: #0056b3;
}

/* Result Section */
.calc-result {
  flex: 1 1 300px;
  background: #007bff;
  color: #fff;
  border-radius: 10px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calc-result h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.calc-result p {
  font-size: 2rem;
  font-weight: 700;
}

/* Progress Circle */
.progress-circle {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 25px 0;
}

.progress-circle svg {
  transform: rotate(-90deg);
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .loan-calculator h2 {
    font-size: 2rem;
  }

  .calculator-box {
    flex-direction: column;
  }
}




.loan-types {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.loan-types h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.loan-types {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.loan-types h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 10px;
}

.section-sub {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

.loan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.loan-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.loan-card i {
  font-size: 2.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.loan-card h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 10px;
}

.loan-card p {
  color: #555;
  font-size: 1rem;
}

.loan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

/* Partner Banks */
.partner-title {
  font-size: 1.8rem;
  color: #111;
  margin-top: 60px;
  margin-bottom: 30px;
}




@media (max-width: 768px) {
  .loan-types h2 {
    font-size: 2rem;
  }

  .partner-title {
    font-size: 1.5rem;
  }

  
}











.bank-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  padding: 30px;
  text-align: center;
}

/* Each card */
.bank-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 0.7s ease forwards;
}

/* Image same size */
.bank-item img {
  width: 120px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* Title text */
.bank-item p {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Hover effect */
.bank-item:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Entry animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 768px) {
  .bank-item img {
    width: 110px;
    height: 75px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .bank-logos {
    gap: 20px;
    padding: 20px;
  }

  .bank-item img {
    width: 100px;
    height: 70px;
  }

  .bank-item p {
    font-size: 13px;
  }
}









/* =========================
   FOOTER SECTION
========================= */
.footer-section {
  background: #111;
  color: #fff;
  padding: 60px 20px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  align-items: start;
}

.footer-brand .mark {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
}

.footer-brand .brand-name {
  font-size: 1.4rem;
  margin-top: 5px;
   color: #aaaaaa38;
}

.footer-brand small {
  color: #aaa;
  display: block;
  margin-top: 3px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.15rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #007bff;
  transform: translateX(3px);
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #aaa;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: #007bff;
  min-width: 20px;
  text-align: center;
}

.footer-social .social-icons {
  display: flex;
  align-items: center;
}

.footer-social .social-icons a {
  color: #aaa;
  font-size: 1.3rem;
  margin-right: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #007bff;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #222;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-social .social-icons {
    justify-content: center;
    margin-top: 10px;
  }
  .footer-contact p {
    justify-content: center;
  }
}

