
/* Custom Styling for Services Section */
.services {
    padding: 60px 0;
    background-color: #f9f9f9;
    margin-top: 0px;
    margin-bottom: -150px;
}
.service-item {
    margin-bottom: 30px;
    text-align: center;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item img {
    width: 100%;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.service-item .down-content {
    padding: 20px;
}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.filled-button {
    background-color: #3498db;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.filled-button:hover {
    background-color: #2980b9;
}

/* Ensure the services are displayed in a single row on large screens */
@media (min-width: 768px) {
    .services .row {
        display: flex;
        justify-content: space-between;
    }
    .services .col-md-4 {
        flex: 1;
        max-width: 22%;
    }
}



.more-info{
    margin-top: 5px;
    background-color: #f9f9f9;
}


.testimonials{
    margin-top: 0px;
}


.callback-form{
    margin-top: 70px;
    margin-bottom: 20px;
}



label.form-label {
    display: block; /* Ensures the label takes up the full width and is on its own line */
    color: white; /* Sets the label text color to white */
    margin-bottom: 5px; /* Adds a little space between the label and input field */
    font-weight: bold; /* Makes the label text bold for better visibility */
    text-align: left;
  }




/* Styling the breadcrumb */
.custom-breadcrumb {
    background-color: #f8f9fa; /* Light background */
    padding: 10px 20px; /* Padding around the breadcrumb */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    font-family: 'Arial', sans-serif;
  }
  
  /* Styling each breadcrumb item */
  .custom-breadcrumb .breadcrumb-item {
    font-size: 14px;
    color: #6c757d; /* Darker text color */
    font-weight: 600; /* Slightly bold for readability */
  }
  
  .custom-breadcrumb .breadcrumb-item a {
    color: #a4c639; /* Bootstrap primary blue color */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth hover transition */
  }
  
  /* Change link color on hover */
  .custom-breadcrumb .breadcrumb-item a:hover {
    color: #0056b3;
  }
  
  /* Style the active breadcrumb */
  .custom-breadcrumb .breadcrumb-item.active {
    color: #a4c639; /* Darker gray for the active item */
  }
  
  /* Add some padding and margin between items */
  .custom-breadcrumb .breadcrumb-item + .breadcrumb-item {
    margin-left: 10px;
  }
  
  /* Add icons to breadcrumb items */
  .custom-breadcrumb .breadcrumb-item i {
    margin-right: 5px; /* Spacing between icon and text */
    font-size: 16px; /* Adjust icon size */
    color: #a4c639; /* Icon color */
  }
  
  /* Styling for mobile view */
  @media (max-width: 767px) {
    .custom-breadcrumb {
      font-size: 12px; /* Smaller font on mobile devices */
    }
  }
  




  .loan-services {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 20px;
}

.loan-services .image-section {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.loan-services .image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.loan-services .content-section {
    flex: 2;
    padding: 20px;
}

.loan-services .content-section h2 {
    font-size: 2rem;
    color: #333;
}

.loan-services .content-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

.loan-services .content-section a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.loan-services .content-section a:hover {
    text-decoration: underline;
}


.loan-services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.loan-service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.loan-service-card:hover {
    transform: translateY(-10px);
}

.loan-service-card .service-icon {
    font-size: 40px;
    color: #a4c639;
    margin-bottom: 15px;
}

.loan-service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.loan-service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.loan-service-card a {
    text-decoration: none;
    color: #a4c639;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

.loan-service-card a:hover {
    color: #000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .loan-services-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}




 /* Container for the heading */
 .heading-container {
    position: relative;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 50px;
}

/* Styling the heading */
.heading-container h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    transition: color 0.3s ease;
}

/* Adding a subtle border to the heading */
.heading-container h2::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 5px;
    background-color: #a4c639;
    bottom: 0;
    left: 25%;
    transition: width 0.3s ease;
}

/* Adding hover effect for the heading */
.heading-container h2:hover {
    color: #a4c639;
}

.heading-container h2:hover::before {
    width: 100%;
    left: 0;
}

/* Optional styling for the subheading */
.heading-container span {
    display: block;
    font-size: 1.2rem;
    color: #777;
    margin-top: 10px;
    letter-spacing: 2px;
}

/* Basic Styles */
.loan-services {
    padding: 0px 0;
    background-color: #ffff;
}

.loan-services .image-section {
    text-align: center;
}

.loan-services .image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.loan-services .content-section {
    padding: 20px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Ensure that the content is properly aligned in responsive mode */
@media (max-width: 768px) {
    .loan-services .row {
        flex-direction: column; /* Stack the image and content */
    }

    .loan-services .image-section,
    .loan-services .content-section {
        text-align: center; /* Center-align content */
        margin-bottom: 20px; /* Add space between image and content */
    }

    .loan-services .content-section {
        font-size: 1.1rem; /* Slightly increase font size for readability */
    }
}




.insurance-services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

/* Individual Service Card */
.insurance-service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect for Cards */
.insurance-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Section */
.insurance-service-card .service-icon {
    font-size: 40px;
    color: #a4c639; /* Blue color for icons */
    margin-bottom: 20px;
}

/* Service Title */
.insurance-service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

/* Service Description */
.insurance-service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Link/Button Styling */
.insurance-service-card a {
    text-decoration: none;
    color: #a4c639;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.insurance-service-card a:hover {
    background-color: #ffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .insurance-services-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .insurance-service-card {
        padding: 15px;
    }

    .insurance-service-card .service-icon {
        font-size: 35px;
    }

    .insurance-service-card h3 {
        font-size: 1.5rem;
    }

    .insurance-service-card p {
        font-size: 0.95rem;
    }
}





.investment-services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

/* Individual Service Card */
.investment-service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect for Cards */
.investment-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Section */
.investment-service-card .service-icon {
    font-size: 40px;
    color: #a4c639; /* Blue color for icons */
    margin-bottom: 20px;
}

/* Service Title */
.investment-service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

/* Service Description */
.investment-service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Link/Button Styling */
.investment-service-card a {
    text-decoration: none;
    color: #a4c639;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.investment-service-card a:hover {
    background-color: #ffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .insurance-services-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .investment-service-card {
        padding: 15px;
    }

    .investment-service-card .service-icon {
        font-size: 35px;
    }

    .investment-service-card h3 {
        font-size: 1.5rem;
    }

    .investment-service-card p {
        font-size: 0.95rem;
    }
}





.digital-payments-services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

/* Individual Service Card */
.digital-payment-service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect for Cards */
.digital-payment-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Section */
.digital-payment-service-card .service-icon {
    font-size: 40px;
    color: #a4c639; /* Blue color for icons */
    margin-bottom: 20px;
}

/* Service Title */
.digital-payment-service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

/* Service Description */
.digital-payment-service-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Link/Button Styling */
.digital-payment-service-card a {
    text-decoration: none;
    color: #a4c639;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.digital-payment-service-card a:hover {
    background-color: #ffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .digital-payments-services-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .digital-payment-service-card {
        padding: 15px;
    }

    .digital-payment-service-card .service-icon {
        font-size: 35px;
    }

    .digital-payment-service-card h3 {
        font-size: 1.5rem;
    }

    .digital-payment-service-card p {
        font-size: 0.95rem;
    }
}






/* Blog Section Styling */
.blog {
    background-color: #f9f9f9;
    padding: 60px 0;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.sub-style {
    display: inline-block;
    background-color: #a4c639;
    padding: 5px 20px;
    border-radius: 20px;
}

.sub-title {
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
}

.display-3 {
    font-size: 3rem;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
}

.section-title p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px auto;
}

/* Blog Items */
.blog-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.blog-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.05);
}

