@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background-color: #efefef;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  /* padding: 20px; */
  margin-top: 10%;
  box-sizing: border-box;
}

.tabs-container {
  width: 70%;
    height: auto;
    margin-left: 15%;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}

.tab-links {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0;
}

.tab-link {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.tab-link.active,
.tab-link:hover {
  color: #000;
}

.tab-link i {
  margin-right: 10px;
}

.tab-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -1px;
  left: 50%;
  background: linear-gradient(45deg, #ff460b, #ff4141);
  transition: all 0.4s ease;
}

.tab-link.active::after {
  width: 100%;
  left: 0;
}

.tab-content {
  display: none;
  animation: fadeInUp 0.5s ease;
  padding: 5px 10px 15px 10px;
  color: #000;
}

.tab-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(45deg, #000000, #000000);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.4s ease;
  font-weight: 500;
  margin-top: 20px;
}

.cta-btn:hover {
    background: linear-gradient(45deg, #ff460b, #ff4141);
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #b74de500;
  outline: none;
}

/* FAQ List */
.faq-list {
  padding: 0;
  list-style: none;
}

.faq-list li {
  margin-bottom: 10px;
}

.faq-list li strong {
  font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .tabs-container {
    width: 93%;
        margin-right: 3px;
  }

  .tab-links {
    flex-direction: column;
    align-items: center;
  }

  .tab-link {
    text-align: center;
    width: 100%;
    padding: 15px 0;
  }

  .cta-btn {
    width: 100%;
    padding: 15px 25px;
    font-size: 18px;
  }

  /* Adjust tab content padding for small screens */
  .tab-content {
    padding: 15px;
  }
}

@media screen and (max-width: 480px) {
  body {
    padding: 10px;
  }

  .tabs-container {
    margin-left: 11px;
    padding: 10px;
    max-width: 100%;
  }

  .tab-links {
    flex-direction: column;
    align-items: center;
  }

  .tab-link {
    text-align: center;
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
  }

  .cta-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
  }

  .tab-content {
    padding: 10px;
  }
}
