/* =========================
   BASIC & GLOBAL STYLES
========================= */
body {
  font-family: "Poppins", Arial, sans-serif;
  margin: 0;
  color: #333;
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  align-items: center;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* =========================
   HEADER TOP BAR
========================= */
.header-top {
  background-color: #0d214f;
  color: #fff;
  padding: 12px 0;
  font-size: 14px;
}

.header-top .container {
  justify-content: space-between;
  display: flex;
}

.header-top a {
  color: #fff;
}

.contact-info-left a,
.contact-info-left span {
  margin-right: 35px;
}

.contact-info-left i {
  margin-right: 8px;
}

.contact-info-right {
  display: flex;
  align-items: center;
}

.top-nav ul,
.social-links {
  display: flex;
  align-items: center;
}

.top-nav li {
  margin-left: 20px;
}

.top-nav a:hover {
  color: #ccc;
}

.social-links {
  margin-left: 25px;
}

.social-links a {
  margin-left: 18px;
}


.header-top .top-center {
  display: flex;
  /* center horizontally */
  justify-content: center;
  position: relative;
  /* center vertically */
  align-items: center;
}

.contact-info-left {
  display: flex;
  align-items: center;
  gap: 35px;
  /* spacing between items */
}


/* === Font Resizer === */
.text-resizer {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  left: 16px !important;
}

.sizer-btn {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  transition: all 0.3s ease;
  padding: 2px 6px;
  border-radius: 4px;
}

.sizer-btn:hover {
  color: #29b9ed;
  background-color: rgba(255, 255, 255, 0.1);
}

.sizer-btn.active {
  color: #29b9ed;
}

/* =========================
   MAIN NAVIGATION
========================= */
.main-nav {
  background: #fff;
  padding: 0 !important;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.main-nav .container {
  gap: 20px;
  justify-content: space-between;
  display: flex;
}

.navbar-brand img {
  height: 80px;
  width: 160px;
}

.navbar-nav {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.navbar-nav>li {
  position: relative;
  margin: 0 16px;
}

.navbar-nav a {
  font-weight: 650;
  font-size: 18px;
  color: #111;
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
}

/* === Underline Hover Effect === */
.navbar-nav>li>a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 3px;
  background-color: #0067da;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease-in-out;
}

.navbar-nav>li>a:hover::after,
.navbar-nav>li:hover>a::after {
  width: 100%;
}

.navbar-nav>li>a:hover {
  color: #0067da;
}

.navbar-nav .fa-chevron-down {
  font-size: 10px;
  margin-left: 5px;
}

/* === Dropdown === */
.nav-item-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 150%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 0;
  width: 250px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
}

.nav-item-dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  top: 100%;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  font-weight: 600;
  color: #111;
  display: block;
  padding: 10px 15px;
  font-size: 15px;
  line-height: 1.4;
  transition: all 0.2s ease-in-out;
}

.dropdown-menu a:hover {
  color: #0067da;
  background-color: #fafafa;
  border-top: 0.2px solid #d6e5f5;
  padding-top: 9px;
}

.dropdown-menu li:first-child a:hover {
  border-top: none;
  padding-top: 10px;
}

/* === Sticky Navbar === */
.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 0px 0 !important;
  transition: all 0.4s ease;
}

/* =========================
   HERO / BANNER SECTION
========================= */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  overflow: hidden;
  padding-bottom: 120px;
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 1.2s ease-in-out, opacity 1.2s ease-in-out;
}

.hero-banner.active {
  opacity: 1;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.15);
  }
}

/* Apply animation only when slide is active */
.hero-banner.active .hero-bg img {
  animation: zoomIn 6s ease-in-out forwards;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(70%);
}

/* Optional gradient overlay */
.hero-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

/* === Content Layout === */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 5%;
  flex-wrap: wrap;
}

.left-content {
  max-width: 55%;
}

.right-content {
  max-width: 35%;
}

/* === Tagline === */
.tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #29b9ed;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.tagline i {
  color: #29b9ed;
}

/* === Headline === */
.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* === Highlights === */
.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 0.95rem;
  color: #c6dce7;
}

