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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Base styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  .hero-section {
    background-image: url('/static/images/Rectangle\ 116\ \(9\).png');
   
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.301);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
  }
  
  .hero-title {
    font-family: "Poppins";
    font-size: 48px;

    font-weight: 600;
  }
  
  .hero-subtitle {
    font-family: "Lato";
    font-size: 18px;
    opacity: 0.9;
  }
  
  .about-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-container {
    position: relative;
  }
  
  .about-label {
    display: inline-block;
    color: #000;
    padding: 8px 16px;
    border: 2px solid #0066cc;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    background: transparent;
  }
  
  .about-heading {
    font-size: 32px;
    color: #333;
    max-width: 800px;
    margin-bottom: 40px;
    line-height: 1.3;
    font-weight: bold;
  }
  
  .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .about-image-container {
    width: 100%;
    margin: 40px 0;
    text-align: center;
  }
  
  .about-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .about-text-content {
    max-width: 800px;
    text-align: center;
  }
  
  .about-paragraph {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 16px;
  }
  
  .about-paragraph:last-child {
    margin-bottom: 0;
  }
  
  /* Responsive styles */
  @media screen and (max-width: 1024px) {
    .hero-title {
      font-size: 40px;
    }
  
    .hero-subtitle {
      font-size: 16px;
    }
  
    .about-heading {
      font-size: 28px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .hero-section {
      height: 400px;
    }
  
    .hero-title {
      font-size: 32px;
    }
  
    .hero-subtitle {
      font-size: 14px;
    }
  
    .about-heading {
      font-size: 24px;
    }
  
    .about-label {
      font-size: 12px;
      padding: 6px 12px;
    }
  
    .about-paragraph {
      font-size: 14px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .hero-section {
      height: 300px;
    }
  
    .hero-title {
      font-size: 28px;
    }
  
    .hero-subtitle {
      font-size: 12px;
    }
  
    .about-heading {
      font-size: 20px;
    }
  
    .about-label {
      font-size: 10px;
      padding: 4px 10px;
    }
  
    .about-paragraph {
      font-size: 12px;
    }
  }
  /* contact us started */

  .page-container {
    background-color: #0e0f10;
    color: #ffffff;
    padding: 2rem;
    position: relative;
}

.contact-section {
    font-family: "Poppins";
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    padding: 2rem 0;
}

.contact-left {
    flex: 1;
}

.contact-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    border: 1px solid #007bff;
    border-radius: 20px;
    color: #007bff;
    margin-bottom: 2rem;
    font-family: "Roboto Mono";
}

.contact-heading {
    font-size: 2.5rem;
   
    margin-bottom: 1.5rem;
    width: 600;
    font-size: 55;
    line-height: 40px;
}

.contact-text {
    color: #a3a2a2;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: "Lato";
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.connect-social-icon {
    background-color: #838383;
    color: black;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: grid;
    place-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #0056b3;
}

.contact-right {
    flex: 1;
}

.design-image{
    width: 200px;
    position: absolute;
    left: -2%;
    bottom: 10px;
}

.form-heading {
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-family: "Roboto Mono";
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    font-family: "Roboto Mono", monospace;
    color: #ffffff;
}


.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    flex: 1;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    color: #fff;
}

.form-textarea {
    min-height: 200px;
    resize: vertical;
}

.submit-button {
    background-color: #0470D2;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #0056b3;
}

.faq-section {
    max-width: 1200px;
    margin: 4rem auto;
    background-color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 8px;
}

.faq-header {
    margin-bottom: 2rem;
    text-align: left;
}


.connect-dot-container{
    position: relative;
  }
  
  .connect-dot {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
  }
  
  .timeline-line {
    position: absolute;
    top: -50%;
    left: 0;
    min-width: 200px;
    max-width: 550px;
    height: 2px;
    background-color: black;
    transform: translateY(-50%);
  }
  
  .connect-text {
    color: rgb(0, 0, 0);
    font-family: 'Roboto Mono';
    font-size: 1.1rem;
  }
  
  .connect-dot-empty {
    width: 20px;
    height: 20px;
    border:1.5px solid rgb(0, 0, 0);
    border-radius: 50%;
    position: relative;
  }
  .connect-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .connect-dot-filled{
    width: 12px;
    height: 12px;
    position: absolute;
    border-radius: 50%;
    background-color: rgb(0, 0, 0);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }

.help-tag {
    display: inline-flex;
    align-items: center;
    color: #000000;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.help-tag::before {
    content: "•";
    margin-right: 0.5rem;
}

.faq-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000000;
    font-weight: bold;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-family: "Figtree";
    background-color: #f5f5f5;
    font-weight: 600;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #000000;
    font-weight: 500;
}

.toggle-btn {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.toggle-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
    color: #666666;
    line-height: 1.6;
    font-family: "Lato";
}

.faq-answer p {
    margin: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .toggle-btn i {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}

/* contact us endede */


/* FAQ Section */

.faq-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 20px;
}

.vector-line {
    height: 1px;
    background-color: black;
    margin-bottom: 2rem;
}

.help-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.help-circle {
    width: 24px;
    height: 24px;
    background-color: black;
    border-radius: 50%;
}

.help-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.faq-heading {
    font-size: 32px;
    margin-bottom: 2rem;
    color: #333;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
}

.accordion-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.toggle-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 0 8px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 1rem;
}

.accordion-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-container {
        margin: 1rem auto;
    }

    .faq-heading {
        font-size: 24px;
    }

    .accordion-header h3 {
        font-size: 14px;
    }

    .accordion-content p {
        font-size: 14px;
    }
}

/* FAQ Section */

.faq-wrapper {
    max-width: 800px;
    margin: 6rem 0rem 6rem 5rem;
    padding: 0 20px;
}

.faq-divider {
    height: 1px;
    background-color: black;
    margin-bottom: 2rem;
}

.faq-help {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-bottom: 1rem; */
}

.faq-help-icon {
    width: 24px;
    height: 24px;
    background-color: black;
    border-radius: 50%;
}

.faq-help-text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.faq-title {
    font-size: 32px;
    margin-bottom: 2rem;
    color: #333;
    font-family: "Poppins";
    font-weight: 600;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.faq-toggle {
    background-color: #0472D3;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    border: none;
    display: grid;
    place-content: center;
    /* padding: 0 8px; */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1rem;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-wrapper {
        margin: 3rem auto;
    }

    .faq-title {
        font-size: 24px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
  .footer-links-section > *:nth-child(-n+3) {
    display: none; /* Hides first three columns */
  }

  .design-image{
    display: none;
  }
  }