/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Avenir LT Std 55 Roman';
}
@font-face {
    font-family: 'Archivo black';
    src: url('../font/ArchivoBlack.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Avenir LT Std 55 Roman';
    src: url('../font/AvenirLTStd.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
/* 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;
}

/* Header */
.logo {
    width: 180px;
    height: 70px;
    margin-right: 60px; /* Adjust spacing from the nav links */
}

.head {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
.whatsapp-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    font-size: 30px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

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

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

.dropdown {
    position: relative;
    display: inline-block;
}

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

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

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

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

.head .nav-link:hover,
.head .nav-link:focus {
    color: #007bff;
    /* Adjust hover color as needed */
}

nav {
    background-color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute items evenly */
    width: 100%;
    font-family: 'Avenir LT Std 55 Roman';
    height: 110px;
    text-decoration: none;
}

.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;
}

.nav-link {
    color: black;
    margin: 0 10px; /* Adjust spacing between nav links */
    transition: color 0.2s ease;
    font-weight: bold;
    font-size: 20px;
}

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

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

.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; 
}

.about h1 {
    font-size: 40px;
    color: #cc373c;
    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: #cc373c;
    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 #cc373c;
    border-radius: 5px;
}

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

.value h2, .team h2, .quote h2 {
    font-size: 30px;
    color: #cc373c;
    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: #cc373c;
color: #cc373c;
    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 #cc373c;
    border-radius: 5px;
}

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

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

.quote blockquote {
    font-size: 22px;
    font-style: italic;
    color: black;
    margin: 20px 0;
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
    border-left: 5px solid #cc373c;
    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: #5B5A50;
    color: #fff;
    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;
}

/* 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;
}



/* 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;
    }
}