.highlights .dot {
  width: 8px;
  height: 8px;
  background: #c6dce7;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

/* === Right Content === */
.right-content p {
  color: #f2f2f2;
  font-size: 1rem;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

/* === CTA Button === */
.cta-btn {
  background: #0d214f;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #29b9ed;
  transform: translateY(-3px);
}

/* === Dots Navigation === */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dots span {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-dots span.active {
  background: #007bff;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 992px) {
  .hero-banner {
    height: 60vh;
    padding-top: 60px;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .left-content,
  .right-content {
    max-width: 100%;
  }

  .cta-btn {
    padding: 10px 22px;
  }
}

/* === Mobile Header Toggle === */
.mobile-toggle {
  display: none !important;
  background: none;
  border: none;
  font-size: 24px;
  color: #111;
  cursor: pointer;
  padding: 5px;
  order: 2;
}

@media (max-width: 991px) {
  .header-top {
    padding: 10px 0 !important;
  }

  .header-top .container {
    flex-direction: column !important;
    gap: 15px !important;
    text-align: center;
  }

  .text-resizer {
    position: static !important;
    justify-content: center;
    margin-bottom: 10px;
  }

  .contact-info-left {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .contact-info-left a,
  .contact-info-left span {
    margin-right: 0 !important;
    font-size: 12px;
  }

  .main-nav {
    padding: 10px 0 !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 35px;
    height: 35px;
    order: 2;
    margin-left: auto;
    /* Push to right */
  }

  .navbar-brand {
    order: 1;
  }

  .navbar-brand img {
    height: 50px !important;
    /* Smaller logo on mobile */
    width: auto !important;
  }

  .navbar-nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column !important;
    padding: 10px 0 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    gap: 0 !important;
  }

  .navbar-nav.active {
    display: flex !important;
  }

  .navbar-nav>li {
    margin: 0 !important;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .navbar-nav>li>a {
    padding: 12px 20px !important;
    width: 100%;
    display: block;
    font-size: 16px !important;
  }

  .nav-item-dropdown .dropdown-menu {
    position: static !important;
    display: none;
    opacity: 1 !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 20px !important;
    background: #f9f9f9 !important;
    transform: none !important;
  }

  .nav-item-dropdown.active .dropdown-menu {
    display: block !important;
  }

  .navbar-nav .dropdown-chevron {
    margin-top: 5px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

  }
}

/* ---------------- Home Aboutus Section ---------------------- */
.about-pro {
  position: relative;
  padding: 85px 0;
  background: linear-gradient(135deg, #f9fbff 0%, #eef3ff 100%);
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.about-pro .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 70px;
  /* align-items: center; */
}

/* ---------- IMAGE ---------- */
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 1s ease;
}

.about-image:hover img {
  transform: scale(1.08);
}

.about-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(37, 99, 235, 0.4), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

/* Floating Stats */
.floating-stats {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  gap: 15px;
  z-index: 2;
}

.stat-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  background: #2563eb;
  color: #fff;
}

.stat-box h3 {
  font-size: 1.8rem;
  color: #2563eb;
}

.stat-box p {
  font-size: 0.9rem;
  color: #334155;
}

/* 🧩 Fix for hover text color */
.stat-box:hover h3,
.stat-box:hover p {
  color: #fff;
}


/* Floating Badge */
.floating-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: #2563eb;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

/* ---------- TEXT ---------- */
.about-text .mini-tag {
  background: linear-gradient(135deg, #29b9ed, #2563eb);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-text h2 {
  color: #0f172a;
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.3;
}

.about-text p {
  color: #475569;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ---------- FEATURES ---------- */
.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-item i {
  font-size: 1.5rem;
  color: #2563eb;
  background: #e0ebff;
  padding: 12px;
  border-radius: 12px;
}

.feature-item h4 {
  margin: 0;
  font-size: 20px;
  color: #0f172a;
}

.feature-item p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 18px;
}

/* ---------- CTA ---------- */
.cta-row {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  border: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #2563eb;
  color: #fff;
}

/* ---------- Floating Shape ---------- */
.floating-shape {
  position: absolute;
  bottom: -100px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, #2563eb22 0%, transparent 70%);
  animation: floatShape 8s ease-in-out infinite alternate;
}

@keyframes floatShape {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-40px);
  }
}

/* ---------- Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .about-image img {
    height: 350px;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .floating-stats {
    flex-direction: column;
  }
}





.loan-process-section {
  background: #f8faff;
  padding: 100px 20px;
}

.loan-process-section .container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
}

/* ===== LEFT SIDE ===== */
.process-left {
  flex: 1;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 20px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
}

.process-step:hover,
.process-step.active {
  border-left: 5px solid #004aad;
  background: #eef4ff;
  transform: translateX(5px);
}

.process-step .icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6edff;
  border-radius: 10px;
}

.process-step .icon i {
  font-size: 22px;
  color: #004aad;
}

.process-step .text {
  flex: 1;
}

.process-step h4 {
  font-size: 1.05rem;
  color: #002855;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* ===== RIGHT SIDE ===== */
.process-right {
  flex: 1;
  min-width: 340px;
}

.process-right .tag {
  display: inline-block;
  background: linear-gradient(135deg, #29b9ed, #2563eb);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.process-right h2 {
  font-size: 2rem;
  color: #002855;
  margin-bottom: 20px;
}

.process-right p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 35px;
}

.process-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: scale(1.02);
}

.process-card img {
  width: 50%;
  object-fit: cover;
  height: 100%;
}

.process-info {
  padding: 25px;
  flex: 1;
}

.process-info h4 {
  color: #002855;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.process-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-info ul li {
  display: flex;
  align-items: center;
  color: #333;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.process-info ul li i {
  color: #004aad;
  margin-right: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .loan-process-section .container {
    flex-direction: column;
  }

  .process-card {
    flex-direction: column;
  }

  .process-card img {
    width: 100%;
  }
}






/* FULL WIDTH SECTION */
.benefits-section {
  width: 100%;
  padding: 40px 0 90px !important;
  background: #fff;
  text-align: center;
}

/* CENTERED INNER CONTAINER */
.benefits-container-block {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px;
  display: block;
  width: 100%;
}

/* HEADER */
.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-subtitle {
  background: linear-gradient(135deg, #29b9ed, #2563eb);
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.benefits-title {
  font-size: 45px;
  font-weight: 700;
  color: #002855;
  line-height: 1.2;
  margin-bottom: 40px;
}

/* MAIN TWO COLUMN LAYOUT */
.benefits-row {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

/* LEFT SIDE CARDS */
.benefits-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  flex: 1.2;
}

/* CARD STYLE */
.benefit-card {
  overflow: hidden;
  position: relative;
  transition: transform .4s ease;
  transition: .3s;
  text-align: left;
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .6s ease, opacity .6s ease, filter .6s ease;
}

.benefit-card h3 {
  font-size: 25px;
  color: #002855;
  margin-bottom: 8px;
}

.benefit-card p {
  color: #6b7280;
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  line-height: 1.3;
}

.arrow-link {
  font-size: 30px;
  font-weight: 600;
  color: #002855;
}

/* RIGHT SIDE BOX */
.benefits-right {
  flex: 1;
  padding: 45px 40px;
  border-radius: 18px;
  color: #fff;
  text-align: left;
  background: linear-gradient(rgba(10, 47, 96, 0.92),
      /* overlayColor + opacity */
      rgba(10, 47, 96, 0.92)),
    url("../images/about2.png");
  /* <-- Replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* RIGHT SIDE TAB CONTENT TYPOGRAPHY IMPROVEMENT */
.benefits-right h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: 1px;
}

.benefits-right p {
  font-size: 17px;
  line-height: 1.6;
  color: #e7ecf3;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.benefits-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  font-size: 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8f1f8;
  letter-spacing: 1px;
}

.benefits-list li i {
  color: #ffffff;
  font-size: 18px;
}


.benefits-right ul li {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #e8f1f8;
  letter-spacing: 1px;
  line-height: 1.8;
}

/* Make emojis/icons align properly */
.benefits-right ul li::before {
  content: "";
}

/* TABS */
.tab-buttons {
  display: flex;
  background: #fff;
  border-radius: 45px;
  padding: 4px;
  margin-bottom: 18px;
}

.tab {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  color: #0f4a3c;
}

.tab.active {
  background: linear-gradient(90deg, #3c8fbf, #0d4294);
  color: #fff;
  outline: none;
}

.tab-content {
  display: none;
  opacity: 0;
  transition: opacity .28s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
}


/* RESPONSIVE FIXES */
@media (max-width: 992px) {
  .benefits-row {
    flex-direction: column;
  }

  .benefits-left {
    grid-template-columns: 1fr;
  }

  .benefits-right {
    margin-top: 30px;
  }
}

/* ==============================================================
   Have A Project SECTION
   ============================================================== */


.project-contact-sec {
  width: 100%;
  background: url("../images/banner/banner2.png") center/cover no-repeat;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  color: #fff;
}

/* Dark Overlay */
.project-contact-sec .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}

/* Content Wrapper */
.project-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
}

/* Left Content */
.project-left h2 {
  font-size: 40px !important;
  font-weight: 700 !important;
  line-height: 1.2;
  margin-top: 10%;
}

.project-left p {
  font-size: 18px;
  margin-top: 20px;
  max-width: 620px;
  opacity: 0.95;
  line-height: 1.6;
  letter-spacing: 1px;
}

/* Stats */
.stats-row {
  display: flex;
  gap: 100px;
  margin-bottom: 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-item h3 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  /* Add spacing between number & label */
}

.stat-item span {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 4px;
  letter-spacing: 1px;
}

/* Contact Circle */
.contact-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #29b9ed;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform .3s ease;
}

.contact-circle span {
  font-size: 36px;
  font-weight: 800;
}

.contact-circle:hover {
  transform: scale(1.08) rotate(4deg);
}

/* Responsive */
@media (max-width: 992px) {
  .project-container {
    flex-direction: column;
    text-align: center;
  }

  .stats-row {
    justify-content: center;
  }

  .contact-circle {
    margin-top: 50px;
  }
}



/* ==============================================================
   EMI CALCULATOR SECTION
   ============================================================== */


.emi-calculator-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
  position: relative;
  overflow: hidden;
}

.emi-calculator-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #2563eb22, transparent);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

.emi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.glass-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.15);
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
}

