* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Calibri, Segoe, "Segoe UI", Arial, sans-serif;
  background: #f6fbff;
  color: #222;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px lightgray;  
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #6f4ad7;
}

/* Top Navigation Bar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
  color: #fff;
  z-index: 1000;
  box-shadow: 0px 3px 20px 10px rgb(30 54 99 / 50%);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 18px;
  height: 60px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

  .navbar-logo img{
    height:30px;
  }

  .navbar-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

.navbar-links {
  display: flex;
  gap: 18px;
  align-items: center;
  transition: max-height 0.3s;
}

  .navbar-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 6px;
    transition: background 0.2s;
  }

    .navbar-links a:hover, .navbar-links a.active {
      background: rgba(255,255,255,0.18);
    }

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 10px;
}

.navbar-toggle-icon {
  display: block;
}

.hero {
  background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
  color: #fff;
  padding: 100px 0px 20px 0px;
  text-align: center;
  position: relative;
}

.hero-content {
  margin: 0 auto;
}

.wifi-icon span {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
}

.hero h1 {
  font-weight: 700;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.2rem;
  margin: 10px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 1rem;
  opacity: 0.9;
}

.plan-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(60, 80, 120, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px rgba(60, 80, 120, 0.14);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 2;
}

.features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 40px 0 32px 0;
  flex-wrap: wrap;
  padding: 5px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgb(60 80 120 / 42%);
  padding: 24px 20px;
  width: 220px;
  text-align: center;
  margin-bottom: 16px;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.98rem;
  color: #555;
}

.plans {
  text-align: center;
  margin: 32px 0 0 0;
  padding: 5px;
}

  .plans h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

.plans-desc {
  color: #666;
  margin-bottom: 32px;
}

.plan-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 5px;
}

.plan-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgb(60 80 120 / 67%);
  padding: 32px 24px 24px 24px;
  width: 270px;
  text-align: left;
  position: relative;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 8px solid #3a8dde;
}

  .plan-card h3,
  .plan-card .plan-speed,
  .plan-card .plan-price,
  .plan-card .plan-data {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 5px;
  }

  .plan-card.pro {
    border: 2px solid #ffc107;
    border-top: 8px solid #ffc107;
  }

  .plan-card.enterprise {
    border: 2px solid #2ed8b6;
    border-top: 8px solid #2ed8b6;
  }

  .plan-card.basic {
    border: 2px solid #3a8dde;
    border-top: 8px solid #3a8dde;
  }

  .plan-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
  }

.plan-speed {
  font-size: 1.1rem;
  color: #0B4DB7;
  margin-bottom: 6px;
}

.plan-price {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

  .plan-price span {
    font-size: 1.2rem;
  }

.plan-data {
  font-size: 1rem;
  color: #545454;
  margin-bottom: 12px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

  .plan-card ul li {
    font-size: 0.98rem;
    margin-bottom: 6px;
    color: #444;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
  }

    .plan-card ul li span.material-icons {
      color: #3a8dde;
    }

.plan-card.pro ul li span.material-icons {
  color: #ffc107;
}

.plan-card.enterprise ul li span.material-icons {
  color: #2ed8b6;
}

.select-btn {
  background: #3a8dde;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

  .select-btn:hover {
    background: #2c6bb2;
  }

.most-popular {
  position: absolute;
  top: -18px;
  left: 25%;
  background: #ffc107;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.10);
}

.select-btn.popular {
  background: #ffc107;
}

  .select-btn.popular:hover {
    background: #e0a800;
  }

.select-btn.enterprise {
  background: linear-gradient(90deg, #1dc178 0%, #14b8a5 100%);
}

  .select-btn.enterprise:hover {
    background: linear-gradient(90deg, #11814f 0%, #14b8a5 100%);
  }

.custom-solution {
  background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
  color: #fff;
  border-radius: 18px;
  max-width: 900px;
  margin: 20px auto 20px auto;
  padding: 36px 5px;
  text-align: center;
  box-shadow: 0 2px 24px rgba(34, 46, 58, 0.10);
}

  .custom-solution h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .custom-solution p {
    font-size: 1.05rem;
    margin-bottom: 22px;
  }

.custom-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}

  .custom-actions .btn {
    border: 0;
    border-radius: 10px;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 2px 12px rgba(60, 80, 120, 0.10);
    transition: background 0.2s, box-shadow 0.2s;
  }
    .custom-actions .btn:hover {
      background: #95bdeb;
    }

    .contact-section {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 2px 16px rgba(60, 80, 120, 0.10);
      padding: 32px 24px;
    }

.contact-flex {
  display: flex;
  gap: 32px;
  max-width: 900px;
  margin: 32px auto;
}

.company-details {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #f6fbff;
  border-radius: 14px;
  padding: 24px 18px;
  box-shadow: 0 2px 8px rgba(60,80,120,0.07);
  gap: 18px;
}

.company-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

  .company-row.company-address {
    align-items: flex-start;
  }

.company-icon {
  color: #3a8dde;
  font-size: 1.5rem;
}

.company-info {
  font-size: 1.07rem;
  font-weight: 600;
}

.contact-form-flex {
  flex: 2;
  min-width: 260px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #3a8dde;
    background: #eaf4ff;
  }

  .form-group label {
    font-weight: 600;
    color: #3a8dde;
    margin-bottom: 2px;
  }

  .form-group input,
  .form-group textarea {
    padding: 8px;
    border: 1px solid #dbeafe;
    border-radius: 8px;
    font-size: 1rem;
    font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    background: #f6fbff;
    resize: vertical;
  }

.company-details {
  margin-bottom: 24px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(60,80,120,0.07);
  padding: 20px 10px;
  background: #f6fbff;
}

.contact-form-flex {
  width: 100%;
  padding: 0;
}

.company-title {
  font-size: 19px;
  margin-bottom: 8px;
}

.company-row {
  margin-bottom: 8px;
  gap: 8px;
}

.company-icon {
  font-size: 1.2rem;
}

.company-info {
  font-size: 1rem;
}

.contact-section {
  padding: 12px 2vw;
  box-shadow: 0 2px 8px rgba(60,80,120,0.07);
  border-radius: 12px;
  margin: 18px auto;
}

.signup-section {
  max-width: 500px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(60,80,120,0.13);
  padding: 10px 30px 20px 30px;
  margin: 0px auto 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

  .signup-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #3a8dde;
    margin-bottom: 8px;
  }

  .signup-section p {
    font-size: 1.08rem;
    color: #555;
    margin-bottom: 22px;
    text-align: center;
  }


.signup-form label {
  font-weight: 600;
  color: #3a8dde;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.signup-form input {
  padding: 8px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  font-size: 1rem;
  font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
  background: #f6fbff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(60, 80, 120, 0.04);
}

  .signup-form input:focus {
    outline: none;
    border-color: #3a8dde;
    background: #eaf4ff;
    box-shadow: 0 2px 8px rgba(60, 80, 120, 0.10);
  }


.signup-form .btn[type="submit"],
.contact-form .btn[type="submit"] {
  background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 2px 12px rgba(60, 80, 120, 0.10);
  transition: background 0.2s, box-shadow 0.2s;
}

  .signup-form .btn[type="submit"]:hover,
  .contact-form .btn[type="submit"]:hover {
    background: linear-gradient(90deg, #2c6bb2 0%, #6f4ad7 100%);
    box-shadow: 0 4px 24px rgba(60, 80, 120, 0.18);
  }


.signup-form {
  width: 100%;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1rem;
}

.btn:disabled, 
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


.otp-btn[type="button"] {
  background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(60, 80, 120, 0.10);
  transition: background 0.2s, box-shadow 0.2s;
  width: 100px;
  align-self: flex-end;
}

.otp-btn[type="button"]:hover {
  background: linear-gradient(90deg, #2c6bb2 0%, #6f4ad7 100%);
  box-shadow: 0 4px 24px rgba(60, 80, 120, 0.18);
}

.otp-btn:disabled,
.otp-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-group.otp {
  flex-direction: row !important;
  justify-content: space-between;
}

  .form-group.password{
    position: relative;
  }
#togglePassword {
  position: absolute;
  right: 12px;
  top: 35px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: #3a8dde;
}


.main-footer {
  background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
  color: #fff;
  padding: 32px 5px 18px 5px;
  text-align: center;
}

  .main-footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
  }

.header {
  text-align: center;
  padding: 20px;
  max-width: 500px;
  margin: 0px auto 0px auto;
}
.body-section,
.terms-section,
.privacy-section {
  max-width: 900px;
  margin: 32px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(60,80,120,0.10);
  padding: 32px 24px;
  text-align: justify;
}

  .body-section ul,
  .privacy-section ul,
  .terms-section ul {
    margin-bottom: 24px;
    margin-left: 15px;
  }

  .body-section h2,
  .profile-section h2,
  .terms-section h2,
  .privacy-section h2 {
    font-size: 19px;
    margin-top: 15px;
  }

  .body-section h3,
  .profile-section h3,
  .terms-section h3,
  .privacy-section h3 {
    font-size: 16px;
  }

.profile-section {
  max-width: 900px;
  margin: 32px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(60,80,120,0.10);
  padding: 32px 24px;
}

  .profile-section .details {
    margin-bottom: 24px;
    padding: 18px 16px;
    background: #f6fbff;
    border-radius: 12px;
    max-width: 400px;
  }



/* Base input styling */
.form-group input[type="email"],
.form-group input[type="tel"] {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

  /* Only show validation styles after user has focused and left the field */
  .form-group input[type="email"]:not(:focus):invalid:not(:placeholder-shown),
  .form-group input[type="tel"]:not(:focus):invalid:not(:placeholder-shown) {
    border: 2px solid #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    background-color: #fdf2f2;
  }

  /* Valid state styling after focus */
  .form-group input[type="email"]:not(:focus):valid:not(:placeholder-shown),
  .form-group input[type="tel"]:not(:focus):valid:not(:placeholder-shown) {
    border: 2px solid #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
    background-color: #f8fff8;
  }

  /* Focus states - clean focus without validation styling */
  .form-group input[type="email"]:focus,
  .form-group input[type="tel"]:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  }

