/* Sticky Top Bar */
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
body {
      font-family: 'Oswald', sans-serif;
            user-select: none;
}
.top-bar {
  color: white;
  padding: 8px 0;
  font-size: 14px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1030;
  background-color: #00bf64;
}

/* Contact Information */
.contact-info {
  font-weight: 500;
}

/* Social Icons */
.social-icons a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-size: 18px;
}
/* Responsive */
@media (max-width: 395px) {
  .social-icons a {
    font-size: 10px !important ;
  }
  .contact-info{
font-size: 10px !important;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar {
      text-align: center;
      padding: 10px;
  }
  .contact-info {
      font-size: 12px;
      display: block;
      text-align: center;
  }
  .social-icons {
      margin-top: 5px;
      text-align: center;
  }
  .social-icons a {
      margin: 0 8px;
  }
}

/*@media (max-width: 565px) {*/
/*  .social-icons {*/
/*    display: none;*/
/*  }*/
/*}*/

/* top Navbar END */

/* NAvbar Start */

/* Custom Navbar */
.custom-navbar {
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
  margin-top: 43px;
}
@media (max-width: 576px) { 
  .custom-navbar {
    margin-top: 52px;
  }
}

/* Logo Styling */
.logo {
  height: 50px;
  margin-right: 10px;
}
@media (max-width: 400px) {
    .logo{
        width: 190px;
    }
}
.tagline {
  font-size: 14px;
  color: gray;
}

/* Default Navbar Link Style */
.navbar-nav .nav-link {
  transition: all 0.3s ease-in-out;
}

/* Active Link Styling */
.navbar-nav .nav-link.active, 
.navbar-nav  .dropdown-item.active {
  color: #198754 !important;
}
npaDropdown.active{
  color: red !important;
}

/* Highlight dropdown when submenu is active */
.navbar-nav .dropdown:hover .nav-link
 {
  color: #198754 !important;
  /* font-weight: bold; */
}

/* Sticky Navbar */
.navbar.fixed-top {
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Dropdown Hover Effect */
.navbar-nav .dropdown-menu {
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar-nav .dropdown-item:hover {
  /* background-color:#198754; */
  background-color:#0149ac;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .navbar-nav {
      text-align: center;
  }
  .navbar-nav .nav-item {
      margin: 5px 0;
  }
}

.contact {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  background-color:#00bf64;
}

/* Adjust for mobile screens */
@media (max-width: 576px) {
  .contact {
      display: inline-block;
      padding: 6px 12px; 
      width: auto; 
  }
}

/* Default styling for dropdown */
.dropdown-menu {
  min-width: 200px !important; /* Set fixed width */
  width: auto !important;
  padding: 8px 12px !important; /* Adjust padding */
  border-radius: 8px !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1) !important;
}

/* Ensure dropdown width doesn't expand fully in mobile */
@media (max-width: 768px) {
  .dropdown-menu {
      width: fit-content !important;  /* Prevent full width */
      min-width: 200px !important;    /* Adjust as needed */
      margin-left: auto !important;
      margin-right: auto !important;
      text-align: center !important;  /* Center align text */
  }
}
@media (max-width: 990px) {  /* Adjusts for screens smaller than 990px */
  .dropdown-menu {
      position: absolute !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      min-width: 220px !important; /* Adjust width */
      text-align: center !important;
/* Scrollable code when open in mobile */
      max-height: 300px !important; /* Adjust height */
        overflow-y: auto !important; /* Enable scrolling */
        width: 90% !important; /* Make it wider for better visibility */
        left: 50% !important;
        transform: translateX(-50%) !important;
  }
}

.custom-dropdown {
  max-height: 300px; /* Adjust height as needed */
   overflow-y: auto;  /* Enables vertical scrolling */
}

.contact.active {
  background-color: green !important; 
  color: white !important; 
  border-radius: 8px;
  padding: 5px 10px;
}

.contact.blink {
    animation: blink 0.5s ease-in-out;
}


/* Navbar END*/

/* hero Section Start */

.hero-section {
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #f8f9fa;
  margin-top: 123px;
}

@media (max-width: 768px) {
  .hero-section {
      margin-top: 140px;
  }
}

/* Images in Hero */
.hero-img {
  width: 100%; /* Ensure full width */
  height: auto; /* Maintain aspect ratio */
  max-height: 500px; /* Prevent excessive shrinking */
  object-fit: contain; /* Ensures full image is visible */
}

/* Make images responsive */
@media (max-width: 992px) {
  .hero-img {
      max-height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-img {
      max-height: 350px;
  }
}

@media (max-width: 576px) {
  .hero-img {
      max-height: 250px;
  }
}

/* Buttons below */
.hero-buttons {
  margin-top: 20px;
}

.hero-buttons .btn {
  margin: 5px;
  padding: 10px 20px;
  font-size: 16px;
}

/* Default hero image (unchanged for smaller screens) */
.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Remove left/right padding & margin on laptops (≥992px) */
@media (min-width: 992px) {
  .hero-section {
      padding-left: 0 !important;
      padding-right: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
  }
  .hero-img {
      padding-left: 0 !important;
      padding-right: 0 !important;
      margin-left: 0 !important;
      margin-right: 0 !important;
  }
}

/* hero Section END */

/* section 1 start  */

/* Section 1 - About Section */
.about-section {
  padding: 50px 0;
}

.about:hover {
  color: #ff8c00 !important;
}

.about-title {
  /* color: orange; */
  color:#004aab;
  font-weight: bold;
  font-size: 18px;
}

.about-heading {
  font-size: 36px;
  font-weight: bold;
  color: black;
}

.about-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.icon-list {
  list-style: none;
  padding-left: 0;
}

.icon-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.icon-list li i {
  /* color: orange; */
  color:#004aab;
  font-size: 20px;
  margin-right: 10px;
}

.read-more-btn {
  /* background-color: black; */
  background-color:#004aab;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  text-decoration: none;
  justify-content: center;
}

.read-more-btn i {
  margin-left: 10px;
  padding: 10px;
}

.read-more-btn:hover {
  /* background-color: #333; */
  background-color:#198754;
  color: white;
}

.about-img {
  max-width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 30px 15px;
  }

  .about-title {
    font-size: 16px;
    text-align: center;
  }

  .about-heading {
    font-size: 24px;
    text-align: center;
  }

  .about-text {
    font-size: 14px;
    line-height: 1.4;
    text-align: justify;
  }

  .icon-list {
    text-align: center;
  }

  .icon-list li {
    font-size: 14px;
  }

  .icon-list li i {
    font-size: 16px;
    margin-right: 5px;
  }

  .read-more-btn {
    display: inline-block; /* Keeps button small */
    padding: 8px 16px; /* Adjust padding for better fit */
    font-size: 14px;
    margin: 0 auto; /* Centers button */
    text-align: center;
  }

  .ps-5 {
    padding-left: 15px !important;
  }

  .mobile-readmore-container {
    text-align: center; /* Ensures "Read More" button is centered */
  }
}


/* section 1 END */

/* Section 2 Start */
/* 🔹 Services Section */
.services-section {
  /* padding: 4px 0;  Increased padding */
   text-align: center;
   /* background-color: #cedb5f; */
 }
 
 /* 🔹 Section Heading */
 .services-section h2 {
    /* font-size: 36px; */
   font-weight: bold;
   margin-bottom: 40px;
   color: white; 
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   height: 100%; /* Ensures full height */
   min-height: 100px; /* Adjust as needed */
   font-size: 40px;
   text-align: center;
 }
 
 /* 🔹 Service Box */
 .service-box {
   width: 100%;
   max-width: 400px; /* Ensuring proper spacing */
   height: 320px; /* Increased height */
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   /* background: rgba(255, 255, 255, 0.1); */
   /* background:rgb(207,218,98); */
   padding: 40px; /* Increased padding */
   border-radius: 10px;
   transition: background 0.5s ease-in-out;
   background-color:#004aab;
   color: white;
   position: relative;
   overflow: hidden;
   margin: auto; /* Centers service-box properly */
 }
 
 /* 🔹 Icons */
 .service-box i {
   font-size: 40px;
   margin-bottom: 15px;
   color: #fff;
   position: relative;
   z-index: 2;
 }
 
 /* 🔹 Text Styles */
 .service-box h3 {
   font-size: 20px;
   font-weight: bold;
   position: relative;
   z-index: 2;
 }
 
 .service-box p {
   font-size: 14px;
   position: relative;
   z-index: 2;
 }
 
 /* 🔹 Link */
 .service-box a {
   display: inline-block;
   margin-top: 15px;
   color: #fff;
   font-size: 20px;
   transition: 0.3s;
   position: relative;
   z-index: 2;
 }
 
 .service-box a:hover {
   /* color: #f8c10f; */
   color:#198754;
 }
 
 /* 🔥 Candle Effect */
 .service-box .candle {
   position: absolute;
   bottom: -100%;
   width: 25%;
   height: 100%;
   /* background: #ff8c00; */
   background:#00c061;
   opacity: 0.8;
   transition: bottom 0.5s ease-in-out;
   z-index: 1; /* Ensures the effect stays behind text */
 }
 
 /* 🔹 Positioning candles */
 .service-box .candle:nth-child(1) { left: 0; transition-delay: 0s; }
 .service-box .candle:nth-child(2) { left: 25%; transition-delay: 0.1s; }
 .service-box .candle:nth-child(3) { left: 50%; transition-delay: 0.2s; }
 .service-box .candle:nth-child(4) { left: 75%; transition-delay: 0.3s; }
 
 /* 🔹 Hover Effect */
 .service-box:hover .candle {
   bottom: 0;
 }
 
 /* 📌 Bootstrap Grid Fixes */
 .row.g-4 {
   margin-left: 0 !important;
   margin-right: 0 !important;
 }
 
 /* 📌 Responsive Grid Fix */
 @media (min-width: 992px) {
   .col-lg-4 {
     width: 30%; /* Ensures 3 in a row */
     padding-left: 15px;
     padding-right: 15px;
   }
 }
 
 @media (max-width: 991px) {
   .col-md-6 {
     width: 100%; /* Ensures 1 per row */
   }
 }
 
 /* 📌 Left & Right Spacing Fix */
 .container-fluid {
   padding-left: 5%;
   padding-right: 5%;
 }
 /* 📌 Apply 30px font size for screens smaller than 768px */
 @media (max-width: 767px) {
   .services-section h2 {
     font-size: 30px;
   }
 }
 .para{
   font-size: 17px!important;
 }
 @media (max-width: 767px) {
   .para {
     font-size: 15px!important;
   }
 }
 .service-1{
  margin-top: 20px ;
 }
 .check{
  margin-top: 10px ;
 }

 .navbar-nav .nav-link.active, 
 .navbar-nav .dropdown-item.active {
     color: green !important;
 }
.npa{
  color: #00c061 !important;
 }
 .service-2{
  padding-top: 50px;
 }
 .sm{
  margin-bottom: 15px;
 }
 /* Section 2 END */

 
 /* Section 3 Start */

/* FAQ Section Layout */
.faq-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: auto;
  padding: 40px 20px;
}

