@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');

body {
    font-family: Poppins, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Navigation Bar */
header {
    background-color: #143261;
    color: white;
    /* padding: 10px 0; */
    position: fixed;
    /* Fix the header at the top */
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    /* Ensure it spans the full width */
    z-index: 1000;
    /* Ensure it stays on top of other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Add shadow for separation from the content */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 auto;
    font-size: larger;
    
}


#navbar-logo {
    height: 70px;
    margin: auto; /* Adjust as needed */
    padding-top: 10px;
    z-index: 1;
    
 
}
.logo img {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
  }

.logo h1 {
    color: #ffffff;
    padding-left: 7px;
    text-align: center;
}
.logo{
    display: flex;
}
.logo h1{
    margin-left: 5px;
    margin: auto;
    font-size: 2.5rem;
    font-weight: bold;
    font-style: italic;
    padding-top: 5px;
}

ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

ul li {
    display: inline;
}

ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;

}


/* Hamburger Menu Icon (Hidden by Default) */
.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.menu-icon .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    margin: 3px 0;
    transition: 0.4s;
}
/* Add padding to the body to avoid content being hidden behind the fixed navbar */
body {
    padding-top: 38px;
}

.hero {
    position: relative;
    background: url('hero.jpg') no-repeat center;
    background-size: cover;
    background-position: center 20%;
    height: 80vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    /* Ensure the overlay stays within the hero section */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    /* Semi-transparent black overlay */
    z-index: 0;
    /* Place behind the text and buttons */
}

.hero h1,
.hero p,
.cta {
    position: relative;
    z-index: 10;
    font-size: 1.2rem;
    /* font-weight: 400; */
    /* Ensure text and buttons appear above the overlay */
}
.hero h1{
    font-weight: bold;
    font-size: 2.1rem;
}

/* About Us Section */
#about {
    text-align: center;
}


.cta {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-flex;
    justify-content: center;
    transition: all 0.3s ease; /* Smooth transition */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cta:hover {
    background-color: #ff5700; /* Slightly darker orange */
    transform: scale(1.1); /* Slightly enlarges the button */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  }


.service{
    border: 2px solid rgb(93, 113, 113);
    border-radius: 20px;
    background-color: rgb(222, 242, 238); 
}
.service :last-child{
    padding: 15px;
    /* margin: 5px; */
}


.booking {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

#technology {
    text-align: center;
}
section {
    padding: 40px;
    background-color: white;
    margin-bottom: 20px;
}

h2 {
    text-align: center;
    color: #003366;
}

.service-list,
.team-list {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 30px;
}

.service,
.team-member {
    text-align: center;
    font-weight: bold;
}
.team-member a{
    text-decoration: none; /* Removes underline */
    color: #488ed9; /* Nice blue color */
    font-weight: bold;
    font-size: large;
}

.team-member a:hover{
    color: #1f4d7e; /* Darker blue on hover */
    font-weight: bold;
    /* text-decoration: underline; Adds underline on hover  */
}
.linkedin-link {
    display: flex;
    align-items: center;
    margin-left: 17px;
    text-decoration: none;
    font-weight: bold;
    color: #0077b5; /* LinkedIn blue color */
}

.linkedin-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}




#booking {
    text-align: center;
}

img {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    display: block;
}

.team-member img{
    border: 2px solid rgb(194, 210, 221);
    border-radius: 20px;
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

label {
    margin-bottom: 5px;
}

input,
textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #002244;
}

footer {
    background-color: #003366;
    color: white;
    padding: 20px 0;
    text-align: center;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
}

.footer-details {
    text-align: left;
}

.footer-details p {
    margin: 5px 0;
    line-height: 1.5;
}

.footer-details strong {
    font-weight: bold;
}

footer p.copyright {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    font-size: 0.9rem;
}
/* Success message styling */
#form-message {
    display: none; /* Initially hidden */
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    background-color: #d4edda; /* Light green background */
    color: #155724; /* Dark green text */
    border: 1px solid #c3e6cb; /* Green border */
    font-size: 1.1rem;
    text-align: center;
}

/* Error message styling (optional) */
#error-message {
    display: none;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    background-color: #f8d7da; /* Light red background */
    color: #721c24; /* Dark red text */
    border: 1px solid #f5c6cb; /* Red border */
    font-size: 1.1rem;
    text-align: center;
}


/* Media Queries for Responsive Design */

/* For small devices (tablets and mobile phones) */
@media (max-width: 768px) {

    /* Make the navigation stack vertically */
    ul {
        display: none;
        flex-direction: column;
        background-color: #003366;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
    }

    ul.active {
        display: flex;
    }

    ul li {
        margin: 10px 0;
    }

    .menu-icon {
        display: flex;
    }

    .hero {
        padding-top: 700px;  /* Adjust padding for mobile */
        min-height: 80vh;  /* Reduce hero height on smaller screens */
    }


    /* Reduce padding for sections on smaller screens */
    section {
        padding: 20px;
    }

    img {
        width: 100%;
        max-width: 300px;
        margin: 20px auto;
        display: block;
    }

    /* Make the service and team members list vertical */
    .service-list,
    .team-list {
        flex-direction: column;
        gap: 40px;
    }
    .linkedin-link {
        
        margin-left: 161px;

    }

    /* Adjust hero section text size for small screens */
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    /* Reduce the height of the hero section */
    .hero {
        height: 60vh;
    }

    /* Adjust buttons (CTAs) size */
    .cta {
        padding: 8px 15px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-details {
        text-align: center;
        margin-bottom: 20px;
    }
}

/* For very small devices (mobile phones in portrait mode) */
@media (max-width: 480px) {

    /* Stack navigation vertically and increase font size for better readability */
    
    .hero {
        padding-top: 100px; /* Ensure content stays below the navbar */
    }
    nav ul li a {
        font-size: 1.1rem;
    }

    /* Hero section adjustments for small phones */
    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 1rem;
    }

    img {
        width: 55%;
        
        
    }


    .cta {
        font-size: 0.9rem;
        padding: 7px 12px;
    }

    /* Reduce section padding further */
    section {
        padding: 15px;
    }

    /* Ensure service and team members are displayed vertically */
    .service-list,
    .team-list {
        flex-direction: column;
        gap: 20px;
    }
    .linkedin-link {
        
        margin-left: 85px;

    }

    /* Adjust image sizes */
    img {
        max-width: 100%;
    }
}
