.main-container {
    height: 100vh;
}

.headline-container {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.headline {
    width: 100%;
}

.headline h1 {
    width: 50%;
    text-align: center;
    font-size: var(--xl);
    text-transform: capitalize;
    font-family: var(--logo-font);
    padding: 0;
    margin: 0 auto;
    line-height: 1;
}

.headline p {
    text-align: center;
    font-size: var(--m);
    margin: 0rem auto;
    padding: 0rem;
    font-family: var(--font-2);
    position: relative;
    font-weight: 100;
    text-transform: lowercase;
    margin-top: 20px;
}

.call-to-action {
    text-decoration: none;
    text-align: center;
    display: block;
    background-color: var(--main-clr);
    color: var(--font-clr-2);
    width: max-content;
    margin: 1rem auto;
    padding: 1rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    outline: 3px solid transparent;
    outline-color: var(--font-clr-2);
    outline-offset: 0px;
    transition: outline-offset 0.2s linear, outline-color 0.2s linear;
}

.call-to-action:hover {
    outline-offset: 5px;
    outline-color: var(--main-clr);
}

.typewriter {
    border-right: 2px solid #fff;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

#typewriter-text {
    font-weight: 300;
}

@keyframes blink {
    0% {
        border-color: transparent;
    }

    50% {
        border-color: #fff;
    }

    100% {
        border-color: transparent;
    }
}

.typewriter::after {
    content: '';
    animation: blink 1s step-end infinite;
}

.scroll-down {
    position: absolute;
    left: 50%;
    top: 85vh;
    transform: translateX(-50%);
    text-align: center;
    color: var(--font-clr);
    font-size: var(--xs);
}

.scroll-down p {
    font-size: 1rem;
    text-align: center;
}

.scroll-down i {
    padding: 1rem;
}

.container-02 {
    width: 100%;
    /* background-color: black; */
}

.section {
    width: 99%;
    padding: 0;
    padding-top: 50px;
    margin: 0 auto;
}

.section-title {
    font-size: var(--l);
    padding: 16px;
    padding-bottom: 0;
    font-family: var(--main-font);
    color: black;
    font-weight: 700;
    text-shadow:
        -1px -1px 0 rgba(255, 255, 255, 0.8),
        1px -1px 0 rgba(255, 255, 255, 0.8),
        -1px 1px 0 rgba(255, 255, 255, 0.8),
        1px 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
}

.section-desc {
    text-align: center;
    font-family: var(--font-2);
    font-size: var(--m);
    border-bottom: 3px solid var(--main-clr);
    width: max-content;
    margin: 0 auto;
    padding: 5px 16px;
    padding-bottom: 16px;
    font-weight: 500;
    text-transform: lowercase;
}

.box {
    width: 25%;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.num {
    display: flex;
    align-items: center;
    background-color: var(--main-clr);
    width: 50px;
    height: 50px;
    border-radius: 100px;
}

.num h1 {
    font-size: var(--s);
    color: var(--font-clr-2);
    display: block;
    text-align: center;
    margin: 0 auto;
}

.box h2 {
    font-size: var(--m);
    font-family: var(--main-font);
    color: var(--font-clr);
    padding: .25rem 0;
    margin-top: 1rem;
}

.box p {
    font-size: 1rem;
    padding: .35rem 0;
}

.workflow-main {
    width: 80%;
    margin: 0px auto;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0);
    padding: 0px 50px;
    border-radius: 10px;
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
    gap: 20px;
}

.cards-container {
    display: flex;
    width: 90%;
    margin: 0 auto;
    padding: 16px 0px;
    justify-content: center;
    gap: 20px;
}

.card-holder {
    margin-top: 50px;
}

.card {
    width: 50%;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.89);
    padding: 20px;
}

.card svg {
    width: 3rem;
    height: auto;
    padding: .75rem;
    background-color: var(--main-clr);
    border-radius: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    height: 2.5rem;
}

.card h2 {
    font-size: 1.25rem;
    padding: 1rem;
    line-height: 1.25rem;
}

.card p {
    margin-top: 1rem;
}

