* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}


.hero {
  position: relative;
  height: 2000px;
  width: 100%;
  background: url("images/hero.svg") center center / cover no-repeat;
  overflow: hidden;
}
.logo {
  position: absolute;
  top: 40px;
  left: 60px;

  width: 500px;
  height: auto;

  z-index: 5;
}
/* BOTTOM SHAPE */
.shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1200px;

  background: #ffffff;

  clip-path: polygon(
    0 0,
    100% 75%,
    100% 100%,
    0 100%
  );
}

/* TOP SHAPE */
.shape2 {
  position: absolute;
  top: 0;              /* 👈 TOP instead of bottom */
  left: 0;
  width: 100%;
  height: 1000px;       /* adjust as needed */

  background: linear-gradient(rgba(133,191,39,0.55), rgba(133,191,39,0.55));
  clip-path: polygon(
    0 0,
    100% 0,
    100% 15%,
    0 100%
  );

  z-index: 2;
}


.triangle-img {
  position: absolute;
  top: 950px;
  left: 65px; /* instead of 1200px */

  width: 400px;
  height: auto;

  z-index: 3;
}

.hero-text {
  position: absolute;
  top: 1600px;  /* position inside white section */
  left: 120px;

  max-width: 1200px;

  z-index: 5;
}

.hero-text h1 {
  font-size: 90px;
  font-weight: 800;
  color: #2E2A6F;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text h2 {
  font-size: 39px;
  font-weight: 600;
  color: #090909;
  margin-bottom: 10px;
}

.hero-text p {
  font-size:25px;
  font-weight: 500;
  color:  #444;
}
.underline-part {
  border-bottom: 6px solid #2E2A6F; /* your green accent */
  padding-bottom: 5px;
}
.divider {
  height: 1px;
  background:#1f2a44;
  width: 100%;
  margin: 40px 0 25px;
}

.capability-section {
  background: #ffffff;
  padding: 100px 0;
}

.container {
  padding-left: 120px;
  padding-right: 120px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #222;
}

.section-title span {
  color: #8BC34A;
}

.divider {
  height: 2px;
  background:#090909;
  margin: 15px 0 30px;
}

.description {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 40px;
}

.feature-boxes {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
}

.feature {
  flex: 1;
  background: #ffffff;

  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  color: #444;
}

/* GREEN BORDER */
.feature:nth-child(odd) {
  border: 3px double #8DC63F;
}

/* PURPLE BORDER */
.feature:nth-child(even) {
  border: 3px double #2E2A6F;
}

.image-block img {
  margin-top: 60px;
  width: 100%;
  margin-bottom: 60px;
}

.pricing {
  margin-top: 20px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.pricing-table thead {
  background: #8BC34A;
  color: #fff;
}

.pricing-table th {
  padding: 12px;
  text-align: left;
}

.pricing-table td {
  padding: 12px;
}

.pricing-table tbody tr:nth-child(even) {
  background: #e9efe3;
}

.pricing-table tbody tr:nth-child(odd) {
  background: #f7f9f5;
}
.bottom-bar {
  width: 100%;
  height: 25px;          /* thickness of green border */
  background: #8DC63F;  
  margin-top: 40px;
}

SERVICE COVERAGE SECTION
.service-coverage {
  background: #ffffff;
  padding: 100px 0;
}

.dual-service {
  background: #ffffff;
  /* padding: 100px 0; */
}
.bottom-bars {
  width: 100%;          /* full viewport width */
  height: 25px;
  display: flex;          /* side-by-side colors */
  margin-top: 40px;
  margin-bottom: 40px;
    background-color: #8DC63F;
  overflow: hidden;       /* for rounded corners if needed */
}



.blue-part {
  width: 40%;
  background-color: #282460;
}

/* ========================= */
/* TRANSACTION COORDINATION  */
/* ========================= */

.tc-section {
  background: #fff;
  padding: 0;
}

.tc-wrapper {
  display: flex;
}

.tc-image {
  width: 50%;
}

.tc-image img {
  width: 600px;
  height: 500px;
  object-fit: cover;
}

.tc-content {
  width: 50%;
  background: #fff;
  padding: 60px;
}

.tc-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: #222;
  line-height: 1.2;
}

.tc-content h2 span {
  color: #8DC63F;
}

.tc-line {
  height: 2px;
  background: #222;
  margin: 15px 0 20px;
}

.tc-sub {
  font-size: 14px;
  margin-bottom: 15px;
  color: #444;
}

/* CHECK LIST STYLE */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #8DC63F;
  font-size: 12px;
}

/* ========================= */
/* LOAN SERVICES             */
/* ========================= */

.loan-services {
  background: #fff;
  padding: 40px 0;
}

.loan-box-wrapper {
  border: 2px solid #8DC63F;
  display: flex;
  margin-top: 30px;
}

.loan-column {
  width: 50%;
  padding: 30px;
}

.loan-column:first-child {
  border-right: 1px solid #8DC63F;
}

.loan-heading {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 14px;
}

/* ========================= */
/* FEATURE BUNDLE            */
/* ========================= */

.feature-bundle {
  background: #fff;
  padding: 40px 0;
}

.bundle-sub {
  font-weight: 700;
  margin-top: 10px;
}

