* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: #c3c0c066 0px 25px 50px -12px;
    z-index: 1000;
    position: sticky;
  }
  .navbar .logo {
    display: flex;
    align-items: center;
  }
  .navbar .logo img {
    height: 40px;
    margin-right: 10px;
  }
  .navbar ul {
    display: flex;
    list-style: none;
    gap: 35px;
  }

  
  .navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight:200;
    position: relative;
  }
  .navbar ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #2e79f6;
    left: 0;
    bottom: -5px;
    transition: width 0.3s;
  }
  .navbar ul li a:hover::after {
    width: 100%;
  }
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(image/bg.jpg) no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    padding-top: 80px;
    color: white;
  }
  .hero-content {
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .hero-buttons a {
    background: #2e79f6;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    margin: 0 0.5rem;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
  }
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  .menu-toggle span {
    background: #333;
    height: 3px;
    width: 25px;
    margin: 4px 0;
  }
  @media (max-width: 768px) {
    .navbar ul {
      display: flex;
      flex-direction: column;
      background: white;
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      height: 100vh;
      transform: translateX(-100%);
      transition: transform 0.3s ease-in-out;
      padding: 2rem;
      z-index: 999;
    }
    .navbar ul.active {
      transform: translateX(0);
    }
    .menu-toggle {
      display: flex;
     justify-content: flex-end;
     width: -80%;
    }
    .hero {
      justify-content: center;
      padding-left: 0;
      text-align: center;
    }

    .apply-btn{
       visibility: hidden;
    }
  }

  .marquee-container {
    white-space: nowrap; 
    overflow: hidden; 
    width: 100%;
background-color: #2e79f6}
  
  .marquee-container p {
    display: inline-block; /* Makes the paragraphs align horizontally */
    padding-right: 50px; /* Space between texts */
    animation: scroll-left 10s linear infinite; /* Adjust time for speed */
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(100%); /* Start off screen on the right */
    }
    100% {
      transform: translateX(-100%); /* Move off screen to the left */
    }
  }
  

  .marquee-container p{
    font-size: 35px;
    font-family: 'Courier New', Courier, monospace;
    color: white;
  
  }


  
  /* about us */

  .about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
  }

  .about-image {
    flex: 1 1 400px;
  }

  .about-image img {
    width: 100%;
    border-radius: 10px;
    
  }

  .about-content {
    flex: 1 1 500px;
  }

  .about-content span {
    color: #2e79f6;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
  }

  .about-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #222;
  }

  .about-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
  }

  .about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }

  .about-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
  }

  .about-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #001e6c;
  }

  .read-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2e79f6;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
  }

  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
    .about-content {
      padding: 0 10px;
    }
  }




  .section {
    padding:  20px;
    text-align: center;
    margin-top: -50px;
  }

  .section h4 {
    color: #001e6c;
    margin-bottom: 10px;
  }

  .section h2 {
    color: #001e6c;
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .section p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
  }

  .feature-box1 {
    background: #ffffff;
    padding: 30px 20px;
    border-bottom: 4px solid #2e79f6;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    margin-top:50px ;
  
  }

  .feature-box1:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(94, 86, 154, 0.1);
  }


  .feature-box2 {
    background: #ffffff;
    padding: 30px 20px;
    border-bottom: 4px solid  #2e79f6;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    margin-bottom:50px ;
  }

  .feature-box2:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }

  .material-icons-outlined {
    font-size: 48px;
    color: #2e79f6;
    margin-bottom: 15px;
  }

  .feature-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .feature-desc {
    font-size: 14px;
    color: #666;
  }

  @media (max-width: 480px) {
    .section h2 {
      font-size: 1.5rem;
   
    }


    .feature-box2 {
        margin: 0;
    }

    .feature-box1 {
        margin: 0;
    }
  }


.Emergency-bg{

    background: linear-gradient(rgba(48, 40, 193, 0.9), rgba(6, 46, 121, 0.9)), url(image/pic2.jpg) no-repeat center center/cover;
  padding: 20px;
  text-align: center;
  height: 300px;
  margin-bottom: 50px;
  

}



.Emergency-bg span{
  color: #ffd700;

}


@media (max-width: 998px){

   .Contant{
    margin: auto;
    margin-top: 0px;

    justify-content: center center; 
   }

   .Emergency-bg{
    display: none;
   }

     .Contant  h1{
    color: #ffffff;
   font-size: 30px;
    text-align: center;
  } 

}




 
  .Contant  h1{
    color: #ffffff;
   font-size: 50px;
    text-align: center;
  } 

   .Contant{
    margin: auto;
    margin-top: 70px;
    justify-content: center center; 
   }


  .Contant p{
    color: white;
text-align: center;
 margin: auto;
max-width: 800px;

margin-top: 20px;
  } 



  


  #section6 .container {
  display: flex;
  flex-wrap: wrap;
  border-radius: 60px;
  max-width: 1330px;
  overflow: hidden;
  background-color: #2e79f6;
  color: white;
  margin: 2rem auto;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

#section6 .left {
  flex: 1 1 50%;
  padding: 3rem;
  background: linear-gradient(to left, #2057e1,#052e96);
  
}

#section6 .left h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

#section6 .left h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

#section6 .highlight {
  color: #ffd700;
}

