   body {
      font-family: "Open Sans", sans-serif;
      color: #444444;
    }

    a {
      color: #1977cc;
    }

    a:hover {
      color: #3291e6;
      text-decoration: none;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: "Raleway", sans-serif;
    }

   /* Navbar styling */
    .navbar {
      background-color: #f8f9fa; /* Light background */
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease-in-out;
    }

    .navbar:hover {
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    /* Custom toggle button */
    .navbar-toggler {
      border: none;
      background-color: #1977cc;
      padding: 6px 10px;
      border-radius: 5px;
      transition: all 0.3s ease;
    }

    .navbar-toggler:hover {
      background-color: #2c4964;
      transform: scale(1.1); /* Slight zoom on hover */
    }

    .navbar-toggler-icon {
      font-size: 1.2rem;
      color: white;
      transition: transform 0.3s ease;
    }

    .navbar-toggler.collapsed .navbar-toggler-icon {
      transform: rotate(180deg); /* Rotate the icon on toggle */
    }

    /* Link styles */
    .navbar-nav .nav-link {
      color: #2c4964 !important;
      font-size: 16px;
      font-family: "Open Sans", sans-serif;
      padding: 5px 15px;
      text-transform: capitalize;
      position: relative;
      transition: all 0.3s ease-in-out;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-item.active .nav-link {
      color: #1977cc !important;
      font-weight: 600;
    }

    .navbar-nav .nav-link span {
      display: inline-block;
      position: relative;
    }

    .navbar-nav .nav-link span::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0%;
      height: 2px;
      background-color: #1977cc;
      transition: width 0.3s ease-in-out;
    }

    .navbar-nav .nav-link:hover span::after,
    .navbar-nav .nav-item.active .nav-link span::after {
      width: 100%;
    }

    /* Responsive Menu Overlay */
    .navbar-collapse {
      background-color: #f8f9fa;
      transition: all 0.4s ease-in-out;
    }

    @media (max-width: 991.98px) {
      .navbar-nav .nav-link {
        padding: 10px 20px;
      }
    }


/* General Styles for Search Box */
.elegant-search-bar, .mobile-search-bar {
  transition: all 0.6s ease-in-out;
}

.search-icon {
  background: #1977cc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hide Mobile Search Icon on Desktop */
@media (min-width: 992px) {
  .search-icon {
    display: none; /* Hide the mobile search icon on desktop */
  }
}

/* Mobile Search Box */
.mobile-search-bar {
  position: fixed;
  top: -100px; /* Initially above the screen */
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #e0e7ff, #1977cc);
  border-radius: 0 0 15px 15px;
  box-shadow: 0px 4px 12px rgba(25, 119, 204, 0.3);
  visibility: hidden; /* Initially hidden */
  opacity: 0; /* Initially invisible */
  z-index: 1050; /* Ensure the search bar is on top of other elements */
  transform: translateY(-100%); /* Start off the screen */
  transition: top 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s, transform 0.3s ease;
}

.mobile-search-bar.open {
  top: 70px; /* Adjust this value to move the search box down */
  visibility: visible;
  opacity: 1;
  transform: translateY(0); /* Move the box into view */
  transition: top 0.6s ease, opacity 0.6s ease, visibility 0s linear 0s, transform 0.6s ease;
}

/* Desktop Search Bar */
.elegant-search-bar {
  display: flex;
  justify-content: center;
  
}

.elegant-search-bar .input-group {
  max-width: 500px;
  width: 100%;
  border-radius: 50px;
  background: linear-gradient(135deg, #e0e7ff, #1977cc);
  box-shadow: 0px 4px 12px rgba(25, 119, 204, 0.2);
}

.elegant-search-input {
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  width: 100%; /* Ensure input takes full width within the group */
}

.elegant-search-btn {
  background: #1977cc;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 8px 12px;
  cursor: pointer;
}

/* Mobile Search Box on Small Screens */
@media (max-width: 991px) {
  .elegant-search-bar {
    display: none; /* Hide desktop search bar */
  }

  .mobile-search-bar.open {
    display: block; /* Display the search bar when toggled */
  }

  /* Make mobile search box full width */
  .mobile-search-bar input {
    width: 100%;
    padding: 12px; /* Increased padding for better touch experience */
    font-size: 16px;
  }
}

/* Hide mobile search box on desktop */
@media (min-width: 992px) {
  .mobile-search-bar {
    display: none; /* Hide mobile search box on desktop */
  }
}

/* Suggestions box style for both desktop and mobile */
.search-results {
  position: absolute;
  top: 100%; /* Position the suggestions box directly below the search box */
  left: 0;
  width: 100%; /* Match the input box width */
  background-color: white;
  border: 1px solid #ccc;
  border-top: none;
  z-index: 10;
  box-sizing: border-box;
  max-height: 200px; /* Limit height of suggestions */
  overflow-y: auto; /* Scroll if suggestions are too many */
}

.search-results div {
  padding: 10px;
  cursor: pointer;
}

.search-results div:hover {
  background-color: #f1f1f1;
}

/* Ensure the suggestions box on mobile and desktop have the same width as the input */
#mobileSearchForm {
  position: absolute;
  top: 45px; /* Adjust position of mobile search box */
  left: 0;
  width: 100%; /* Full width of the screen */
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  padding: 0 10px; /* Add padding to prevent content touching the edges */
}

.mobile-search-bar input,
.elegant-search-input {
  width: 100%; /* Full width for input */
  padding: 12px; /* Increased padding for better touch experience */
  font-size: 16px; /* Adjust font size for better visibility */
}

/* Ensure the suggestions box on mobile and desktop have the same width as the input */
#mobileSearchResults {
  position: absolute;
    top: 90px; /* Position it directly below the mobile search form */
    width: 100%; /* Full width of the screen */
    background-color: white;
    border: 1px solid #ccc;
    box-sizing: border-box;
    max-height: 250px; /* Limit height of suggestions */
    overflow-y: auto; /* Scroll if suggestions are too many */
    z-index: 9; /* Ensure suggestions appear just below the search box */
}




      /* About Section */
    #about {
      padding: 60px 0;
      background-color: #f9f9f9;
      transition: all 0.5s ease;
    }

    #about .section-title h2 {
      font-size: 32px;
      color: #2c4964;
      font-weight: 600;
      margin-bottom: 30px;
      text-align: center;
      position: relative;
    }

    #about .section-title h2::after {
      content: '';
      width: 80px;
      height: 2px;
      background-color: #1977cc;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .about .icon-boxes h4 {
  font-size: 18px;
  color: #4b7dab;
  margin-bottom: 10px;
}

