body{
    margin:0;
    padding:0;
    background-color: #fafff9;
}

*{
    user-select:none;
}



.parentnav{
     width:100%;
      align-items: center;
     background-color:white;
     top:0;
         position: fixed;
         z-index:20000000;
         box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav{
    width:90%;
    margin-left:5%;
    margin-right:5%;
    font-family:sans-serif;
    display:flex;
    justify-content: space-around;
    background:white;
    align-items: center;

}



.brand{
    width:160px;
    padding-top:5px;
    padding-bottom:5px;
    
}



.men{
    list-style:none;
    display: flex;
    justify-content: space-around;
    width:60%;
}

.online-b > a{
    text-decoration:none;
    color:white;
   
}

.online-b{
    font-weight:bolder;
    font-size:15px;
     background-color:#176900;
     padding:15px;
     border-radius:5px;
}

#firstboostrap{
    padding-right:5px;
}

.menu, .online-b{
    float:left;
}

.menu{
    font-size:13px;
}

.menu a{
    text-decoration:none;
    color:black;
    transition:0.5s;
}

.menu a:hover{
   border-bottom: 2px solid #176900;
    transition-duration:0.5s;
}


.button{
    display:none;
    background-color: #acd723;
    padding:5px;
}


.line1, .line2, .line3{
    width:15px;
    height:2px;
    background-color:black;
    margin:5px;
    transition:0.5s;
}

.bgx{
     transition:0.5s;
    background-color:black;
}


.button:hover .line1{
    animation-name:line1;
    animation-duration:2s;
}

.button:hover .line2{
    animation-name:line2;
    animation-duration:2s;
}

.button:hover .line3{
    animation-name:line3;
    animation-duration:8s;
}

@keyframes line1{
    0%{margin-right:0px;}
    50%{margin-right:15px;}
    100%{margin-right:0px;}
}

@keyframes line2{
    0%{margin-left:0px;
}
    50%{margin-left:15px;}
    100%{margin-left:0px;
        background-color:#21710b;
    }
}

@keyframes line3{
    0%{margin-right:0px;}
    50%{margin-right:1px;}
    100%{margin-right:0px;}
}

@media screen and (max-width:1000px){
    .men{
        width:60%;
    }

    li{
        padding:5px;
    }

}

@media screen and (max-width:768px){
    #preloader{
         background-size:30%;
    }

    .nav{
        width:95%;
    }

    .brand{
        width:120px;
    }

    .men{
        position:absolute;
        display:flex;
        width:100%;
        height:80vh;
        padding-bottom:150px;
        flex-direction: column;
        right:0;
        color: black;
        top:55px;
        transform: translateX(100%);
        transition:0.5s;
        background-color:white;
        
    }

    li a:hover{
    border-bottom:none;
}

li a{
    transition:1s;
    color: black;
}

    li a:hover{
 color: #083f25;
 border-bottom:0px;
}

    .menactive{
        transform: translateX(0%);
        transition:0.5s;
    }


    .button{
        display:block;
    }

    li{
        text-align:center;
        padding-top: 20px;
        width:100%;
        color: black;
    }

    li a{
        color: black;
    }
}


.contact-hero {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  padding: 120px 20px;
  text-align: center;
  color: #ffffff;

  /* Dark blue radial gradient from center */
  background: radial-gradient(
    circle at center,
    #1e8a49 0%,
    #0f2a14 40%,
    #021705 100%
  );

  overflow: hidden;
}

/* Subtle dot pattern overlay */
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
  margin-bottom: 30px;
  backdrop-filter: blur(6px);
}

.hero-badge .iconas {
  font-size: 16px;
  color:white;
}

.contact-hero h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 20px;
  }

  .contact-hero h1 {
    font-size: 38px;
  }

  .contact-hero p {
    font-size: 16px;
  }
}


.loan-options {
  padding: 80px 20px;
  text-align: center;
   font-family: "Segoe UI", sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.loan-options h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.subtitle {
  color: #666;
  margin-bottom: 60px;
  font-size: 18px;
}

.loan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.loan-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: 0.3s ease;
}

.loan-card:hover {
  transform: translateY(-5px);
}

.icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 20px;
}

.loan-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.desc {
  color: #555;
  margin-bottom: 20px;
}

.details div {
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
}

.details span {
  color: #777;
}

.apply {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  text-decoration: none;
}