.section-tag {
  background: linear-gradient(135deg, #29b9ed, #2563eb);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 12px;
}

.calc-form-wrapper h3,
.calc-result-wrapper h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin: 16px 0 12px;
}

.calc-form-wrapper p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Input Groups */
.input-group {
  margin-bottom: 28px;
}

.input-group label {
  display: block;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.input-group input[type="number"] {
  width: 93%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s;
  background: #fff;
}

.input-group input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

/* Range Slider */
.range-slider {
  margin-top: 10px;
  position: relative;
}

.range-slider input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  outline: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #2563eb;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.range-value {
  position: absolute;
  right: 40px;
  top: -40px;
  font-size: 0.9rem;
  color: #2563eb;
  font-weight: 600;
}

/* Tenure Tabs */
.tenure-tabs {
  display: flex;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 10px;
}

.tenure-btn {
  flex: 1;
  padding: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.tenure-btn.active {
  background: #2563eb;
  color: #fff;
}

/* Calculate Button */
.calc-btn {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #29b9ed);
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  margin-top: 10px;
}

.calc-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Result Box */
.result-box {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.result-box.active {
  opacity: 1;
  transform: translateY(0);
}

.result-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.result-item:last-child {
  border-bottom: none;
}

.result-item span:first-child {
  color: #64748b;
  font-weight: 500;
}

.result-item strong {
  color: #0f172a;
  font-size: 1.3rem;
  font-weight: 700;
}

/* Chart */
.chart-container {
  margin: 30px 0;
  height: 200px;
  position: relative;
}

/* Apply Button */
.btn-primary.small {
  display: inline-flex;
  padding: 12px 24px;
  font-size: 0.95rem;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .emi-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .calc-form-wrapper,
  .calc-result-wrapper {
    padding: 30px;
  }
}

@media (max-width: 576px) {

  .calc-form-wrapper h3,
  .calc-result-wrapper h3 {
    font-size: 1.5rem;
  }

  .tenure-tabs {
    flex-direction: column;
  }
}





/* ==============================================================
   CASE STUDIES – EXACT FINAL DESIGN (BLUE BADGE + GRADIENT TEXT)
   ============================================================== */
.case-studies-slider {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

/* Shapes Container */
.shapes-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  /* Above background, below content */
}

/* Individual Shapes */
.shape {
  position: absolute;
  animation: float 20s infinite ease-in-out;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
}

.shape-blob {
  width: 500px;
  height: 500px;
  top: -20px;
  left: -20px;
  animation-duration: 28s;
}

.shape-hex {
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: -80px;
  animation-duration: 32s;
  animation-delay: 4s;
}

.shape-circles {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -100px;
  animation-duration: 24s;
  animation-delay: 8s;
}

/* Floating Animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
  }

  25% {
    transform: translateY(-30px) translateX(20px) rotate(5deg) scale(1.05);
  }

  50% {
    transform: translateY(20px) translateX(-15px) rotate(-3deg) scale(0.98);
  }

  75% {
    transform: translateY(-20px) translateX(-10px) rotate(8deg) scale(1.03);
  }
}

/* Header */
.cs-header.new-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
  flex-wrap: wrap;
}

.cs-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Badge */
.cs-badge {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  white-space: nowrap;
  align-self: flex-start;
}

/* Title Wrapper */
.cs-title-wrapper {
  text-align: left;
}

.cs-title-wrapper h2,
.cs-title-wrapper h3 {
  font-size: 45px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}

.cs-title-wrapper h3 {
  margin-top: 8px;
}

.highlight {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  font-weight: 700;
}

/* Arrows */
.cs-nav {
  display: flex;
  gap: 12px;
  align-self: center;
}

.nav-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0d214f;
  border: 2px solid #e5e7eb;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nav-arrow:hover {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
  transform: scale(1.1);
}