/* Error message styling */
.form-group input:not(:focus):invalid:not(:placeholder-shown) + .error-message {
  display: block;
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 5px;
}

.form-group .error-message {
  display: none;
}

/* Alternative approach using CSS custom property to track focus state */
.form-group input[type="email"],
.form-group input[type="tel"] {
  --was-focused: 0;
}

  .form-group input[type="email"]:focus,
  .form-group input[type="tel"]:focus {
    --was-focused: 1;
  }

.field-helper {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
  line-height: 1.3;
}

.field-error {
  font-size: 0.85rem;
  color: #e74c3c;
  margin-top: 4px;
  display: none;
}

.field-success {
  font-size: 0.85rem;
  color: #27ae60;
  margin-top: 4px;
  display: none;
}

.form-group input.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.form-group input.success {
  border-color: #27ae60;
  box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.1);
}

.password-requirements {
  margin-top: 8px;
  padding: 12px;
  background-color: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid #3a8dde;
}

  .password-requirements h4 {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
  }

.requirement {
  font-size: 0.85rem;
  color: #666;
  margin: 4px 0;
  display: flex;
  align-items: center;
}

  .requirement.met {
    color: #27ae60;
  }

  .requirement .icon {
    margin-right: 8px;
    font-size: 0.8rem;
  }