/* Left Side (FAQ Content) */
.faq-content {
  width: 50%;
}

.faq-title {
  font-size: 20px;
  font-weight: bold;
}

.faq-orange {
  color: #00c061;
}

.faq-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.faq-description {
  color: #666;
  margin-bottom: 20px;
}

.faq-container {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 10px;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 1px solid #ddd;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
}

.faq-icon {
  font-size: 20px;
  color: #00c061;
  margin-right: 10px;
  font-weight: bold;
}

.faq-arrow {
  font-size: 20px;
  font-weight: bold;
  color: #00c061;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  padding: 10px;
  color: #333;
  font-size: 16px;
  border-top: 1px solid #ddd;
  margin-top: 10px;
}

/* When active, show the answer and rotate the arrow */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  color: #007bff;
}

.faq-item.active .faq-arrow {
  transform: rotate(90deg);
}

/* Right Side (Image) */
.faq-image {
  width: 45%;
  text-align: right;
}

.faq-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-wrapper {
      flex-direction: column;
      align-items: center;
  }

  .faq-content, .faq-image {
      width: 100%;
      text-align: center;
  }

  .faq-image {
      margin-top: 20px;
  }
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left; 
}

.faq-text {
  margin-left: 8px;
}
.clickable-icon {
  cursor: pointer;
}