/* Slider */
.cs-slider {
  overflow: hidden;
  border-radius: 20px;
}

.cs-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cs-slide {
  min-width: 100%;
  position: relative;
}

.cs-slide.clone {
  visibility: hidden;
}

.cs-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
}

.cs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transition: filter 0.4s;
}

.cs-slide:hover .cs-image img {
  filter: brightness(0.7);
}

.cs-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 9rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 1;
}

.cs-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.cs-text h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #0f172a;
  font-weight: 700;
}

.cs-text p {
  margin: 6px 0 0;
  font-size: 0.9rem;
  color: #64748b;
}

.cs-link {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.cs-link:hover {
  background: #3b82f6;
  transform: translateY(-4px);
}

.cs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.cs-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(-30deg, #3f67c6, #0d214f);
  transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 992px) {
  .cs-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .cs-title-wrapper h2,
  .cs-title-wrapper h3 {
    font-size: 2.2rem;
  }

  .cs-image {
    height: 400px;
  }

  .cs-number {
    font-size: 7rem;
  }
}

@media (max-width: 576px) {

  .cs-title-wrapper h2,
  .cs-title-wrapper h3 {
    font-size: 1.8rem;
  }

  .cs-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px;
  }

  .cs-content h3 {
    font-size: 1.3rem;
  }

  .cs-image {
    height: 300px;
  }
}






