:root {
  --bg-dark: #0b0f0c;
  --green: #2dff9c;
  --green-soft: rgba(45, 255, 156, 0.25);
  --glass: rgba(20, 40, 30, 0.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  /*background: radial-gradient(circle at top, #10281c, var(--bg-dark));*/
  background-image: url('./assets/bg.jpg');
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 50px;
}


.nav {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  transition: background 0.3s ease;
  width: 90%;
  max-width: 700px;
  background: #17c97a85;
  padding: 15px 30px;
  border-radius: 50px;
}
.nav.open {
  background: #17c97a;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav a {
  color: black;
  margin-left: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: black;
  transition: transform 0.2s ease;
  user-select: none;
  cursor: pointer;
}

.hamburger::before {
  content: "☰";
}

/* menu open ❌ */
.nav.open .hamburger::before {
  content: "✕";
}


/* ===== MOBILE ===== */
@media screen and (max-width: 780px) {

  .nav {
    border-radius: 20px;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav a {
    margin-left: 0;
    font-size: 16px;
  }
}




/* NAV */

/*.nav {*/
/*    position: absolute;*/
/*    top: 25px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 90%;*/
/*    max-width: 700px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    background: #17c97a85;*/
/*    padding: 15px 30px;*/
/*    border-radius: 50px;*/
/*}*/

@media screen and (max-width:780px){
    
    body {
  /*background: radial-gradient(circle at top, #10281c, var(--bg-dark));*/
  background-image: url('./assets/mobile-bg.png');
  background-position: top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
    }
/*        .nav {*/
/*    position: absolute;*/
/*    top: 25px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 90%;*/
/*    max-width: 1100px;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    flex-direction: column !IMPORTANT;*/
/*    gap: 30px;*/
/*    align-items: center;*/
/*    text-align: center;*/
/*}*/
}

/*.nav h2 {*/
/*  color: white;*/
/*}*/

/*.nav a {*/
/*  color: black;*/
/*  margin-left: 20px;*/
/*  text-decoration: none;*/
/*  font-size: 14px;*/
/*  font-weight:700;*/
/*}*/

/* MAIN CARD */
.main-card {
  background: var(--glass);
  border-radius: 28px;
  padding: 60px 50px;
  width: 90%;
  max-width: 900px;
  text-align: center;
  border: 1px solid var(--green-soft);
  box-shadow: 0 0 60px rgba(45, 255, 156, 0.25);
  /*backdrop-filter: blur(18px);*/
  margin-top: 50px;
}

.main-card h1 {
  font-size: 36px;
  margin-bottom: 25px;
}

/* SEARCH */
.search-box {
  margin: 30px auto 15px;
  max-width: 520px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--green-soft);
  background: #0e1c15;
  color: #fff;
  outline: none;
}

.search-box input::placeholder {
  color: #9dddc3;
}

.example-btn {
  margin-top: 14px;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--green-soft);
  font-size: 13px;
  cursor: pointer;
}

/* PRICING */
.pricing {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 45px;
  flex-wrap: wrap;
}

.price-card {
  background: rgba(10, 25, 18, 0.9);
  padding: 30px;
  border-radius: 22px;
  width: 240px;
  border: 1px solid var(--green-soft);
  box-shadow: 0 0 30px rgba(45, 255, 156, 0.15);
}

.price-card h3 {
  font-size: 26px;
  color: var(--green);
}

.price-card p {
  font-size: 15px;
  font-weight: 700;
  margin: 10px 0 18px;
  color: white;
}

.price-card .btn {
  padding: 12px;
  width: 100%;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #2dff9c, #17c97a);
  cursor: pointer;
  font-weight: 600;
}

.contact-form .btn {
  padding: 12px;
  width: 100%;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #2dff9c, #17c97a);
  cursor: pointer;
  font-weight: 600;
}

/* CHAT FLOAT */
.chat-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #0f2a1e;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid var(--green-soft);
  font-size: 13px;
  box-shadow: 0 0 25px rgba(45, 255, 156, 0.3);
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .main-card h1 {
    font-size: 28px;
  }

  .main-card {
    padding: 30px;
  }

  .price-card {
    width: 100%;
  }
}


table {
  display: none;
}



/* contact Form Css */
/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  background: #0f1f17;
  border: 1px solid #1fff9c40;
  padding: 14px;
  border-radius: 10px;
  color: #fff;
  outline: none;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8bcfb3;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1fff9c;
}


/*  */

/* CONTACT WRAPPER: grid with gap and padding */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  align-items: start;
}

/* CONTACT INFO styles */
.contact-info {
  color: #dfffee;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
  max-width: 350px;
  padding-right: 15px;
  border-right: 1.5px solid #1fff9c60;
}

/* Heading in contact info */
.contact-info h3 {
  color: #1fff9c;
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 700;
}

/* Subheading */
.contact-info p strong {
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
}

/* Links styling with icons and spacing */
.contact-info a {
  color: #1fff9c;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #00ffc4;
  text-decoration: underline;
}

/* Icons added via emoji or unicode for quick visual */
.contact-info p {
  margin: 6px 0;
}

/* Office locations */
.contact-info ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  padding-left: 10px;
}

.contact-info hr {
  border: none;
  border-top: 1px solid #1fff9c50;
  margin: 25px 0;
}

/* FORM styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 450px;
  width: 100%;
  padding-left: 15px;
}

.contact-form input,
.contact-form textarea {
  background: #0f1f17;
  border: 1px solid #1fff9c50;
  padding: 14px 18px;
  border-radius: 12px;
  color: #e0fff7;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7aeac3;
  font-style: italic;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1fff9c;
}

/* Textarea resizing off */
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit button style */
.contact-form button.btn {
  background: linear-gradient(90deg, #00f6a0, #0cffa2);
  border: none;
  padding: 14px 0;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px;
  color: #003300;
  cursor: pointer;
  box-shadow: 0 4px 10px #00f6a0aa;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-form button.btn:hover {
  background: linear-gradient(90deg, #1fff9c, #07de9f);
  color: #001e00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 0 15px;
    

}

  .contact-info {
    max-width: 100%;
    border-right: none;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .contact-form {
    padding-left: 0;
    max-width: 100%;
  }
}


.form-message {
  display: none;
  /* 🔑 IMPORTANT */
  text-align: center;
  /* margin-bottom: 20px; */
  font-weight: 600;
  font-size: 15px;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  color: black !important;
}

.site-footer {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  z-index: 999;
}


.site-footer p {
  margin: 0;
  font-size: 18px;
}

@media and screen and (max-width:480px){
 .site-footer p {
  margin: 0;
  font-size: 13px;
}
}




