/* Utility Classes */
.position-relative {
    position: relative;
}

:root {
    --primary-color: #1D0856;
    --secondary-color: #B3D633;
    --accent-color: #B7A5FF;
    --text-color: #fff;
    --highlight-color: #E0FF6D;
    --footer-bg: #000000;
    --tertiary-color: #B7A5FF;
    --text-light: #fff;
    --text-dark: #1D0856;
    --text-muted: #919AA7;
    --bg-secondary: #141b23;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.10);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 ,
h1 > span,
h2 > span,
h3 > span,
h4 > span,
h5 > span,
h6 > span
 {
    font-family: 'Power Grotesk', sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
}

h1,
.h1 {
    font-size: 72px;
}

h2,
.h2 {
    font-size: 56px;
}

h3,
.h3 {
    font-size: 40px;
}

h4,
.h4 {
    font-size: 32px;
}

h5,
.h5 {
    font-size: 24px;
}

h6,
.h6 {
    font-size: 18px;
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--tertiary-color);
}

.highlight-yellow {
    color: var(--highlight-color);
}

body {
    background: var(--primary-color);
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.navbar {
    background-color: var(--primary-color);
}

/* Who We Are Section */
.who-we-are-section {
    color: var(--text-light);
    margin: 3rem;
}

/* .who-we-are-section .image-box {
    display: flex;
    align-items: center;
    justify-content: center;
} */

.image-bg-circle-center::before{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    opacity: 0.4;
    background: #B7A5FF;
    filter: blur(150px);
    z-index: 0;
    pointer-events: none;
}

.mb-150{
    margin-bottom: 150px;
}

.pt-100{
    padding-top:100px ;
}
 
.section-title {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.section-text {
    color: var(--text-light);
    text-align: left;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

 

/* Our Values Section */
.what-we-do-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.what-we-do-section .title-section {
    margin-bottom: 150px;
    text-align: center;
}

.what-we-do-section .body-section {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
}

@media(max-width:786px){
    .what-we-do-section .body-section{
        flex-direction: column;
    }
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
}

/* Other Styles (unchanged, but grouped for clarity) */
.image-bg-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.4;
    background: #B7A5FF;
    filter: blur(150px);
    z-index: 0;
    pointer-events: none;
}

.circle-top-left {
    top: 20%;
    left: 0;
    transform: translate(-30%, -30%);
    z-index: -2;
}

.circle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-bottom-right {
    bottom: 0;
    right: 0;
    transform: translate(30%, 30%);
}

.circle-bottom-left {
    bottom: 0;
    left: -20%;
    transform: translate(30%, 30%);
    z-index: -2;
}

.image-box {
    position: relative;
    z-index: 1;
}

.image-box.bg-circle-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    opacity: 0.4;
    background: #B7A5FF;
    filter: blur(150px);
    z-index: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.image-box img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
}

.section-large-padding {
    margin-top: 0px;
    padding-top: 50px;
}

.newsletter-input {
    background-color: #141b23;
    border: none;
    height: 48px;
}

.footer-description {
    color: #919AA7;
    width: 60%;
}

.footer-copyright {
    color: white;
}

.icons-gap {
    gap: 10px;
}

.transparent-box-sm {
    width: 328px;
    height: 400px;
    position: relative;
    border-radius: 1rem;
    padding: 80px 10px 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 3.28px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(32.77px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.transparent-box-sm:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.transparent-box-sm .title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    color: var(--text-light);
    text-align: center;
}

.transparent-box-sm .description p {
    font-family: Poppins;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 24px;
}

.transparent-box-sm .image {
    position: absolute;
    width: 150px;
    height: 150px;
    top: -70px;
}

.transparent-box-sm .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* =============================
   Our Timeline Section (#our-timeline)
   ============================= */
.timeline-section {
    padding: 80px 0;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-date {
    color: var(--Secondary-Color, #E0FF6D);
    text-align: center;
    font-family: "Power Grotesk", Poppins, sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
}

.timeline-dot {
    margin: 10px 0;
}

.timeline-text {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Poppins, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    backdrop-filter: blur(5px);
    margin-bottom: 0;
}

/* Remove horizontal timeline styles */
.timeline-horizontal,
.timeline-horizontal-line,
.timeline-horizontal-event,
.timeline-horizontal-dot,
.timeline-horizontal-date,
.timeline-horizontal-content {
    display: none !important;
}

/* Vertical timeline styles */
.timeline-vertical {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.timeline-event {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 30px;
    min-height: 100px;
    position: relative;
}

.timeline-date {
    flex: 0 0 120px;
    text-align: right;
    color: #E0FF6D;
    font-family: "Power Grotesk", Poppins, sans-serif;
    font-size: 40px;
    font-weight: 400;
    margin-right: 0;
}

.timeline-dot-col {
    flex: 0 0 68px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: 100px;
}

.timeline-dot-col::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 6px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.05);
    border-top: none;
    border-bottom: none;
    ;
    z-index: 0;
    transform: translateX(-50%);
    pointer-events: none;
    top: 0;
    bottom: 0;
}

.timeline-dot-col.first::before {
    top: 50%;
}

.timeline-dot-col.last::before {
    bottom: 50%;
}

.timeline-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    z-index: 2;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

.timeline-dot::before {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background: url('/images/timeline-dot.svg') no-repeat center/contain;
}

.timeline-dot.first {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 6px solid #1D0856;
    color: #1D0856;
    font-size: 28px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    display: flex;
}

.timeline-content {
    flex: 1;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}

@media (max-width: 800px) {
    .timeline-event {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
    }

    .timeline-date,
    .timeline-content {
        text-align: center;
        margin: 0;
    }

    .timeline-content {
        margin-left: 0;
    }
}

/* ===========================================
FOOTER
=========================================== */
.footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: 40px 0;
    font-family: 'Figtree', sans-serif !important;
    box-sizing: border-box;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    display: inline-block;
    margin-right: 20px;
}

.footer ul li:last-child {
    margin-right: 0;
}

.footer ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--accent-color);
}

.footer p,
.footer .newsletter p {
    color: var(--text-muted);
    margin-top: 20px;
}

.footer h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.newsletter form {
    display: flex;
    width: 100%;
    max-width: 400px;
    align-items: center;
    gap: 8px;
}

.newsletter input[type="email"] {
    flex: 1;
    background-color: var(--bg-secondary);
    border: none;
    color: var(--text-light);
    height: 48px;
    padding: 0 12px;
    border-radius: 4px;
}

.newsletter input::placeholder {
    color: #344252 !important;
}

.newsletter button {
    background-color: #B3D633;
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border-radius: 4px;
}


.newsletter button:hover {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
}
.icons-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px; 
    width: 100%;
} 