/* Icon background colors */
.blue { background: #e5efff; }
.green { background: #e4f6ea; }
.purple { background: #f0e8ff; }
.orange { background: #fff1e6; }
.teal { background: #e6fbf9; }
.red { background: #ffeaea; }

/* Text colors */
.blue-text { color: #2563eb; }
.green-text { color: #16a34a; }
.purple-text { color: #7c3aed; }
.orange-text { color: #ea580c; }
.teal-text { color: #0d9488; }
.red-text { color: #dc2626; }

/* Responsive */
@media (max-width: 992px) {
  .loan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .loan-grid {
    grid-template-columns: 1fr;
  }

  .loan-options h2 {
    font-size: 32px;
  }
}



.section {
        text-align: center;
        padding: 60px 20px;
        font-family: Arial, Helvetica, sans-serif;
    }

    .section h1 {
        font-size: 42px;
        margin-bottom: 10px;
        color: #1f2937;
    }

    .section p {
        color: #6b7280;
        margin-bottom: 40px;
        font-size: 18px;
    }

    .calculator-container {
        max-width: 1000px;
        margin: auto;
        background: #ffffff;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
    }

    .left, .right {
        flex: 1;
        min-width: 280px;
    }

    .input-group {
        margin-bottom: 25px;
        text-align: left;
    }

    .input-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #374151;
    }

    .input-group input {
        width: 90%;
        padding: 14px 0px 14px 14px;
        border-radius: 10px;
        border: 1px solid #d1d5db;
        font-size: 16px;
    }

    .input-group input:focus {
        outline: none;
        border-color: #176900;
    }

    button {
        width: 100%;
        margin-left:-20px;
        padding: 15px;
        border: none;
        border-radius: 12px;
        background: #176900;
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s ease;
    }

    button:hover {
        background: #acd723;
        color: #111827;
    }

    .right {
        background: #f9fafb;
        padding: 30px 0px 30px 30px;
        border-radius: 15px;
        text-align: left;
    }

    .right h3 {
        margin-top: 0;
        margin-bottom: 25px;
        font-size: 22px;
        color: #1f2937;
    }

    .result-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        font-size: 18px;
    }

    .result-value {
        font-weight: bold;
        color: #176900;
    }

    @media(max-width: 768px) {
        .calculator-container {
            flex-direction: column;
        }
    }


    /* Global Styles */


.last-container {
  width: 90%;
  font-family: Arial, sans-serif;
  max-width: 1200px;
  margin: auto;
}

/* ============================= */
/* APPLICATION PROCESS SECTION */
/* ============================= */

.process-section {
  padding: 80px 0;
  text-align: center;
}

.process-section h2 {
  font-size: 36px;
  color: #176900;
  margin-bottom: 10px;
}

.process-section .subtitle {
  color: #555;
  margin-bottom: 60px;
  font-size: 18px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
}

.circle {
  width: 80px;
  height: 80px;
  background-color: #acd723;
  color: #176900;
  font-size: 28px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.step h3 {
  font-size: 20px;
  color: #176900;
  margin-bottom: 10px;
}

.step p {
  color: #555;
  font-size: 15px;
}


/* ============================= */
/* CTA SECTION */
/* ============================= */

.cta-section {
  background-color: #176900;
  font-family: Arial, sans-serif;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

/* Primary Button */
.btn.primary {
  background-color: #acd723;
  color: #176900;
}

.btn.primary:hover {
  background-color: white;
}

/* Outline Button */
.btn.outline {
  border: 2px solid #acd723;
  color: #acd723;
}

.btn.outline:hover {
  background-color: #acd723;
  color: #176900;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .cta-section h2 {
    font-size: 28px;
  }
}

.footer {
  background: #013d0c;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-img {
  width: 150px;
}

.footer-about p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 20px;
}

.socials i {
  margin-right: 15px;
  background: #111;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
}

.footer-links h3 {
  margin-bottom: 15px;
  color: white;
}

.footer-links ul {
  list-style: none;
  margin-left:-15%;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ccc;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #222;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #aaa;
}

.footer-policy span {
  margin-left: 20px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .contain-daddy,
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contain-daddy,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .footer-policy span {
    margin-left: 0;
    margin-right: 15px;
  }

  .footer-links ul {
  list-style: none;
  margin-left:-15%;
  text-align:left;
}

.footer-links li {
  margin-bottom: 10px;
}
}