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

body, ul, li, a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    color: inherit;
}

body {
    font-family: 'Open Sans', 'Lato', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  
}


img {
    max-width: 100%;
    height: auto;
}

.header {
    background-color: #8FB3A4;
    color: #fff;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content:space-between;
    align-items:center;
    padding: 10px 20px;
}

.logo img {
    max-width: 250px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #fff;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.nav-links a:hover {
    background:  #6f6f6f;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: rgba(34, 34, 34, 0.9); 
    padding: 12px 0;
    border-radius: 8px; 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
    min-width: 200px;
    backdrop-filter: blur(8px); 
}

.dropdown-menu li {
    margin: 5px 0;
    padding: 6px 16px; 
}

.dropdown-menu li a {
    display: block; 
    padding: 12px 20px; 
    margin: 0;
    font-size: 16px; 
    font-weight: 600; 
    color: #f1f1f1;
    border-radius: 6px; 
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.dropdown-menu li a:hover {
    background: #666; 
    transform: translateX(8px); 
    color: #fff;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.hamburger {
  display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    margin-left: auto; /* pushes it to the right */
}

@media (max-width: 768px) {

    .header .navbar .logo img {
        max-width: 165px;   /* make it bigger on mobile */
        height: auto;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background: #333;
        width: 100%;
        height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
    }

    .nav-links.active {
        height: auto;
        opacity: 1;
        visibility: visible;
        padding-bottom: 10px;
    }

    .nav-links li {
        margin: 5px 0;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: none;
        padding: 5px 0;
    }

    .dropdown-menu li a {
        padding-left: 30px;
    }
}

@media (min-width: 769px) {
    .dropdown-menu {
        min-width: 200px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;


  }
  
  .work-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
  }
  
  .slide {
    position: relative;
    min-width: 100%;
    box-sizing: border-box;
    height:100%;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .carousel-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height:80%;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    color: white;
  }
  
  
  
.slide-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.see-more {
    display: inline-block;
    font-size: 1rem;
    color: #FFD700;
    text-decoration: none;
    background-color: #004A33;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease;
}

.see-more:hover {
    background-color: #004D40;
    transform: scale(1.05);
}

.quote, .slide-content {
     text-align: center;
    font-size: 1.8rem;
    font-family: 'Georgia', serif;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
}
.quote {
    max-width: 80%;
    margin: auto;

}


.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}


@media (max-width: 1024px) {
    .slide-content {
        padding: 15px 20px;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .quote {
        font-size: 1.6rem;
        padding: 15px 20px;
    }

    .prev, .next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 70vh; 
    }

    .slide {
        height: 70vh; 
    }

    .slide-content {
        padding: 10px 15px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .quote {
        font-size: 1.4rem;
        padding: 10px 15px;
    }

    .prev, .next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 60vh; 
    }

    .slide {
        height: 60vh; 
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.8rem;
    }

    .quote {
        font-size: 1.2rem;
    }
}


.text-section {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background-color: #8FB3A4;
    padding: 60px 40px; 
    color: #fff;
    flex-wrap: wrap; 
}

.text-section .text {
    text-align: left; 
    width: 38%; 
}

.text-section .text h1 {
    font-weight: bold;
    font-size: 1.1rem; 
    color: #004A33;
    margin-bottom: 0.10rem;
}

