body {
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #f1efef;
    background-image: url(background.jpg);
    background-size: cover; /* Ensures the background image covers the entire container */
    background-attachment: fixed; /* Prevents the background image from scrolling with the content */
    background-position: center; /* Centers the background image */
}

/* Style the headers */
h1 {
    color: #fff;
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
    -webkit-line-clamp: 1;
}

h2 {
    color: #ccc;
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 15px;
}

/* Style the paragraphs */
p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Add some spacing between sections */
div {
    margin-bottom: 16px;
}

/* Add some basic styling to the pages */
#page1, #page2, #page3 {
    padding: 20px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px rgba(151, 135, 135, 0.3);
}

.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(20px);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.faq-item:focus-within .question {
    background-color: #ccc;
}

.faq-item:focus-within .answer {
    max-height: 1000px; /* Adjust this value to your needs */
}
/* Add this to your existing style.css file or create a new file for responsive styles */

/* Responsive styles */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.2em;
    }

    p {
        font-size: 0.9em;
    }

    #page1, #page2, #page3 {
        padding: 10px;
    }
}

/* Mobile-first approach */
@media (max-width: 576px) {
    h1 {
        font-size: 1.2em;
    }

    h2 {
        font-size: 1em;
    }

    p {
        font-size: 0.8em;
    }

    #page1, #page2, #page3 {
        border-radius: 0;
    }
}

.faq-item {
    margin-bottom: 16px;
}

.faq-item .question {
    background-color: #333;
    color: #fff;
    padding: 10px;
    cursor: pointer;
}

.faq-item .answer {
    background-color: #f4f4f4;
    color: #333;
    padding: 10px;
    display: none;
}

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

@media (prefers-reduced-motion: reduce) {
    .hidden {
        transition: linear;
    }
}

#faq {
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #fff;
    background-image: url(abstract-digital-grid-black-background.jpg);
}

#faq h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(151, 135, 135, 0.3);
}

.faq-item h3 {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
}
.about-wrapper{
    height: 100vh;
}
.about-left{
    background-color: #21D4FD;
    background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color:#fff
}
.about-left-content > div{
    background: #12192c;
    padding: 4rem 4rem 2.5rem 5rem;
    text-align: center;
    
    border-radius: 12px 12px 0 0;
}
.about-left-content{
    box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.39);
    -webkit-box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.39);
    -moz-box-shadow: 0px 0px 18px -1px rgba(0, 0, 0, 0.39);
    border-radius: 12px;
    width:80%;
}
.about-img img{
    display: block;
    width: 200px;
}
.about-img{
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
}
.shadow{
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    width: 200px;
    height: 200px;
}



.about-left-content h2{
    font-size: 2rem;
    margin: 2.2rem 0 0.6rem 0;
    line-height: 1.2;
    padding-bottom: 1rem;
    border-bottom: 2px solid #B721FF;
}
.about-left-content h3{
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 5px;
    margin-top: 1.2rem;
}
.icons{
    background: #12192c;
    display: flex;
    justify-content: center;
    padding: 0.8rem 0;
    border-radius: 0 0 12px 12px;
}
.icons li{
    list-style-type: none;
    background: #B721FF;
    color: #fff;
    width: 40px;
    height: 40px;
    margin: 0 0.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.icons li:hover{
    background: #edffec;
    color: #000;
}
.about-right{
    background: #12192c;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5rem;
    text-align: center;
    color:#fff
}
.about-right h1{
    font-size: 5rem;
    text-transform: uppercase;
}
.about-right h1 span{
    color: #B721FF;
}
.about-right h2{
    font-weight: 600;
}
.about-btns{
    display: flex;
    margin: 2rem 0;
}
.btn{
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 0.55rem 0;
    width: 130px;
    font-weight: 600;
    background: transparent;
    margin: 0 0.5rem;
    cursor: pointer;
    color:#fff
}
.btn.btn-pink{
    background: #B721FF;
    color: #fff;
    border-color: #B721FF;
    transition: all 0.5s ease-in-out;
}
.btn.btn-pink:hover{
    background: transparent;
    border-color: #fff;
    color: #fff;
}
.btn.btn-white{
    transition: all 0.5s ease-in-out;
}
.btn.btn-white:hover{
    background: #B721FF;
    border-color: #B721FF;
    color: #fff;
}
.about-para p{
    font-weight: 300;
    padding: 0.5rem;
    opacity: 0.8;
}

@media screen and (min-width: 992px){
    .about-wrapper{
        display: grid;
        grid-template-columns: repeat(2, 2fr);
    }

    .about-left{
        position: relative;
    }
    .about-left-content{
        position: absolute;
        width:80%
    
    }
}
.credit{
    text-align: center;
    color: #fff;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.credit a{
    text-decoration: none;
    color:#B721FF;
    font-weight: bold;
} 

@media screen and (max-width: 992px) {
    .about-wrapper {
        display: block;
    }

    .about-left {
        height: auto;
    }

    .about-left-content {
        position: static;
        width: 100%;
        padding: 2rem;
    }

    .about-img {
        width: 150px;
        height: 150px;
    }

    .shadow {
        width: 150px;
        height: 150px;
    }
}

/* Add media query for mobile devices */
@media screen and (max-width: 576px) {
    .about-left-content > div {
        padding: 2rem;
    }

    .about-left-content h2 {
        font-size: 1.5rem;
    }

    .about-right h1 {
        font-size: 3rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0;
        width: 100px;
    }
}


