@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%
}

/* ========== Constant Variables ======== */

:root{
    --header-bg: #20252b;
    --text-white: #ffffff;
    --text-green: #77bc4c;
    --text-orange: #fc834b;
    --paragraph-color: #6e6e6e;

}

/* =========== Header Start ========== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #000000;
}

.logo img {
    width: 350px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar ul li a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}

.navbar ul li a:hover,
.mobile-menu ul li a:hover {
    color:  #f35b35;
}

.contact {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    border: 0;
    outline: none;
    padding: 8px 18px;
    background-color: #000000;
    color: #fff;
}

.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: #f35b35
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background-color: #ffffff;
    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;
}

.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: #000000;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu ul li a:hover {
    color: #f35b35;
}



.bottom-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
  }
  
  .bottom-nav a {
    text-decoration: none;
    color: black;
    margin: 0 10px;
  }
  
  .bottom-nav span {
    color: #ccc;
  }

/* =========== Header End ========== */


.footer {
    background-color: #000000; 
    color: #ffffff;
    padding: 80px 20px; 
    margin-top: 100px;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
  }
  
  .footer-column {
    padding: 10px; 
  }
  
  .footer-title {
    font-size: 24px; 
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 500;
  }
  
  .footer-list,
  .footer-contact-info {
    list-style-type: none;
    padding: 0; 
  }
  
  .footer-list-item,
  .footer-contact-item {
    margin-bottom: 10px; 
  }
  
  .footer-list-link,
  .footer-contact-item {
    color: #d1d1d1;
    text-decoration: none;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .footer-list-link:hover,
  .footer-contact-item:hover {
    color: #ffffff; 
  }
  
  .footer-social-links {
    margin-top: 20px;
  }
  
  .footer-social-link {
    margin-right: 10px; 
    color: #ffffff; 
    font-size: 20px; 
  }
  
  .footer-social-link:hover {
    color: var(--text-green);
  }
  
  .footer-icon {
    color: rgb(12, 12, 85);
    font-size: 18px;
  }
 
 

/* 
=================================================================
     RESPONSIVE DESIGN MEDIA QUERRY
=================================================================     
*/


@media (max-width: 992px) {

    .logo img {
        width: 280px;
    }

    .navbar, .contact {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .footer-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .logo img {
        width: 200px;
    }

    .footer-row {
        grid-template-columns: 1fr;
    }
}





