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

/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;
    font-weight: 500;
    max-width: 100vw;
    /* Maximum width is 100% of the viewport width */
    max-height: 100vh;
    /* Maximum height is 100% of the viewport height */

}

.logo {
    width: 16%;
    height: auto;
    object-fit: contain;
}

/* Navbar Styles */
.navbar {
    background-color: #000000;
    /* Increased specificity */
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 999;
    padding-top: 16px;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin-bottom: 20px;
    margin-top: 10px;
    padding: 0 50px;
}

#navbar__logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 4rem;
    position: relative;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 100%;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin-left: 10px;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 6px 15px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #fff;
    color: #000000;
    font-weight: 550;
    border-radius: 100px;
    /* Increased value for more rounded corners */
}

.button:hover {
    background: #528DFF;
    transition: all 1s ease, color 0.3s ease;
    color: #fff;
}

.navbar__links:hover {
    color: #0077ff;
    transition: all 0.3s ease;
    background-color: #FFF;
}

/* Responsive Styles */
@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 60px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
    }

    .navbar__menu.active {
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
        background: #000022;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: flex;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        background-color: #000022;
        background-image: linear-gradient(to right, #ffffff 0%, #0077ff 0%, #008cff 18%, #00c939 52%, #99ff00 78%, #f6ff00 100%);
        background-size: 100%;
        margin-bottom: 5rem;
        font-size: 1.2rem;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -moz-background-clip: text;
        -moz-text-fill-color: transparent;
        text-align: center;
        cursor: pointer;
        padding: 10px 20px;
        border: 2px solid #0077ff;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.scroll-watcher {
    height: 7px;
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    width: 100%;
    scale: 0 1;
    transform-origin: left;
    animation: scroll-watcher linear;
    animation-timeline: scroll();
}

@keyframes scroll-watcher {
    to {
        scale: 1 1;
    }
}

.about-container {
    animation: fade-in linear;
    animation-timeline: view();
    animation-range-start: entry;
    animation-range-end: 700px;
}

@keyframes fade-in {
    from {
        scale: 0.8;
        opacity: 0;
    }

    to {
        scale: 1;
        opacity: 1;
    }
}


.faq-item {
    animation: fade-in linear;
    animation-timeline: view();
    animation-range-start: entry;
    animation-range-end: 300px;
}

@keyframes fade-in {
    from {
        scale: 0.8;
        opacity: 0;
    }

    to {
        scale: 1;
        opacity: 1;
    }
}

.pricing-box {
    animation: fade-in linear;
    animation-timeline: view();
    animation-range-start: entry;
    animation-range-end: 300px;
}

@keyframes fade-in {
    from {
        scale: 0.8;
        opacity: 0;
    }

    to {
        scale: 1;
        opacity: 1;
    }
}

/* Hero Section CSS */
.main {
    background: linear-gradient(to bottom, #000000 0%, #000000 100%);
}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 90vh;
    background: linear-gradient(to bottom, #000000 0%, #000000 100%);
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.main__content {
    z-index: 3;
}

.main__content h1 {
    font-size: 4rem;
    font-weight: 700;
    background-image: linear-gradient(90deg, #007bff 0%, #59c5ff 35%, #75a7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.main__content h2 {
    font-size: 4rem;
    font-weight: 700;
    background-image: linear-gradient(90deg, #007bff 0%, #59c5ff 35%, #75a7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.main__content p {
    margin-top: 0.1rem;
    font-size: 2rem;
    font-weight: 200;
    color: #ffffff
}

.main__btn {
    font-size: 1rem;
    font-weight: 900;
    background: linear-gradient(to bottom, #000000 10%, rgb(0, 0, 0) 100%);
    padding: 10px 25px;
    border: none;
    border-radius: 1px;
    color: #fff;
    margin-top: 1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    border-radius: 15px;
    /* Increased value for more rounded corners */
    border: 2px solid #ffffff;
}

.main__btn a {
    position: relative;
    z-index: 3;
    color: #fff;
    font-weight: 600;
    text-decoration: none;

}

.main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #528DFF;
    transition: all 0.35s;
    border-radius: 30px;
    /* Increased value for more rounded corners */
}

#main__img {
    position: absolute;
    top: 54%;
    right: -40%;
    /* Adjust this value as needed to position the image */
    transform: translate(-50%, -50%);
    width: 70%;
    /* Make the image slightly smaller */
    height: auto;
    opacity: 1;
    /* Keep opacity normal */
    z-index: 0;
    /* Place the image behind all content */
}

.main__img--container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    overflow: hidden;
    z-index: 0;
    /* Ensure image container stays behind the content */
}

.main__btn:hover {
    background: #528DFF;
    transition: all 1s ease;
}

.main__btn_2 {
    font-size: 1rem;
    font-weight: 900;
    background: #FFF;
    padding: 10px 25px;
    border: none;
    border-radius: 15px;
    /* Increased value for more rounded corners */
    color: #000000;
    margin-top: 1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    border: 2px solid #ffffff;
}

.main__btn_2 a {
    position: relative;
    z-index: 2;
    color: inherit;
    /* Use the inherited color from the button */
    font-weight: 600;
    text-decoration: none;
    transition: color 0.35s ease;
    /* Smooth transition for color */
}

.main__btn_2:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #528DFF;
    transition: all 0.35s;
    border-radius: 15px;
    /* Increased value for more rounded corners */
    z-index: 1;
}

.main__btn_2:hover {
    background: #528DFF;
    transition: all 0.35s ease;
    color: #fff;
    /* Changes the text color */
}

.main__btn_2:hover a {
    color: #fff;
    /* Ensure the link color changes to white on hover */
}

/* Container for Launching Soon text and icon */
.launching-soon {
    display: flex;
    align-items: center;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 14px;
    color: #fff;
    margin-top: 20px;
    /* Adjust based on your design */
}

/* Timer Icon */
.timer-icon {
    font-size: 22px;
    /* Adjust size */
    margin-right: 10px;
    /* Space between icon and text */
    margin-left: 5px;
    margin-top: 2px;
}

/* Blinking Green Dot */
.blinking-dot {
    width: 12px;
    height: 12px;
    background-color: #28a745;
    /* Green color */
    border-radius: 50%;
    margin-left: 10px;
    animation: blink 1s infinite;
    /* Blink animation */
}

/* Blinking animation */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}



/* Services Section */
.services {
    background: linear-gradient(to bottom, #000000 0%, #000000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0rem 0rem 0rem;
    /* Adjusted padding */
}

.services h1 {
    background-color: #000022;
    background-image: linear-gradient(to right, #ffffff 0%, #ffffff 0%, #ffffff 18%, #ffffff 52%, #ffffff 78%, #ffffff 100%);
    background-size: 100%;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    text-align: center;
}

.services__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    /* Add some spacing between items */
    width: 100%;
    max-width: 1200px;
    /* Max width for the container */
    padding: 0 2rem;
    /* Add padding to the sides */
}

.services h2 {
    background-color: #000022;
    background-image: linear-gradient(to right, #0077ff 0%, #0077ff 0%, #008cff 18%, #81e8ff 52%, #76b3ff 78%, #3b93ff 100%);
    background-size: 100%;
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 550;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    text-align: center;
}

.services p {
    background-color: #000022;
    background-image: linear-gradient(to right, #fff 0%, #fff 0%);
    background-size: 100%;
    margin-bottom: 1rem;
    font-size: 1.7rem;
    font-weight: 300;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    text-align: center;
    max-width: 800px;
    /* Ensure the paragraph does not stretch too wide */
}

.services__btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
    /* Adjusted margin */
}

.services__btn {
    background-color: #000022;
    background-image: linear-gradient(to right, #ffffff 0%, #ffffff 0%, #ffffff 18%, #ffffff 52%, #ffffff 78%, #ffffff 100%);
    background-size: 100%;
    font-size: 1.2rem;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    text-align: center;
    cursor: pointer;
    padding: 10px 20px;
    border: 3px solid #0088ff;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.services__btn:hover {
    background-color: #0077ff;
    -webkit-text-fill-color: #00ACFF;
    -moz-text-fill-color: #000000;
}

/* Social */
.social__icon--link {
    color: #ffffff;
    font-size: 24px;
}

.social__media {
    width: 100%;
    margin-top: 0rem;
    /* white space */
    background: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
}

.social__media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 20px auto 0 auto;
    /* Reduced margin */
}

.social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100px;
}

.social__logo {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #ffffff 0%, #ffffff 0%, #ffffff 18%, #ffffff 52%, #ffffff 78%, #ffffff 100%);
    text-wrap: 10;
    justify-self: flex-start;
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.website__rights {
    color: #ffffff;
}

.navbar__links,
.button {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background 0.3s ease;
}

.social__icons a:hover {
    color: #0084ff;
}

/* Graphics Section Container */
.graphics-section {
    background-color: #000000;
    color: #000000;
}

/* Image Carousel Container */
.imagecarousel {
    position: relative;
    height: 50vh;
    display: flex;
    width: 100vw;
    /* Ensure the container can fit all images */
    overflow: hidden;
    /* Hide overflow to make it look seamless */
}

/* Images in the Carousel */
.pricing-image {
    flex-shrink: 0;
    width: auto;
    height: 100%;
    /* Ensure images maintain the container's height */
    border-radius: 20px;
    /* Rounded edges */
    margin: 10px;
}

.image-carousel__track {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: scroll-left 20s linear infinite;
}

/* CSS for Brands Section */
.brands-section {
    background-color: black;
    padding: 60px 0;
}

.brand-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brand-carousel__track {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: scroll-right 20s linear infinite;
}

.brand-logo {
    flex-shrink: 0;
    width: 100px;
    /* Adjust width as needed */
    margin-right: 30px;
    /* Adjust space between logos */
}

/* Keyframes for Scrolling Left */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-70vw * 2));
        /* Adjust for total content width */
    }
}

