/* 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;
    font-family: "Poppins";
    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-size: 48px;
    line-height: 3.2rem;
    font-weight: 600;
  }
  
  .hero-subtitle {
    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;
    }
  }

/* main section style */
.faq-container {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 4rem;
            padding: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-title {
            font-size: 2.5rem;
            font-weight: 600;
            line-height: 2.5rem;
            top: 2rem;
            font-family: "Inter";
            color: #111827;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            width: 90%;
            margin-bottom: 40px;
        }

        .faq-item {
            border-bottom: 1px solid black;
            padding-bottom: 1.5rem;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 1rem;
            cursor: pointer;
            font-family: "Poppins";
           
        }

        .question-content {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            flex: 1;
        }

        .avatar {
            width: 32px;
            height: 32px;
            background-color: #e5e7eb;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .question-text {
      
            font-weight: 500;
            color: #111827;
            flex: 1;
            line-height: 1.4;
            font-size: 20px;
        }

        .arrow-button {
            width: 38px;
            height: 38px;
            border: none;
            background-color: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            flex-shrink: 0;
            transition: transform 0.3s ease;
            padding: 0;
            margin-top: 2px;
        }

        .arrow-icon{
            width: 38px;
            height: 38px;
            transition: transform 0.3s ease;
        }

        .arrow-button svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: white;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transform: rotate(-90deg);
          
        }

        .faq-item.active .arrow-icon {
            transform: rotate(90deg);

        }

        .faq-answer {
            color: #4b5563;
            line-height: 1.5;
            display: none;
            font-size: 0.95rem;
            font-family: "Lato";
        }

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

        .faq-ticket{
            width: 110%;
        }

        .faq-ticket h4{
            font-weight: 500;
            font-family: "Lato";
            margin-top: 15px;
            margin-left: 5px;
        }

        @media (max-width: 768px) {
            .faq-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .faq-title {
                position: static;
                margin-bottom: 1rem;
            }
        }

/* contact us form started */
.page-wrapper {
    display: flex;
    min-height: 70vh;
    background-color: #0E0F10;
    padding: 4rem;
    gap: 4rem;
    /* max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%; */
    position: relative;
    overflow: hidden;
}

.gradient-elipse{
    position: absolute;
    width: 95%;
    height: 310px;
    border-radius: 50%;
    top: -14%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.406);
    filter: blur(100px);
    background: linear-gradient(to right,#046ed24d,#00ccff5e);
}

.content-section {
    flex: 1;
    position: relative;
  
}

.vector-line {
    width: 400px;
    height: 2px;
    background-color: rgb(255, 255, 255);
    margin-bottom: 0.5rem; 
}

.connect-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.connect-dot {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
}

.connect-text {
    color: white;
    font-family: 'Roboto Mono';
    font-size: 1.1rem;
}

.main-heading1 {
    color: white;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-family: "Poppins";
}

.description-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 80%;
    margin-bottom: 2rem;
    font-family: "Lato";
}

.form-section {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.contact-form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: "Roboto Mono";
    z-index : 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group.full-width {
    width: 100%;
}

.contact-form label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 300px;
    flex-grow: 1;
}

.submit-button {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    font-family: "Poppins";
    background: #1D4ED8;
    color: white;
    text-align: center;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.submit-button:hover {
    opacity: 0.9;
}

.alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .page-wrapper {
        flex-direction: column;
        padding: 2rem;
    }

    .vector-line {
        width: 200px;
    }

    .main-heading1 {
        font-size: 2rem;
    }

    .description-text {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

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