.blog-centent {
    padding: 20px;
    color: #333;
}

.blog-centent h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-centent h4:hover {
    color: #a4c639;
}

.blog-centent p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.blog-centent a {
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.blog-centent a:hover{
    color: #a4c639;

    
}

/* Responsive Design */
@media (max-width: 1199px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .blog-img img {
        height: 180px;
    }

    .blog-centent h4 {
        font-size: 1.4rem;
    }
}

@media (max-width: 991px) {
    .blog-item {
        margin-bottom: 30px;
    }

    .blog-centent p {
        font-size: 0.95rem;
    }

    .section-title p {
        max-width: 100%;
    }

    .blog-img img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .display-3 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .blog-img img {
        height: 200px;
    }

    .blog-centent h4 {
        font-size: 1.2rem;
    }

    .blog-centent p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .blog-item {
        margin-bottom: 20px;
    }

    .section-title h1 {
        font-size: 1.8rem;
    }

    .blog-centent a {
        color: #000;
        text-decoration: none;
        border-radius: 30px;
        transition: background-color 0.3s ease;
    }

    .blog-centent h4 {
        font-size: 1rem;
    }
}





.sub-footer {
    background-color: #333;
    color: white;
    padding: 25px 0;
}

.footer-menu {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #4CAF50;
}

.text-center {
    text-align: center;
}

.text-md-start {
    text-align: left;
}

.text-md-end {
    text-align: right;
}

@media (max-width: 767px) {
    .footer-menu {
        flex-direction: column;
        align-items: center;
    }

    .footer-menu a {
        margin-bottom: 10px;
    }
}



.faq-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    font-family: 'Roboto', sans-serif;
  }
  
  .faq-section .section-title h2 {
    font-size: 40px;
    color: #2a2a2a;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .faq-section .section-title h2:hover{
  
      color: #a4c639;
  
  }
  
  .faq-section .section-title p {
    color: #6c757d;
    font-size: 16px;
  }
  
  .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .faq-item {
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
  }
  
  .faq-item:hover {
    transform: scale(1.02);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .faq-question:hover {
    background-color: #f1f1f1;
  }
  
  .faq-answer {
    padding: 20px;
    background-color: #f9f9f9;
    display: none;
    font-size: 16px;
    color: #5f6368;
    border-top: 1px solid #ddd;
  }
  
  .faq-item.open .faq-answer {
    display: block;
  }
  
  .faq-item .toggle-icon {
    font-size: 18px;
    color: #007bff;
    transition: transform 0.3s;
  }
  
  .faq-item.open .toggle-icon {
    transform: rotate(180deg);
  }