@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap");
/* common css */
* {
  font-family: "Poppins", sans-serif;
}
.red {
  color: rgba(170, 25, 25, 1);
}

p {
  font-size: 12px;
  font-weight: 100;
}

body {
  background-color: white;
}

#logo {
  height: 50px;
  width: 50px;
}

/* navbar css */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
  height: 90px;
}

.navbar-brand {
  color: #000;
  font-weight: bold;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.navbar-nav .nav-item {
  list-style: none;
  padding: 0 40px;
  position: relative;
}

.navbar-nav .nav-link {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: black;
  transition: 0.3s ease;
}

.navbar-nav li:last-child button {
  height: 35px;
  width: 100px;
  font-size: 16px;
  border-radius: 5px;
  border: 2px solid black;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  color: black;
  transition: 0.3s ease;
}

.navbar-nav li:last-child button:hover {
  color: rgba(170, 25, 25, 1);
  border-color: rgba(170, 25, 25, 1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: rgba(170, 25, 25, 1);
}

.navbar-nav .nav-link.active::after {
  content: "";
  width: 50%;
  height: 2px;
  background: rgba(170, 25, 25, 1);
  position: absolute;
  bottom: -4px;
  left: 25px;
}

/* Responsive styles */
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
  }

  .navbar-nav .nav-item {
    padding: 10px;
  }

  .navbar-nav .nav-link {
    text-align: center;
  }
  .navbar-collapse {
    display: none;
    text-align: center;
    background-color: #f8f9fa; /* Add background color here */
  }

  .navbar-collapse.show {
    display: block;
  }
}

/* Hero part (1st section of the page) */
.hero {
  padding: 50px;
  text-align: center;
  color: rgb(0, 0, 0);
}

.hero h1 {
  font-size: 32px;
  font-weight: bold;
}

.hero .red {
  color: rgba(170, 25, 25, 1);
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero button {
  height: 60px;
  width: 150px;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid white;
  background-color: rgba(170, 25, 25, 1);
  color: white;
  cursor: pointer;
}

.hero button:hover {
  border: 2px solid rgba(170, 25, 25, 1);
  color: rgba(170, 25, 25, 1);
  background-color: white;
}

.hero a.active::after {
  content: "";
  width: 50%;
  height: 2px;
  background: rgba(170, 25, 25, 1);
  position: absolute;
  bottom: -4px;
  left: 25px;
}

.hero a.activebutton button {
  color: rgba(170, 25, 25, 1);
  border-color: rgba(170, 25, 25, 1);
}

/* Responsive CSS for hero section */
@media (max-width: 767px) {
  .hero {
    padding: 30px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero a.btn {
    font-size: 14px;
  }
}

/* Rakta Bandhu Missions */
#missions {
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

#missions h1 {
  font-size: 24px;
}

#missions p {
  font-size: 14px;
}

@media (min-width: 768px) {
  #missions {
    margin: 20px 40px;
    border: 0 solid black;
  }

  #missions h1 {
    font-size: 32px;
  }

  #missions p {
    font-size: 16px;
  }
}

/* How to featurebox css */
.featurebox {
  margin-left: 40px;
  margin-top: 20px;
  border-radius: 50%;
  border: 0px solid black;
  padding: 20px;
  padding-right: 30px;
  text-align: center;
  width: 250px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
}

/* footer css */

footer {
  margin-top: 30px;
  border: 1px solid black;
  background-color: rgba(170, 25, 25, 1);
  padding: 20px;
  color: white;
}

footer h6 {
  font-size: 14px;
  padding-bottom: 20px;
}

footer p,
footer a {
  font-size: 13px;
  margin-bottom: 8px;
  text-decoration: none;
  color: white; /* Set link color to white */
}

footer .follow i {
  color: white;
  padding-right: 4px;
  cursor: pointer;
}

footer .install .row img {
  border: 1px solid white;
  border-radius: 6px;
}

footer .install img {
  margin: 10px 0 15px 0;
}

footer .follow i:hover,
footer a:hover {
  color: rgb(110, 63, 63);
}

footer .section-p1 {
  padding-top: 20px;
}

@media (max-width: 767px) {
  footer .col {
    margin-bottom: 30px;
  }

  footer .icon {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  footer .col {
    margin-bottom: 40px;
  }

  footer h6 {
    font-size: 12px;
  }

  footer p,
  footer a {
    font-size: 11px;
  }

  footer .follow i {
    padding-right: 2px;
  }

  footer .install .row {
    justify-content: space-between;
  }

  footer .install .row img {
    width: 60px;
    height: 60px;
  }

  footer .install img {
    margin: 5px 0 10px 0;
  }
}
