


    html, body {
  width: 100%;
  overflow-x: hidden;
}

/* CSS for section section:TopBar */
.top-bar {
  background: linear-gradient(90deg, #2563eb 0%, #1e3a8a 100%);
  color: white;
  /* padding: 10px 0; */
  font-size: 14px;
}
.top-bar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar__contact {
  display: flex;
  gap: 24px;
  align-items: center;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar__socials {
  display: flex;
  gap: 0px;
}
.social-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .top-bar__content {
    flex-direction: column;
    gap: 10px;
  }
  .top-bar__contact {
    flex-direction: column;
    gap: 5px;
  }
}
a{
  text-decoration: none !important;
}
/* CSS for section section:Header */
.site-header {
  background: white;
  padding: 10px 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  position: relative;
  z-index: 100;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 75px;
  width: auto;
}
.main-nav ul {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-weight: 500;
  color: var(--text-gray);
  text-decoration: none;
}
.main-nav a.active, .main-nav a:hover {
  color: var(--text-dark);
  font-weight: 600;
}
@media (max-width: 992px) {
  .main-nav { display: none; }
}

.main-header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s;
        }

        .main-header.scrolled {
            padding: 5px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

/*top-bar css starts*/
.top-bar1 {
      background-color:#fff;  /* Dark Blue */
      color:#1f4074;
      font-family: Arial, sans-serif;
      font-size: 13px;
      text-align: center;
      padding: 10px 0;
      text-transform: uppercase;
    }

    .top-bar1 span {
      display: inline-block;
      margin: 0 10px;
    }

    .dot1 {
      color: #1f4074;
      margin: 0 8px;
    }
    .top-bar1 a{
        color:#1f4074;
        font-weight:600;
    }
    @media (max-width:992px){
        .top-bar1{
            display:none;
        }
    }
/* CSS for section section:Hero */
.hero-section {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #f0fdfa 100%);
  padding: 80px 0;
  /* overflow: hidden; */
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.hero-content p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 540px;
}

.social-icon {
  /* width: 42px;
  height: 42px; */
  background: #2f56b0;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  font-size: 16px;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: #1e3a8a;
}


dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
}
.btn{
  color: #fff;
}
.btn:hover{
  color: #fff;
}

.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
      top: 250%;
    left: -63px;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  display: none !important;
  z-index: 1000;
}
/* ===== Header Base ===== */
.site-header {
  background: #fff;
  position: relative;
  z-index: 1000;
}
.dropdown-menu{
  display: none !important;
}

.nav-item:hover .dropdown-menu{
  display: block !important;
}


/* Mobile Header Adjustments */
@media (max-width: 992px) {

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
  }

  .main-nav .nav-link {
    padding: 10px 0;
  }

  .header-cta {
    display: none;
  }

  .dropdown-menu {
    position: static;
    float: none;
  }
}



.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #333;
  margin: 5px 0;
}

/* ===== Desktop Menu ===== */
.main-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 244%;
  left: -50px;
  background: #fff;
  min-width: 188px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: none;
  list-style: none;
}

.has-submenu.open .submenu {
  display: block !important;
}

/* ===== MOBILE MENU (≤ 992px) ===== */
@media (max-width: 992px) {

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    padding: 80px 20px;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .submenu {
    position: static;
    box-shadow: none;
    display: none;
    padding-left: 15px;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .header-cta {
    display: none;
  }
}


.submenu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

.submenu li a:hover {
  background: #f1f5ff;
  color: #2563eb;
}

.has-submenu.open .submenu {
  display: block;
}

.hero-form {
  background: white;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
  max-width: 500px;
}
.form-group {
  flex: 1;
  padding: 0 16px;
}
.form-group label {
  display: block;
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 4px;
}
.select-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}
.hero-badge {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.badge-content {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.badge-content img {
  width: 48px;
  height: 48px;
}
.rating {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stars {
  display: flex;
  gap: 2px;
}
.image-wrapper {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle-bg {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}
.circle-bg.blue 
{     width: 187px;
    height: 187px;
    background: #7bbff7;
    top: -13%;
    left: -108%;
    transform: rotate(0deg);
    /* border-radius: 5%;*/
 }
.circle-bg.yellow {width: 200px;height: 200px;background: #fdb913;top: 10%;right: -54px;}
.circle-bg.teal {width: 200px;height: 200px;background: #0d7c7c;bottom: 10%;right: 70%;}
.main-img {
 position: relative;
    z-index: 2;
    /* border-radius: 24px; */
    max-height: 100%;
    border-top-left-radius: 200px;
    border-bottom-right-radius: 200px;
}
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content h1 { font-size: 40px; }
  .hero-form { margin: 0 auto 40px; }
  .hero-badge { align-items: center; }
  .image-wrapper { height: 400px; }
}

/* CSS for section section:About */
.about-overseas-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f0fdfa 0%, #eff6ff 100%);
}

/* Layout */
.about-overseas-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Images */
.about-overseas-img-stack {
  position: relative;
}

.about-overseas-main-img {
  width: 100%;
  border-radius: 16px;
}

.about-overseas-logo-overlay {
  position: absolute;
  bottom: 69%;
  background: #ffffff00;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
}

.about-overseas-logo-overlay img {
  width: 100%;
}

/* Text */
.about-overseas-subtitle {
  color: var(--primary-blue);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.about-overseas-title {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.about-overseas-description {
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Features */
.about-overseas-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-overseas-feature {
  display: flex;
  gap: 20px;
}

.about-overseas-feature-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-overseas-feature-text h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-overseas-container {
    grid-template-columns: 1fr;
  }

  .about-overseas-images {
    order: 2;
    margin-top: 40px;
  }
}


/* CSS for section section:Services */
.services-section {
  padding: 60px 0;
  background: white;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}
.service-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-img {
  height: 200px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-content {
  padding: 24px;
  position: relative;
}
.service-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  margin-top: -50px; /* Pull up to overlap image slightly or just sit nicely */
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.service-content h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

/* CSS for section section:WhyChoose */
.why-loans-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #eff6ff 0%, #f0fdfa 100%);
}

/* Header */
.why-loans-header {
  text-align: center;
  margin-bottom: 40px;
}

.why-loans-title {
  font-size: 36px;
  font-weight: 700;
}

.why-loans-subtitle {
  font-size: 16px;
  color: #4b5563;
}

/* Grid */
.why-loans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

/* Content */
.why-loans-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.why-loans-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(253, 185, 19, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-loans-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.why-loans-text p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.5;
}

/* Image */
.why-loans-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .why-loans-grid {
    grid-template-columns: 1fr;
  }

  .why-loans-image {
    order: -1;
  }
}
.stats-bar { background: linear-gradient(90deg, #1E40AF 0%, #1D4ED8 100%); /* border-radius: 24px; */ padding: 15px 40PX; display: flex; justify-content: space-around; color: white; text-align: center; } .stat-item h3 { font-size: 48px; margin-bottom: 8px; } .stat-item p { color: #93c5fd; font-weight: 500; } @media (max-width: 992px) { .features-grid { grid-template-columns: 1fr; } .choose-image { order: -1; } .stats-bar { flex-direction: column; gap: 30px; } }

/* CSS for section section:WorkProcess */
.edu-process-section {
  padding: 36px 0 0;
  background: #ffffff;
  overflow: hidden;
}

/* Header */
.edu-process-subtitle {
  font-weight: 600;
}

.edu-process-title {
  font-size: 36px;
  font-weight: 700;
}

.edu-process-description {
  font-size: 16px;
  color: #4b5563;
}

/* Cards */
.edu-process-card {
  padding: 20px;
}

/* Icon Circle */
.edu-process-icon {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.edu-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px;
  border-radius: 50%;
}

/* Step Number */
.edu-step-number {
  background-color: #000;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0px auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Text */
.edu-step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.stup-n{
  padding:0 0 0 30px;
}
.edu-step-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Color Variants */
.edu-blue { border-color: #2563EB; }
.edu-yellow { border-color: #FDB913; }
.edu-green { border-color: #16A34A; }
.edu-violet { border-color: #C084FC; }

/* Row spacing fix */
.edu-process-row {
  margin-left: -30px;
  margin-right: -30px;
}

@media (max-width: 550px) {
  .edu-process-row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .edu-step-number {
    display: none;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .edu-process-section {
    height: auto;
  }

  .edu-process-icon {
    width: 220px;
    height: 220px;
  }
}


/* CSS for section section:Advantage */
.advantage-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #eef2ff 0%, #f0fdfa 100%);
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}
.tab-btn {
  padding: 12px 30px;
  border: 1px solid transparent;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-gray);
}
.tab-btn.active {
  border-bottom: 2px solid var(--secondary-teal);
  color: var(--secondary-teal);
}
.advantage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.advantage-img img {
  border-radius: 16px;
}
.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.adv-item {
  text-align: center;
}
.adv-icon {
  width: 60px;
  height: 60px;
  background: #f0fdfa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
@media (max-width: 992px) {
  .advantage-content {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Partners */
.partners-section {
  padding: 60px 0;
  background: white;
  text-align: center;
}
.divider {
  height: 1px;
  background: #e5e7eb;
  width: 100px;
  margin: 20px auto 40px;
}
.partners-logos img {
  margin: 0 auto;
}

/* CSS for section section:Testimonials */
.testimonials-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #eef2ff 100%);
}
.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 60px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.client-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.client-details h4 { font-size: 20px; margin-bottom: 4px; }
.client-details p { font-size: 14px; }
.stars { margin-left: auto; display: flex; gap: 4px; }
.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 40px;
}
.testimonial-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}
.nav-btn {
  background: none;
  border: none;
  color: var(--secondary-teal);
  font-weight: 600;
  cursor: pointer;
}
.dots { display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; background: #d1d5db; border-radius: 50%; }
.dot.active { background: var(--secondary-teal); width: 30px; border-radius: 5px; }
@media (max-width: 768px) {
  .client-info { flex-direction: column; text-align: center; }
  .stars { margin: 0 auto; }
  .testimonial-card { padding: 30px; }
}

/* CSS for section section:FAQ */
.faq-section {
  padding: 60px 0;
  background: #f9fafb;
}
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.faq-item summary {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-content {
  padding: 0 20px 20px;
  color: var(--text-gray);
  border-top: 1px solid #f3f4f6;
}

/* Arrow animation */
.faq-item summary img {
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.faq-item[open] summary img {
  transform: rotate(180deg);
}

/* CSS for section section:CTA */
.cta-section {
  padding: 40px 0;
  background: linear-gradient(90deg, #1e3a8a 0%, #1e40af 100%);
  color: white;
  text-align: center;
}
.cta-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
}
.cta-content p {
  color: #dbeafe;
  margin-bottom: 40px;
  font-size: 18px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn-white {
  background: white;
  color: var(--primary-blue);
  border-radius: 9999px;
  padding: 16px 32px;
}
.btn-outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
  border-radius: 9999px;
  padding: 16px 32px;
}
@media (max-width: 768px) {
  .cta-buttons { flex-direction: column; }
}

/* CSS for section section:Footer */
.site-footer {
  background: #111827;
  color: #d1d5db;
  padding: 80px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}
.p-left{
  padding-left: 70px;
}
@media(max-width:991px){
  .p-left{
    padding-left: 1rem;
  }
}

.footer-below .design{
  display: flex;
    position: relative;
    left: 0px;
    /* padding-top: 15px; */
}

@media(max-width:550px){
  .footer-below .design{
  display: flex;
    position: relative;
    left: 133px;
    padding-top: 15px;
}
.country-item {
    background-color: #fff;
    color: var(--color-text-dark);
    padding: 16px 24px;
    border-radius: 8px;
    display: inline !important;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    width: 100% !important;
    text-align: center;
    /* justify-content: space-around; */
}
}


.footer-col ul{
      padding-left: 0rem !important;
}
.footer-logo {
  margin-bottom: 20px;
  /* filter: brightness(0) invert(1); */
  /*background-color: #fff;*/
  padding: 15px;
}
.footer-col h4 {
  color: white;
  margin-bottom: 24px;
  font-size: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer-socials a{
  color: #fff;
}
.contact-list li {
     display: block !important;
    gap: 12px;
    align-items: flex-start;
}
.contact-list span {
    padding-left: 6px;
}
.copyright {
  border-top: 1px solid #1f2937;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
  .list-unstyled {
    padding-left: 0;
    list-style: none;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 400;
    /* color: #fff !important; */
}
.list-unstyled a{
  color: #fff;
}


/* header css */

a:hover {
  text-decoration: none;
}

header .header-logo {
  color: #001b4f;
    font-weight: 700;
    font-size: 23px;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}

header {
  background: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.4);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.4);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .main-menu>li {
  position: relative;
}

header .main-menu>li>a {
  color: #173966;
  font-size: 15px;
  padding: 25px 1.5vw;
  font-weight: 700;
  display: block;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

header .main-menu>li.active>a {
  color: #10bd3b;
}

header .main-menu>li:hover>a {
  color: #10bd3b;
}

header .main-menu>li>a>i {
  color: #03328E;
}

header .main-menu>li>a:hover>i {
  color: #fff;
}

header .main-menu>li:hover>a i {
  color: #fff;
}

header .main-menu .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 180px;
  overflow: hidden;
  border-top: 2px solid #f49306;
  background: #fff;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  z-index: 5;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

header .main-menu .sub-menu a {
  padding: 11px 10px;
  display: block;
  color: #173966;
  font-weight: 600;
  font-size: 15px;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

header .main-menu .sub-menu a i {
  color: #03328E;
}

header .main-menu .sub-menu a:hover {
  background: #10bd3b;
  color: #fff;
}

header .main-menu>li:hover .sub-menu {
  display: block;
}

header .header-logo figure img {
  max-width: 200px;
}

header .demo-link {
  margin-left: 1vw;
}

header .side-menu-close {
  background: transparent;
}

header .side-menu-close span {
  background: #21395F;
  width: 28px;
}

#call-action .call-action {
  color: #001b4f;
  font-weight: 700;
  font-size: 23px;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

#call-action .call-action:hover {
  color: #10bd3b;
}

/* side menu */
.side-menu-wrap {
  width: 300px;
  position: fixed;
  left: -100%;
  top: 0;
  background: #fff;
  height: 100%;
  -webkit-box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  box-shadow: 0 1px 5px 0 rgba(83, 83, 83, 0.2);
  overflow-y: auto;
  z-index: 15000;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

.side-menu-wrap.opened {
  left: 0;
  transition: .8s;
  -webkit-transition: .8s;
  -moz-transition: .8s;
  -ms-transition: .8s;
  -o-transition: .8s;
}

.side-menu-logo {
  border-bottom: 2px solid #FE8204;
}

.side-menu-nav .main-menu>li {
  position: relative;
  border-bottom: 1px solid #ccc;
}

.side-menu-nav .main-menu>li>a>i {
  color: #03328E;
}

.side-menu-nav .main-menu .sub-menu {
  border-top: 1px solid #FE8204;
  background: #fff;
  display: none;
}

.side-menu-nav .main-menu .sub-menu li {
  border-bottom: 1px solid #eee;
}

.side-menu-nav .main-menu .sub-menu a {
  padding: 10px 22px;
  display: block;
  color: #212529;
  font-weight: 600;
  font-size: .9em;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

.side-menu-nav .main-menu .sub-menu a i {
  color: #03328E;
}

.side-menu-nav .main-menu .sub-menu~i {
  font-size: .8em;
  position: absolute;
  padding: 21px 11px;
  right: 0;
  top: 0;
  border-left: 1px solid #ccc;
}

.side-menu-nav .main-menu .sub-menu a:hover {
  background: #F5F5F5;
}

.side-menu-nav .main-menu>li>a {
  color: #212529;
  padding: 15px 30px 15px 10px;
  font-weight: 600;
  display: block;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

.side-menu-wrap .side-menu-close {
  position: absolute;
  right: 0;
  top: 0;
  height: 30px;
  width: 30px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.side-menu-close {
  height: 40px;
  width: 40px;
  background: #21395F;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.side-menu-close span {
  height: 2px;
  width: 20px;
  background: #fff;
  position: relative;
  opacity: 1;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

.side-menu-close span:nth-child(1) {
  top: -5px;
}

.side-menu-close span:nth-child(3) {
  bottom: -5px;
}

.side-menu-close.closed span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
}

.side-menu-close.closed span:nth-child(2) {
  opacity: 0;
}

.side-menu-close.closed span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
}

/*  custom overlay */
.custom-overlay {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 12500;
  visibility: hidden;
  opacity: 0;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}

.custom-overlay.show {
  visibility: visible;
  opacity: 1;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -ms-transition: .4s;
  -o-transition: .4s;
}


/* CSS for section section:Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-background-white);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  }
  
  .top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .contact-info {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .contact-item {
    /* display: flex; */
    align-items: center;
    gap: 10px;
  }
  .social-links {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-background-white);
    border-radius: 8px;
  }
  .main-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
  }
  .logo img {
    height: 50px;
  }
  .main-nav ul {
    display: flex;
    gap: 37px;
  }
  .main-nav a {
    font-size: 16px;
    color: var(--color-text-medium);
    font-weight: 500;
  }
  .main-nav a:hover {
    color: var(--color-primary);
  }

  @media (max-width: 1024px) {
    .main-nav {
      display: none; /* Simple hide for mobile, would need JS for hamburger */
    }
    .main-header-container {
      justify-content: space-between;
    }
    .top-bar-container {
      flex-direction: column;
      height: auto;
      padding: 10px 0;
      gap: 10px;
    }
  }

/* CSS for section section:About */
.section-about {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(to bottom, #edf2ff, #ffffff, #edf2ff);
  }
  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 52px;
    font-size: 16px;
    color: var(--color-text-light);
  }
  .breadcrumb a {
    color: var(--color-text-light);
  }
  /*.breadcrumb span {*/
  /*  color: var(--color-primary);*/
  /*  font-weight: 700;*/
  }
  .breadcrumb-separator {
    height: 12px;
    position: relative;
    top: 0;
    left: 0;
  }
  .about-content {
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .about-text-content {
    flex: 1;
  }
  .about-image-content {
    flex: 1;
    position: relative;
  }
  .about-image-content .main-image {
    border-radius: 24px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  .about-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
  }
  .stat-card {
    position: absolute;
    bottom: -56px;
    left: -24px;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  }
  .stat-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 9999px;
    background-color: #dbeafe;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .stat-text {
    display: flex;
    flex-direction: column;
  }
  .stat-number {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-text-dark);
  }
  .stat-label {
    font-size: 16px;
    color: var(--color-text-light);
  }

  @media (max-width: 1024px) {
    .about-content {
      flex-direction: column;
    }
    .stat-card {
      position: static;
      margin-top: 24px;
      left: 0;
    }
  }

/* CSS for section section:WhoWeAre */
.about-identity-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--color-background-white);
}

/* Layout */
.about-identity-wrapper {
  display: flex;
  align-items: center;
  gap: 64px;
}

/* Image */
.about-identity-image {
  flex: 1;
  position: relative;
}

.about-identity-main-img {
  border-radius: 24px;
  box-shadow:
    0px 20px 25px -5px rgba(0, 0, 0, 0.1),
    0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Text */
.about-identity-text {
  flex: 1;
}

.about-identity-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.about-identity-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

/* Quote Card (optional) */
.about-identity-quote {
  position: absolute;
  top: -24px;
  right: -24px;
  background-color: var(--color-primary);
  color: var(--color-text-inverted);
  border-radius: 16px;
  padding: 24px;
  width: 320px;
  box-shadow:
    0px 20px 25px -5px rgba(0, 0, 0, 0.1),
    0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.about-identity-quote-icon {
  opacity: 0.5;
  margin-bottom: 12px;
}

.about-identity-quote p {
  font-size: 16px;
  line-height: 1.5;
}

/* Features */
.about-identity-features {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.about-identity-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-identity-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background-color: #dbeafe;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-identity-feature-text {
  display: flex;
  flex-direction: column;
}

.about-identity-feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.about-identity-feature-desc {
  font-size: 14px;
  color: var(--color-text-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-identity-section {
    padding-top: 120px;
  }

  .about-identity-wrapper {
    flex-direction: column-reverse;
  }

  .about-identity-quote {
    position: static;
    width: 100%;
    margin-top: 24px;
  }
}

/* CSS for section section:OurMission */
.section-our-mission {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(to bottom, #edf2ff, #ffffff);
  }
  .our-mission-content {
    display: flex;
    align-items: center;
    gap: 64px;
  }
  .our-mission-text-content {
    flex: 1;
  }
  .our-mission-image-content {
    flex: 1;
    position: relative;
  }
  .our-mission-image-content .main-image {
    border-radius: 24px;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  }
  .mission-feature-card {
    background-color: var(--color-background-white);
    border: 1px solid var(--color-primary);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
  .mission-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    background-color: #dbeafe;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .mission-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    display: block;
  }
  .mission-feature-text p {
    color: var(--color-text-medium);
    line-height: 1.5;
  }
  .stat-card-small {
    position: absolute;
    bottom: 24px;
    right: -24px;
    background-color: var(--color-background-white);
    border: 1px solid var(--color-primary);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  }
  .stat-card-small .stat-text {
    align-items: flex-start;
  }
  .stat-card-small .stat-number {
    font-size: 24px;
  }

  @media (max-width: 1024px) {
    .our-mission-content {
      flex-direction: column;
    }
    .stat-card-small {
      position: static;
      margin-top: 24px;
      right: 0;
    }
  }

/* CSS for section section:Services */
.section-services {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--color-background-white);
  }
  .services-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .services-banner {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: -128px; /* Overlap effect */
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
  }
  .service-card {
    padding: 32px;
    border-radius: 16px;
    background: linear-gradient(to bottom, #f0f5ff, #ffffff);
    border: 1px solid #e5e7eb;
  }
  .service-icon-wrapper {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
  }
  .service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
  }
  .service-description {
    font-size: 16px;
    color: var(--color-text-medium);
    line-height: 1.6;
  }

  @media (max-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
    .services-banner {
      margin-bottom: 32px;
    }
  }


/* CSS for section section:WhyUs */
.section-why-us {
    padding: 80px 0;
    background-color: var(--color-background-white);
  }
  .why-us-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .why-us-card {
    padding: 32px;
    text-align: center;
    border: 1px solid var(--color-primary);
    border-radius: 16px;
    background: linear-gradient(to bottom, #f0f5ff, #ffffff);
  }
  .why-us-icon-wrapper {
    width: 88px;
    height: 88px;
    border-radius: 9999px;
    background-color: var(--color-background-white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  }
  .why-us-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 12px;
  }
  .why-us-card p {
    color: var(--color-text-medium);
  }
  @media (max-width: 1024px) {
    .why-us-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 768px) {
    .why-us-grid {
      grid-template-columns: 1fr;
    }
  }

/* CSS for section section:GlobalReach */
.section-global-reach {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(45deg, #1e40af, #1d4ed8);
    color: var(--color-text-inverted);
    overflow: hidden;
  }
  .global-reach-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
  }
  .global-reach-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .global-reach-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }
  .global-reach-header {
    text-align: center;
  }
  .countries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .country-item {
    background-color: #fff;
    color: var(--color-text-dark);
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
  }
  .country-item span {
    font-size: 24px;
  }
  .global-stats {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 1000px;
    text-align: center;
  }
  .global-stat-item {
    padding: 16px;
    border-radius: 16px;
    background-color: #9ac5d62e;
    flex: 1;
    margin: 0 16px;
  }
  .global-stat-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    color: #fff;
  }
  .global-stat-label {
    color: #dbeafe;
  }
  @media (max-width: 768px) {
    .global-stats {
      flex-direction: column;
      gap: 24px;
    }
  }

/* CSS for section section:Values */
.section-values {
    padding: 80px 0;
    background: linear-gradient(to bottom, #edf2ff, #ffffff);
  }
  .values-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1024px;
    margin: 0 auto;
  }
  .value-card {
    background-color: var(--color-background-white);
    border: 1px solid var(--color-primary);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
  }
  .value-card-content {
    display: flex;
    gap: 24px;
  }
  .value-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background-color: #dbeafe;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .value-text-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 16px;
  }
  .value-text-content p {
    color: var(--color-text-medium);
  }
  @media (max-width: 768px) {
    .values-grid {
      grid-template-columns: 1fr;
    }
    .value-card-content {
      flex-direction: column;
      text-align: center;
    }
    .value-icon-wrapper {
      margin: 0 auto;
    }
  }

/* CSS for section section:Cta */
.section-cta {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(45deg, #1e40af, #1d4ed8);
    color: var(--color-text-inverted);
    text-align: center;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .circle {
    position: absolute;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.1;
  }
  .circle-1 {
    width: 384px;
    height: 384px;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
  }
  .circle-2 {
    width: 384px;
    height: 384px;
    bottom: 0;
    right: 0;
    transform: translate(50%, 50%);
  }
  .cta-container {
    position: relative;
    z-index: 1;
    max-width: 896px;
  }
  .section-cta .section-title {
    color: var(--color-text-inverted);
    font-size: 48px;
  }
  .section-cta .section-text {
    color: #dbeafe;
    margin-bottom: 40px;
  }
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    /* margin-bottom: 48px; */
  }
  .btn-cta-primary {
    background-color: var(--color-background-white);
    color: var(--color-primary);
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  }
  .btn-cta-secondary {
    border: 2px solid var(--color-background-white);
    color: var(--color-text-inverted);
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 12px;
  }
  .cta-contact {
    display: flex;
    justify-content: center;
    gap: 48px;
  }
  .cta-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  @media (max-width: 768px) {
    .section-cta .section-title {
      font-size: 36px;
    }
    .cta-buttons, .cta-contact {
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
  }

/* CSS for section section:Footer */
.site-footer {
    /* background-color: var(--color-background-dark); */
    color: #d1d5db;
    padding-top: 64px;
  }
  .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 64px;
  }
  .footer-column h4 {
    color: var(--color-text-inverted);
    font-size: 20px;
    margin-bottom: 24px;
  }
  .footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer-column a:hover {
    color: var(--color-text-inverted);
  }
  .about-column .footer-logo img {
    height: 40px;
    margin-bottom: 24px;
  }
  .about-column p {
    color: #9ca3af;
    margin-bottom: 24px;
  }
  .footer-socials {
    display: flex;
    gap: 16px;
  }
  .footer-socials .social-icon {
    width: 40px;
    height: 40px;
    background-color: #1f2937;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-column ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 24px 0;
    text-align: center;
    color: #6b7280;
  }
  @media (max-width: 1024px) {
    .footer-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .about-column .footer-logo, .footer-socials {
      justify-content: center;
      margin-left: auto;
      margin-right: auto;
    }
    .contact-column ul li {
      justify-content: center;
    }
  }
  

  
    /* Reset and base styles */
    

    img {
      max-width: 100%;
      height: auto;
    }

    /* Layout components */
    .container {
      width: 100%;
      max-width: 1284px;
      margin: 0 auto;
      padding-left: 16px;
      padding-right: 16px;
    }

    .row {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .column {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .stack {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Header styles */
    .header {
      background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
      box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    }

    .header-top {
      padding: 6px 16px;
      border-bottom: 1px solid #e5e7eb;
    }

    .header-contact {
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: center;
    }

    .contact-item {
      /* display: flex; */
      /* align-items: center; */
      /* gap: 10px; */
      /* padding: 10px; */
      color: #ffffff;
      font-size: 14px;
      font-weight: 600;
    }

    .social-icons {
      display: flex;
      gap: 8px;
    }

    .icon-button {
      width: 40px;
      height: 40px;
      background-color: #ffffff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .icon-button:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .header-main {
      background-color: #ffffff;
      padding: 6px 16px;
      border-bottom: 1px solid #e5e7eb;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      width: 180px;
      height: auto;
    }

    .nav-menu {
      display: none;
      gap: 56px;
      align-items: center;
    }

    .nav-item {
      font-size: 16px;
      font-weight: 600;
      color: #374151;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .nav-item:hover {
      color: #2563eb;
    }

    .cta-button {
      background-color: #2563eb;
      color: #ffffff;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .cta-button:hover {
      background-color: #1d4ed8;
      transform: translateY(-2px);
    }

    /* Hero section */
    .loanassist-hero {
  background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);
  padding: 56px 16px;
}

.loanassist-hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

/* Breadcrumb */
.loanassist-breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  color: #4b5563;
}

.loanassist-breadcrumb a {
  color: #4b5563;
  text-decoration: none;
}

.loanassist-breadcrumb-active {
  color: #2563eb;
  font-weight: 500;
}

/* Text */
.loanassist-hero-text {
  display: flex;
  flex-direction: column;
  gap: 26px;
  text-align: center;
}

.loanassist-hero-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
}

.loanassist-hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: #374151;
}

.loanassist-hero-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #4b5563;
}

.loanassist-text-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Buttons */
.loanassist-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.loanassist-btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.loanassist-btn-secondary {
  background-color: #ffffff;
  color: #2563eb;
  padding: 16px 34px;
  border: 2px solid #2563eb;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.loanassist-btn-primary:hover,
.loanassist-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Image */
.loanassist-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.loanassist-hero-image {
  width: 100%;
  border-radius: 150px 0px 0px 150px;
}

/* Badge */
.loanassist-success-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0px 20px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
}

.loanassist-badge-icon {
  width: 48px;
  height: 48px;
  background-color: #dcfce7;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loanassist-badge-text {
  display: flex;
  flex-direction: column;
}

.loanassist-badge-number {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

.loanassist-badge-label {
  font-size: 14px;
  color: #4b5563;
}
.content-grid{
  display: flex !important;
}


    /* Content sections */
    .financial-partner-section {
  padding: 40px 16px;
}

.section-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  text-align: center;
  margin-bottom: 16px;
}


.section-subheading {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #4b5563;
  text-align: center;
  margin-bottom: 32px;
}

.grid-container {
  display: flex;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.hero-image {
  width: 100%;
  border-radius: 24px;
}

.features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: #dbeafe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-details h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.feature-details p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.5;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card {
  background-color: #f9fafb;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.card-description {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.25;
}

/* Success Badge */
.client-success-badge {
  display: flex;
  align-items: center;
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.badge-number {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 4px 0;
}


    /* Blue gradient section */
    .blue-section {
      background: linear-gradient(90deg, #2563eb 0%, #4338ca 100%);
      background-image: url('assets/images/img_img_468x1440.png');
      background-size: cover;
      background-position: center;
      padding: 80px 16px;
      color: #ffffff;
    }

    .blue-section .section-title {
      color: #ffffff;
    }

    .blue-section .section-subtitle {
      color: #dbeafe;
    }

    .advantage-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      margin-top: 48px;
    }

    .advantage-item {
      text-align: center;
    }

    .advantage-icon {
      width: 68px;
      height: 68px;
      background-color: rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
    }

    .advantage-title {
      font-size: 18px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 8px;
    }

    .advantage-description {
      font-size: 16px;
      color: #dbeafe;
      line-height: 1.5;
    }

    /* Process steps */
    .process-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .process-step {
      text-align: center;
    }

    .step-icon {
      width: 96px;
      height: 96px;
      background-color: #1e40af;
      border-radius: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
    }

    .step-content {
      background-color: #ffffff;
      padding: 22px;
      border-radius: 12px;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    .step-title {
      font-size: 20px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 10px;
    }

    .step-description {
      font-size: 14px;
      color: #4b5563;
      line-height: 1.2;
    }

   

    /* Footer */
    .footer {
      background-color: #111827;
      padding: 40px 16px;
      color: #d1d5db;
    }

    .footer-content {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }

    .footer-main {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .footer-logo {
      width: 206px;
      height: auto;
    }

    .footer-description {
      font-size: 16px;
      line-height: 1.6;
      color: #9ca3af;
    }

    .social-links {
      display: flex;
      gap: 16px;
    }

    .social-link {
      width: 48px;
      height: 48px;
      background-color: #1f2937;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background-color: #374151;
      transform: translateY(-2px);
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }

    .footer-section h3 {
      font-size: 18px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 24px;
    }

    .footer-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-link {
      font-size: 16px;
      color: #d1d5db;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-link:hover {
      color: #ffffff;
    }

    .contact-item {
      /* display: flex; */
      /* align-items: flex-start; */
      /* gap: 12px; */
      /* margin-bottom: 16px; */
    }

    .contact-icon {
      width: 16px;
      height: 24px;
      flex-shrink: 0;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 34px;
      border-top: 1px solid #374151;
    }

    .copyright {
      font-size: 16px;
      color: #6b7280;
    }

    /* Responsive media queries */
    @media (min-width: 640px) {
      .container {
        padding-left: 24px;
        padding-right: 24px;
      }

      .hero-title {
        font-size: 40px;
      }

      .hero-buttons {
        flex-direction: row;
        justify-content: center;
      }

      .card-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .trust-indicators {
        flex-direction: row;
        justify-content: center;
      }

      .cta-buttons {
        flex-direction: row;
        justify-content: center;
      }
    }

    @media (min-width: 768px) {
      .container {
        padding-left: 32px;
        padding-right: 32px;
      }

      .row {
        flex-direction: row;
      }

      .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 48px;
      }

      .hero-text {
        flex: 1;
        text-align: left;
      }

      .hero-image-container {
        flex: 1;
      }

      .hero-title {
        font-size: 48px;
      }

      .section {
        padding: 56px 32px;
      }

      .section-title {
        font-size: 36px;
      }

      .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
      }

      .nav-menu {
        display: flex;
      }

      .header-contact {
        flex-direction: row;
        justify-content: space-between;
      }

      .contact-item {
        font-size: 18px;
      }

      .footer-main {
        flex-direction: row;
      }

      .footer-brand {
        flex: 1;
      }

      .footer-links {
        flex: 2;
        flex-direction: row;
        justify-content: space-between;
      }
    }

    @media (min-width: 1024px) {
      .hero-title {
        font-size: 48px;
      }

      .section {
        padding: 80px 56px;
      }

      .card-grid {
        /* grid-template-columns: repeat(3, 1fr); */
      }
      .gridssss{
        grid-template-columns: repeat(3, 1fr) !important;
      }

      .process-grid {
        grid-template-columns: repeat(5, 1fr);
      }

      .advantage-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .cta-title {
        font-size: 48px;
      }

      .cta-subtitle {
        font-size: 24px;
      }
    }

    @media(max-width:580px){
      .grid-container{
        display: block !important;
      }
      .section{
        padding: 40px 0 !important;
      }
      .card{
        margin: 30px 0 !important;
      }
      .content-grid{
        display: block !important;
      }
      .card-grid {
    display: block !important;
      }
      .loanassist-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);
    padding: 100px 16px 40px !important;
}
    }

    @media (min-width: 1280px) {
      .container {
        max-width: 1284px;
        padding-left: 78px;
        padding-right: 78px;
      }
    }

    /* Interactive states */
    .nav-item:hover {
      color: #2563eb;
    }

    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .btn-primary:hover {
      background-color: #1d4ed8;
      transform: translateY(-2px);
    }

    .btn-secondary:hover {
      background-color: #2563eb;
      color: #ffffff;
    }

    .icon-button:hover {
      transform: scale(1.05);
    }

    .social-link:hover {
      background-color: #374151;
      transform: translateY(-2px);
    }

    .footer-link:hover {
      color: #ffffff;
    }

    /* Focus states */
    .btn-primary:focus, .btn-secondary:focus, .cta-button:focus {
      outline: 2px solid #2563eb;
      outline-offset: 2px;
    }

    .nav-item:focus {
      outline: 2px solid #2563eb;
      outline-offset: 2px;
      border-radius: 4px;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-content > * {
      animation: fadeInUp 0.6s ease-out;
    }

    .card {
      transition: all 0.3s ease;
    }

    .feature-item {
      transition: transform 0.3s ease;
    }

    .feature-item:hover {
      transform: translateX(8px);
    }
  


/* CSS for section section:TopBar */



/* CSS for section section:Header */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  height: 100px;
  display: flex;
  align-items: center;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 43px; /* Scaled from 86px * 0.5 */
  width: auto;
}
.main-nav {
  display: flex;
  gap: 37px;
}
.nav-link {
  color: #374151;
  font-weight: 500;
  font-size: 16px;
}
.nav-link:hover {
  color: var(--primary-blue);
}
@media (max-width: 1024px) {
  .main-nav {
    display: none; /* Mobile menu implementation would go here */
  }
}

/* CSS for section section:Hero */
/* Hero Section */
.blog-hero-section {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eff6ff 100%);
  padding: 60px 0;
}

/* Layout */
.blog-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Text */
.blog-hero-text {
  flex: 1;
  max-width: 600px;
}

/* Breadcrumbs */
.blog-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 20px;
}

.blog-current {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Headings */
.blog-hero-text h1 {
  font-size: 48px;
  color: #1e293b;
  margin-bottom: 24px;
}

.blog-hero-subtitle {
  font-size: 20px;
  color: #4b5563;
  margin-bottom: 24px;
  font-weight: 500;
}

.blog-hero-description {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.6;
}

/* Image */
.blog-hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.blog-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 20px 25px rgba(0, 0, 0, 0.1);
}

/* Mobile */
@media (max-width: 768px) {
  .blog-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .blog-breadcrumbs {
    justify-content: center;
  }

  .blog-hero-image {
    justify-content: center;
  }
}


/* CSS for section section:SearchFilter */
#search-filter {
  padding: 0px 0 60px 0;
  /* background-color: #ffffff; */
}
.filter-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.search-box {
  max-width: 300px;
}
.search-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  padding: 10px 16px;
  gap: 10px;
}
.search-input-wrapper input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 16px;
  color: #374151;
}
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background-color: #f3f4f6;
  color: #374151;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.filter-btn.active, .filter-btn:hover {
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
}

/* CSS for section section:Featured */
#featured {
  padding-bottom: 60px;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.featured-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
}
.featured-card.large {
  flex-direction: column;
}
.featured-card.large .card-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.featured-card.large .card-content {
  padding: 32px;
}
.featured-card.large h2 {
  font-size: 32px;
  margin: 16px 0;
  color: #1e293b;
}

.side-articles {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.featured-card.small {
  flex-direction: row;
  height: 100%;
}
.small-card-image {
  width: 224px;
  flex-shrink: 0;
}
.small-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.small-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.small-card-content h3 {
  font-size: 20px;
  margin: 12px 0;
  color: #1e293b;
}

@media (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .featured-card.small {
    flex-direction: row;
  }
}
@media (max-width: 640px) {
  .featured-card.small {
    flex-direction: column;
  }
  .small-card-image {
    width: 100%;
    height: 200px;
  }
}

/* CSS for section section:BlogGrid */
#blog-grid {
  padding: 40px 0 80px;
  background-color: #f8fafc;
}
.blog-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-image img {
  width: 100%;
  height: 224px;
  object-fit: cover;
}
.blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog-content h4 {
  font-size: 20px;
  margin: 12px 0;
  color: #1e293b;
  line-height: 1.4;
}
.blog-content p {
  color: #4b5563;
  font-size: 16px;
  margin-bottom: 16px;
  flex: 1;
}
@media (max-width: 1024px) {
  .blog-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .blog-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:Features */
#features {
  padding: 80px 0;
  background: linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);
}
.features-content {
  text-align: center;
}
.features-header {
  max-width: 900px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icon-box {
  width: 64px;
  height: 64px;
  /* background-color: #1e40af; */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 24px; */
}
.features-header h2 {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 24px;
}
.features-header p {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.6;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0px 1px 2px rgba(0,0,0,0.05);
}
.feature-item h3 {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 8px;
}
.feature-item p {
  color: #4b5563;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* CSS for section section:CTA */
#cta {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #312e81 100%);
  padding: 80px 0;
  color: white;
  position: relative;
  overflow: hidden;
}
/* Decorative circles based on design hints */
#cta::before, #cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
#cta::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}
#cta::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -50px;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  /* max-width: 900px; */
}
.cta-content h2 {
  font-size: 36px;
  margin-bottom: 24px;
}
.cta-content p {
  font-size: 18px;
  color: #dbeafe;
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 640px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* CSS for section section:Footer */
.site-footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}
.footer-desc {
  color: #9ca3af;
  margin-bottom: 24px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-circle {
  width: 34px;
  height: 34px;
  background-color: #1f2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-col h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 24px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a:hover {
  color: white;
}
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-list img {
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding-top: 30px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
   



/* CSS for section section:Header */
/* .header-section {
        background-color: #fff;
    }
    .top-bar {
        background: linear-gradient(to right, #2563eb, #1d4ed8);
        color: var(--text-light);
        padding: 11px 0;
        font-size: 16px;
    }
    .top-bar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .top-bar-left, .top-bar-right {
        display: flex;
        align-items: center;
        gap: 30px;
    }
    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .social-icon-wrapper {
        background-color: #fff;
        border-radius: 8px;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .main-header {
        padding: 14px 0;
        box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    }
    .main-header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo img {
        width: 222px;
        height: auto;
    }
    .main-nav ul {
        display: flex;
        gap: 37px;
    }
    .main-nav a {
        color: #374151;
        font-size: 16px;
        padding: 10px;
    }
    .schedule-button {
        background-color: var(--primary-blue);
        color: var(--text-light);
        padding: 10px 24px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
    }
    .mobile-nav-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
    } */
    .mobile-nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--text-dark);
        margin: 5px 0;
    }

    @media (max-width: 992px) {
        .main-nav {
            display: none;
        }
        .schedule-button {
            display: none;
        }
        .mobile-nav-toggle {
            display: block;
        }
    }
    @media (max-width: 768px) {
        .top-bar-left {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        .top-bar-right {
            gap: 10px;
        }
        .social-icon-wrapper {
            width: 32px;
            height: 32px;
        }
    }

/* CSS for section section:Hero */
.contact-hero-section {
  background: linear-gradient(to bottom, #eff6ff, #ffffff);
  padding: 80px 0;
}

/* Breadcrumbs */
.contact-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 44px;
  font-size: 16px;
  color: var(--text-secondary);
}

.contact-breadcrumbs a {
  color: var(--text-secondary);
}

.contact-breadcrumbs span {
  color: var(--primary-blue);
}

/* Content Layout */
.contact-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

/* Text */
.contact-hero-text {
  flex: 1;
  max-width: 592px;
}

.contact-hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.contact-hero-subtitle {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.contact-hero-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Info */
.contact-info-items {
  display: flex;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text-secondary);
}

/* Image */
.contact-hero-image-wrapper {
  flex: 1;
  max-width: 592px;
  position: relative;
}

.contact-hero-image {
  border-radius: 24px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Stats Card */
.contact-stats-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0px 20px 25px -5px rgba(0, 0, 0, 0.1),
    0px 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.contact-stats-icon {
  background-color: #dcfce7;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-stats-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-stats-text p {
  font-size: 16px;
  color: var(--text-secondary);
}

/* Tablet */
@media (max-width: 992px) {
  .contact-hero-content {
    flex-direction: column;
  }

  .contact-hero-text {
    text-align: center;
  }

  .contact-info-items {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-hero-section {
    padding: 40px 0;
  }

  .contact-hero-text h1 {
    font-size: 36px;
  }

  .contact-stats-card {
    position: static;
    margin-top: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}


/* CSS for section section:ContactOptions */
.contact-options-section {
        padding: 64px 0;
        background-color: #fff;
    }
    .contact-cards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    .contact-card {
        background: linear-gradient(rgb(165 189 219), rgb(255, 255, 255));
        border: 1px solid #dbeafe;
        border-radius: 16px;
        padding: 33px;
        text-align: center;
    }
    .card-icon-wrapper {
        width: 56px;
        height: 56px;
        border-radius: 9999px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 16px;
        background-color: var(--dark-blue);
    }
    .contact-card h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 16px;
    }
    .contact-card .contact-link {
        display: block;
        font-size: 18px;
        font-weight: 500;
        color: var(--dark-blue);
        margin-bottom: 8px;
    }
    .contact-card p {
        font-size: 16px;
        color: var(--text-secondary);
    }

    @media (max-width: 992px) {
        .contact-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 768px) {
        .contact-cards-grid {
            grid-template-columns: 1fr;
        }
    }

/* CSS for section section:ContactForm */
.contact-form-section {
        background: linear-gradient(to bottom right, #f9fafb, #eff6ff);
        padding: 80px 0;
    }
    .form-section-layout {
        display: flex;
        gap: 48px;
        align-items: flex-start;
    }
    .form-info {
        flex: 1;
        max-width: 464px;
    }
    .form-info h2 {
        font-size: 36px;
        margin-bottom: 24px;
    }
    .form-info > p {
        font-size: 18px;
        margin-bottom: 32px;
    }
    .info-features {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .feature-item {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .feature-icon-bg {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }
    .bg-blue { background-color: #dbeafe; }
    .bg-green { background-color: #dcfce7; }
    .bg-purple { background-color: #f3e8ff; }
    .feature-item h4 { font-size: 18px; font-weight: 600; }
    .feature-item p { font-size: 14px; }
    .form-wrapper {
        flex: 1;
        max-width: 720px;
        background-color: #fff;
        padding: 41px;
        border-radius: 24px;
        box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
    }
    .form-group {
        margin-bottom: 24px;
    }
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 16px;
        color: var(--text-dark);
        font-weight: 500;
    }
    .form-group input, .form-group textarea, .form-group select {
        width: 100%;
        padding: 16px;
        border: 1px solid #d1d5db;
        border-radius: 12px;
        font-size: 16px;
        box-sizing: border-box;
    }
    .form-group input::placeholder, .form-group textarea::placeholder {
        color: #adaebc;
    }
    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .select-wrapper {
        position: relative;
    }
    .select-wrapper select {
        appearance: none;
        -webkit-appearance: none;
    }
    .select-arrow {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }
    .privacy-text {
        margin-bottom: 4px;
        font-size: 16px;
    }
    .privacy-notice {
        background-color: #eff6ff;
        border: 1px solid #bfdbfe;
        border-radius: 12px;
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
    }
    .privacy-notice p {
        font-size: 16px;
        color: var(--text-dark);
    }
    .submit-button {
        width: 100%;
        padding: 16px;
        background: linear-gradient(to right, #1e40af, #1d4ed8);
        color: #fff;
        font-size: 18px;
        font-weight: 600;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 992px) {
        .form-section-layout {
            flex-direction: column;
            align-items: center;
        }
        .form-info {
            text-align: center;
        }
        .info-features {
            align-items: center;
        }
        .feature-item {
            flex-direction: column;
            text-align: center;
        }
    }
    @media (max-width: 768px) {
        .form-grid {
            grid-template-columns: 1fr;
        }
        .form-wrapper {
            padding: 20px;
        }
    }

/* CSS for section section:OfficeLocation */
.office-location-section {
        padding: 80px 0;
        background-color: #fff;
    }
    .section-header {
        text-align: center;
        margin-bottom: 48px;
    }
    .section-header h2 {
        font-size: 36px;
        margin-bottom: 12px;
    }
    .section-header p {
        font-size: 18px;
    }
    .location-content {
        display: flex;
        gap: 48px;
        align-items: flex-start;
    }
    .location-details-card {
        flex: 0 0 592px;
        background: linear-gradient(to bottom, #eff6ff, #ffffff);
        border: 1px solid #dbeafe;
        border-radius: 24px;
        padding: 41px;
        box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
        height: 750px;
    }
    .location-details-card .card-header {
        text-align: center;
        margin-bottom: 32px;
    }
    .location-details-card .icon-wrapper {
        width: 64px;
        height: 64px;
        background-color: var(--primary-blue);
        border-radius: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 24px;
    }
    .card-header h3 { font-size: 28px; margin-bottom: 8px; }
    .card-header p { font-size: 18px; }
    .details-list {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
    }
    .detail-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }
    .detail-icon-bg {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }
    .detail-icon-bg.bg-orange { background-color: #ffedd5; }
    .detail-item h4 { font-size: 20px; font-weight: 600; margin-bottom: 4px; }
    .detail-item p { font-size: 16px; }
    .detail-item span { font-size: 14px; color: #6b7280; }
    .directions-button {
        width: 100%;
        padding: 16px;
        background-color: var(--dark-blue);
        color: #fff;
        border-radius: 12px;
        font-size: 18px;
        font-weight: 500;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    .map-wrapper {
        flex: 1;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
        text-align: center;
        height: 750px;
    }
    .map-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .map-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
        font-size: 16px;
        color: var(--text-secondary);
    }

    @media (max-width: 992px) {
        .location-content {
            flex-direction: column;
            align-items: center;
        }
        .location-details-card {
            flex: 0 0 auto;
            width: 100%;
            max-width: 592px;
            box-sizing: border-box;
        }
    }

/* CSS for section section:WhyUs */
.why-us-section {
        padding: 80px 0;
        background: linear-gradient(to bottom, #eff6ff, #ffffff, #eff6ff);
    }
    .why-us-section .section-header {
        max-width: 672px;
        margin-left: auto;
        margin-right: auto;
    }
    .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
    .feature-card {
        background-color: #fff;
        border: 1px solid #f3f4f6;
        border-radius: 16px;
        padding: 33px;
        text-align: center;
        box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    }
    .feature-icon-wrapper {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: linear-gradient(to bottom right, #dbeafe, #eff6ff);
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 24px;
    }
    .feature-card h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 12px;
        min-height: 56px;
    }
    .feature-card p {
        font-size: 16px;
    }

    @media (max-width: 1200px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 768px) {
        .features-grid {
            grid-template-columns: 1fr;
        }
        .feature-card h3 {
            min-height: auto;
        }
    }


.journey{
      background-color: #fff !important;
    font-weight: 600;
}
.journey:hover{
      background-color: #000 !important;
    font-weight: 600;
    color: #fff;
}
.footer-below{
      display: flex !important;
    justify-content: space-around;
    gap: 664px;
}

@media(max-width:550px){
  .footer-below{
    display: block !important;
  }
  .top-bar{
    display: none;
  }
}


.loanassist-btn-primary:hover{
background-color :#003d8c;
  color:#fff;
}
 
.loanassist-btn-primary img{
  display:none;
}
.footer-below p {
  color:#fff;
}
.footer-cnt{
    color:#fff;
}
.phn{
 
        position: relative;
    left: 18px;
}
