@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset some default styles */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}

body {
      font-family: "Poppins", sans-serif;
      background-color: #f5f5f5;
      color: #333;
      line-height: 1.6;
}

/*-------------- Whatsapp Icon Floating -------------------*/
.wa-icon{
      position: fixed;
      top: 85%;
      left: 94%;
      font-size: 2rem;
      color: #f5f5f5;
     border-radius: 50px;
     padding: 0.3rem 1rem ;
      background-color: rgb(21, 190, 21);
      z-index: 9999;
}
@media (max-width:900px) {
      .wa-icon{
      left: 90%;}
}

@media (max-width:720px){
      .wa-icon{
            left: 84%;
      }
}

/* --------------- Header Menus  -------------------- */

header {
      background-color: #000;
      color: white;
      padding: 15px 0;
      /* position: fixed; */
      width: 100%;
      /* max-width: 1300px; */
      top: 0;
      z-index: 10;
}

nav {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0px auto;
      padding: 10px 0px;
}

/* Logo */
.logo img {
      margin-top: 0.4rem;
      max-width: 250px;
}

/* Desktop Navigation Links */
.nav-links {
      list-style: none;
      display: flex;
      gap: 20px;
}

.nav-links a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      padding: 8px 15px;
      font-weight: 600;
      transition: background-color 0.3s ease;
}

.nav-links a:hover {
      background-color: #7c7b7b;
      border-radius: 5px;
}

/* Hamburger Icon for Mobile */
.hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
      padding: 0 1.5rem;
}

.hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: white;
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      z-index: 999;
}

.mobile-nav-overlay.open {
      transform: translateX(0);
}

.mobile-nav-header {
      position: absolute;
      top: 10px;
      left: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 90%;
}

.close-icon {
      font-size: 2rem;
      color: white;
      cursor: pointer;
}

/* Mobile Navigation Links */
.mobile-nav-overlay .nav-links {
      flex-direction: column;
      gap: 20px;
}

.mobile-nav-overlay .nav-links a {
      color: white;
      font-size: 1.5rem;
      padding: 10px;
}

/* Responsive Styles */
@media (max-width:1350px) {
      nav {
            padding: 0 40px;
      }

      .logo img {
            margin-top: 0.2rem;
            width: 200px;
      }

      .nav-links a {
            font-size: 1.2vw;
            padding: 5px 9px;
      }

}

@media (max-width:1150px) {
      nav {
            padding: 0 30px;
      }

      .logo img {
            margin-top: 0.2rem;
            width: 200px;
      }

      .nav-links a {
            font-size: 1.1vw;
            padding: 0px 9px;
      }

}

@media (max-width:1090px) {
      .logo img {
            margin-top: 0.2rem;
            width: 180px;
      }

      .nav-links a {
            font-size: 1vw;
            padding: 0px 8px;
      }

}

@media (max-width: 900px) {
      .logo img {
            padding-left: 1.5rem;
            width: 200px;
      }

      .desktop-nav {
            display: none;
      }

      .hamburger {
            display: flex;
      }
}

@media (max-width: 400px) {
      nav {
            padding: 0rem !important;
      }
}

@media (max-width: 300px) {
      nav {
            padding: 0rem !important;
      }

      .logo img {
            padding-left: 1.5rem;
            width: 150px;
      }

}

/* ---------------- Main Content -------------------*/
main {
      padding: 20px;
      max-width: 1400px;
      margin: 2rem auto;
      background-color: white;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3 {
      color: #000;
      text-align: center;
      margin-bottom: 20px;
}

/* Form Styling */
form {
      display: flex;
      flex-direction: column;
      gap: 15px;
      max-width: 600px;
      margin: 0 auto;
}

form label {
      font-weight: bold;
}

form input,
form select,
form textarea {
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 5px;
}

form button {
      background-color: #000;
      color: white;
      padding: 10px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
}

form button:hover {
      background-color: #000;
}

/* Footer */
/* Footer Styling */
.footer {
      width: 100%;
      background-color: #000;
      color: #fff;
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
}

.footer-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1080px;
      width: 100%;
      padding: 10px 20px;
}

.footer-text {
      color: #fff;
      font-size: 1.1rem;
      /* font-weight: 700; */
}

.social-icons {
      display: flex;
      gap: 15px;
}

.social-icons .privacy {
      text-decoration: none;
      margin-top: 0.3rem;
      font-weight: 500;
      font-size: 1.1rem;
}

.social-icons a {
      color: #fff;
      font-size: 24px;
      transition: color 0.3s ease;
}

.social-icons a:hover {
      color: #ff5959;
}

/* Responsive Footer Design */
@media (max-width: 768px) {
      .footer-content {
            flex-direction: column;
            text-align: center;
            gap: 10px;
      }
}