@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');

.p-6 {
  padding-top: 5em;
  padding-bottom: 3em;
}

.mb-6 {
  margin-bottom: 4em;
}

/**
 * ----------------------------------------
 * Headings/Text
 * ----------------------------------------
 */
h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 4.5em;
  color: #002733;
}

h2 {
  color: #003B4C;
  font-size: 1.5em;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}

h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #2F6F97;
  font-size: 2em;
}

h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.4em;
  line-height: 1.7em;
  color: #598CAC;
}

p,
label,
li {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
  line-height: 1.6em;
  color: #001419;
}

p.projectinfo {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.3em;
  line-height: 1.5em;
  color: #001419;
}

label {
  font-weight: 700;
}

strong {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.ltgreen {
  background-color: #F7FCF2;
}

.mdgreen {
  background-color: #DEF8C4;
}

.project-img img {
  box-shadow: 1px 1px 10px 2px rgba(0, 39, 51, .05);
  border-radius: 10px;
}

/**
 * ----------------------------------------
 * Header
 * ----------------------------------------
 */
.header {
  background-color: #Ffffff;
  background-image: url("../img/header-bg.png");
  background-size: cover;
}
/**
 * ----------------------------------------
 * Navbar
 * ----------------------------------------
 */
.nav-item a {
  color: #007DA3;
  font-size: 1.2em;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.nav-item.nav li a:hover {
  color: #2db3bd;
}

.nav-item .active {
  color: #007DA3 !important;
}

.nav-pills .nav-item .active {
  color: #fff !important;
}

.active {
  border-bottom: 4px solid #007DA3;
}


/**
 * ----------------------------------------
 * Cards
 * ----------------------------------------
 */

.card-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.2em;
  line-height: 1.4em;
  color: #598CAC;
}

.btn-primary {
  background-color: #005E7A;
  /* Tomato red */
  border-color: #005E7A;
  border-radius: 200px !important;
}

.btn-primary:hover {
  background-color: #0085AD;
  /* Darker red on hover */
  border-color: #0085AD;
}

.btn-primary:active {
  background-color: #0085AD;
  /* Even darker red on active */
  border-color: #0085AD;
}

.card img {
  max-width: 30%;
  margin: auto;
}

.cborder {
  border: 1px solid #E8F8D8 !important;
}

.card:hover {
  background-color: rgba(222, 248, 196, .2) !important;
}

/**
 * ----------------------------------------
 * LINKS
 * ----------------------------------------
 */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: #007DA3;
}

a {
  color: #005E7A;
  text-decoration: underline;
}

a:hover {
  color: #2db3bd;
}

/**
 * ----------------------------------------
 * LIGHTBOX
 * ----------------------------------------
 */

.modal img {
  padding: 30px;
  background-color: #fff !important;
}

.lightbox-caption {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.2em;
  color: #002733 !important;
  font-style: normal !important;
  background-color: #fff !important;
}

.carousel-item .ratio {
  background-color: #fff !important;
}

.modal svg {
  fill: #002733;
}

/*
 * ----------------------------------------
 * SCROLL TO TOP
 * ----------------------------------------
 */
#scrollToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background: url("../img/backtoptop.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px;
  width: 50px;
  height: 50px;
  border-radius: 200px;
  transition: opacity 0.3s;
}

#scrollToTopBtn:hover {
 opacity: .5;
}
/*
 * ----------------------------------------
 * MEDIA QUERIES
 * ----------------------------------------
 */
@media (max-width: 767.98px) { /* Adjust breakpoint as needed */
  .row > [class*="col-"] {
    margin-bottom: 15px; /* Add desired vertical space */
  }
}
@media (max-width: 1024px) { /* Adjust breakpoint as needed */
  .row > [class*="col-lg-4"] {
    margin-bottom: 40px; /* Add desired vertical space */
  }
}