* {
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 1100;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
}

/* Logo */
.logo {
  font-weight: bold;
  font-size: 22px;
}

.logo span {
  color: #a0d468;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-left: 20px;
  flex-wrap: wrap;
}

.nav-links li a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00733e;
}

/* Button */
.btn {
  background-color: #00733e;
  color: white;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  white-space: nowrap;
}

/* Banner */
.banner {
  justify-content: center;
  align-items: center;
  display: flex;
}

.banner-img img {
  width: 100%;
  max-width: 1160px;
  height: auto;
  justify-content: center;
  align-items: center;
}

/* loan Product */
.loan-products {
  text-align: center;
  padding: 60px 30px;
  background: #fff;
}

.loan-products h2 {
  font-size: 26px;
  color: #004225;
  margin-bottom: 40px;
  font-weight: bold;
}

.LoanProduct-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.loancard {
  background: #fff;
  width: 340px;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
  flex: 1 1 300px;
  max-width: 340px;
}

.loancard:hover {
  transform: translateY(-5px);
}

.loancard h3 {
  margin-top: 15px;
  font-size: 20px;
  color: #004225;
}

.loancard ul {
  margin: 15px 0;
  padding-left: 20px;
  color: #555;
}

.loancard ul li {
  margin-bottom: 8px;
}

.green-card {
  border-left: 5px solid #00733e;
  background-color:#00733e; 
  margin: 0 10px;
}

.green-card img{
  background-color: white;
  border: 1px solid white;
   margin: 0 auto;
  display: block;  
  margin-bottom: 20px; 
}
.green-card h1{
  color: white;
  text-align: center;

}