.view-service {
    display: block;
    font-size: 1rem;
    width: max-content;
    padding: .6rem 1rem;
    text-decoration: none;
    margin-top: 1rem;
    background-color: var(--main-clr);
    color: var(--font-clr-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-family: var(--logo-font);
    transition-duration: 0.2s;
    outline: 1px solid white;
}

.view-service svg {
    width: 1.25rem;
    height: 1.25rem;
    padding: 0;
    margin-left: .25rem;
    background-color: transparent;
    fill: var(--font-clr-2);
}


.view-service:hover {
    outline: 3px solid var(--main-clr);
    outline-offset: 5px;
}

.about-me {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.left-about {
    width: max-content;
    padding: 20px;
}

.left-about h2 {
    font-size: 3rem;
    font-family: var(--logo-font);
    position: relative;
    padding-left: 20px;
    border-left: 5px solid var(--main-clr);
    font-weight: 200;
}

.left-about h3 {
    color: rgb(95, 95, 95);
    font-size: 25px;
    font-weight: 300;
    text-transform: capitalize;
    letter-spacing: -1px;
    padding: 10px 20px;
    font-weight: 400;
    border-left: 5px solid var(--main-clr);
}

.left-about p {
    padding: 2rem 0;
    width: 35rem;
    font-size: 18px;
    padding-left: 20px;
    line-height: 25px;
}

.links {
    width: max-content;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.social-icon {
    width: 40px;
    display: block;
    margin-right: 15px;
}

.right-about {
    width: max-content;
}

.right-about img {
    width: 250px;
    cursor: grab;
}

.right-about img:hover {
    transform: translateY(-40px);
    transform: rotate(12deg);
}

.mobile-pic {
    display: none;
    visibility: hidden;
}

.section-l {
    width: 100%;
    padding: 0;
    padding-top: 50px;
}

.testimonial-container {
    overflow: hidden;
    white-space: nowrap;
    background-color: var(--main-clr);
    padding: 20px 30px;
    position: relative;
    margin-top: 50px;
}

.testimonial-wrapper {
    display: flex;
    animation: scroll-horizontal 40s linear infinite;
    padding: 0;
    /* Remove any default padding */
}

.testimonial-wrapper:hover {
    animation-play-state: paused;
    /* Pause the animation on hover */
}

.testimonial-box {
    padding: 20px;
    border-right: 1px solid #e0e0e0;
    box-sizing: border-box;
    background-color: white;
    border-radius: 10px;
    margin: 0 10px;
}

.profile {
    width: 100%;
    display: flex;
    align-items: center;
}

.profileDetails {
    padding: 0 10px;
}

.profile img {
    width: 60px;
    border-radius: 100%;
    border: 1px solid rgb(255, 255, 255);
}

.testimonial {
    width: 400px;
    white-space: normal;
    margin-top: 20px;
}

.name {
    font-size: 25px;
    font-family: var(--logo-font);
    font-weight: 500;
}

.designation {
    font-size: 15px;
    color: gray;
    font-weight: 400;
}

/* Animation for infinite scrolling */
@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

/* Duplicating the testimonial content */
.testimonial-wrapper::after {
    content: "";
    flex: 0 0 100%;
    /* Duplicate the content to create a smooth loop */
    visibility: hidden;
    /* Hide the duplicated content */
}

.contactContainer {
    width: 60%;
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    border-radius: 20px;
}

.contactDetails {
    width: 50%;
}

.chatBot {
    width: 50%;
}

.contactDetails .links {
    margin: 20px auto;
}

.email {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.email svg {
    fill: var(--font-clr-2);
    width: 30px;
    height: auto;
    background-color: var(--main-clr);
    border-radius: 100%;
    padding: 5px;
    margin-right: 10px;
}

.additionalInfo {
    width: 100%;
}

.stillHere {
    margin-bottom: 20px;
}

.stillHere h2 {
    text-align: center;
    font-size: var(--xxl) !important;
    color: rgb(173, 173, 173);
    margin: 0;
    font-weight: 900;
    font-style: italic;
}

.stillHere p {
    text-align: center;
    font-size: 20px;
    padding: 0;
    margin: 0;
}

.song {
    width: 50%;
}

.song p {
    font-size: 20px;
    font-family: var(--font-2);
    text-align: center;
    margin-top: 10px;
}

.books {
    width: 50%;
    margin: 0 auto;
}

.additionalInfo h2 {
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
}

.additionalInfo p {
    text-align: center;
    font-size: 20px;
    margin-top: 5px;
}

.container-division {
    display: flex;
    width: 80%;
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    align-items: center;
    background-color: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.bookContainer {
    width: 100%;
    display: flex;
    align-items: center;
    overflow: auto;
    gap: 20px;
    margin: 0 auto;
    padding: 10px;
}

.bookContainer::-webkit-scrollbar,
.containerMeetPeople::-webkit-scrollbar {
    display: none;
}

.book {
    width: 150px;
    border-radius: 10px;
    border: 1px solid rgb(189, 189, 189);
}

.meetPeople {
    margin: 0 auto;
    border-radius: 20px;
    margin-top: 50px;
    width: 80%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.meetPeople h2 {
    margin-bottom: 10px;
}

.containerMeetPeople {
    width: 100%;
    /* Adjusted width for better layout */
    margin: 0 auto;
    overflow: auto;
    /* Enables horizontal scrolling */
    display: flex;
    gap: 20px;
    /* Adds spacing between the items */
    cursor: grab;
    /* Indicates draggable behavior */
    padding-top: 30px;
    padding-bottom: 10px;
}

.people {
    flex: 0 0 max-content;
    /* Ensures each item is 400px wide */
    display: flex;
    align-items: center;
    text-align: center;
    /* Centers content inside */
    box-sizing: border-box;
    padding: 0 20px;
    border-radius: 10px;
}

.people img {
    width: 50px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    /* Makes the image circular */
    object-fit: cover;
    margin-right: 10px;
    border: 1px solid gray;
}

.people h2 {
    font-size: 18px;
    font-family: var(--logo-font);
    color: #333;
    margin-bottom: 0;
    text-align: left;
}

.people p {
    font-size: 14px;
    color: gray;
    margin: 5px 0;
    padding: 0;
    margin: 0;
    text-align: left;
}

.end {
    text-align: center;
    color: rgb(189, 189, 189);
    font-size: var(--xxl);
    font-weight: 900;
    padding-top: 50px;
    font-style: italic;
}

.aura {
    width: max-content;
    margin: 20px auto;
}

.aura p {
    text-align: center;
    font-size: 20px;
}

.aura span {
    display: flex;
    align-items: center;
}

.mainAura {
    font-size: 20px;
    color: white;
    background-color: var(--main-clr);
    padding: 5px 20px;
    font-weight: 600;
    border-radius: 20px;
    margin: 0 10px;
}

.mobile-Contact {
    display: none;
}

@media only screen and (max-width: 1800px) {
    .headline h1 {
        width: 80%;
    }

    .workflow-main {
        width: 100%;
    }

    .testimonial-wrapper {
        display: flex;
        animation: scroll-horizontal 30s linear infinite;
        padding: 0;
        font-size: 16px;
        /* Remove any default padding */
    }

    @keyframes scroll-horizontal {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-400%);
        }
    }

    .contactContainer {
        width: 80%;
    }
}

@media only screen and (max-width: 900px) {
    * {
        box-sizing: border-box;
    }

    .headline-container {
        min-height: 75vh;
    }

    .main-container {
        width: 100%;
        overflow: hidden;
    }

    .headline-container {
        display: flex;
        align-items: center;
    }

    .headline {
        width: 100%;
        margin: 0 auto;
        padding: 0 35px;
    }

    #typewriter-text {
        /* text-align: left;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-top: 20px;
        width: 100%;
        overflow: hidden; */
        display: none;
    }

    .headline h1 {
        line-height: 1;
        text-align: center;
        width: 100%;
    }

    .section {
        width: 100%;
        padding: 10px;
    }

    .scroll-down {
        top: 85vh;
    }

    .call-to-action {
        margin: 0 auto;
        padding: 15px;
        margin-top: 50px;
    }

    .cards-container {
        display: block;
        padding: 0;
        width: 100%;
        padding: 0;
    }

    .card {
        width: 80%;
        margin: 15px auto;
    }

    .workflow-main {
        width: 100%;
        padding: 0;
        display: block;
    }

    .box {
        display: flex;
        align-items: center;
        width: 80%;
        margin: 15px auto;
        background: rgb(255, 255, 255);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.89);
        padding: 1rem;
    }

    .process {
        width: 80%;
        margin-left: 16px;
    }

    .process h2 {
        margin-top: 0;
    }


    .about-me {
        display: block;
    }

    .mobile-pic {
        display: block;
        visibility: visible;
    }

    .mobile-pic img {
        display: block;
        width: 50%;
        margin: 0 auto;
    }

    .right-about {
        display: none;
    }

    .left-about {
        width: 100%;
        margin: 0 auto;
        padding: 0px;
    }

    .left-about h2 {
        font-size: 30px;
        border: 0;
        padding: 0;
        text-align: center;
        font-weight: 500;
        margin-top: 10px;
        padding-bottom: 5px;
        text-transform: uppercase;
    }

    .left-about h3 {
        font-size: 20px;
        border: 0;
        padding: 0;
        text-align: center;
    }

    .left-about p {
        width: 90%;
        margin: 20px auto;
        padding: 20px;
        text-align: left;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .links {
        width: 100%;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .know-more {
        margin: 10px;
        text-align: center;
        line-height: 1;
    }

    .social-icon {
        padding: 0;
        margin: 10px;
    }

    .testimonial-container {
        overflow: hidden;
        white-space: nowrap;
        background-color: var(--main-clr);
        padding: 20px 30px;
        position: relative;
        margin-top: 50px;
    }

    .testimonial-wrapper {
        display: flex;
        animation: scroll-horizontal 30s linear infinite;
        padding: 0;
        font-size: 16px;
        /* Remove any default padding */
    }

    .testimonial-wrapper:hover {
        animation-play-state: paused;
        /* Pause the animation on hover */
    }

    .testimonial-box {
        padding: 20px;
        border-right: 1px solid #e0e0e0;
        box-sizing: border-box;
        background-color: white;
        border-radius: 10px;
        margin: 0 10px;
    }

    .profile {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .profileDetails {
        padding: 0 10px;
    }

    .profile img {
        width: 40px;
        border-radius: 100%;
        border: 1px solid rgb(255, 255, 255);
    }

    .testimonial {
        width: 400px;
        white-space: normal;
        margin-top: 20px;
    }

    .name {
        font-size: 18px;
        font-family: var(--logo-font);
        font-weight: 500;
    }

    .designation {
        font-size: 16px;
        color: gray;
        font-weight: 400;
    }

    /* Animation for infinite scrolling */
    @keyframes scroll-horizontal {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-1197%);
        }
    }

    /* Duplicating the testimonial content */
    .testimonial-wrapper::after {
        content: "";
        flex: 0 0 100%;
        /* Duplicate the content to create a smooth loop */
        visibility: hidden;
        /* Hide the duplicated content */
    }

    .contactContainer {
        display: none
    }

    .mobile-Contact {
        display: block;
        width: 99%;
        margin: 0 auto;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        background-color: white;
        padding: 20px;
        border-radius: 20px;
    }

    .contactDetails {
        width: 100%;
    }

    .chatBot {
        width: 100%;
    }

    .contactDetails .links {
        margin: 0 auto;
    }

    .container-division {
        width: 99%;
        display: block;
    }

    .song {
        width: 100%;
    }

    .books {
        width: 100%;
        padding: 20px 0;
        padding-bottom: 0;
    }

    .additionalInfo h2 {
        margin-top: 20px;
        font-size: 20px;
    }

    .people {
        margin-top: 20px;
    }

    .people h2 {
        margin-top: 0;
        width: 100% !important;
        margin: 0 !important;
        padding-bottom: 0px !important;
        border-bottom: 0 !important;
        text-transform: capitalize !important;
    }

    .containerMeetPeople {
        padding: 10px
    }

    .aura {
        width: 90%;
    }

    .aura span {
        display: block;
    }

    .mainAura {
        width: max-content;
        margin: 5px auto;
        margin-top: 20px;
    }

    .aura p {
        font-size: 15px;
        margin-top: 20px;
    }

    .additionalInfo p {
        margin: 20px 0;
    }

    .meetPeople h2 {
        width: 100%;
        margin: 0 auto;
        padding-bottom: 20px;
        border-bottom: 2px solid var(--main-clr);
    }

    .people p {
        padding: 0;
        margin: 0;
    }

    .stillHere p {
        padding: 0;
        margin: 10px auto;
        width: 80%;
    }

    .email {
        margin-bottom: 10px;
    }

    .email svg {
        width: 30px;
    }

    .email p {
        font-size: 15px;
    }

}