/* ==============================================================
   TESTIMONIALS – HORIZONTAL AUTO-SCROLL (OVERFLOW HIDDEN)
   ============================================================== */
.testimonials-stack {
  padding: 100px 0 50px;
  background: #0f172a;
  position: relative;
  overflow: hidden;
  color: #e2e8f0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Title */
.ts-title {
  text-align: center;
  margin-bottom: 60px;
}

.ts-title h2 {
  font-size: 40px !important;
  font-weight: 700 !important;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 12px;
}

.ts-title .highlight {
  background: linear-gradient(135deg, #2b5aa9, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ts-title .subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Carousel */
.ts-carousel {
  position: relative;
  overflow: hidden;
}

.ts-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease-in-out;
}

.ts-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ts-dots {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 10px;
  gap: 12px;
}

.ts-dot {
  width: 10px;
  height: 10px;
  background: #64748b;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ts-dot.active {
  background: #3b82f6;
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.25);
}



/* Card */
.quote-card {
  min-width: 380px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  flex: 0 0 380px;
  margin-right: 0;
  border-radius: 24px;
}

.quote-card.clone {
  visibility: visible;
}

/* Hover Effect */
.quote-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.quote-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 5rem;
  color: rgb(255 255 255 / 70%);
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #e2e8f0;
  margin: 40px 0 24px 0;
  padding-left: 10px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.quote-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #3b82f6;
}