.green-card h2{
  color: white;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.green-card ul li {
  color: white;
}

  .custom-btn1 {
    display: inline-flex;
    align-items: center;
    background-color: #20532b;
    border: 1px solid #20532b;
    border-right: none;
    border-radius: 6px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    cursor: pointer;
    padding: 0;
    user-select: none;
  }

  .btn-text {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    padding: 14px 20px;
  }

  .btn-icon {
    position: relative;
    background-color: white;
    border-left: 2px solid #20532b;
    padding: 10px 14px;
    clip-path: polygon(20% 0%, 100% 0%, 79% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px; 
    height: 100%;
    background-color: #20532b;
    clip-path: polygon(0 0, 100% 0, 79% 100%, 0% 100%);
    pointer-events: none;
  }

  .btn-icon svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
    /* fill: #20532b; */

  }


.blue-card img{
  height: 60px; ;
   margin: 0 auto;
  display: block;  
  margin-bottom: 20px; 
}

.blue-card h1{
  font-family: Inter;
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-align: center;

}

.blue-card h2{
color: var(--Primary, #165831);
text-align: center;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal
}
.blue-card {
  position: relative;
  padding-top: 40px;     
  padding-bottom: 40px;  
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}


.blue-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15%;          
  width: 115%;         
  height: 50px;
  background: linear-gradient(to right, #00733e 100%, transparent 100%);
  transform: rotate(-3deg) translateY(-50%);
  transform-origin: top left;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1;
}



.blue-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0; 
  width: 130%;
  height: 30px;
  background: #00733e;
  transform: rotate(-3deg) translateY(50%);
  transform-origin: bottom right;
  box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
  z-index: 1;
}


.blue-card > * {
  position: relative;
  z-index: 2;
}

.yellow-card img {
  height: 50px;
  margin: 0 auto;
  display: block;  
  margin-bottom: 20px; 
}

.yellow-card h1{
  font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-align: center;

}

.yellow-card h2{
color: var(--Primary, #165831);
text-align: center;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal
}
.yellow-card {
  position: relative;
  padding-top: 40px;     
  padding-bottom: 40px;  
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}


.yellow-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -15%;          
  width: 115%;         
  height: 50px;
  background: linear-gradient(to right, #00733e 100%, transparent 100%);
  transform: rotate(-3deg) translateY(-50%);
  transform-origin: top left;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 1;
}


.yellow-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0; 
  width: 130%;
  height: 30px;
  background: #00733e;
  transform: rotate(-3deg) translateY(50%);
  transform-origin: bottom right;
  box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
  z-index: 1;
}


.yellow-card > * {
  position: relative;
  z-index: 2;
}


  .custom-btn {
    display: inline-flex;
    align-items: center;
    background-color: #20532b;
    border: 1px solid #20532b;
    border-right: none; 
    border-radius: 6px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    cursor: pointer;
    padding: 0;
    user-select: none;
  }

  .btn-text {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    padding: 14px 20px;
  }

  .btn-icon {
    position: relative;
    background-color: white;
    border-left: 2px solid #20532b;
    padding: 10px 14px;
    clip-path: polygon(20% 0%, 100% 0%, 79% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px; 
    height: 100%;
    background-color: #20532b;
    clip-path: polygon(0 0, 100% 0, 79% 100%, 0% 100%);
    pointer-events: none;
  }

  .btn-icon svg {
    width: 30px;
    height: 30px;
    /* fill: #20532b; */

  }

/* Lend */
.lend-section {
  width: 95%;
  margin: 0 auto;
  padding: 60px 30px;
  background: #499668;
}

.lend-text {
  font-size: 26px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: left;
}

.lend-paragraph {
  color: #FFF;
  font-size: 20px;
  font-weight: 100;
  line-height: 150%;
  letter-spacing: 0.24px;
  text-align: left;
  margin-bottom: 40px;
}

.texas, .florida {
  font-size: 32px;
  font-weight: 800;
  color: #FFF;
}

/* Map */
.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 60px auto; 
  max-width: 700px;
}

.map-image {
  width: 100%;
  height: auto;
}

/* card */
.state-section {
  display: flex;
  gap: 100px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.state-card {
  position: relative;
  width: 300px;
  height: 420px;
  border-radius: 0 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.state-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.state-title,
.state-subtitle,
.state-button {
  position: relative;
  z-index: 2;
}

.state-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.state-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}

.state-button {
  padding: 10px 25px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
}

.texas-card {
  background: url('/Florida.png') center/cover no-repeat;
}

.florida-card {
  background: url('/Texas.jpg') center/cover no-repeat;
}

.collection {
  font-size: 20px;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}

.allbuton-container {
  text-align: center;
  margin-top: 40px;
}


/* Choose Us  */
.why-choose-us {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.why-choose-us h2 {
  color: #1f4b2e;
  font-size: 32px;
  font-weight: bold;
  border-bottom: 4px solid #32a84a;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

 .feature-card {
  background-color: #f0f0f0;
  width: 300px;
  padding: 30px 20px 80px 20px; 
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.feature-card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}


.feature-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  position: absolute;
  bottom: 20px; 
  left: 30px;   
}

.feature-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature-desc {
  min-height: 72px;
  color: #343434;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.3px;
}

.feature-desc1{
  min-height: 72px; 
  color: #343434;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.3px;
}
.feature-desc3{
  min-height: 72px; 
  color: #343434;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.3px;
}

  .about-btn {
    display: inline-flex;
    align-items: center;
    background-color: #20532b;
    border: 1px solid #20532b;
    border-right: none; 
    border-radius: 6px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    cursor: pointer;
    padding: 0;
    user-select: none;
    margin-bottom: 20px;
    margin-top: 40px;
  }

  .about-btn-text {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    padding: 14px 20px;
  }

  .about-btn-icon {
    position: relative;
    background-color: white;
    border-left: 2px solid #20532b;
    padding: 10px 14px;
    clip-path: polygon(20% 0%, 100% 0%, 79% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px; 
    height: 100%;
    background-color: #20532b;
    clip-path: polygon(0 0, 100% 0, 79% 100%, 0% 100%);
    pointer-events: none;
  }

  .btn-icon svg {
    width: 30px;
    height: 30px;
    fill: #20532b;

  }

/* testimonial */
/* .testimonial-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  max-width: 100%;
  overflow: visible;
  padding: 20px;
}

.testimonial-header {
  color: var(--Primary, #165831);
  text-align: center;
  font-family: Inter;
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 2.24px;
  text-transform: uppercase;
}

.testimonial-section {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  padding: 60px 10px 20px; 
  background-color: #00733e;
  background-position: 50%;
}

.testimonial-section::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 300px;
  background: #f6f6f6;
  border-radius: 20px;
  padding: 60px 20px 30px;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: visible;
}

.image-container {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid white;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrow {
  align-self: center;
  position: relative;
  top: 0;
}

.arrow:hover {
  background-color: #005f3a;
}

.left-arrow {
  margin-right: 10px;
  border: none;
  background-color: #155c2d;
}

.right-arrow {
  margin-left: 10px;
  border: none;
  background-color: #00733e;
} */
.testimonial-header {
    color: var(--Primary, #165831);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 2.24px;
    text-transform: uppercase;
    margin-bottom: 30px;
  }

.testimonial-wrapper {
  display: flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden; /* important */
  gap: 10px;
   padding: 0 20px;
}

  .arrow {
    background-color: #00733e;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }

  .arrow:hover {
    background-color: #005f3a;
  }

.testimonial-section {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  flex-grow: 1;
  padding: 0;
  scroll-snap-type: x mandatory; /* optional smoothness */


  /* .testimonial-section::-webkit-scrollbar {
    display: none; */

  }

  .testimonial {
    flex: 0 0 300px;
    background: #f6f6f6;
    border-radius: 20px;
    padding: 60px 20px 30px;
    box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    min-width: 300px;
  }

  .image-container {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid white;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background: white;
  }

  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .testimonial h2 {
    margin-top: 50px;
    font-size: 22px;
    text-align: center;
    color: #165831;
  }

  .testimonial h3 {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    color: #3a3a3a;
    margin: 8px 0 15px;
  }

  .testimonial p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    text-align: center;
  }
/* Project Card */
.section {
  padding: 40px 20px;
  text-align: center;
}

.section h2 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: left;
}

.section p {
  font-size: 14px;
  color: #dcdcdc;
  text-align: left;
}

.card-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.Project-card {
  width: 350px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: sans-serif;
  position: relative;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #499668;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.card-content {
  padding: 20px;
  font-size: 14px;
}

.card-content h3 {
  color: #014421;
  font-size: 20px;
  margin: 0 0 4px 0;
}

.card-content .location {
  color: #666;
  font-size: 12px;
  margin-bottom: 10px;
}

.location img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  color: #444;
  font-size: 13px;
}

.info-grid div {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 8px;
  color: #333;
}

.info-grid img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.card-End {
  background-color: #014421;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 10px;
}

.button-wrapper {
  margin-top: 30px;
}

.cta-button {
  background-color: #fff;
  color: #014421;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-button:hover {
  background-color: #f0f0f0;
}

.image-Contant {
  position: relative;
}
  .project-custom-btn{
    display: inline-flex;
    align-items: center;
    background-color: #20532b;
    border: 1px solid #20532b;
    border-right: none; 
    border-radius: 6px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    cursor: pointer;
    padding: 0;
    user-select: none;
    margin-top: 40px;
  }

  .project-custom-btn-text {
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    padding: 14px 20px;
  }

  .project-custom-btn-icon {
    position: relative;
    background-color: white;
    border-left: 2px solid #20532b;
    padding: 10px 14px;
    clip-path: polygon(20% 0%, 100% 0%, 79% 100%, 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .project-custom-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px; 
    height: 100%;
    background-color: #20532b;
    clip-path: polygon(0 0, 100% 0, 79% 100%, 0% 100%);
    pointer-events: none;
  }

  .project-custom-btn svg {
    width: 30px;
    height: 30px;
    /* fill: #20532b; */

  }

/* Working  */
/* CSS */
.work-section {
  padding: 120px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.work-container {
  max-width: 1420px;
  margin: 0 auto;
}

.work-heading {
  color: #004225;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.work-subheading {
  font-size: 18px;
  margin-bottom: 40px;
}

.work-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.work-card {
  flex: 1 1 300px;
  background: white;
  padding: 40px 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  min-width: 280px;
  margin-bottom: 30px;
}

.work-icon {
  height: 60px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #004225;
}

.card-text {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.card-btn {
  padding: 10px 20px;
  border: 1px solid #004225;
  background: white;
  color: #004225;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.card-btn img {
  width: 10px;
  height: 10px;
  object-fit: contain;
}

.card-btn.dark {
  background: #004225;
  color: white;
}

/* resource */
.resources-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  font-family: sans-serif;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 15px;
}

.section-header h2 {
  font-size: 32px;
  color: #014421;
  line-height: 1.2;
  font-weight: 700;
}

.view-more {
  background-color: #014421;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  white-space: nowrap;
}

.resource-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.resource-card {
  background: #fff;
  border-radius: 16px;
  width: 320px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 30px;
}

.resource-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.resourcecard-body {
  padding: 20px;
}

.resourcecard-body small {
  color: #333;
  display: block;
  margin-bottom: 10px;
}

.resourcecard-body h3 {
  font-size: 16px;
  color: #014421;
  margin-bottom: 10px;
}

.resourcecard-body p {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}

/* Ready To Go */
.EndSection-Banner{
  justify-content: center;
  align-items: center;
  display: flex;
}

.EndSection-Banner img{
  width: 100%;
  max-width: 1160px;
  height: auto;
  justify-content: center;
  align-items: center;
}

/* Footer */
.footer {
  background-color: #165831;
  color: #fff;
  padding: 50px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-column.contact .logo {
  background-color: white;
  color: #165831;
  font-weight: bold;
  padding: 10px;
  display: inline-block;
  margin-top: 15px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.Contact-img {
  height: 16px;
  width: 16px;
  object-fit: contain;
}

.logo span {
  color: var(--Secondary, #949293);
}

/* Responsive Styles */
/* mobile */

  @media (max-width: 600px) {
@media (max-width: 600px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 15px;
  }

  .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
    margin-right: 10px;
  }

  .logo {
    font-size: 20px;
    font-weight: bold;
    flex-grow: 1;
    text-align: center;
  }

  .btn {
    background-color: #00733e;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links li a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    color: #333;
  }
   .arrow {
      display: none; /* মোবাইলে arrow লুকাবে */
    }
    .testimonial-section {
      padding: 20px 10px;
    }
    .testimonial {
      flex: 0 0 85vw; /* মোবাইলে প্রায় পুরো width */
    }
  }
}

  /* .banner-img img,
  .EndSection-Banner img {
    width: 100%;
    height: auto;
  }

  .LoanProduct-container,
  .features,
  .resource-cards,
  .state-section,
  .card-container,
  .work-cards,
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .loancard,
  .feature-card,
  .resource-card,
  .Project-card,
  .work-card,
  .state-card {
    width: 90%;
    max-width: 320px;
    margin-bottom: 20px;
  }

  .work-section {
    padding: 60px 15px;
  }

  .testimonial-section {
    padding: 50px 50px;
  }

  .testimonial {
    flex: 0 0 90%;
    margin: 0 auto;
  }

  .footer-container {
    padding-top: 20px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .view-more {
    width: 100%;
    text-align: center;
  }
} */


/* Tablet */
@media (min-width: 601px) and (max-width: 991px) {
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 15px;
  }

  .hamburger {
    display: block;
    font-size: 26px;
    cursor: pointer;
    margin-right: 10px;
  }

  .logo {
    font-size: 20px;
    font-weight: bold;
    flex-grow: 1;
    text-align: center;
  }

  .btn {
    background-color: #00733e;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links li a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    color: #333;
  }
    .banner-img img,
  .EndSection-Banner img {
    width: 100%;
    height: auto;
  }

  .LoanProduct-container,
  .features,
  .resource-cards,
  .state-section {
    flex-wrap: wrap;
    justify-content: center;
  }

  .work-cards {
    flex-direction: column;
    align-items: center;
  }


    .testimonial-section {
      padding: 40px 20px;
    }
    .testimonial {
      flex: 0 0 45vw; /* ট্যাবলেটে ২টা একসাথে আসার জন্য */
      min-width: 280px;
    }
  }

  /* .image-container {
    width: 70px;
    height: 70px;
    top: -40px;
  } */


  /* .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
} */

/* Desktop Large */
@media (min-width: 992px) {
  .navbar {
    flex-direction: row;
    padding: 15px 40px;
    align-items: center;
  }

  .nav-links {
    justify-content: flex-start;
    margin-left: 20px;
    gap: 30px;
  }

  .banner-img img,
  .EndSection-Banner img {
    width: 1160px;
    height: 600px;
    object-fit: cover;
  }

  .LoanProduct-container,
  .features,
  .resource-cards,
  .state-section {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 40px;
  }

  .work-cards {
    flex-direction: row;
    justify-content: space-between;
  }

  .work-card {
    min-width: 320px;
    max-width: 32%;
    margin-bottom: 0;
  }

  .footer-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

 .testimonial-section {
      padding: 40px 20px;
    }
.testimonial {
  flex: 0 0 48%; /* 2 testimonial per view */
  scroll-snap-align: start;
}
  }

  /* .card-container {
    justify-content: flex-start;
  }

  .Project-card {
    width: 350px;
  }

  .resource-card {
    width: 320px;
    margin-bottom: 0;
  }

  .state-section {
    gap: 100px;
    flex-wrap: nowrap;
  }

  .lend-section {
    max-width: 1200px;
    margin: 0 auto;
  }
} */
