h1,
h2 {
    font-family: 'azonixregular', sans-serif;
    color: #3ca47d;
}

p {
    font-family: 'Calibri', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    /* font-family: 'azonixregular', sans-serif; */
}

html {
    scroll-behavior: smooth;
}

/* Hero Section Padding for Navbar */
#landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
  color: black;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #28544b;
}

.navbar-nav .nav-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #28544b;
  transition: width 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.cl-btn {
    background-color: #3ca47d;
    color: white;
}
.cl-btn:hover{
    background-color: #3ca47e8b;
    color: rgb(0, 0, 0);
    
}
.landing p {
    font-family: 'azonixregular', sans-serif;
    color: #3ca47d;
}

.landing img {
    width: auto;
}

#team {
    background-color: black;
}

#team img {
    height: 70vh;
    width: auto;
    background-color: white;
}

#about img {
    border-radius: 20px;
}

#services {
    border-radius: 20px;
}

#services h3 {
    font-family: 'azonixregular', sans-serif;
}

.service-box {
    width: 100%;
    max-width: 350px;
    background-color: black;
    color: white;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box h3 {
    color: white;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.service-box i {
    color: #3ca47d;
}

.contact-box {
    max-width: 350px;
    background-color: #3ca47d;
    color: white;
}

.contact-box a {
    text-decoration: none;
    color: white;
}
