:root {
  --primary: #4f46e5;
  --primary-light: #6366f1;
  --secondary: #1e1e80;
  --accent: #7ec3ff;
  --text: #e2e8f0;
  --text-light: #cbd5e1;
  --dark: #0f172a;
}

.contact-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* min-height: 70vh; */
  background: linear-gradient(135deg, #1f1f79 0%, #3e1f95 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding-right: 50px;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(126, 195, 255, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.contact-hero-content {
  flex: 1;
  padding: 80px min(8vw, 120px);
  position: relative;
  z-index: 1;
  min-width: 300px;
}

.contact-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(90deg, white 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-hero h1 span {
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-hero p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 600px;
}

.contact-hero-image {
  flex: 1;
  min-width: 300px;
  height: 100%;
  min-height: 400px;
  position: relative;
  padding-right: 70px;

}

.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 21px;

}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(31, 31, 121, 0.7) 0%, rgba(62, 31, 149, 0.5) 100%);
}

.contact-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .contact-hero {
    flex-direction: column;
  }
  
  .contact-hero-content {
    padding: 60px 40px;
    text-align: center;
  }
  
  .contact-hero p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-buttons {
    justify-content: center;
  }
  
  .contact-hero-image {
    min-height: 300px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-hero-content {
    padding: 40px 24px;
  }
  
  .contact-buttons {
    gap: 15px;
  }
  
  .btn-primary, .btn-outline {
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
  }
}


/* Contact end */


/* contact methods start */
.contact-methods {
  padding: 80px 20px;
  background-color: white;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--primary);
  font-size: 24px;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.contact-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link i {
  transition: transform 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-light);
}

.contact-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .contact-methods {
    padding: 60px 20px;
    overflow: hidden;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

/* contact methods end */


/* contact-form-section start */
      .contact-form-section {
        padding: 80px 20px;
        background-color: #f8fafc;
      }
      
      .form-container {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        flex-direction: row-reverse;
      }
      
      .form-content {
        flex: 1;
        min-width: 300px;
        padding: 60px;
      }
      
      .form-content h2 {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        margin-bottom: 16px;
        color: var(--dark);
      }
      
      .form-content p {
        color: var(--gray);
        margin-bottom: 40px;
        line-height: 1.6;
      }
      
      .contact-form {
        display: flex;
        flex-direction: column;
        gap: 25px;
      }
      
      .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      
      .form-group label {
        font-weight: 600;
        color: var(--dark);
      }
      
      .form-group input,
      .form-group textarea {
        padding: 14px 16px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
      }
      
      .form-group input:focus,
      .form-group textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
      }
      
      .form-group textarea {
        resize: vertical;
        min-height: 120px;
      }
      
      .submit-btn {
        background: var(--primary);
        color: white;
        border: none;
        padding: 16px 28px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s ease;
        margin-top: 10px;
      }
      
      .submit-btn:hover {
        background: var(--primary-light);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
      }
      
      .form-image {
        flex: 1;
        min-width: 300px;
        height: 100%;
        min-height: 819.6px;
        position: relative;
      }
      
      .form-image img {
        width: 100%;
        height: 100%;
        min-height: 819.6px;
        object-fit: cover;
      }
      
      .form-image .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(31, 31, 121, 0.8) 0%, rgba(62, 31, 149, 0.5) 100%);
      }
      
      .form-support {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 40px;
        color: white;
        z-index: 1;
      }
      
      .form-support h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
      }
      
      .form-support p {
        margin-bottom: 25px;
        line-height: 1.6;
      }
      
      .support-btn {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
        color: white;
        padding: 14px 28px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.3);
      }
      
      .support-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
      }
      
      @media (max-width: 1024px) {
        .form-content {
          padding: 40px;
        }
      }
      
      @media (max-width: 768px) {
        .contact-form-section {
          padding: 60px 20px;
        }
        
        .form-image {
          min-height: 400px;
        }
      }
      
      @media (max-width: 480px) {
        .form-content {
          padding: 30px 20px;
        }
        
        .form-support {
          padding: 30px 20px;
        }
      }
/* contact-form-section end*/

/* faq-section start */

.faq-section {
  padding: 100px 20px;
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}
.section-title{
  color:var(--dark);
}
.section-subtitle{
  color:#64748b;
}
.section-header {
  display: flex
;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  background: white;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8fafc;
}

.faq-item.active .faq-answer {
  padding: 20px 25px;
  max-height: 300px;
}

.faq-answer p {
  color: #3c3c3c;
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
  margin-top: 60px;
}

.faq-cta p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.cta-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }
}
/* faq-section end */


/* contact-cta :start */
.contact-cta {
  padding: 100px 20px;
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); */
  background: linear-gradient(135deg, #0f172a 0%, rgba(30, 30, 128, 0.95) 100%);
  color: white;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-cta h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-cta p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: white;
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact-cta {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-primary, .btn-outline {
    width: 100%;
  }
}

/* contact-cta end */