.phone-format {
  font-size: 0.85rem;
  color: #666;
  margin-top: 4px;
  background-color: #f8f9fa;
  padding: 8px;
  border-radius: 4px;
  border-left: 3px solid #3a8dde;
}


@media (max-width: 900px) {  
  .navbar-container {
    height: 54px;
    padding: 0 8px;
  }

  .navbar-links {
    position: absolute;
    top: 54px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

    .navbar-links.active {
      max-height: 400px;
      border-top: 2px solid steelblue;
    }

    .navbar-links a {
      padding: 12px 0;
      width: 100%;
      text-align: center;
      border-radius: 0;
      border-bottom: 2px solid steelblue;
    }

  .navbar-toggle {
    display: block;
  }

  .features, .plan-cards, .custom-actions {
    flex-direction: row;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
  }

  .plan-card {
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-card {
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
  }

  .custom-solution {
    padding: 24px 0px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0;
    margin: 0;
  }

  .hero {
    padding: 75px 0px 20px 0px;
  }

  .plans {
    padding: 5px;
  }

  .features {
    padding: 5px;
  }

  .plan-cards {
    padding: 5px;
  }

  h1 {
    font-size: 22px !important;
  }

  h2 {
    font-size: 20px !important;
  }
  p {    
    padding: 0px 20px;
  }

  /* How It Works Mobile Styles */
  .how-it-works {
    padding: 50px 15px;
  }

  .how-it-works h2 {
    font-size: 1.4rem !important;
  }

  .how-it-works-desc {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .steps {
    gap: 20px;
    margin-bottom: 30px;
  }

  .step {
    padding: 30px 20px;
    min-width: 250px;
    max-width: 280px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }

  .step-content p {
    font-size: 0.9rem;
    margin-left: 0;
    margin-right: 0;
  }

  .step-icon {
    font-size: 2rem;
  }

  .how-it-works-cta {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .cta-primary, .cta-secondary {
    padding: 12px 25px;
    font-size: 0.9rem;
    min-width: 200px;
  }

  /* FAQ Mobile Styles */
  .faq-section {
    padding: 50px 15px;
  }

  .faq-section h2 {
    font-size: 1.4rem !important;
  }

  .faq-desc {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 20px 20px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
    padding-right: 15px;
  }

  .faq-toggle {
    font-size: 1.3rem;
    width: 25px;
    height: 25px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .faq-cta {
    margin-top: 30px;
    padding: 30px 20px;
  }

  .faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .faq-cta .cta-primary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

/* How It Works Section */
.how-it-works {
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
  padding: 80px 20px;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.how-it-works-desc {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(58, 141, 222, 0.1);
  max-width: 300px;
  min-width: 280px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(58, 141, 222, 0.15);
  border-color: #3a8dde;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 2;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
}

.step-icon {
  font-size: 2.5rem;
  margin-top: 10px;
  opacity: 0.8;
}

.how-it-works-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  min-width: 180px;
}

.cta-primary {
  background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
  color: #fff;
  box-shadow: 0 5px 20px rgba(58, 141, 222, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(58, 141, 222, 0.4);
}

.cta-secondary {
  background: #fff;
  color: #3a8dde;
  border: 2px solid #3a8dde;
}

.cta-secondary:hover {
  background: #3a8dde;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(58, 141, 222, 0.3);
}

/* FAQ Section */
.faq-section {
  background: #fff;
  padding-top: 50px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-desc {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-item:hover {
  border-color: #3a8dde;
  box-shadow: 0 5px 20px rgba(58, 141, 222, 0.1);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fbff;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e8f4fd;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3a8dde;
  transition: transform 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(58, 141, 222, 0.1);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: #3a8dde;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 1rem;
}

.faq-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
  
}

.faq-cta p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.faq-cta .cta-primary {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
  color: #fff;
  box-shadow: 0 5px 20px rgba(58, 141, 222, 0.3);
  transition: all 0.3s ease;
}

.faq-cta .cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(58, 141, 222, 0.4);
}

.hide{
  display: none;
}

/* Step connector lines for larger screens */
@media (min-width: 992px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -40px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3a8dde 0%, #6f4ad7 100%);
    z-index: 1;
  }
}


@media (max-width: 600px) {
  .contact-section {
    flex-direction: column-reverse;
    width: 98%;
  }
}
