/* Base font styles */
* {
    font-family: "Outfit", sans-serif;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

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

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-family: "Outfit", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
    justify-content: space-between;
  padding: 15px 40px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-container img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.logo-container p {
  font-size: 18px;
  font-weight: bold;
  color: rgb(42, 83, 106);
  line-height: 1.2;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.3s;
}

.nav-links li a {
  text-decoration: none;
  color: rgb(42, 83, 106);
  font-weight: 600;
}

.login {
    color: white;
}

.nav-links li a:hover {
  color: #006699;
}

.separator {
  width: 1px;
  height: 20px;
  background-color: #ccc;
}
.nav-links li.link-button a {
  background: linear-gradient(135deg,#001e2b  0%,#00684a 100%);
  color: white !important;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  @media (min-width: 768px) {
    display: none;
  }
}

.cta-button {
  background: linear-gradient(135deg,#001e2b  0%,#00684a 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.menu {
  display: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 80px;
    right: -100%;
    flex-direction: column;
    background: white;
    width: 200px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .menu {
    display: block;
  }

  .cta-button {
    display: none;
  }

  .separator {
    display: none;
  }
}


.hero-section img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    column-gap: 50px;
    height: auto;
    background-color: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    width: 100%;
    @media (min-width: 768px) {
        height: 50vh;
        padding: 300px 200px;
    }
}
.hero-section h1 {
    font-size: 2rem;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    padding: 0 20px;
    @media (min-width: 768px) {
        font-size: 3.5rem;
        padding: 0;
    }
}
.hero-section .buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    @media (min-width: 768px) {
        flex-direction: row;
        justify-content: center;
    }
}
.hero-section .buttons button {
    margin: 10px;
    height: 50px;
    width: 160px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    background: linear-gradient(135deg,#001e2b  0%,#00684a 100%);
    color: white;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.hero-section .buttons button:hover {
    background: linear-gradient(135deg,#001e2b  0%,#00684a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 157, 53, 0.4);
}
.purpose-section {
    height: auto;
    padding: 20px 15px;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('purpose.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: start;
    width: 100%;
    @media (min-width: 768px) {
        height: 100vh;
        border: none;
        border-radius: 0px 0px 30px 30px;
        padding: 20px 30px;
    }
}
.purpose-section h1 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    @media (min-width: 768px) {
        text-align: start;
        margin-top: 170px;
        font-size: 3rem;
    }
}
.purpose-section p {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    font-weight: 400;
    @media (min-width: 768px) {
        width: 60%;
        text-align: start;
        font-size: 20px;
    }
}
.about-section-header {
    text-align: center;
    margin: 30px 0px;
    font-size: 2rem;
    color: #333;
    padding: 0 20px;
    @media (min-width: 768px) {
        font-size: 2.5rem;
        padding: 0;
    }
}

.about-section{
    margin: 40px 0px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    align-items: center;
    @media (min-width: 768px){
        flex-direction: row;
        justify-content: space-around;
        padding: 0;
    }
}

.about-section .about-item {
    width: 100%;
    height: auto;
    min-height: 400px;
    border: none;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin: 0 10px;
    @media (min-width:768px) {
        width: 25%;
        height: 400px;
        padding: 20px;
        margin: 0;
    }
}
.about-section .about-item:hover {
    transform: translateY(-10px);
}

.about-item h2 {
    font-size: 1.5rem;
    color: #333;
    margin: 20px 0 15px 0;
}

.about-item p {
    padding: 0 10px;
    line-height: 27px;
    text-align: center;
    font-size: 16px;
    color: #666;
    @media (min-width: 768px) {
        padding: 0 20px;
    }
}

.about-item ul {
    line-height: 27px;
    list-style: none;
    padding: 0;
}

.about-item ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #555;
}

.about-item ul li i {
    color: #f89d35;
    width: 20px;
}

.about-item .icon {
    margin: 30px 0px;
    height: 70px;
    width: 70px;
    border-radius: 40px;
    background: linear-gradient(135deg,#001e2b  0%,#00684a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(248, 157, 53, 0.3);
}

.services-section {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('services.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    height: auto;
    padding: 50px 15px;
    width: 100%;
    @media (min-width: 768px) {
        height: 80vh;
        border: none;
        border-radius: 50px;
        padding: 50px 30px;
    }
}

.services-section h1 {
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin-bottom: 20px;
    @media (min-width: 768px) {
        font-size: 3rem;
    }
}

.services-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    margin-top: 60px;
    @media (min-width: 768px){
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
}

.service-item {
    width: 100%;
    height: auto;
    min-height: 400px;
    border-radius: 30px;
    padding: 20px 15px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    margin: 0 10px;
    @media (min-width: 768px){
        width: 20%;
        height: 400px;
        padding: 20px;
        margin: 0;
    }
}

.service-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.service-item h2 {
    font-size: 1.4rem;
    margin: 20px 0 15px 0;
    color: white;
}

.service-item p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.service-item .icon {
    margin: 30px 0px;
    height: 70px;
    width: 70px;
    border-radius: 40px;
    background: linear-gradient(135deg,#001e2b  0%,#00684a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(248, 157, 53, 0.4);
}

.footer {
    background-color: #333;
    color: white;
    padding: 20px 15px;
    margin-top: 40px;
    width: 100%;
    @media (min-width: 768px){
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        padding: 20px 10px;
    }
}
.footer-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 10px 0;
    width: 100%;
    @media (min-width: 768px){
        width: 30%;
    }
}
.footer img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    align-self: center;
}
.footer-item h2{
    color: #00684a;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-item p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer-item p i {
    color: #00684a;
    width: 16px;
}

.footer-item ul {
    list-style: none;
    padding: 0;
}

.footer-item ul li {
    margin: 8px 0;
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-item ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-item ul li:hover,
.footer-item ul li a:hover {
    color: #00684a;
}
.footer-bottom {
    text-align: center;
    font-size: 14px;
    background-color: #333;
    color: white;
    padding : 40px 0;
    font-weight: 300;
}