.quote-author h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.quote-author span {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Horizontal Scroll */
@keyframes scrollHorizontal {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .quote-card {
    min-width: 320px;
  }

  .ts-title h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .ts-track {
    gap: 16px;
    animation-duration: 15s;
  }

  .quote-card {
    min-width: 280px;
    padding: 24px;
  }

  .quote-text {
    font-size: 1rem;
    margin: 32px 0 16px;
  }
}





/* ==============================================================
   FAQ SECTION – IMAGE TALLER + FAQ #1 OPEN BY DEFAULT
   ============================================================== */
.faq-wrapper {
  padding: 50px 0 100px;
  background: #0f172a;
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.faq-container {
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  /* Changed: stretch to fill height */
  gap: 90px;
  padding: 0 30px;
}

/* IMAGE – TALLER & FULL HEIGHT */
.faq-image {
  position: relative;
  flex: 1;
  min-height: 600px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .faq-image:hover img {
  transform: scale(1.08);
} */

/* Overlay + Glow removed */
.faq-overlay {
  display: none;
}

/* Animated Blob removed */
.faq-shape {
  display: none;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(50px, -50px) rotate(12deg);
  }
}

/* FAQ Box */
.faq-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-box h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.faq-box h2 span {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

/* SEARCH – FULL WIDTH */
.faq-search {
  position: relative;
  margin-bottom: 24px;
  display: none;
}

.faq-search input {
  width: 90%;
  /* Fixed: was 90% */
  padding: 14px 20px 14px 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: #fff;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.faq-search input::placeholder {
  color: #94a3b8;
}

.faq-search input:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.faq-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #60a5fa;
  font-size: 1.1rem;
}

/* Tabs */
.faq-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.tab {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab:hover {
  background: rgba(96, 165, 250, 0.15);
  border-color: #60a5fa;
  color: #fff;
}

.tab.active {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 15px 35px rgba(96, 165, 250, 0.2);
  transform: translateY(-6px);
}

.faq-item:focus-within {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

/* Question */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 28px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #e2e8f0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #fff;
}

.faq-question[aria-expanded="true"] {
  color: #fff;
}

/* Icon */
.faq-icon {
  font-size: 1.6rem;
  font-weight: 300;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #60a5fa;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 28px 28px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #cbd5e1;
}

/* Active State – OPEN BY DEFAULT */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 28px;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
    gap: 60px;
    padding: 0 20px;
  }

  .faq-image {
    min-height: 400px;
    /* Still tall on tablet */
  }

  .faq-box h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .faq-search {
    margin-bottom: 20px;
  }

  .faq-tabs {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .faq-image {
    min-height: 300px;
  }

  .faq-box h2 {
    font-size: 2.1rem;
  }

  .faq-question {
    font-size: 1.05rem;
    padding: 18px 20px;
  }
}




/* 
.branch-modern {
  background: #eaf2ff;
  padding: 90px 0;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.branch-wrapper {
  width: 90%;
  margin: auto;
}

.branch-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.branch-header p {
  font-size: 20px;
  color: #333;
}

.branch-header p span {
  color: #2c63ff;
  font-weight: 600;
}

.branch-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
}

.branch-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 18px;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.branch-card:hover {
  transform: translateY(-8px);
}

.branch-icon {
  width: 45px;
  height: 45px;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 15px;
}

.red { background: #ff3b30; }
.yellow { background: #ffcc00; }
.blue { background: #007bff; }
.green { background: #28c76f; }

.branch-card h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #111;
}

.branch-card p {
  font-size: 15px;
  color: #666;
}

/* RESPONSIVE 
@media (max-width: 600px) {
  .branch-header h2 { font-size: 28px; }
} */



.branch-simple {
  padding: 90px 0;
  background: #f8faff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.branch-center {
  max-width: 650px;
  margin: auto;
}

.branch-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.branch-desc {
  font-size: 20px;
  color: #475569;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* BOX */
.branch-single-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 18px;
  max-width: 380px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: 0.3s;
}

.branch-single-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* ICON */
.branch-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #2563eb;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
}

.branch-icon i {
  font-size: 28px;
  color: #fff;
}

.branch-single-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0f172a;
}

.small-text {
  color: #6b7280;
  font-size: 15px;
  margin-bottom: 20px;
}

/* BUTTON */
.branch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2563eb;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.branch-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 600px) {
  .branch-title {
    font-size: 26px;
  }

  .branch-single-box {
    padding: 30px 20px;
  }
}



