@font-face {
    font-family: acid;
    src: url(/assets/AeonikTRIAL-Regular.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
}

.wrapper {
    position: relative;
    z-index: 0;
    min-height: 100vh;
}

.about-hero {
    color: var(--color-brand-text);
    padding: 80px 20px;
    text-align: center;
}

.about-hero .context {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 20px;

}

.about-hero .context h1 {
    font-family: acid;
    background: linear-gradient(to right, #ffffff, #ffffff, #78A2D2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 0;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.about-hero .context span {
    font-family: 'Gloria Hallelujah';
     background: linear-gradient(#78A2D2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero .context p {
    font-size: 3.8rem;
    line-height: 1.6;
    font-family: acid;
    text-align: left;
}

.about-hero .context img {
    width: 100px;
    height: 50px;
    border-radius: 25px;
    object-fit: cover;
}

.line {
    opacity: 0;
    transform: translateY(20px);
    display: block;
    overflow: hidden;
}


.rotate-me {
    animation: rotate 10s linear infinite;
    transform-origin: center;
    width: 50px;
    /* or any size you need */
    height: 50px;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.about-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 100px 80px;
    gap: 60px;
    flex-wrap: wrap;
}

.about-left {
    flex: 1;
    min-width: 300px;
}

.about-left h2 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 100px;
    font-family: acid;
}

.lower-heading {
    margin-top: 100px;
}

.scrub-heading {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.5s ease;
}

.about-right {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.info-block h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #787777;
    font-family: pj;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 20px;
}

.stat-box {
    text-align: center;
    max-width: 220px;
}

.stat-box h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #ffffff;
}

.stat-box p {
    color: #777;
    font-size: 18px;
    line-height: 1.4;
}

.instructor-highlight {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 50px 20px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.instructor-highlight .move-svg {
    position: absolute;
    top: 0;
}

.instructor-highlight .rotate-me {
    width: 60px;
    height: 60px;
}

.instructor-img {
    width: 100vh;
    height: 90vh;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.instructor-text p {
    font-family: pj;
    max-width: 500px;
    font-size: 1.5rem;
    text-transform: capitalize;
    text-align: justify;
    color: #dcdcdc;
}
.instructor-text .rotate-me{
     width: 20px;
    height: 30px;
    border-radius: 25px;
    object-fit: cover;
}