.about .icon-box {
  margin-top: 30px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #8dc2f1;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #1977cc;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #1977cc;
  border-color: #1977cc;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title{
  color: #343a40;
  transition: 0.3s;
}


.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}



    /* Counts Section */
    #counts {
      background-color: #f1f7fd;
      padding: 60px 0;
    }

    #counts .section-title h2 {
      font-size: 32px;
      color: #2c4964;
      font-weight: 600;
      margin-bottom: 30px;
      text-align: center;
      position: relative;
    }

    #counts .section-title h2::after {
      content: '';
      width: 80px;
      height: 2px;
      background-color: #1977cc;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .count-box {
      text-align: center;
      background: #f8f9fa;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .count-box i {
      font-size: 40px;
      color: #1977cc;
      margin-bottom: 20px;
    }

    .count-box span {
      font-size: 40px;
      font-weight: 700;
      color: #2c4964;
      display: block;
    }

    .count-box p {
      font-size: 16px;
      color: #666666;
    }

    .count-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    /* Responsive design adjustments */
    @media (max-width: 767px) {
      #about .section-title h2 {
        font-size: 28px;
      }

      .icon-box {
        padding: 20px;
        margin-bottom: 20px;
      }

      .count-box {
        padding: 30px;
      }
    }


    
    /* Latest Reports Section */
    #latest-reports {
      padding: 30px 0;
      background-color: #f8f9fa;
    }

    #latest-reports .section-title h1 {
      font-size: 32px;
      font-weight: bold;
      color: #2c4964;
      margin-bottom: 30px;
      text-align: center;
      position: relative;
    }

    #latest-reports .section-title h1::after {
      content: '';
      width: 80px;
      height: 2px;
      background-color: #1977cc;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }



    .latest-reports h2 a{
      color: #2c4964;
      font-size: 20px;
      height: auto;
    }

    .latest-reports h2 a:hover{
      color: #1977cc;
    }

    .latest-reports p {
      color: #777777;
    }

    .report-line-vertical {
        border-left: 2px solid #1977cc;
        padding-left: 15px;
        margin-top: 40px;
        height: auto;

    }

    #latest-reports .btn {
      font-size: 16px;
      padding: 10px 30px;
      background-color: #25344d;
      color: white;
      text-transform: uppercase;
      border-radius: 25px;
      transition: background-color 0.3s ease;
    }

    #latest-reports .btn:hover {
      background-color: #1977cc;
      text-decoration: none;
    }





    /* Our Clients Section */
    #our-clients {
      padding: 60px 0;
      background-color: #ffffff;
    }

    #our-clients .section-title h2 {
      font-size: 32px;
      color: #2c4964;
      font-weight: 600;
      margin-bottom: 30px;
      text-align: center;
      position: relative;
    }

    #our-clients .section-title h2::after {
      content: '';
      width: 80px;
      height: 2px;
      background-color: #1977cc;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }

    #our-clients img {
      width: 100%;
      border-radius: 5px;
    }

    /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #fff;
}