/* Floating Social Bar */
.social-floating-bar {
  position: fixed;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.s-icon {
  width: 42px;
  height: 42px;
  background: #aeb0b3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.s-icon:hover {
  transform: translateX(-6px);
  background: #2563eb;
}

/* -------------------------------------------------
   FOOTER – GLOBAL
------------------------------------------------- */
.logo_site {
  background-color: white;
  padding: 10px;
  border-radius: 10px;
}


.site-footer {
  background: #0a1d37;
  /* dark navy from your header */
  color: #e0e7ff;
  font-family: 'Inter', sans-serif;
  /* match your site font */
  padding-top: 3rem;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* -------------------------------------------------
   COLUMNS
------------------------------------------------- */
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: .6rem;
}

.footer-col a {
  color: #b3c1ff;
  text-decoration: none;
  transition: color .2s;
}

.footer-col a:hover {
  color: #4e8cff;
}

/* Brand column */
.brand-col .footer-logo img {
  height: 40%;
  width: 65%;
}

.footer-tagline {
  margin: 1rem 0 1.5rem;
  font-size: .95rem;
  line-height: 1.5;
}

/* Social icons */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .1);
  border-radius: 50%;
  margin-right: .5rem;
  color: #fff;
  font-size: .9rem;
  transition: background .3s;
}

.footer-social a:hover {
  background: #ffffff;
}

/* Branches */
.branch-list li {
  display: flex;
  align-items: center;
  font-size: .95rem;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: .6rem;
}

.dot.red {
  background: #ff5c5c;
}

.dot.yellow {
  background: #ffd60a;
}

.dot.blue {
  background: #4e8cff;
}

.dot.green {
  background: #34c759;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  margin-top: .8rem;
}

.newsletter-form input {
  flex: 1;
  padding: .65rem 1rem;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: .95rem;
}

.newsletter-form button {
  background: #4e8cff;
  color: #fff;
  border: none;
  padding: 0 1.2rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 600;
  transition: background .2s;
}

.newsletter-form button:hover {
  background: #357af6;
}

/* -------------------------------------------------
   BOTTOM BAR
------------------------------------------------- */
.footer-bottom {
  background: #07152b;
  padding: 1rem 0;
  margin-top: 2.5rem;
  font-size: .9rem;
}

.footer-bottom .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-legal a {
  color: #b3c1ff;
  margin: 0 .4rem;
}

.footer-legal a:hover {
  color: #fff;
}

/* -------------------------------------------------
   RESPONSIVE
------------------------------------------------- */
@media (max-width: 768px) {
  .footer-bottom .footer-container {
    flex-direction: column;
    text-align: center;
    gap: .5rem;
  }
}



/* ===== BRANCH LOCATIONS ===== */
.contact-branches {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-branches-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.contact-section-title h2 {
  font-size: 40px;
  color: #0f172a;
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-section-title p {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
}

.contact-branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-branch-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-branch-card:hover {
  border-color: #0067da;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.15);
}

.contact-branch-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0067da, #0d214f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #fff;
}

.contact-branch-card h3 {
  font-size: 20px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-branch-address,
.contact-branch-phone {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 15px;
}

.contact-branch-address i,
.contact-branch-phone i {
  color: #0067da;
  margin-right: 8px;
}

.contact-branch-btn {
  display: inline-block;
  background: transparent;
  color: #0067da;
  border: 2px solid #0067da;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-branch-btn:hover {
  background: #0067da;
  color: #fff;
  transform: scale(1.05);
}

/* === Scroll To Top Button === */
#scrollToTopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 20px;
  /* Place the button at the bottom of the page */
  right: 20px;
  /* Place the button 20px from the right */
  z-index: 999;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: #0d214f;
  /* Set a background color */
  color: white;
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 15px;
  /* Some padding */
  border-radius: 50%;
  /* Rounded corners */
  font-size: 18px;
  /* Increase font size */
  transition: all 0.3s ease-in-out;
  /* Smooth transition */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* Subtle shadow for depth */
}

#scrollToTopBtn:hover {
  background-color: #29b9ed;
  /* Add a dark-grey background on hover */
  transform: translateY(-5px);
  /* Lift button slightly */
}

#scrollToTopBtn i {
  color: #fff;
}



/* =========================
   POPUP MODAL
========================= */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: #fff;
  width: 90%;
  max-width: 850px;
  border-radius: 12px;
  position: relative;
  padding: 30px 20px 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.popup-overlay.active .popup-content {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1;
}

.popup-close:hover {
  color: #ff4d4d;
}

.popup-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #eee;
}

.popup-btn {
  display: inline-block;
  background: #0d214f;
  color: #fff !important;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
}

.popup-btn:hover {
  background: #29b9ed;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(41, 185, 237, 0.4);
}