@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
}

.logo {
    width: 180px;
    height: 70px;
    margin-right: 60px; /* Adjust spacing from the nav links */
}
.whatsapp-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    font-size: 30px;
    width: 60px; /* Set width to make it a circle */
    height: 60px; /* Set height to make it a circle */
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon a {
    color: white;
    text-decoration: none;
}

.whatsapp-icon:hover {
    background-color: #128C7E;
    cursor: pointer;
}

/* General styles for the navigation bar */
nav {
    background-color: #f8f9fa;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100vw;
    height: 90px;
    text-decoration: none;
}

.head{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.logo img {
    width: 170px;
    height: auto;
    margin-top: 10px;
    margin-left:15px;
}
.head {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 30px; /* Adjust the spacing between the nav-links */
}

.nav-link {
    margin-right: 70px; /* Adjust this value for custom spacing on the right */
    color: black;
    /* text-decoration: underline; */
    transition: color 0.2s ease;
    font-weight: bold;
    font-size: 20px;
}

.nav-link:last-child {
    margin-right: 30px; /* Ensure the last link doesn’t have extra margin */
}
.a{
    text-decoration: none;
    color: black;
}

.nav-link:hover {
    color: #ccc;
}

/* Dropdown menu styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 500px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
}

.dropdown-content a {
    color: black;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    text-align: left;
    flex: 1 1 30%;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: flex;
}
.dropdown-content {
    display: none; /* Hide dropdown when not hovering */
}

.banner{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 20px;
}

.banner img{
    width: 100vw;
    height: auto;
    object-fit: contain;
}


/* Search bar styles */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    cursor: pointer;
    font-size: 20px;
    padding: 10px;
}

#search-input {
    width: 0;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: width 0.4s ease;
    opacity: 0;
    visibility: hidden;
}

.search-container.expanded #search-input {
    width: 200px;
    opacity: 1;
    visibility: visible;
}

#suggestions {
    position: absolute;
    top: 35px;
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

#suggestions div {
    padding: 10px;
    cursor: pointer;
}

#suggestions div:hover {
    background-color: #f1f1f1;
}

/* Hamburger menu styles */
.hamburger {
    position: relative;
    width: 30px;
    height: 4px;
    background: #000;
    border-radius: 10px;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s;
}

.hamburger::before, .hamburger::after {
    content: "";
    position: absolute;
    height: 4px;
    right: 0;
    background: #000;
    border-radius: 10px;
    transition: 0.3s;
}

.hamburger::before {
    top: -10px;
    width: 20px;
}

.hamburger::after {
    top: 10px;
    width: 25px;
}

.toggle-menu {
    position: absolute;
    width: 30px;
    height: 100px;
    z-index: 3;
    cursor: pointer;
    opacity: 0;
}

.hamburger, .toggle-menu {
    display: none;
}

nav input:checked ~ label .hamburger {
    background: transparent;
}

nav input:checked ~ label .hamburger::before {
    top: 0;
    transform: rotate(-45deg);
    width: 30px;
}

nav input:checked ~ label .hamburger::after {
    top: 0;
    transform: rotate(45deg);
    width: 30px;
}




.heading h1 {
    font-size: 2.5rem;
    margin-bottom: 37px;
    color: #364999;
    text-decoration: none;
}

.container-main{

    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(14, 13, 13, 0.1);
    border-radius: 10px;
    box-sizing: border-box; 
    margin-top: 20px;
    margin-bottom: 20px;
}

.about h1 {
    font-size: 40px;
    color: #364999;
    text-align: center;
    margin-bottom: 20px;
  /* text-decoration: underline; */
    letter-spacing: 2px;
    font-family: 'Archivo Black';
}

.intro p {
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.8;
    color: black;
}

.values h2, .team h2, .quote h2 {
    font-size: 30px;
    color: #364999;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Archivo Black';
    position: relative;
}

/* .values h2::after, .team h2::after, .quote h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #f77f00;
    display: block;
    margin: 10px auto;
} */

.values ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.values li {
   
    background-color: #f1f1f1;
    padding: 20px;
    margin: 10px;
    flex: 0 0 70%;
    color:black;
    border-left: 5px solid #364999;
    border-radius: 5px;
}

.values li strong {
    color: #364999;
    font-size: 18px;
}

.value h2, .team h2, .quote h2 {
    font-size: 30px;
    color: #364999;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    font-family: 'Archivo Black';
}

/* .value h2::after, .team h2::after, .quote h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #364999;
color: #364999;
    display: block;
    margin: 10px auto;
    font-family: 'Archivo Black';
} */

.value ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.value li {
   
    background-color: #f1f1f1;
    padding: 20px;
    margin: 10px;
    flex: 0 0 70%;
    border-left: 5px solid #364999;
    border-radius: 5px;
}

.value li strong {
    color: #364999;
    font-size: 18px;
}

.team p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.quote blockquote {
    font-size: 20px;
    /* font-style: italic; */
    color: black;
    margin: 20px 0;
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
    border-left: 5px solid #364999;
    border-radius: 5px;
}
/* footer */

.footerlogo {
    display: block;
    width: 250px;
    height: 80px;
    margin-right: auto;
    margin-bottom: 30px;
    margin-left: 20px;
    margin-top: 30px;
}

.logo-container p {
    max-width: 300px;
    margin-left: 20px;
}

 /* footer*/

 .footerlogo {
    display: block;
    width: 240px;
    height: 85px;
    margin-right: auto;
    margin-bottom: 30px;
    margin-left: 10px;
}

.logo-container p {
    max-width: 300px;
}

footer {
    background-color: #f8f9fa;
    color: black;
    padding: 20px;
    clear: both;
    font-family: 'Avenir LT Std 55 Roman';
}

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

footer .row {
    display: flex;
    align-items: flex-start;
    /* Aligns items to the start of the container */
    justify-content: space-between;
    /* Distributes space between items */

}

footer .Links {

    margin-left: auto;
    display: flex;
    flex-direction: column;
    margin-left: 150px;
    color: black;
    
}
.Links a{
    color: black;
    text-decoration: none;
}

/* footer .links2 {
  
  margin-left: auto;
  display: flex;
  flex-direction: column;
  margin-left: 150px;
} */

footer h5 {

    font-weight: bold;
    margin-top: 0;
    font-size: 20px;
    /* Adjust this value to increase or decrease the font size */
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 55px;
}

footer li {
    margin-bottom: 10px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #ccc;
}

footer .copyright {
    border-top: 1px solid #fff;
    display: flex;
    align-items: center;
    margin-left: 450px;
    margin-top: 60px;
    font-size: 14px;
    text-align: center;
    padding-top: 20px;
}

.contacts {
    margin-left: 200px;
    display: flex;
    flex-direction: column;
}
.location-link {
    text-decoration: none;
    color: inherit;
}

.location-link:hover {
    color: blue; /* Change this to your desired hover color */
}



/* Media Queries */
@media (max-width: 768px) {
    .values ul {
        flex-direction: column;
        align-items: center;
    }

    .values li {
        flex: 0 0 90%;
    }

    .intro p, .team p {
        font-size: 16px;
    }

    .about h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .values li {
        flex: 0 0 100%;
    }

    .values h2, .team h2, .quote h2 {
        font-size: 24px;
    }

    .quote blockquote {
        font-size: 18px;
    }
}
