@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body {
    font-family: "Merriweather Sans", sans-serif;
    margin: 0;
    padding: 0;
}



/* Navbar styles */
.navbar-brand img {
    height: 80px; /* Adjust the height of the logo */
}
.navbar-toggler {
    border: none !important; /* Removes the border */
    outline: none !important; /* Removes the outline */
    box-shadow: none !important; /* Removes any shadow */
}

/* Remove focus styles */
.navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}
/* Change the menu icon color to green */
/* Change the hamburger icon color to green */
.navbar-toggler-icon {
    filter: invert(43%) sepia(92%) saturate(555%) hue-rotate(83deg) brightness(94%) contrast(92%);
}

/* Remove any focus styles */
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}
/* Default styling for nav links */
.nav-item a {
    font-weight: bold; /* Make the links bold */
    color: #000; /* Default text color */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover effect for nav links */
.nav-item a:hover {
    color: #28a745; /* Change color to green (or your desired color) on hover */
}

.custom-btn {
    color: #fff;
    background-color: #28a745; /* Green button */
    border-radius: 5px;
    padding: 10px 15px;
    text-decoration: none;
    text-align: center;
}
.custom-btn:hover {
    background-color: #218838; /* Darker green */
}

/* Sliding menu bar */
@media (max-width: 992px) {

    .button-group {
        margin-top: 20px; /* Space above buttons */
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px; /* Add spacing between buttons */
    }
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
}
/* Close button only visible on mobile screens */
.close-btn {
    display: none; /* Hidden by default */
}

@media (max-width: 992px) {
    .close-btn {
        display: block; /* Show the close button on mobile screens */
    }
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    z-index: 1000;
  }
  .whatsapp-button i {
    font-size: 20px;
    margin-right: 10px;
  }
  .whatsapp-button:hover {
    background-color: #20B857;
    text-decoration: none;
  }

  .contact-form {
    background-color: #f9f9f9; /* Light background color */
    border: 1px solid #ddd; /* Subtle border */
    border-radius: 8px; /* Rounded corners */
}

.contact-form .form-label {
    font-weight: bold;
    color: #555; /* Subtle label color */
}

.contact-form .form-control {
    border-radius: 5px; /* Smooth input fields */
    border: 1px solid #ccc;
}

.contact-form .form-control:focus {
    border-color: #25D366;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.contact-form button {
    background-color: #20B857;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #25D366;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 20px; /* Adjust padding for mobile */
    }
}

.card {
    border: none;
    border-radius: 10px;
    background-color: #f9f9f9;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background-color: #eef9f2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-text {
    color: #777;
}

@media (max-width: 768px) {
    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-text {
        font-size: 0.9rem;
    }
}
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border: none;
    width: 100%;
    /* height: 100%; */
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px; /* Adjust the height for smaller devices */
    }
}
.footer {
    background-color: #000;
    background-size: cover;
    background-position: center;
    color: white;
  }
  
  .footer-logo {
    max-width: 150px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    text-decoration: none;
  }
  
  .footer h5 {
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  .footer p,
  .footer ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer ul {
    padding-left: 0;
  }