.bundle-small {
  font-size: 13px;
  margin-bottom: 25px;
  color: #555;
}

.bundle-box {
  border: 2px solid #8DC63F;
  display: flex;
}

.bundle-column {
  width: 50%;
  padding: 30px;
}

.bundle-column:first-child {
  border-right: 1px solid #8DC63F;
}

/* ======================= */
/* ABOUT SECTION           */
/* ======================= */

.about-section {
  background: #efefef;
  position: relative;
  padding-top: 40px;
}

/* TOP DARK IMAGE BACKGROUND */
.about-top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background: url("images/books.jpg") center/cover no-repeat;
  z-index: 0;
}

/* WRAPPER */
.about-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

/* IMAGE (OVERLAPPING STYLE) */
.about-image {
  position: absolute;
  right: 120px;
  top: -150px;
  border: 15px solid #8DC63F;
}

.about-image img {
  width: 350px;
  height: auto;
  display: block;
}

/* TEXT SIDE */
.about-content {
  padding-bottom: 60px;
}

.about-name {
  font-weight: 600;
  margin-top: 10px;
}

.about-role {
  font-size: 14px;
  margin-bottom: 40px;
}

/* EXPERIENCE FLOW */
.experience-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

/* BOX STYLE */
.exp-box {
  flex: 1;
  padding: 25px 15px;
  text-align: center;
  font-size: 13px;
  border-radius: 14px;
  background: #ffffff;
  position: relative;
}

/* PURPLE DOUBLE BORDER */
.exp-box.purple {
  border: 3px double #2E2A6F;
}

/* GREEN DOUBLE BORDER */
.exp-box.green {
  border: 3px double #8DC63F;
}

/* BOTTOM TEXT */
.about-bottom-text {
  font-size: 14px;
  color: #444;
  margin-bottom: 80px;
}

/* BOTTOM STRIP */
.about-bottom-strip {
  display: flex;
  height: 30px;
}

.green-part {
  width: 70%;
  background: #8DC63F;
}

.purple-part {
  width: 30%;
  background: #2E2A6F;
}

/* ======================= */
/* ABOUT SECTION CLEAN FIX */
/* ======================= */

.about-section {
  background: #fff;
}

/* BOOK IMAGE (normal block) */
.about-bg {
  width: 100%;
  height: 800px;
  background: url("images/clittt.jpg") center/cover no-repeat;
}

/* TEXT + PROFILE WRAPPER */
.about-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 50px;   /* pull content up over books */
}

/* PROFILE IMAGE */
.about-image {
  border: 20px solid #8DC63F;
  background: #8DC63F;
}

.about-image img {
  width: 560px;
  display: block;
}

/* TEXT */
.about-text {
  padding-top: 220px;
}

.about-name {
  font-weight: 900;
  margin-top: 10px;
}

.about-role {
  font-size: 24px;
  margin-bottom: 70px;
}

/* FLOW IMAGE */
.flow-image {
  width: 100%;
  margin: 80px 0;
  display: block;
}

/* BOTTOM TEXT */
.about-bottom-text {
  font-size: 24px;
  color: #444;
  margin-bottom: 80px;
}

/* BOTTOM STRIP */
/* .about-strip {
  display: flex;
  height: 30px;
} */

/* .strip-green {
  width: 70%;
  background: #8DC63F;
} */

.last {
  position: relative;
  height: 1500px;
  width: 100%;
  overflow: hidden;
  background: #ffffff;   /* keep section clean */
}

.shape3 {
  position: absolute;
  top: 0;                 /* 👈 moved to TOP */
  left: 0;
  width: 100%;
  height: 1000px;         /* adjust as needed */

  background: url("images/imagebuttomr.jpg") center center / cover no-repeat;

  clip-path: polygon(
    0% 0%,      
    100% 0%,    
    100% 55%,   
    50% 100%,   
    0% 55%   
  );

  z-index: 1;
}

.shape3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(133, 191, 39, 0.75);
}

.logoo {
  position: absolute;
  top: 500px;              /* adjust vertically inside shape */
  left: 50%;
  transform: translate(-50%, -50%);

  width: 700px;          /* adjust size */
  height: auto;

  z-index: 5;
}

.buttom-img {
  position: absolute;
  top: 650px;
  left: 0px; /* instead of 1200px */

  width: 400px;
  height: auto;

  z-index: 3;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
}

.icon-circle {
  width: 30px;
  height: 30px;
  border: 1px solid #282460;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.icon-circle i {
  color: #282460;
  font-size: 16px;
}

.contact-info a {
  text-decoration: none;
  color: #333;
}

.contact-info a:hover {
  color: #282460;
}

.buttom-text {
  position: absolute;
  bottom: 10px;
  left: 80px;
  text-align: left;
  width: 90%;
  max-width: 900px;
  z-index: 5;
}

.corner-triangle {
  position: absolute;
  bottom: 0;   /* stick to bottom */
  right: 0;    /* stick to right */

  width: 250px;
  height: 250px;

  background: rgba(133, 191, 39, 0.75);

  clip-path: polygon(
    100% 100%, 
    100% 0%, 
    0% 100%
  );

  z-index: 2;
}

.buttom-text h2{
  font-size: 50px;
}

.buttom-text p{
  font-size: 25px;
}


    