#footer .footer-top {
  background: #f1f7fd;
  padding-top: 30px;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #1c84e3;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #1977cc;
}


#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1977cc;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #1c84e3;
  color: #fff;
  text-decoration: none;
}


/*--------------------------------------------------------------
# Breadcrumb
--------------------------------------------------------------*/


.breadcrumb-item + .breadcrumb-item::before {
    content: ">>";
}

/* Get Startet Button */
.round-btn1 {
  background: #1977cc;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}

.round-btn1:hover {
  background: #166ab5;
  color: #fff;
}

@media (max-width: 768px) {
  .round-btn1 {
    padding: 6px 18px;
  }
}

.round-btn2 {
  background: #00bcf2;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}

.round-btn2:hover {
  background: #166ab5;
  color: #fff;
}

@media (max-width: 768px) {
  .round-btn2 {
    padding: 6px 18px;
  }
}

.round-btn3 {
  background: #1B4E8C;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
}

.round-btn3:hover {
  background: #166ab5;
  color: #fff;
}

@media (max-width: 768px) {
  .round-btn3 {
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Report Heading When Scoll Down
--------------------------------------------------------------*/


.advertisement {
    width: 100%;
    position: fixed;
    top: 0;
    background: #1977cc;
    z-index: 1;
    transition: all 1s;
}

.hide {
    opacity:0;
    top:-300%;
}
.show {
    top:0;
}

/*--------------------------------------------------------------
# Report Tabs
--------------------------------------------------------------*/


/* Ensure styles are applied properly by adding !important */
.rtabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #2c4964;
    background-color: transparent;
    border-color: transparent transparent #2c4964;
    border-bottom: 2px solid !important;
    font-size: 18px;
    font-weight: bold;
}
.rtabs .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #2c4964;
    font-size: 18px;
}

.rtabs #report-details p{
  color: #4f4f4f;
  text-align: justify;
  font-size: 15px;
  line-height: 25px;
}

.rtabs #report-details ul, li{
  color: #4f4f4f;
  font-size: 15px;
  line-height: 32px;
}

.rtabs h1 {
  color: #2c4964;
  line-height: 35px;
  font-size: 22px;
  
}

.rtabs h5 {
  color: #2c4964;
  font-size: 18px;
  font-weight: 600;
  line-height: 32px;
}

.rtabs h6 {
  color: #2c4964;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
}

.rtabs #toc .toc-para{
  color: #2c4964;
  text-align: justify;
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
}

.toc1 li {
    list-style-type: none;
  color: #4f4f4f;
  font-size: 15px;
   line-height: 32px;
}

.toc2 li {
  list-style-type: disc;
  color: #4f4f4f;
  font-size: 15px;
   line-height: 32px;
}


.rtabs .report-scope-table {
    width: 98%;
    margin: 10px auto;
    margin-bottom: 15px;
    border-collapse: collapse;
    border: 1px solid #e1e1e1;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.rtabs .report-scope-table th, .report-scope-table td {
    padding: 10px;
    padding-left: 25px;
    text-align: left;
    border: 1px solid #e1e1e1;
    line-height: 1.6;
}

.rtabs .report-scope-table th {
    background-color: #f4f4f4;
    font-weight: bold;
    text-align: center;
    color: #333;
    font-size: 15px;
}

.rtabs .report-scope-table td {
    color: #555;
    font-size: 14px;
}

.rtabs .report-scope-table tr:nth-child(even) {
    background-color: #fafafa;
}

.rtabs .report-scope-table tr:hover {
    background-color: #f1f1f1;
    transition: background-color 0.3s ease;
}

.rtabs .report-scope-table td strong {
    color: #333;
}

/* Column width adjustments */
.rtabs .report-scope-table td:first-child,
.rtabs .report-scope-table th:first-child {
    width: 40%;
}

.rtabs .report-scope-table td:last-child,
.rtabs .report-scope-table th:last-child {
    width: 60%;
}





/*--------------------------------------------------------------
# Report Heading
--------------------------------------------------------------*/
.report-heading {
  padding: 20px 0;
  background-color: #f1f7fd;
  
}

.report-heading h4 {
  color: #2c4964;
  
}


/*--------------------------------------------------------------
# Payment Card Section
--------------------------------------------------------------*/