#section6 .left p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

#section6 .actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

#section6{
  padding: 40px;
}

#section6 .btn {
  background-color: #ffd700;
  border: none;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#section6 .btn:hover {
  background-color:   #ffd900cc;
}

#section6 .agent {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#section6 .agent img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

#section6 .agent-info {
  font-size: 0.95rem;
}

#section6 .agent-info b {
  font-size: 1.2rem;
  display: block;
}

#section6 .right {
  flex: 1 1 50%;
  background: url(image/pic1.jpg) center/cover no-repeat;
  min-height: 400px;
}

@media (max-width: 900px) {
  #section6 .container {
    flex-direction: column;
    border-radius: 0;
  }

  #section6 .left, #section6 .right {
    flex: 1 1 100%;
    padding: 2rem;
  }

  #section6 .left h1 {
    font-size: 2.2rem;
  }

  #section6 .btn {
    width: 100%;
    text-align: center;
  }

  #section6 .actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

   




/* Section wrapper */
#section7 {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Subtitle */
.services-header .subtitle {
  color: #2e79f6;
  font-size: 18px;
  margin-bottom: 10px;
}

/* Title */
.services-header h2 {
  font-size: 50px;

  line-height: 50px;
  margin-bottom: 20px;
}

.services-header p{
    margin-bottom: 40px;
}

.services-header h2 span {
  color: #ffd900;
}

/* Card grid */
.loan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Card styles */
.Services {
  padding: 30px 20px;
  border-radius: 20px;
  color: #000;
  text-align: left;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.Services:hover {
  transform: translateY(-5px);
}

/* Icon style */
.Services .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Headings & text */
.Services h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  margin-bottom: 20px;
}

/* Learn More link */
.Services a {
  text-decoration: none;
  font-weight: bold;
  color: #111;
  font-size: 14px;
}

.card a:hover {
  text-decoration: underline;
}

/* Background variations */
.Services {
  background: #ffffff;
  border: 1px solid black;
  
}

.active{
  background: linear-gradient(to left, #2057e1,#052e96);
  color: white;
  ;
}
.active a{color: #ffd900;}



.card.blue {
  background: #2e79f6;
  color: #fff;
}

.Services .icon {
  background: #2e79f6;
  color: #ffffff;
}

.Services .icon:hover {
  background:  #ffffff;
  color: #2e79f6;;
}


.card.dark-blue .icon {
  background: #fff;
  color: #0e3e8d;
}


.Services:hover{
  background: linear-gradient(to left, #2057e1,#052e96);
  color: white;
  transition: 0.5s;
}


.Services a:hover{color: #ffd900;}

.active .icon{
 background: #ffffff;
  color: #2e79f6;
}





/* Responsive tweaks */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 26px;
  }

  .card {
    text-align: center;
  }

  .card .icon {
    margin: 0 auto 20px;
  }
}



.section-8 {
      padding: 60px 20px;
      background: #fff;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-8-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      align-items: center;
    }

    .section-8-images img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .section-8-content .subtitle {
      color: #2268cf;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .section-8-content h2 {
      font-size: clamp(28px, 5vw, 40px);
      font-weight: 700;
      margin: 10px 0 20px;
      line-height: 1.3;
    }

    .section-8-content .description {
      font-size: 16px;
      color: #555;
      margin-bottom: 30px;
    }

    .highlight {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 30px;
    }

    .highlight .icon {
      font-size: 28px;
      color: #2268cf;
      background: #e8f0fe;
      padding: 10px;
      border-radius: 50%;
    }

    .highlight h4 {
      font-size: 18px;
      margin-bottom: 5px;
    }

    .stats {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
    }

    .stat {
      flex: 1;
      min-width: 200px;
    }

    .progress {
      position: relative;
      background: #eee;
      height: 10px;
      border-radius: 5px;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .bar {
      background: #2268cf;
      height: 100%;
    }

    .progress span {
      position: absolute;
      top: -25px;
      right: 0;
      font-weight: bold;
      color: #2268cf;
    }

    .stat p {
      font-size: 14px;
      color: #444;
    }

    @media (max-width: 1200px) {
      

      .section-8 .container{
        flex-direction: column;
    border-radius: 0;
      }
    }




     .footer {
    background: #050d1b;
    color: #ccc;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    margin-top: 50px;
  }

  .footer .container {
    max-width: 1280px;
    margin: 0 auto;
  }

  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }

  .footer-section {
    flex: 1 1 250px;
    min-width: 200px;
  }

  .footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px;
  }

  .footer-column {
    min-width: 200px;
  }

  .footer .logo {
    width: 150px;
    margin-bottom: 15px;
  }

  .footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
    border-left: 4px solid #2268cf;
    padding-left: 10px;
    font-size: 18px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 15px;
    color: #ccc;
    line-height: 1.7;
    text-decoration: none;
  }

  .footer-section a:hover {
    color: #fff;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }

  .social-icons {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2d2d3a;
    border-radius: 50%;
    color: #fff;
    transition: background 0.3s;
  }

  .social-icons a:hover {
    background: #2268cf;
  }

  @media (max-width: 992px) {
    .footer-top {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-nav {
      flex-direction: column;
      align-items: center;
    }

    .footer-section h3 {
      text-align: center;
    }
  }