/* Section 3 END */

/* Section 4 Start */

.testimonial-section {
  width: 90%;
  margin: 50px auto;
}

.testimonial-title {
  font-size: 3em;
  margin-bottom: 30px;
  color:#00c061 ;
}
.monial{
 color:#004aaf;
}
.schange{
  color: #cfda62;
}

.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 900px;
  margin: auto;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  cursor: grab;
}

.testimonial {
  min-width: 400px;
  margin: 15px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
  user-select: none;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.testimonial h3 {
  font-size: 1.5em;
  margin: 15px 0;
}

blockquote {
  font-size: 1.2em;
  font-style: italic;
}

/* Navigation Buttons */
.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* background: #ff6b6b; */
  background:#007bff;
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5em;
  z-index: 10;
  opacity: 1; /* Always visible */
  transition: background 0.3s;
}

.prev-btn { left: 20px; }  
.next-btn { right: 20px; } 

.prev-btn:hover, .next-btn:hover {
  background: #00c061;
}

/* Responsive Fix */
@media (max-width: 1024px) {
  .testimonial-container {
      width: 100%;
  }
  .testimonial {
      min-width: 90%;
  }
  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }
}

/* Section 4 END */

/*  Section 5 Start */


.financial-partners {
  padding: 40px 20px;
}

