body {
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background-color: #f4f7ff;
  }
  .navbar {
    background-color: white !important; /* White background */
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Grey box shadow */
}
.navbar-brand img {
    height: 40px; /* Adjust logo size */
}
.nav-item {
    margin-right: 15px;
}
.btn-auth {
    margin-left: 10px;
}
.navbar .nav-link {
  color: #000;
  transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #ff8c00;
}

.dropdown-menu {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


/* Default: Dropdown opens on hover */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;

    }
    .dropdown:hover .dropdown-menu .dropdown-item {
    margin-bottom: 7px;
    font-size: 15px;
    margin-left: 15px;
    background-color: transparent;
}
.dropdown:hover .dropdown-menu span{
        font-size: 10px;
        color: grey;
        margin-left: 25px;
}

.dropdown:hover .dropdown-menu .dropdown-item .fontawe{
    font-size:13px;
    margin-right: 16px;
    border-radius: 50%;


}

}

  .btn-auth .orange-outline {
      color: orange;
      border: 1px solid orange;
      background-color: white;
      transition: 0.3s ease;
  }

  .btn-auth .orange-outline:hover {
      background-color: orange;
      color: white;
  }

/* Space between logo and first menu item */
.navbar-nav {
    margin-left: 40px; /* Adjust spacing */
}
  .hero {
    background-color: #1c3b58;
    color: white;
    padding: 100px 0;
  }
  .hero img {
    width: 100%;
    max-width: 500px;
    animation: floatIn 1s ease-in-out;
  }
  .feature {
    padding: 80px 0;
  }
  .feature img {
    width: 100%;
    max-width: 400px;
  }
  .loan-section {
    background: #ffffff;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .loan-section h2 {
    font-weight: bold;
    margin-bottom: 20px;
    color: #1c3b58;
  }
  .cta {
    background-color: #eef3fc;
    padding: 60px 0;
    text-align: center;
  }
  .social-icons a {
    margin-right: 15px;
    font-size: 1.5rem;
    color: #bbb;
  }
  .btn-dark {
    background-color: #1c3b58;
    border: none;
  }
  .btn-dark:hover {
    background-color: #334f74;
  }
  .stats {
    background-color: #1c3b58;
    color: white;
    padding: 60px 0;
  }
  .stats h3 {
    font-size: 2.5rem;
    font-weight: bold;
  }
  .stats p {
    font-size: 1.2rem;
  }
  .accordion-button:not(.collapsed) {
    background-color: #f4f7ff;
  }
  /* Back to Top Button */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #1c3b58;
    color: white;
    font-size: 20px;
    padding: 10px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
  }
  .back-to-top:hover {
    background-color: #334f74;
  }


  .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .service-card:hover {
    transform: scale(1.05);
    animation: bounce 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  @keyframes bounce {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.07); }
    100% { transform: scale(1.05); }
  }


  .savings-table {
    border: 1px solid #dee2e6; /* Outer border */
    border-collapse: collapse;
  }

  .savings-table td,
  .savings-table th {
    border: none !important; /* Removes inner borders */
  }

  .savings-table tr:first-child th {
    border-top: none;
  }

  .plan-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  }


  footer {
    background-color: #1c1c1c;
    color: #f4f4f4;
  }

  footer h5 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-weight: 600;
  }

  footer a {
    color: #f4f4f4;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  footer a:hover {
    color: #ff8c00;
  }

  footer .social-icons a {
    color: #f4f4f4;
    transition: color 0.3s ease;
  }

  footer .social-icons a:hover {
    color: #ff8c00;
  }

  footer .row {
    border-top: 1px solid #444;
  }

  footer p {
    font-size: 0.9rem;
    color: #bbb;
  }

/*****************************Sevice Carousel *******************************/

.owl-nav {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background-color: #eeecec !important; /* Force background */
    color: #040000 !important;              /* White arrow */
  border: 1px solid black;
  border-radius: 50% !important;       /* Circular shape */
  width: 40px !important;
  height: 40px !important;
  margin:  0 10px !important;
  font-size: 20px !important;
  transition: all 0.3s ease;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background-color: #000; /* Even darker on hover */
}

/* Optional: Remove default outline */
.owl-nav button:focus {
  outline: none;
  box-shadow: none;
}

.owl-carousel .btn {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 30px; /* rounded button */
  transition: all 0.3s ease;
}

.owl-carousel .btn:hover {
  opacity: 0.85;
}
  /*****************************Sign up section *******************************/

  .signup-section {
    background-image: url('../img/graph.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Controls opacity */
    z-index: 1;
  }

  .form-wrapper {
    z-index: 2;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    width: 100%;
    /* max-width: 1200px; */
  }

  .input-group-text {
    background-color: transparent;
    border-left: none;
    cursor: pointer;
  }

  .form-label {
    font-weight: 500;
  }


  /*************************************About section *************************************/
    .hover-box {
    transition: all 0.3s ease;
    border-radius: 12px;
  }

  .hover-box:hover {
    background-color: #0a2e65 !important;
    color: white !important;
    transform: translateY(-5px);
  }

  .hover-box:hover h5,
  .hover-box:hover p {
    color: white !important;
  }

  .hover-box:hover img {
    filter: brightness(0) invert(1);
  }



  /******************************Testimonials sections*******************************************/

  .carousel-inner2 img {
    height: 350px;
    object-fit: cover; /* Ensures the images fit well without distortion */

  }
    /* Styling for the testimonial cards */
   .testimonial {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial .customer-img {
width: 60px !important;  /* Ensure width is applied */
height: 60px !important; /* Ensure height is applied */
border-radius: 50%;
object-fit: cover;
display: block; /* Prevent stretching */
margin: auto;
}

.testimonial h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.testimonial p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.owl-carousel {
  max-width: 1200px;
  margin: auto;
}



