@import 'https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap';

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: poppins, sans-serif
}

html {
  scroll-behavior: smooth
}

ul {
  list-style: none
}

a {
  text-decoration: none
}

button {
  cursor: pointer;
  background: 0 0;
  border: none
}

img {
  width: 100%
}

/* =========== Header Start ========== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.logo img {
    width: 250px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.navbar ul li a:hover,
.mobile-menu ul li a:hover {
    color: #ff692e;
}

.contact {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #000;
    padding: 8px 18px;
    border-radius: 20px;
}

.contact:hover {
   background-color: #ff692e;
   color: #fff;
   border: 0;
   outline: none;
}

.contact i {
    margin-right: 5px;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: white; 
    background-color: black; 
    padding: 8px 10px 5px;
    border-radius: 4px;
    transition: background-color 0.4s ease; 
}


.menu-toggle.active {
    background-color: #ff692e
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.mobile-menu.active {
    left: 0; 
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-logo img {
   width: 200px;
}

.mobile-menu ul {
    list-style: none;
    padding: 34px 0px;
    text-align: center;
}

.mobile-menu ul li {
    margin-bottom: 24px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

/* =========== Header End ========== */


/* General Footer Styling */
footer {
    background-color: #2f3326;
    color: #e8e3d7;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

footer p{
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e8e3d7;
    padding-bottom: 20px;
}

.brand {
    max-width: 400px;
    align-items: left;
}

.brand .logo {
    width: 250px;
    margin-right: 15px;
}

.brand h2 {
    font-size: 24px;
    margin: 0;
}

.brand p {
    margin-top: 5px;
    font-size: 16px;
}



.footer-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-column p,
.footer-column ul {
    font-size: 16px;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #e8e3d7;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.address-wrapper-para{
    display: flex;
    gap: 20px;
    align-items: center;
}

.address-wrapper-para i{
   color: #ff692e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        grid-template-columns: 1fr;
    }
}

  

/* =================Responsive Media Querry =================== */



@media (max-width: 992px) {
    .navbar, .contact {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}