/* Keyframes for Scrolling Right */
@keyframes scroll-right {
    0% {
        transform: translateX(calc(-20vw * 2));
        /* Start from the end */
    }

    100% {
        transform: translateX(0);
        /* Move to the start */
    }
}

/* Image Scroll Container */
.image-scroll-container {
    max-height: 800px;
    /* Adjust this value to control the height */
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    /* Arrange content in a column */
    justify-content: center;
    align-items: center;
    background: #000000;
    padding: 0px 20px 40px 20px;
    /* More padding on the bottom */
}

/* Features Heading */
.features-heading {
    background-color: #000022;
    background-image: linear-gradient(to right, #ffffff 0%, #ffffff 0%, #ffffff 18%, #ffffff 52%, #ffffff 78%, #ffffff 100%);
    background-size: 100%;
    font-size: 2.5rem;
    font-weight: 800;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 20px;
}

/* Container styling */
.image-scroll-container {
    position: relative;
    overflow: hidden;
    padding: 100px 0px 0px 0px;
    background-color: black;
    color: white;
    text-align: center;
}

/* Stack container to manage images */
.photo-stack {
    position: relative;
    height: 600px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Individual Photo Styles */
.photo-stack .photo {
    position: absolute;
    width: 900px;
    height: auto;
    opacity: 0;
    /* Start hidden */
    transform: translateY(50px);
    /* Start slightly moved down */
    transition: opacity 1s ease, transform 1s ease;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Position each photo in the stack */
.stack1 {
    top: 0;
    left: 0;
    z-index: 2;
}

.stack2 {
    top: 0;
    left: 0;
    z-index: 1;
}

.stack3 {
    top: 0;
    left: 0;
    z-index: 1;
}

.stack4 {
    top: 0;
    left: 0;
    z-index: 1;
}

/* Visible class to make the photo visible */
.photo-stack .photo.visible {
    opacity: 1;
    transform: translateY(0);
    /* Move back to its original position */
}

/* Dot Navigation Styles */
.dot-container {
    text-align: center;
    background-color: #000;
    padding: 0px 0px 50px 0px;
    /* top left bottom right */
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: #000000;
    border: 2px solid #ffffff;
}

/* Influencer Program */
.influencer-program {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #000;
}

.program-info {
    text-align: center;
    /* Center-align text */
    padding: 40px;
    /* Add space around the section */
    margin: 0 auto;
    /* Center the section horizontally */
    max-width: 600px;
    /* Optional: limit the maximum width */
}

.program-info h2 {
    color: #ffffff;
    font-weight: 700;
    /* Set the title color */
    font-size: 2.5rem;
    /* Adjust the font size for the title */
    margin-bottom: 20px;
    /* Add space below the title */
}

.program-info p {
    font-size: 1.2rem;
    /* Increase the font size for the paragraphs */
    line-height: 1.6;
    /* Improve the spacing between lines */
    margin-bottom: 20px;
    /* Add space between paragraphs */
    color: #fff;
}

.application-form {
    width: 50%;
    padding: 40px;
}

.application-form h2 {
    color: #ffffff;
    /* Match the color of the "Apply Now!" */
}

.application-form form {
    display: flex;
    flex-direction: column;
}

.application-form label {
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #fff;
    margin-left: 5px;
}

.application-form input,
.application-form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 30px;
    text-align: center;
}

.application-form button {
    padding: 15px;
    background-image: linear-gradient(to right, #0077ff 0%, #0077ff 18%, #00d0ff 52%, #0077ff 78%, #3b93ff 100%);
    background-size: 200% 200%;
    transition: background-position 0.5s ease-in-out, transform 0.5s ease-in-out;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 30px;
    width: 60%;
    align-self: center;
}

.application-form button:hover {
    background-position: right center;
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
    padding: 50px 0;
    background-color: #000000;
    text-align: center;
}

.testimonials-section h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #FFF;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* Aligns the testimonials in the center */
    gap: 20px;
    /* Adds consistent spacing between testimonials */
}

.testimonial {
    max-width: 300px;
    background: #fff;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    /* Ensures text alignment within each testimonial */
}

.testimonial h3 {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #000;
}

.testimonial p {
    font-size: 1rem;
    color: #666;
}

.blue-text {
    color: #528DFF;
    font-weight: 800;
}

/* Careers Section */
.careers-section {
    padding: 50px 0;
    background-color: #000000;
    text-align: center;
}

.careers-section h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #FFF;
}

.careers-section p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.careers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-right: 150px;
    margin-left: 150px;
}