.payment-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 16px;
  width: 100%;
  max-width: 500px;
  font-family: Arial, sans-serif;
}

@media (min-width: 1024px) {

  .paymentsection {
    transition: top 0.5s ease-in-out;
  }
}

.card-content {
  display: flex;
  align-items: center;
  gap: 16px; /* Space between image and details */
  margin-bottom: 16px;
}

.report-image {
  width: 100px;
  height: auto;
  border-radius: 8px;
}

.report-details {
  flex: 1; /* Ensures details take up remaining space */
}

.report-details p {
  margin: 4px 0;
  font-size: 14px;
  color: #2c4964;
}


.buy-now-button {
  background-color: #FFC107;
  color: black;
  border: none;
  border-radius: 4px;
  padding: 12px;
  cursor: pointer;
  font-size: 16px;
  width: 100%; /* Full width button */
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy-now-button i {
  margin-right: 8px;
  font-size: 24px;
}

.buy-now-button:hover {
  background-color: #FFB300;
}

.buy-horizontal-line {
  border-top: 2px solid #ccc; /* Gray line */
  margin: 20px 0;  /* Adds margin on top and bottom of the line */
}

/* Trusted by section styling */
.trusted-section {
  text-align: around;  /* Center the text and logos */
  margin-top: 30px;     /* Space above the section */
}

/* Trusted text style */
.trusted-text {
  font-size: 18px;
  color: #2c4964;
  margin-bottom: 20px;  /* Space between text and logos */
}

/* Logos styling */
.logos {
  display: flex;
  justify-content: center;
  gap: 15px;  /* Space between logos */
}

.company-logo {
  width: 70px;   /* Adjust the size of the logos */
  height: 100%;
  filter: grayscale(100%);  /* Apply grayscale effect */
  transition: filter 0.3s ease; /* Smooth transition for hover effect */
}

.company-logo:hover {
  filter: grayscale(0%);  /* Remove grayscale on hover, showing original color */
}


/*Payment Page Styles*/
   /* Form Layout */
    .form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }

    .form-column {
        flex: 1;
        min-width: 250px; /* Ensure columns are not too narrow */
    }

    .form-group {
    margin-bottom: 20px;
}

.input-group-text {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    color: #555;
    border-right: none;
    padding: 10px;
    display: flex;
    align-items: center;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 4px 4px 0;
}

    .order-summary {
        border: 1px solid #ddd;
        padding: 15px;
        background-color: #f9f9f9;
    }

    .order-summary h5 {
        font-size: 18px;
        font-weight: bold;
    }

    .exact-style-tabs {
    display: flex;
    width: 100%;
    margin-bottom: 20px;
    border-bottom: none;
    gap: 10px;
}

.exact-style-tabs .nav-item {
    flex-grow: 1;
}

.exact-style-tabs .nav-link {
    display: block;
    color: #000;
    background-color: #e6e6e6;
    padding: 10px 20px;
    border: none;
    border-radius: 5px 5px 0 0;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
}

.exact-style-tabs .nav-link.active {
    background-color: #333;
    color: #fff;
    position: relative;
}

.exact-style-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.exact-style-tabs .nav-link:hover {
    background-color: #ccc;
}

/* Invoice table styling */
.invoice-details {
    margin: 20px auto;
    display: flex;
    width: 100%;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.invoice-table th {
    text-align: left;
    padding: 10px;
    padding-left: 20px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.invoice-table td {
    text-align: right;
    padding: 10px;
    padding-right: 20px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.invoice-table th {
    font-weight: bold;
    color: #333;
    
}

.invoice-table .total-row th {
    color: #000;
    font-size: 18px;
}

.invoice-table .total-row td {
    font-weight: bold;
    color: #000;
}

/* General Button Styles */
.payment-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

/* PayPal Button */
.paypal-button {
    background-color: #ffd700;
    color: #fff;
    border: 1px solid #ffd700
}

.paypal-button:hover {
    background-color: #ffa500;
}

.paypal-button .icon {
    width: 12%;
    height: auto;
    margin-right: 5px;
    
}

/* PayPal Text Styling */
.paypal-text {
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.paypal-pay {
    color: #0070ba; /* Lighter blue for 'Pay' */
}

.paypal-pal {
    color: #003087; /* Darker blue for 'Pal' */
}

/* Bank Transfer Button */
.bank-transfer-button {
    background-color: #333;
    color: #fff;
}

.bank-transfer-button:hover {
    background-color: #555;
}

.bank-transfer-button i {
    margin-right: 10px;
    font-size: 22px;
}


/*Categories Page*/

.category-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.category-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.category-title h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: #25344d;
}