body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
    line-height: 1.6;
    background-image: url(assets/bg.png); /* Add your background image URL here */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Ensures the background stays fixed while scrolling */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(49, 49, 49, 0.8); /* Semi-transparent white overlay */
    z-index: -1; /* Places the overlay behind the content */
}

.containercontact {
    max-width: 1200px;
    margin: 50px auto;
    padding: 80px;
    background: rgba(107, 107, 107, 0.16);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    font-size: 1.1rem;
    color: #d7d7d7;
    margin-bottom: 20px;
}

.contact-details {
    text-align: left;
    margin-bottom: 40px;
    padding: 10px;
}

.contact-details p {
    margin: 10px 0;
    font-size: 1.1rem;
    color: #ffffff;
}

.contact-form {
    margin-bottom: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 20px, 20px;
    margin-bottom: 25px;
    border: 1px solid #585858;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    color: #fff;
    background-color: #2c2c2c;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #1d1d1d;
}


.map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


        /* Footer Styles */
        footer {
            background-color: #222;
            color: white;
            padding: 20px 0;
            text-align: center;
            margin-top: 50px; /* Add space above the footer */
        }

        .footer-content {
            max-width: 1200px;
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer-content p {
            margin: 5px 0;
            font-size: 18px;
            color: white; /* Ensure text is white */
        }

        .footer-content .social-links {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }

        .footer-content .social-links a {
            color: white;
            font-size: 24px;
            text-decoration: none;
        }

        .footer-content .social-links a:hover {
            opacity: 0.8; /* Add hover effect */
        }

        .footer-content .contact-info {
            margin-top: 15px;
            font-size: 14px;
            color: #ccc; /* Slightly lighter text for contact info */
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer-content .social-links {
                flex-direction: column; /* Stack social icons on mobile */
                gap: 10px;
            }
        }


        

        /* Navbar Styles */
.navbar {
    background-color: #484949;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.container1 {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.logo {
    height: 40px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu li {
    display: flex;
    align-items: center;
}

.nav-link, .dropdown-button {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover, .dropdown-button:hover {
    color: #000000;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: none;
    width: 150px;
    z-index: 1000;
}

.dropdown-menu .dropdown-item {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    transition: background 0.3s;
    text-align: left;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #ffffff;
    color: rgb(107, 107, 107);
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.active {
    display: block;
}

/* Mobile Menu */
.menu-button {
    display: none;
    background: none;
    border: none;
    color: rgb(253, 253, 253);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #1f1f1f;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px;
}

.mobile-menu.active {
    display: flex;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu {
        display: none;
    }
    .menu-button {
        display: block;
    }
  .footer-content .social-links {
    flex-direction: row; /* keep them side by side */
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* allows wrapping if needed */
  }
  
   .footer {
    padding: 15px !important;
    font-size: 0.1rem !important;
    line-height: 1.1 rem !important;
}
  .footer a {
    font-size: 20px !important;
    margin: 0 8px !important;
  }
  .containercontact {
    padding: 30px 20px;
    margin: 30px auto;
  }

  h1 {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  h2 {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .contact-details {
    padding: 30px;
  }

  .contact-form form {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center; /* center the form fields */
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;
  max-width: 100%; /* prevent overflow */
}
  .contact-form button {
    padding: 12px;
    font-size: 1rem;
    align-items: center;
  }

  .map iframe {
    width: 100%;
    height: 300px;
  }

  .footer-content p,
  .footer-content .contact-info {
    font-size: 0.85rem;
    padding: 0 15px;
    text-align: center;
  }

  .footer-content .social-links a {
    font-size: 20px;
  }

  .footer-content {
    padding: 10px 15px;
  }
}


      