@import url(../../global.css);

.main-hero {
    background: linear-gradient(89.53deg, rgba(0, 0, 0, 0.8) 38.02%, rgba(0, 0, 0, 0.3) 60.4%, rgba(0, 0, 0, 0) 71.79%), url("../../../assets/banners/ipo-banner-main.png");
    padding: 128px 50px;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    position: relative;
}

.hero-header>h1 {
    width: 70%;
    font-family: Urbanist, sans-serif;
    font-size: 4.235rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.hero-header>p {
    width: 60%;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

@media screen and (max-width:768px) {
    .main-hero {
        padding: 40px;
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../../assets/banners/ipo-banner-main.png");
        align-items: center;
    }

    .hero-header>h1 {
        width: 80%;
        font-size: 2.617rem;
    }

    .hero-header>p {
        width: 80%;
        font-size: 1rem;
    }
}

@media screen and (max-width:430px) {
    .main-hero {
        padding: 20px;
    }

    .hero-header>h1 {
        width: 100%;
        font-family: Urbanist;
        font-size: 2.617rem;
        font-weight: 700;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #ffffff;
    }

    .hero-header>p {
        width: 100%;
    }
}

.service-section-main {
    padding: 64px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
}

.service-image,
.service-main-content {
    width: 50%;
}

.service-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.service-main-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-main-content>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.service-main-content>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
}

.service-main-cta {
    margin-top: 16px;
    background-color: #111111;
    align-self: flex-start;
    padding: 12px;
    text-decoration: none;
    color: #fff;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    transition: all 0.3s ease;
}

.service-section-main-metrics {
    padding: 64px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #e9ebed;
    flex: 1;
}

.service-metric:last-child {
    border-right: none;
}

.service-metric>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 4.235rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.service-metric>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: center;
}


@media screen and (max-width:768px) {
    .service-section-main {
        flex-direction: column;
    }

    .service-metric > h2{
        font-size: 2.617rem;
        line-height: 1.2;
    }

    .service-metric > p{
        font-size: 1rem;
        line-height: 1.618;
    }

    .service-image,
    .service-main-content {
        width: 100%;
    }
    .service-section-main-metrics{
        padding: 20px;
    }
}


@media screen and (max-width:430px){
    .service-section-main{
        gap: 24px;
    }
    .service-main-content > h2{
        font-size: 2.617rem;
    }
    .service-main-content > p{
        font-size: 1rem;
    }
    .service-section-main-metrics {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .service-metric {
        border-right: none;
        margin-bottom: 16px;
    }
}

.service-section {
    display: flex;
    align-items: center;
    gap: 64px;
}

.service-section-col,
.service-col-image {
    width: 50%;
}

.service-section-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-section-col-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-section-col-header>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.service-section-col-header>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
}

.service-section-col-cta {
    align-self: start;
}

.service-section-col-cta>a {
    display: flex;
    padding: 12px 24px;
    border: 1px solid #343c3f;
    border-radius: 50px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
}

.ruler>hr {
    width: 100%;
    height: 1px;
    background-color: #e9ebed;
    border: none;
}

.service-section-col-metrics {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.metric>h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.metric>p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: center;
}

.service-col-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-col-image>img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    .service-section {
        padding: 64px 0px;
        flex-direction: column;
        gap: 64px;
    }

    .service-section-col,
    .service-col-image {
        width: 100%;
    }

}

.service-strategy {
    background: #dae1e3;
    padding: 64px 50px;
}

.service-strategy-inner-container {
    /* max-width: 1440px; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;

}

.service-strategy-content,
.service-strategy-image {
    width: 50%;
}

.service-strategy-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-strategy-content>h3 {
    font-family: Urbanist;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.service-strategy-content>p {
    font-family: Plus Jakarta Sans;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.know-more {
    display: flex;
    align-self: start;
    padding: 16px 32px;
    border: 1px solid #343c3f;
    border-radius: 50px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
}

.know-more:hover {
    background-color: #343c3f;
    color: #ffffff;
}

.service-strategy-image>img {
    width: 100%;
    object-fit: cover;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    .service-strategy {
        padding: 64px 32px;
    }

    .service-strategy-inner-container {
        flex-direction: column;
        max-width: 100%;
        margin: 0;
    }

    .service-strategy-content,
    .service-strategy-image {
        width: 100%;
    }
}

/* Process chart for service */
.about-usp-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 64px 0;
}

