@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body,html{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Navbar styling */
.navbar {
  background-color: #f8f8f8;
  margin-bottom: 20px;
}
.company-name {
    color: #2baa4b; /* Adjust the green color as necessary */
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
}
h2 .text-success {
    color: #2baa4b; /* Adjust the green color as necessary */
}
h2 span{
  color: #2baa4b;;
}

/*footer starts*/

.footer {
  background: #f8f8f8;
}

.footer h5 {
  color: #6f42c1; 
}

.footer a {
  color: #000;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer address {
  font-style: normal;
}

.footer .bi-arrow-right {
  font-size: 1rem;
  color: #6f42c1; 
}

.footer p {
  margin: 0;
}

.footer .container {
  max-width: 1200px;
}

@media (max-width: 768px) {
  .footer .col-md-3,
  .footer .col-md-2 {
   margin-bottom: 1.5rem;
  }
}