body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color:black;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background:white;
    background-image: url(images/bg\ 2.PNG)
    }

.overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:white;
    z-index: -1;
    background-image: url(images/bg\ 2.PNG);
}

.logo2 {
    max-width: 250px; 
    margin-bottom: 40px;
    display: block;
    margin: auto;
}

.hero-section {
    color:white;
    text-align: center;
    padding: 150px 0;
}

.hero-section h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background-color: #fff;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    
}
.btn:hover{
    background-color: bisque;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    max-width: 200px; 
    margin-bottom: 40px;
    display: block;
    margin: 5%;
    margin-right: 100%;

}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.navbar {
    position: relative;
    z-index: 2;
}


.navbar ul {
    list-style: none;
    display: flex;
    margin-left: 200%;
    padding: 0;
}

.navbar li {
    margin-right: 40px;
}

.navbar a {
    display: block;
    text-decoration: none;
    color: #fff; 
    font-weight: bold;
}

.text-center{
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 3;
}

.navbar li:hover{
    background-color: bisque;
}

.mission, .aim {
    text-align: center;
    margin-top: 40px;
}

.mission i, .aim i {
    font-size: 2em;
    margin-bottom: 10px;
}

.service {
    position: relative;
    text-align: center;
    cursor: pointer;
}

.service img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

#services-section {
    background-color: #f8f8f8;
    padding: 50px 0;
}

.services-container {
    display: flex;
    justify-content: space-between;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 18px;
}

.service-images {
    display: flex;
}

.service-images img {
   width: 50%;
   height: 70%;
    margin-right: 20px; 
}

.services-container {
    display: flex;
    justify-content: space-between;
}

.service-details {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    padding: 20px;
    border-radius: 5px;
    color: black;
}

.service:hover .service-details {
    display: block;
    background-color: bisque;
}

#features,
#about,
#contact {
    padding: 100px 0;
}

#features h2,
#about h2,
#contact h2 {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial img {
    width: (120px / 300px) * 100%;
    border-radius: 70%;
}

#slider {
    width: 100%;
    overflow: hidden;
}

#image-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.content {
    color: black;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

#contact {
    text-align: center;
    padding: 20px;
}

.icon {
    font-size: 40px;
    margin: 20px;
}

.fa {
    padding: 40px;
    font-size: 30px;
    width: (30px / 300px) * 100%;
    text-align: center;
    text-decoration: none;
    border-radius: 40%;
    margin-right: 10%;
  }
  
  .fa:hover {
      opacity: 0.7;
  }

  .fa-facebook {
    background: #3B5998;
    color: white;
  }
  
  .fa-twitter {
    background: #55ACEE;
    color: white;
  }
  .fa-tiktok {
    background: black;
    color: white;
  }
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.popup-container h2 {
    color: #333;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #888;
}

.form-container {
    text-align: center;
}

.form-container h2 {
    color: #333; /* Adjust the color as needed */
}

.form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

@media only screen and (max-width: 768px) {
    /* Adjustments for smaller screens */
    .logo {
        max-width: 150px;
        margin: 5%;
        margin-right: 10%;
    }
    
    .navbar ul {
        margin-left: 0;
    }
    
    .navbar li {
        margin-right: 20px;
    }
    
    .btn {
        font-size: 0.8em;
        padding:
