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



.transparent-gif {
    max-width: 500px;
    height: auto;
    margin-left: 100px;
}
.contact {
    position: relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #d4d5d7;
    background-size: cover;
}

.contact .content {
    max-width: 800px;
    text-align: center;
}

.contact .content h2 {

    font-size: 36px;
    font-weight: bold;
    color: black;
    text-decoration: none;
    margin-bottom: 15px;
}

.contact .content p {
    font-weight: 500;
    color: black;
    
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.container .contactinfo {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.container .contactinfo .box {
    position: relative;
    padding: 20px 0;
    display: flex;
}

.container .contactinfo .box .icon {
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}

.container .contactinfo .box .text {
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: black;
    flex-direction: column;
    font-weight: 300;
}
.text h3{
    color: black;   
}

.container .contactinfo .box .text h3 {
    font-weight: 500;
    color: black;
}

.contactform {
    width: 40%;
    padding: 40px;
    background: #fff;
}

.contactform h2 {
    font-size: 30px;
    color: black;
    font-weight: 500;
}

.contactform .inputbox {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contactform .inputbox input,
.contactform .inputbox textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
}

.contactform .inputbox span{
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}

.contactform .inputbox input:focus ~ span,
.contactform .inputbox input:valid ~ span,
.contactform .inputbox textarea:focus ~ span,
.contactform .inputbox textarea:valid ~ span
{
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);

}
.contactform .inputbox select {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    background: transparent;
    color: #666;
}

.contactform .inputbox select:focus ~ span,
.contactform .inputbox select:valid ~ span {
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
}

.contactform .inputbox input[type="submit"]{
    width: 100px;
    background: #364999;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}
.location-link {
text-decoration: none;
color: inherit;
}

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




/* 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: #364999; /* Change this to your desired hover color */
}

@media (max-width: 991px){
    .contact{
        padding: 30px;

    }
    .container{
        flex-direction: column;
    }
    .container .contactinfo{
        margin-bottom: 40px; 
    }
    .container .contactinfo ,
    .contactform{
        width: 100%;
    }
}
 
@media (max-width: 480px){
    .contact{
        margin-top: 40px;
    }
    .container{
        flex-direction: column;
    }
    .container .contactinfo{
        margin-bottom: 40px; 
    }
    .container .contactinfo ,
    .contactform{
        width: 100%;
    }

        /* Header */
        .toggle-menu, .hamburger {
            display: block;
            z-index: 3;
        }
        
        .logo {
            position: absolute;
            top: 10px; /* Space from the top */
            right: 10px; /* Move towards the right */
            width: 140px; /* Adjusted size */
            height: 60px; /* Adjusted size */
        }
        
        .head {
            display: flex;
            flex-direction: column;
            justify-content: start;
            align-items: center;
            position: fixed;
            top: 0;
            right: 0;
            background: #cc373c;
            width: 300px;
            height: 100%;
            padding-top: 65px;
            z-index: 1;
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }
        
        .head a, .head a:hover {
            padding: 30px;
            font-size: 1rem;
            box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        
        nav input:checked ~ .head {
            transform: translateX(0);
        } 
    
        /* Footer */
        footer {
            padding: 20px 10px; /* Ensure padding to keep content from touching the edges */
            height: auto; /* Allow height to adjust automatically */
        }
        
        footer .container {
            padding: 0 10px; /* Padding for better spacing */
            max-width: 100%; /* Ensure container uses full width */
            align-items: center;
        }
        
        footer .row {
            flex-direction: column; /* Stack items vertically */
            align-items: center; /* Center align items */
            text-align: center; /* Center align text */
            margin-top: 20px; /* Margin to provide spacing */
        }
        
        .footerlogo {
            width: 200px; /* Adjust logo width */
            height: auto; /* Maintain aspect ratio */
           margin: 0 auto; /* Center logo */
            padding:20px;
            
        }
        
        footer h5 {
            margin-bottom: 10px; /* Adjust bottom margin */
        }
        
        footer ul {
            margin: 0; /* Remove margin */
            padding: 0; /* Remove padding */
        }
        
        footer li {
            margin-bottom: 10px; /* Adjust bottom margin */
        }
        
        footer a {
            font-size: 14px; /* Adjust font size for better readability */
        }
        
        .contacts{
            margin-left: 0px;
            margin-top: 50px;
        }
        footer .Links{
            margin-left: 0px;
            margin-top: 50px;
        }
    }