.icons-right-border .apple-icon, 
.icons-right-border .google-icon{
    width: 100px;
} 
 


.social-icons {
    margin-top: 16px;
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-color);
}

.icons-right-border {
    display: flex;
    align-items: end;
    justify-content: end;
    border-bottom: 1px solid #FFFFFF1A;
    padding-bottom: 16px;
    /* Optional: space between images and border */
    margin-bottom: 16px;
    /* Optional: space below border */
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #FFFFFF1A;
}

html, body {
    overflow-x: hidden;
}


#contact-form{
    position: relative;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(185, 155, 255, 0.10) 37.05%, rgba(29, 8, 86, 0.00) 175.97%);
    padding: 50px;
} 

@media (max-width:768px){

    #contact-form{
       padding: 5px;
    } 
    
}

#contact-form label{
    color: #FFF;  
    font-size: 24px; 
    font-weight: 400; 
    font-family: 'Poppins', sans-serif;
}

#contact-form form input,textarea{
    color: rgba(255, 255, 255, 0.20);    
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    overflow: none;
    resize: none;

}
#contact-form form button{
    border-radius: 18.174px;
    background: linear-gradient(180deg, var(--Secondary-Color, #E0FF6D) 0%, #B3D633 100%);
}

#contact-form .form-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
#contact-form .form-group label {
    width: 100%;
    min-width: 0;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
    display: block;
}
#contact-form .form-group input,
#contact-form .form-group textarea {
    flex: 1;
    margin-bottom: 0;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
}
 

#contact-form form button {
    background-color: #B3D633;
    color: var(--primary-color);
    border: none;
    padding: 5px 20px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border-radius: 10px;
}


#contact-form form button:hover {
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
}
@media (max-width: 767.98px) {
    #contact-form .form-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    #contact-form .form-group label {
        min-width: 0;
        margin-bottom: 0.25rem;
    }
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem; 
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    word-break: break-word;
}
.contact-info-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
@media (max-width: 767.98px) {
    .contact-info-item {
        font-size: 1rem;
    }
    .contact-info-item img {
        width: 22px;
        height: 22px;
    }
}

/* @media (max-width: 767.98px) {
    .who-we-are-section,
    .what-we-do-section,
    .timeline-section,
    .footer,
    .row,
    .container {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    .what-we-do-section .body-section {
        width: 100vw;
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
} */

#faq-section {
    margin-top: 2.5rem;
}
.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 1rem;
}
.faq-question {
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.60);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    /* font-weight: 600;
    font-size: 1.1rem; */
    cursor: pointer; 
    color: #E0FF6D; 
    font-family: "Power Grotesk";
    font-size: 32px;
}
.faq-question img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.faq-answer {
    margin-top: 10px;
    padding: 50px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    background: linear-gradient(180deg, rgba(185, 155, 255, 0.10) 37.05%, rgba(29, 8, 86, 0.00) 175.97%);
    backdrop-filter: blur(10px); 
    color: #FFF; 
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
}
@media (max-width: 767.98px) {
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer {
        margin-left: 1.5rem;
        font-size: 0.95rem;
    }
} 
@media (max-width: 767.98px) {
    .faq-content {
        max-width: 100%;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}