.career {
    max-width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.career h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #000000;
}

.career p {
    font-size: 1rem;
    color: #000000;
}

.apply-button {
    display: inline-block;
    padding: 10px 20px;
    background-image: linear-gradient(to right, #0077ff 0%, #0077ff 18%, #00d0ff 52%);
    background-size: 200% 200%;
    transition: background-position 0.5s ease-in-out, transform 0.5s ease-in-out;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    width: 90%;
}

.apply-button:hover {
    background-position: right center;
    transform: scale(1.05);
}


/* Team Section Styles */
.team-section {
    padding: 40px 0px 1450px 0px;
    background-color: #000000;
}

.team-section .team-heading {
    font-size: 3rem;
    text-align: center;
    color: #528DFF;
}

.team-section .sub-heading {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #fff;
    text-align: center;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

/* Flip card container */
.flip-card {
    background-color: transparent;
    width: 230px;
    height: 230px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.flip-card-back {
    background-color: #528DFF;
    color: white;
    transform: rotateY(180deg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.team-member h2 {
    color: #000000;
    font-size: 1.5rem;
    margin: 5px;
}

.flip-card-front .team-member p {
    color: #777;
}

.flip-card-back .team-member p {
    color: #fff;
}

/* Team member container */
.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Circular profile picture */
.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Styling the name below the profile picture */
.team-member h2 {
    color: #000000;
    font-size: 19px;
    margin: 10px 0 5px;
    text-align: center;
}


/* Responsive Styles */
@media screen and (max-width: 1024px) {

    /* Hide all sections except for the navbar, main container, and hero section */
    nav,
    .main {
        display: block;
    }

    .navbar__container,
    .logo,
    .main__container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .main__img--container,
    .main__content h1,
    .main__content h2,
    .main__content p,
    .main__content .launching-soon,
    .navbar__menu,
    .search-container,
    .graphics-section,
    .brands-section,
    .services,
    .image-scroll-container,
    .influencer-program,
    .testimonials-section,
    .careers-section,
    .team-section,
    .social__media,
    .dot-container,
    .launching-soon,
    .main__btn {
        display: none;
    }

    /* Ensure the hero section takes full height */
    .main__container {
        height: 100vh;
        justify-content: center;
        align-items: center;
        padding: 20px;
        box-sizing: border-box;
    }

    .main__content {
        text-align: center;
        width: 100%;
        max-width: 600px;
        /* Add a max-width for better readability */
        justify-content: center;
    }

    /* Make the logo bigger and centered */
    .logo {
        display: block;
        margin: 20px auto 20px;
        width: 40%;
        /* Adjusted for better fit on various screen sizes */
        max-width: 200px;
        /* Prevent the logo from becoming too large */
    }

    /* Style the buttons with more spacing and better alignment */
    .main__btn_2 {
        padding: 12px 20px;
        /* Increase padding for better touch targets */
        font-size: 16px;
        /* Increase font size for readability */
        width: 80%;
        /* Make buttons take up more space */
        max-width: 300px;
        /* Add a max-width to prevent overly large buttons */
        text-align: center;
        justify-content: center;
        margin-bottom: 100px;
    }
}