body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;

}

header {
  background: linear-gradient(to top right, #104aeb 16%, #089efb 82%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.logo-container {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 100px; 
  height: 100px;
  border-radius: 37%; 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.round-logo {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  border-radius: 70%; 
}

@media (max-width: 768px) {
  .feature,
  .testimonial {
    width: 100%; 
  }

  .logo-container {
    width: 50px; 
    height: 50px;
  }
}
#signup-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

#signup-form input[type="email"],
#signup-form input[type="password"] {
  padding: 10px;
  margin: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

#signup-form button[type="submit"] {
  padding: 12px 24px;
  background-color: #17b75c;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#signup-form button[type="submit"]:hover {
  background-color: #149c4b;
}
header h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

header h2 {
  font-size: 24px;
  margin-bottom: 20px;

}

a.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  margin-top: 20px;
}

section {
  padding: 60px 0;
  text-align: center;
}

section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .feature {
    width: 100%; 
  }
}

.feature {
  display:inline-block;
  width: 25%;
  
  margin: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature img {
  width: 125%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.feature-details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-style: italic;
  font-size: 14px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.feature:hover .feature-details {
  transform: translateY(0);
}

#testimonials {
  background-color: #f2f2f2;
  padding: 40px 0; 
}

.testimonials-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
  margin: -15px; 
}

.testimonial {
  flex: 0 0 calc(30% - 30px); 
  margin: 15px; 
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #dddddd57;
  overflow: hidden;
  transition: background-color 0.3s ease;
  position: relative;
}

.testimonial:hover {
  background-color: #567ef4;
}

.testimonial img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.testimonial img:hover {
  transform: scale(1.1);
}

.user-info {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px;
  margin: 0;
  font-style: italic;
  font-size: 14px;
  transition: bottom 0.3s ease;
}

.testimonial:hover .user-info {
  bottom: 0;
}
#membership {
  background-color: #f9f9f9c2;
  padding: 60px 0;
  text-align: center;
  
}

#membership h2 {
  font-size: 32px;
  margin-bottom: 20px;
  margin-top: 10px;
}

#membership-table {
  width: 50%;
  margin: 0 auto;
  border-collapse: collapse;
}

#membership-table th,
#membership-table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

#membership-table th {
  background-color: #104aeb;
  color: #fff;
}
#membership-table td {
      font-size: 16px; 
    }
#membership-table td span {
      text-decoration: line-through; 
      font-size: 12px; 
}

#membership-table td strong {
      font-weight: bold; 
    }
#membership-table td ul {
  padding: 0; 
  margin-top: 5px ;
  margin-left: 150px;
  text-align: left; 
  
}

#membership-table td li {
  list-style-type: none; 
  margin:5px 0; 
  padding: 0; 
}

#membership-table td ul li::before {
  content: "•"; 
  margin-right: 10px; 
}
#membership-table td ul li {
  text-indent: -15px;
}
#membership-table td ul li::before {
  margin-right: 10px;
}
#deal-timer .join-now-button {
 display: inline-block;
  margin-top: 10px;
  text-align: center;
  background-color: #27d5d5;
  color: #000000;
  padding-left: 50px;
  padding-right: 50px;
  border-radius: 10px;
}
#signup h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

#signup p {
  font-size: 18px;
  margin-bottom: 20px;
}

#signup {
  text-align: center;
  padding: 80px 0;
  background-color: #4c4b4b;
  color: #fff;
}

#signup h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

#signup p {
  font-size: 18px;
  margin-bottom: 20px;
}

#signup .cta-button {
  background-color: #17b75c;
  color: #fff; 
}


#deal-timer {
  background-color: #e5e2e290;
  padding: 10px 0;
  text-align: center;
  
}

#deal-timer h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

#timer {
  font-size: 24px;
}

footer {
  background-color: #000000;
  color: #fff;
  text-align: center;
  padding: 20px;
}
a.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  margin-top: 20px;
  transition: transform 0.2s ease; 
}

a.cta-button:hover {
  transform: scale(1.05);
  opacity: 0.8;
}
.trial-button {
  background: linear-gradient(to right, #ffac4c, #ff795e);
  color: #fff;
}
.trial-button:hover {
  background: linear-gradient(to right, #ff795e, #ffac4c);
}
#trial-section {
  display: none;
  text-align: center;
  padding: 30px;
  background-color: #f2f2f2;
}

#trial-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

#trial-section p {
  font-size: 16px;
  margin-bottom: 20px;
}

#trial-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
}

#trial-form input {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#trial-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

#trial-form button:hover {
  background-color: #0056b3;
}

.trial-button:hover {
  background: linear-gradient(to right, #ff795e, #ffac4c);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
#customModal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modalcontent {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 60%;
  text-align: center;
}

.modalcontent h2 {
  margin-top: 0;
}

.modalcontent p {
  margin-bottom: 20px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 15% auto;
  padding: 30px;
  max-width: 600px;
  max-height: 1000px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

#trialForm {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#trialForm button {
  display: block;
  width: 50%; 
  margin-top: 20px; 
  text-align: center;
  padding: 14px; 
  font-size: 18px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 8px; 
  cursor: pointer;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

#trialForm button:hover {
  background-color: #0056b3;
}
/* Style for the "Start a 1 Month Free Trial" button */
#startTrialBtn {
 
  margin: 20px auto;
  text-align: center;
  padding: 12px 40px;
  font-size: 18px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

#startTrialBtn:hover {
  background-color: #0056b3;
}

/* Adjust the size of the email and password input fields */
#trialForm input[type="email"],
#trialForm input[type="password"] {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#trialModal.open {
  display: block;
}