.text-section .text h2 {
    font-size: 2.5rem; 
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.text-section .text h3 {
    font-size: 1.2rem; 
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
.text-section .text p {
    font-size: 1.2rem; 
    color: #fff;
    margin-bottom: 1.5rem;
}

.our-work-link {
    display: inline-block;
    color: #FFD700;
    font-size: 1.4rem; 
    text-decoration: none;
    background-color:#004A33;
    padding: 15px 30px; 
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.our-work-link:hover {
    background-color:#004A33;
    transform: scale(1.05); 
    color: #FFD700;
}

.text-section .logo img {
    width: 100%;
    max-width: unset;
    height: auto;
    border-radius: 10px; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4); 
}
.text-section .logo{
    width:60%;
}



@media (max-width: 768px) {
    .text-section {
        flex-direction: column; 
        align-items: center; 
        text-align: center; 
        padding: 30px 15px; 
        gap: 20px;
    }

    .text-section .logo {
        order: -1; 
        width: 100%;
    }

    .text-section .text {
        max-width: 90%; 
        width: 100%;
    }

    .text-section .text h1 {
        font-size: 1.6rem; 
    }

    .text-section .text h2 {
        font-size: 2rem; 
    }

    .text-section .text p {
        font-size: 1rem; 
    }

    .text-section .logo img {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .text-section {
        padding: 20px 10px; 
        gap: 15px;
    }

    .text-section .logo {
        order: -1; 
    }

    .text-section .text h1 {
        font-size: 1.4rem; 
    }

    .text-section .text h2 {
        font-size: 1.8rem; 
    }

    .text-section .text p {
        font-size: 0.9rem; 
    }

    .text-section .logo img {
        max-width: 300px; 
    }
}


.team-wrapper {
    padding: 60px 20px;
    text-align: center;
    background-color: #f4f4f4;
}

.team-title h4 {
    display: inline-block;
    padding: 20px;
    color: #004A33;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 1.2px;
    word-spacing: 5px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.team-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.team-card {
    width: 420px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.team-card .imbBx {
    width: 100%;
    aspect-ratio: 3 / 4; /* Keeps all images same shape */
    background-color: #ddd;
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: filter 0.3s ease, transform 0.3s ease;
    filter: grayscale(100%);
}

.team-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.team-content {
    background: rgba(0, 74, 51, 0.9);
    padding: 20px;
    text-align: center;
    color: #FFD700;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    flex-grow: 1;
}

.team-content h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.team-content h3 span {
    font-size: 14px;
    color: #FFD700;
    display: block;
    margin-top: 6px;
}

.sci {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    padding: 0;
    list-style: none;
}

.sci li {
    transition: transform 0.3s ease;
}

.sci li:hover {
    transform: scale(1.2);
}

.sci li a {
    color: #FFD700;
    font-size: 24px;
    transition: color 0.3s ease;
}

.sci li a:hover {
    color: #e6c200;
}

.view-bio {
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #FFD700;
    color: #004A33;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.view-bio:hover {
    background-color: #e6c200;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Popup styles unchanged */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.team-popup-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 80%;
    max-width: 600px;
    position: relative;
    overflow-y: auto;
    max-height: 80vh;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.team-popup-content h3 {
    color: #004A33;
    margin-bottom: 10px;
    font-size: 26px;
    font-weight: 600;
}

.team-popup-content h4 {
    color: #004A33;
    margin-bottom: 20px;
}

.team-popup-content p {
    font-size: 16px;
    color: #333;
    white-space: pre-wrap;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #004A33;
    cursor: pointer;
    font-weight: bold;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    .team-card {
        width: 95%;
        margin: 0 auto;
    }

    .team-title h4 {
        font-size: 40px;
    }

    .view-bio {
        padding: 6px 10px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .team-card-container {
        flex-direction: column;
        gap: 30px;
    }

    .team-card {
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
    }

    .team-title h4 {
        font-size: 32px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .team-title h4 {
        font-size: 26px;
    }

    .team-content h3 {
        font-size: 18px;
    }

    .team-content h3 span {
        font-size: 13px;
    }

    .view-bio {
        font-size: 13px;
        padding: 6px 10px;
    }
}


.banner {
    text-align: center;
    background-color:  #8FB3A4;
    padding: 20px 0; 
}

.banner p {
    color: #6f6f6f;
    font-size: 2.5em;
    font-weight: bold;
    margin: 0; 
}


.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 100%;
    height: 0;
    padding-top: 75%;
    background-size: cover;
    background-position: center;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.card:hover .card-overlay {
    opacity: 1;
    transform: scale(1);
}

.card-overlay h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.card-overlay p {
    margin-top: 10px;
    font-size: 1rem;
    text-align: center;
    padding: 0 20px;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
}

.read-more {
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    color: #FFD700;
    background-color: #004A33;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.read-more:hover {
    background-color: #004D40;
    transform: scale(1.1);
}
 .testimonials-section {
    text-align: center;
    padding: 40px 20px;
    
}

.testimonials-title {
    display: inline-block;
    padding: 20px;
    color: #004A33;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 1.2px;
    word-spacing: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 40px;
    background:  #8FB3A4;
    color: white;
    border-radius: 10px;
    margin: 10px;
    font-size: 1.5rem;
    line-height: 1.6;
}

.testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.testimonial.active {
    display: block;
    transition: opacity 1s ease-in-out;
}

.testimonial-content {
    font-size: 1.2rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .testimonial-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial {
        font-size: 1rem;
        padding: 20px;
    }
}

.modern-banner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #fff, #f5f5f5);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.banner-item {
    font-size: 2rem;
    font-weight: 600;
    color: #014736;
    text-align: center;
    margin: 15px 30px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    padding: 10px 20px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner-item:hover {
    color: #01664D;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .modern-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .banner-item {
        margin: 10px 0;
    }
}



.mission-vision-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}


.mission, .vision {
    flex: 1;
    max-width: 500px;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.mission-vision-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #008080;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border-bottom: 3px solid #008080;
    padding-bottom: 10px;
}


.content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

@media screen and (max-width: 768px) {
    .mission-vision-container {
        flex-direction: column;
        align-items: center;
        padding: 30px 15px;
    }

    .mission, .vision {
        max-width: 100%;
        padding: 25px;
    }

    .mission-vision-title {
        font-size: 22px;
    }

    .content {
        font-size: 14px;
    }
}




  .the-team {
    text-align: center;
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
}

.the-team p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 500;
}

.the-team p:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}


@media screen and (max-width: 768px) {
    .the-team {
        padding: 30px 15px;
    }

    .the-team p {
        font-size: 1.1rem;
        padding: 20px;
    }
}

.US-section {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #f9f9f9;
    align-items: center;
    justify-content: center;
    gap: 20px; 
}

.US-text {
    flex: 1 1 60%;
    text-align: left;
    padding: 15px;
    color: #333;
    background-color: #ffffff;
    border: 2px solid #008080;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px; 
    font-size: 0.9rem; 
}

.US-text h1 {
    text-align: center;
    font-size: 2rem; 
    font-weight: bold;
    color: #008080;
    margin-bottom: 8px;
}

.US-text p {
    margin-bottom: 12px;
    line-height: 1.4;
    font-size: 1rem; 
}

.name,
.job-title {
    font-weight: bold;
    font-size: 1rem; 
    color: #008080;
}

.meet-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    font-weight: bold;
    color: #FFD700;
    background-color: #004A33;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem; 
    transition: all 0.3s ease-in-out;
}

.meet-link:hover {
    background-color: #003926;
    color: #FFD700;
    transform: scale(1.03); 
}

.logo-container {
    flex: 1 1 30%;
    text-align: right;
    padding: 15px;
}

.logo {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

@media screen and (max-width: 768px) {
    .US-section {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        order: -1;
        text-align: center;
        width: 100%;
    }

    .logo {
        width: 80%;
    
    }

    .US-text {
        width: 90%;
        max-width: 100%;
        padding: 12px;
        font-size: 0.85rem; 
    }

    .meet-link {
        font-size: 0.9rem;
        padding: 8px 14px;
    }
}



.our-service {
    text-align: center;
    margin-top: 40px;
}

.our-service h1 {
    display: inline-block;
    padding: 20px;
    color: #004A33;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 1.2px;
    word-spacing: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 350px;
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 128, 128, 0.3);
}

.service-card h2 {
    color: #008080;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}


.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

.card-footer a {
    font-size: 0.9rem;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.see-project {
    background-color: #004A33;
    color: #FFD700;
}

.see-project:hover {
    background-color: #004D40;
    color: #FFD700;
    box-shadow: 0 4px 10px rgba(0, 128, 128, 0.3);
    transform: translateY(-3px);
}

.contact-us {
    background-color: white;
    color: #004A33;
    border: 1px solid #008080;
}

.contact-us:hover {
    background-color: #fff;
    color: #004A33;
    box-shadow: 0 4px 10px rgba(0, 128, 128, 0.3);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .service-card {
        max-width: 90%;
    }

    .our-service h1 {
        font-size: 2rem;
    }
}

.InTouch-section {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #f9f9f9;
}

.Touch-section {
    flex: 1 1 60%;
    text-align: left;
    padding: 20px;
    color: #333;
    background-color: #ffffff;
    border: 2px solid #008080;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.Touch-section h1 {
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    color: #008080;
}

.Touch-section p {
    margin-bottom: 15px;
}


.contact-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    gap: 20px;
    padding: 20px;
}

.contact-left, .contact-right {
    flex: 1;
    padding: 30px;
    box-sizing: border-box;
}

.contact-left {
    background-color: #fff;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.contact-left h2 {
    color: #004A33;
}

.contact-left input, .contact-left textarea, .contact-left select {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-left input:focus, .contact-left textarea:focus, .contact-left select:focus {
    outline: none;
    border-color: #165e3f;
}

.contact-left textarea {
    height: 120px;
    resize: none;
}

.contact-left button {
    background-color: #ffd700;
    color: #165e3f;
    font-weight: bold;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.contact-left button:hover {
    background-color: #e6c200;
}

.contact-right {
    background-color: #8FB3A4;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-right h3 {
    margin-top: 0;
    color: #ffff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
}

.contact-info div {
    display: flex;
    align-items: center;
}

.contact-info div i {
    margin-right: 10px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 10px;
    }

    .contact-left, .contact-right {
        width: 100%;
        padding: 20px;
    }
}

.Project-main {
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}

.Project-main h1 {
    display: inline-block;
    padding: 15px 30px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #008080, #004A33);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.Project-main p {
    font-size: 1.2rem;
    line-height: 1.8;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Project-main p:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


@media screen and (max-width: 768px) {
    .Project-main {
        padding: 40px 15px;
    }

    .Project-main h1 {
        font-size: 26px;
        padding: 12px 25px;
    }

    .Project-main p {
        font-size: 1rem;
        padding: 20px;
    }
}


.project-banner {
    text-align: center;
    background-color: #8FB3A4;
    padding: 20px 0; 
}

.project-banner p {
    color: #6f6f6f;
    font-size: 2.5em;
    font-weight: bold;
    margin: 0; 
}


.our-project {
    text-align: center;
    padding: 40px;
    max-width: 800px;
    margin: auto; 
}

.our-project h1{
    display: inline-block;
    padding: 20px;
    color: #004A33;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1.2px;
    word-spacing: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
}


.our-project h1{
    display: inline-block;
    padding: 20px;
    color: #004A33;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1.2px;
    word-spacing: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
}


.projects-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.projects-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}
.project-slider-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 600px;
    width: 100%;
    text-align: center;
}
.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 400px;
}
.slider img {
    width: 100%;
    height: 100%;
    display: none;
    border-radius: 10px;
}
.slider img:first-child {
    display: block;
}
.swipe-text {
    margin: 10px 0;
    font-size: 24px;
    font-weight: bold;
    
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.nav-btn {
    background: #004A33;
    color: #ffd700;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}
.nav-btn:hover {
    background: #004D40
    ;
}


@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr; 
    }
}
@media (max-width: 768px) {
    .project-slider-container {
        max-width: 100%;
    }
}



.card-container-project {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.card__article {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card__article:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card__img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #ddd;
    object-fit: cover;
}

.card__data {
    padding: 15px;
}

.card__description {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.card__title {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    color: #444;
}

.card__button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 16px;
    text-decoration: none;
    color: #ffd700;
    background: #004A33;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.card__button:hover {
    background: #004D40;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .card-container-project {
        grid-template-columns: 1fr;
    }
}



.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


.project-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}


.project-image {
    width: 100%;
    height: 200px; 
    object-fit: cover; 
    display: block;
}


.project-content {
    padding: 20px;
    width: 100%;
}

.project-category {
    font-size: 14px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.project-button {
    display: inline-block;
    text-decoration: none;
    color: #ffd700;
    background-color: #004A33;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.project-button:hover {
    background-color: #004D40;
    transform: scale(1.05);
}


@media (max-width: 900px) {
    .project-gallery {
        grid-template-columns: 1fr; 
        max-width: 95%;
    }
}

  .careers {
    background: linear-gradient(to right, #004D40, #8FB3A4);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    max-width: 900px;
}

.careers-content {
    max-width: 700px;
    margin: 0 auto;
}

.careers h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.careers p {
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
    line-height: 1.6;
}

.apply-btn {
    display: inline-block;
    background: #FFC107;
    color: #002B26;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.apply-btn:hover {
    background: #ffb300;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .careers {
        padding: 60px 20px;
    }

    .careers h2 {
        font-size: 2rem;
    }

    .careers p {
        font-size: 1.1rem;
    }

    .apply-btn {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .careers {
        padding: 50px 15px;
    }

    .careers h2 {
        font-size: 1.8rem;
    }

    .careers p {
        font-size: 1rem;
    }

    .apply-btn {
        font-size: 1rem;
        padding: 8px 18px;
    }
}



.stay-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 600px;
    backdrop-filter: blur(15px);
    width: 100%;
    margin: auto;
}
h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}
p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}
.email-input {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.3rem;
    outline: none;
}
.subscribe-btn {
    margin-top: 20px;
    display: inline-block;
    background: #FFC107;
    color: #002B26;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
    width: 100%;
}
.subscribe-btn:hover {
    background: #ffb300;
    transform: scale(1.08);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 50px;
    }
    h1 {
        font-size: 2.5rem;
    }
    p {
        font-size: 1.3rem;
    }
    .email-input, .subscribe-btn {
        font-size: 1.2rem;
        padding: 14px;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 40px;
    }
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1.2rem;
    }
    .email-input, .subscribe-btn {
        font-size: 1rem;
        padding: 12px;
    }
}



