* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #1b1b1b;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #1b1b1b;
}

nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

nav a:hover {
  color: #007bff;
}

nav .btn {
  margin-left: 10px;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
}

.btn-outline {
  background-color: #fff;
  color: #007bff;
  border: 2px solid #007bff;
}

.btn:hover {
  opacity: 0.9;
}

.hero {
  padding: 80px 0;
  background-color: #fafbff;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.text-content {
  flex: 1 1 500px;
}

.text-content h1 {
  font-size: 36px;
  color: #1e2b58;
  margin-top: 20px;
}

.text-content p {
  font-size: 16px;
  margin: 20px 0;
  color: #555;
}

.badge {
  background-color: #e7f4ff;
  color: #007bff;
  padding: 8px 16px;
  display: inline-block;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.buttons .btn {
  margin-right: 10px;
}

.image-content {
  flex: 1 1 400px;
  text-align: center;
}

.image-content img {
  width: 100%;
  max-width: 400px;
}
.why-choose, .deliver-best, .custom-request, .pricing {
  padding: 60px 0;
  background: #fff;
}

.choose-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.choose-features {
  flex: 1;
}

.feature-card {
  background: #f7f9fb;
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-card img {
  width: 40px;
}

.choose-text {
  flex: 1;
}

.choose-text h2 {
  font-size: 28px;
  color: #1e2b58;
  margin-bottom: 16px;
}

.deliver-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.deliver-text {
  flex: 1;
}

.deliver-text ul {
  margin-top: 16px;
  padding-left: 20px;
}

.deliver-img {
  flex: 1;
  text-align: center;
}

.deliver-img img {
  max-width: 100%;
  height: auto;       /* Maintain aspect ratio */
  max-height: 400px;
}

.custom-request .request-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f9fb;
  padding: 30px;
  border-radius: 10px;
}

.request-content {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
}

.request-content img {
  width: 40px;
}

.pricing-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.pricing-intro {
  flex: 1;
}

.pricing-intro .terms {
  margin-top: 10px;
  font-size: 12px;
  color: gray;
}

.pricing-plans {
  flex: 2;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #f7f9fb;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  min-width: 240px;
}

.price {
  font-size: 32px;
  font-weight: bold;
  color: #007bff;
}

.price span {
  font-size: 16px;
  color: #444;
}

.discount {
  background: #e0f2ff;
  color: #007bff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 5px;
  margin-left: 5px;
}

.terms {
    display: flex;              /* Make it a flex container */
    flex: 1;
    justify-content: center;    /* Horizontal centering */
    align-items: center;        /* Vertical centering */
   
}

b1 {
    font-weight: bold;
    font-size: larger;
}
 i {
    margin-bottom: 0.5rem;
 }

 @media (max-width: 600px) {
  .deliver-img img {
    max-height: 300px; /* Adjust max height on smaller screens */
  }
}

@media (max-width: 400px) {
  .deliver-img img {
    max-height: 200px; /* Further adjustment for even smaller screens */
  }
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;

  max-height: 90vh;
  overflow-y: auto;

  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
/* Signup Modal - Smoky Glass with Oxford Purple Tint */
.signup-modal {
  background: rgba(46, 32, 56, 0.288); /* Oxford Purple with transparency */
  backdrop-filter: blur(20px);
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 30px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.signup-modal input,
.signup-modal textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.signup-modal input::placeholder,
.signup-modal textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.modal h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #1e2b58;
}

.modal-form label {
  display: block;
  margin-top: 12px;
  margin-bottom: 4px;
  font-weight: 500;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-family: inherit;
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.modal-title-image {
  max-width: 140px;  /* was 180px before */
  display: block;
  margin: 0 auto 20px auto;
}

/* Custom Background for Login Modal */
.login-modal {
  background: rgba(93, 106, 97, 0.161); /* Oxford Purple with transparency */
  backdrop-filter: blur(20px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
 /* background: linear-gradient(135deg, #ffffff, #f0f8ff, #e7f4ff, #fafafa);*/
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

/* Gradient Animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.forgot-link {
  text-align: right;
  margin-top: 10px;
}

.forgot-link a {
  font-size: 14px;
  color: #96aec8;
  text-decoration: none;
}

.forgot-link a:hover {
  text-decoration: underline;
}