.about-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.usp-header>h2 {
    width: 40%;
    font-family: Urbanist;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #141E47;
}

.usp-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.usp-data {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: fit-content;
    flex: 1 1 20%;
    padding: 10px;
}

.usp-data-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.usp-data-header>h3 {
    width: 80%;
    font-family: Urbanist;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.usp-data-header>p {
    font-family: Plus Jakarta Sans;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    letter-spacing: -0.02em;
}

.usp-icon {
    width: fit-content;
    padding: 16px;
    border-radius: 16px;
    align-self: flex-start;
    background-color: #e9ebed;
}

@media screen and (max-width: 768px) {
    .about-header>h2 {
        font-size: 2.617rem;
    }

    .usp-header > h2{
        width: 100%;
    }
    
    .usp-row {
        flex-direction: column;
    }

    .usp-data {
        padding: 20px;
    }
}

@media screen and (max-width: 430px) {
    .about-usp-container {
        gap: 32px;
    }

    .about-header>h2 {
        font-size: 2.617rem;
    }

    .usp-data {
        padding: 0px;
    }
}

.quote-section {
    background-color: #f0f2f4;
    padding: 128px 50px;
}

.quote-container{
    max-width: 1200px;
    margin: 0 auto;
    background-color: #343c3f;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
}

.quote-container-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quote-container-content>h3 {
    font-family: Urbanist;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.quote-container-content>p {
    font-family: Plus Jakarta Sans;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

.quote-container-content>h4 {
    font-family: Urbanist;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #ffffff;
}

@media screen and (max-width: 768px){
    .quote-section {
        padding: 64px 20px;
    }

    .quote-container {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .quote-container-content {
        width: 100%;
    }
}

/* Our Story ends */

.video-container{
    padding: 128px 0 0 0;
    display: flex;
    align-items: stretch;
    height: auto;
    min-height: 100%;
}

.video{
    width: 70%;
    display: flex;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.story-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

/* Custom Play Button */
.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.custom-play-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 24px solid white;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
}

.video > video{
    width: 100%;
    height: 100%;
    position: relative; 
}

.video-description{
    width: 30%;
    background-color: #000;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.video-description > h3{
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

.video-description > p{
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
}

.video-description > a{
    width: fit-content;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    text-decoration: none;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.video-description > a:hover{
    text-decoration: underline;
}   

@media screen and (max-width: 768px){
    .video-container{
        flex-direction: column;
    }
    .video, .video-description{
        width: 100%;
    }
}

@media screen and (max-width:430px){
    .video-container{
        padding: 24px 0;
    }
}

/* FAQ Section */

.faq-header { 
    padding: 64px 0;
}

.faq-header>h2 {
    font-family: Urbanist;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #141E47;
}

.faqs {
    max-width: 1440px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    padding: 50px;
}

.faq-col {
    width: 40%;
    flex: 1 1 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    padding: 20px;
    border-bottom: 1px solid #a0a9cf;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 10px;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.faq-question>h2 {
    font-family: Urbanist;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    padding: 0 10px;
}

.faq-answer>p {
    font-family: Plus Jakarta Sans;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    text-align: left;
    color: var(--body-text);
}

.faq-answer ul {
    list-style-type: disc;
    padding: 10px 20px;
    /* padding-left: 20px; */
}

.faq-answer ul li {
    font-family: Plus Jakarta Sans;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    color: var(--body-text);
}

@media screen and (max-width: 768px) {
    .faqs {
        padding: 20px 0;
        flex-direction: column;
    }

    .faq-col {
        width: 100%;
    }
}

@media screen and (max-width: 430px) {
    .faq-question > svg{
        width: 24px;
        height: 24px;

    }
    .faq-question>h2 {
        width: 80%;
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .faq-answer>p {
        font-size: 1rem;
    }
}