.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #004A33;
    color: #ffd700;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 25px;
    display: none;
    transition: opacity 0.3s;
}
.scroll-to-top:hover {
    background-color: #004D40;
}



  .footer {
            background-color: #8FB3A4;
            color: #333;
            padding: 40px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            text-align: left;
        }
        .footer div {
            margin: 10px;
        }
        .footer h3 {
            margin-bottom: 15px;
            font-size: 18px;
        }
        .footer ul {
            list-style: none;
            padding: 0;
        }
        .footer ul li a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer ul li a:hover {
            color: #005f73;
        }
        .contact {
            margin-top: 10px;
        }
        .contact a {
            color: #333;
            text-decoration: none;
        }
        .social-media a {
            color: #333;
            margin-right: 15px;
            font-size: 20px;
            transition: color 0.3s;
        }
        .social-media a:hover {
            color: #005f73;
        }
        .copyright {
            text-align: center;
            padding: 20px;
            background: #8FB3A4;
            color: #333;
        }
        .right {
            text-align: center;
            padding: 10px;
            background-color: #8FB3A4;
        }
        @media (max-width: 768px) {
            .footer {
                flex-direction: column;
                text-align: center;
            }
        }


@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        background-color: #8FB3A4;
        padding: 10px 0;
    }

    .nav-links a {
        padding: 10px 20px;
        display: block;
        width: 100%;
    }

    .logo img {
        max-width: 120px;
    }
}

