@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: white;
    /* background-color: white; */
}

html {
    font-size: 10px;
}


/*---logo---*/

/*navigation bar*/
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #FC5C03;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s ease-in-out;
    margin-top: -14px;
  }
  
  .hidden {
    top: -100px;
  }
  
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  
  .logo img {
    max-height: 50px;
  }
  
  .menu {
    flex: 1;
    padding-top: 30px;
  }
  
 
  .menu ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-between;
  }
  
  .menu ol li {
    margin: 0 10px;
    
  }
  
  .menu-item {
    border: 1px solid #ffa777;
    border-radius: 10px;
    padding: 1px 10px 1px 10px; 
    /* background-color: #ffa777;  */
    background-color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

  .menu-item:hover {
    background-color: black;
    border: 1px solid black;
  }

  .menu ol li a {
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    color: black;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1px;
    
  }
  
  .menu-item:hover a {
    color: white !important;
}
  
  .hamburgers {
    font-size: 20px;
    margin-top: 25px;
    float: right;
    display: none;
    cursor: pointer;
  }
.mobile-menu {
  display: none;
  position: fixed;
  top: 57px;
  left: 0;
  width: 100%;
  height: calc(100vh - 57px);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px); /* 👈 Add this line */
  padding: 30px 20px;
  text-align: left;
  z-index: 1000;
}

.mobile-menu {
  border: 1px solid transparent; /* Force a new layer for rendering */
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ol {
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.mobile-menu ol li {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); /* Thin line between items */
}

.mobile-menu ol li a {
    font-family: 'Space Grotesk', sans-serif;
    text-decoration: none;
    color: black; /* Black text */
    font-weight: 500;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu ol li a span {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.5); /* Faded arrow */
}

.close-menu {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: black;
    cursor: pointer;
    font-weight: bold;
}



@keyframes slideUpFade {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}


  /* Responsive Styles */
  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: #FC5C03;
      padding: 10px 0;
    }
  
    .menu.active {
      display: flex;
    }
  
    .menu ol {
      flex-direction: column;
      align-items: center;
    }
  
    .menu ol li {
      margin: 10px 0;
    }
  
    .hamburgers {
      display: block;
    }
  
    .logo {
      justify-content: space-between;
      width: 100%;
    }
  }

/*navigation bar end*/

.body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    background-color: #FFF4EC;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px;
  }
  
  .contact-container {
    max-width: 700px;
    width: 100%;
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: left;
  }
  
  .contact-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1e1e1e;
  }
  
  .contact-info {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-bottom: 20px;
    gap: 15px;
  }
  
  .contact-info i {
    font-size: 24px;
    width: 30px;
    text-align: center;
  }
  
  .email-icon {
    color: #ff6b6b;
  }
  
  .phone-icon {
    color: #4ecdc4;
  }
  
  .calendar-icon {
    color: #5f27cd;
  }
  
  .whatsapp-icon {
    color: #25d366;
  }
  
  .contact-info a {
    color: #1e1e1e;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .social-links {
    margin-top: 40px;
  }
  
  .social-links a {
    margin-right: 20px;
    font-size: 24px;
    color: #222;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #FC5C03;
  }
  
  @media (max-width: 600px) {
    .contact-container {
      padding: 30px;
    }
  
    .contact-container h1 {
      font-size: 28px;
    }
  
    .contact-info {
      font-size: 18px;
    }
  
    .social-links a {
      font-size: 20px;
    }
  }
  