.subheading {
  /* color: #ff6600; */
  color:#0149ac ;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-heading {
  font-size: 35px;
  font-weight: bold;
  margin: 10px 0;
}

.banks-title {
  font-size: 40px;
  font-weight: bold;
  /* color: #ff6600; */
  color:#00c061 ;
  margin: 20px 0;
}

/* Bank Grid */
.banks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three columns on larger screens */
  gap: 40px; /* Space between logos */
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px; /* Adds spacing around the grid */
}

/* Bank Box */
.bank {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Image Size */
.bank img {
  min-width: 240px;  /* Increased size */
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}

/* Responsive - Mobile View (1 Column) */
@media (max-width: 768px) {
  .banks-grid {
      grid-template-columns: repeat(1, 1fr); /* 1 column on mobile */
  }
  
  .bank img {
      max-width: 180px; /* Bigger on mobile for better visibility */
  }
}

/* Style for logos */
.banks-grid img {
  width: 100%;
  max-width: 200px; /* Ensures logos don't get too big */
  height: auto;
  margin: auto; /* Centers images */
  display: block;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .banks-grid {
      grid-template-columns: 1fr; /* Single column on mobile */
      gap: 20px; /* Adjust spacing for mobile */
  }
}
/* Make logo larger on hover */
.bank img:hover {
  transform: scale(1.2); /* Enlarge on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bank img {
      max-width: 200px; /* Bigger on mobile for better visibility */
  }
}
/* Responsive - Tablet View (2 Columns) */
@media (max-width: 1024px) and (min-width: 769px) {
  .banks-grid {
    grid-template-columns: repeat(2, 1fr); /* Two columns on tablets */
  }
}

 /*  Section 5 END  */

footer{
  background-color: #00bf64;
 }


 .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.whatsapp-float img {
  width: 50px;
  height: 50px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (min-width: 1400px) {
  .hero-img {
      max-height: 2000px;
  }
}











