/*Vita vya maji maji vs moto moto*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 200vh;
}






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

:root {
    --primary-color: #c0beb0;
    --text-color: #2d2d2d;
    --accent-color: #676767;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-main {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: #bcb592;
    padding: 146px 56px 47px;
    box-sizing: border-box;
    overflow: hidden;
    animation: fadeInUp 1s ease forwards
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

.hero-card {
    background: linear-gradient(135deg, #c0beb0 0%, #d8d6c7 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.hero-text-card {
    min-height: 300px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.11rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(45deg, #2d2d2d, #4a4a4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInLeft 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 2.1rem;
    color: #676767;
    margin-bottom: 1.5rem;
    animation: fadeInLeft 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
    max-height: 150px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

.hero-description p {
    margin-bottom: 1rem;
}

.hero-description.hero-expanded {
    max-height: 2000px;
    /* Increased from 1000px to show all text */
}

.hero-button {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(45deg, #2d2d2d, #4a4a4a);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(45deg, #676666, #2d2d2d);
    transition: var(--transition);
    z-index: -1;
}

.hero-button:hover::after {
    left: 0;
}

.hero-slideshow-card {
    position: relative;
    min-height: 400px;
    border-radius: 15px;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
}

.hero-slide.hero-active {
    opacity: 1;
}

.hero-image-slide {
    background-size: cover;
    background-position: center;
    filter: brightness(0.9);
}

.hero-text-slide {
    font-family: 'Poppins', sans-serif;
    background: rgba(249, 236, 186, 0.95);
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-text-content ul {
    list-style: none;
    padding: 0;
}

.hero-text-content li {
    background: linear-gradient(45deg, #f5f5f5, #ffffff);
    margin: 0.8rem 0;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.hero-text-content li:hover {
    transform: translateX(10px);
}

.hero-slide-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slide-dot.hero-active {
    background: #ffffff;
    transform: scale(1.2);
}

.hero-fade-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #d8d6c7);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero-expanded .hero-fade-gradient {
    opacity: 0;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        height: 100%;
    }

    .hero-title {
        font-size: 1.6rem;
    }


    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.9rem;
        height: fit-content;
        max-height: 200px;
        /* Increased from 150px for better mobile expansion */
    }

    .hero-description.hero-expanded {
        max-height: 2000px;
        /* Much larger for mobile to show all text */
    }

    .hero-slideshow-card {
        min-height: 450px;
        height: 500px;
    }

    .hero-text-slide {
        width: 95%;
        padding: 1.5rem;
        font-size: 0.9rem;
    }

    .hero-text-content h2 {
        font-size: 1.2rem;
    }

    .hero-text-content {
        color: #000;
    }

    .hero-text-content li {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}

.hero-slide-enter {
    opacity: 0;
    transform: translateX(100%);
    filter: blur(10px);
}

.hero-slide-enter-active {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
    transition: all 0.5s ease-in-out;
}

.hero-slide-exit {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.hero-slide-exit-active {
    opacity: 0;
    transform: translateX(-100%);
    filter: blur(10px);
    transition: all 0.5s ease-in-out;
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 25px 25px 70px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.purpo-sect-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.purpo-sect-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

body {
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #ffffff, #fff8e1);
}

/* Mission & Vision Section */
.purpo-sect-mission-vision {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.purpo-sect-mission-vision h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.purpo-sect-mission-vision p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.purpo-sect-purpose-section {
    font-family: 'Poppins', sans-serif;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff8e1;
}

.purpo-sect-purpose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.purpo-sect-purpose-heading {
    font-size: 2.5rem;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.purpo-sect-purpose-description {
    font-size: 1.25rem;
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.purpo-sect-typing-text {
    position: relative;
    font-size: 2rem;
    color: #1a1a1a;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    z-index: 2;
    align-items: center;
}

.purpo-sect-typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: #1a1a1a;
    margin-left: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.purpo-sect-cards-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    transform: translateY(30px);
    transition: all 1s ease;
}

.purpo-sect-cards-wrapper {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.purpo-sect-card-perspective {
    position: relative;
    width: 288px;
    height: 384px;
    perspective: 2000px;
}

.purpo-sect-purpose-card {

    position: absolute;
    inset: 0;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: transform 1s;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    animation: cardFlip 25s infinite;
    transform-origin: center center;
}

.purpo-sect-purpose-card:nth-child(1) {
    background: linear-gradient(to bottom right, #1a1a1a, #4a4a4a);
    animation-delay: 0s;
}

.purpo-sect-purpose-card:nth-child(2) {
    background: linear-gradient(to bottom right, #ef4444, #f87171);
    animation-delay: 2s;
}

.purpo-sect-purpose-card:nth-child(3) {
    background: linear-gradient(to bottom right, #3b82f6, #60a5fa);
    animation-delay: 4s;
}

.purpo-sect-purpose-card:nth-child(4) {
    background: linear-gradient(to bottom right, #22c55e, #4ade80);
    animation-delay: 6s;
}

.purpo-sect-purpose-card:nth-child(5) {
    background: linear-gradient(to bottom right, #a855f7, #c084fc);
    animation-delay: 8s;
}

.purpo-sect-purpose-card:nth-child(6) {
    background: linear-gradient(to bottom right, #eab308, #facc15);
    animation-delay: 10s;
}

.purpo-sect-purpose-card:nth-child(7) {
    background: linear-gradient(to bottom right, #6366f1, #818cf8);
    animation-delay: 12s;
}

.purpo-sect-card-front,
.purpo-sect-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.purpo-sect-card-back {
    transform: rotateY(180deg);
}

.purpo-sect-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.purpo-sect-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.purpo-sect-card-divider {
    height: 1px;
    width: 4rem;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.purpo-sect-card-description {
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

.purpo-sect-quote-section {
    position: relative;
    height: 100vh;
}

.purpo-sect-quote-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    opacity: 0;
    transition: all 1s ease;
}

.purpo-sect-quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.purpo-sect-quote-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.purpo-sect-quote-text {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    text-align: center;
    max-width: 1000px;
    animation: fadeIn 2s ease-out;
}

@keyframes cardFlip {

    0%,
    40% {
        transform: rotateY(0deg) translateZ(0);
        opacity: 1;
    }

    55% {
        transform: rotateY(540deg) translateZ(100px);
        opacity: 0.7;
    }

    60%,
    100% {
        transform: rotateY(720deg) translateZ(-400px);
        opacity: 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.purpo-sect-purpose-card:first-child::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    animation: illuminate 3s infinite;
}

@keyframes illuminate {

    0%,
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        background: white;
    }

    50% {
        clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
        background: white;
    }
}

@media (max-width: 768px) {
    .purpo-sect-mission-vision {
        padding: 3rem 1rem;
        /* Increase padding for better mobile spacing */
        margin-bottom: 2rem;
        /* Add bottom margin to separate from purpose section */
    }

    .purpo-sect-mission-vision h2 {
        font-size: 2rem;
    }

    .purpo-sect-mission-vision p {
        font-size: 1.125rem;
    }

    .purpo-sect-purpose-section {
        height: auto;
        /* Change from 100vh to auto for mobile */
        min-height: 100vh;
        padding: 40px 20px;
        /* Add padding for better spacing */
    }

    .purpo-sect-purpose-heading {
        font-size: 2rem;
    }

    .purpo-sect-purpose-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        /* Reduce margin for mobile */
    }

    .purpo-sect-typing-text {
        font-size: 1.5rem;
        /* Smaller font for mobile */
        margin-bottom: 1rem;
        /* Add margin for separation */
    }

    .purpo-sect-quote-text {
        font-size: 1.75rem;
    }

    .purpo-sect-purpose-card {
        width: 250px;
        height: 350px;
    }

    .purpo-sect-cards-container {
        height: auto;
        /* Auto height for mobile */
        min-height: 400px;
        margin-top: 2rem;
        /* Add margin for separation */
    }
}


.goals-programs-main-section {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    background-color: #bcb592;
    padding: 100px 20px 30px;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 768px) {
    .goals-programs-main-section {
        padding: 80px 15px 20px;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-title-2 {
        font-size: 1.8rem;
        line-height: 1.2;
        text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    }

    .overlay-container {
        width: 100%;
        padding: 20px 15px;
        margin-top: 20px;
    }

    .overlay-heading {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .goals-programs-lil-section {
        padding: 20px 15px;
    }

    .section-heading {
        font-size: 1.8rem;
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    .section-description {
        width: 100%;
        margin: 15px 0 0;
        text-align: center;
        padding: 0 10px;
    }

    .goals-programs-row {
        flex-direction: column;
        align-items: center;
    }

    .goals-column,
    .programs-column {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .item-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .item-container {
        height: auto;
        min-height: 70px;
        padding: 10px 15px;
    }

    .item-text {
        font-size: 0.9rem;
    }
}

/* Section titles */
.section-title {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 3.1rem;
}

.section-title-2 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-align: center;
    width: 100%;
    font-size: 2.8rem;
    font-weight: bold;
    color: white;
    text-shadow:
        -1px -1px 0 rgb(132, 135, 97),
        1px -1px 0 rgb(63, 63, 63),
        -1px 1px 0 rgb(55, 55, 55),
        1px 1px 0 rgb(66, 66, 66);
    margin: 10px 0 0;
}

/* Overlay container styles */
.overlay-container {
    font-family: 'Poppins', sans-serif;
    max-width: 100%;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(40, 43, 48, 0.4);
    position: relative;
    display: flex;
    margin-top: 39px;
    width: 718px;
    flex-direction: column;
    justify-content: start;
    padding: 25px 59px;
    box-sizing: border-box;

}

.overlay-heading {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    text-align: center;
    z-index: 0;
    font: 500 30px/42px Inter, sans-serif;

}

.overlay-content {
    z-index: 0;
    display: flex;
    margin-top: 8px;
    width: 100%;
    flex-direction: column;
    color: #a284ff;
    text-align: center;
    justify-content: start;
    font: 700 16px/24px Inter, sans-serif;
}

.overlay-text {
    width: 100%;
    padding: 0 20px;
}



/* Little section styles */
.goals-programs-lil-section {
    font-family: 'Poppins', sans-serif;
    background-color: #ffedac;
    box-shadow: 0 0 0 rgba(45, 47, 54, 0.3);
    align-self: stretch;
    display: flex;
    margin-top: 26px;
    width: 100%;
    flex-direction: column;
    align-items: start;
    padding: 32px 10px 9px;
    box-sizing: border-box;

}

.section-heading {
    font-family: 'Poppins', sans-serif;
    color: #000;
    margin-left: 30px;
    font: 500 40px/1 Inter, sans-serif;
}

.section-description {
    font-family: 'Poppins', sans-serif;
    color: #000;
    margin: 15px 30px 0;
    max-width: 100%;
    width: 100%;
    font: 700 16px/24px Inter, sans-serif;
}

/* Goals and Programs section */
.goals-programs-section {
    font-family: 'Poppins', sans-serif;
    background-color: #343434;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.goals-programs-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.goals-programs-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Column styles */
.goals-column,
.programs-column {
    font-family: 'Poppins', sans-serif;
    background-color: #565343;
    flex: 1;
    max-width: 580px;
    padding: 24px 23px;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    /* border-radius: 15px; */
}


.column-title {
    font: 32px/1 Roboto, sans-serif;
}

.column-description {
    color: #e0e0e0;
    line-height: 23px;
    align-self: stretch;
    margin-top: 10px;
}

/* Item grid styles */
.item-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
    width: 100%;
}

.item-container {
    border-radius: 100px;
    background-color: #c0beb0;
    border: 1px solid #343434;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    height: 75px;
    box-sizing: border-box;
    transition: transform 0.5s;
    text-decoration: none;
    /* Remove underline from links */
    color: inherit;
    /* Inherit text color */
    cursor: pointer;
    /* Show pointer cursor */
}

.item-container:hover {
    box-shadow: 0 8px 12px rgba(251, 249, 249, 0.148);
    transition: transform 0.5s;
    transform: scale(1.07);
}



.item-content-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    opacity: 0;
}


.item-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #565c66;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.item-icon i {
    font-size: 24px;
}

.item-text {
    flex: 1;
    padding: 0 10px;
    font-size: 15px;
    color: #000;
    line-height: 1.2;
}

/* More info section */
.more-info {
    display: flex;
    margin-top: 54px;
    min-height: 128px;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    overflow: hidden;
    align-items: start;
    font-size: 23px;
    color: #ffffff;
    line-height: 34px;
}

.more-info-content {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 128px;
    width: 100%;
    overflow: hidden;
    align-items: start;
    justify-content: center;
    padding: 30px 24px;
    background-color: #565c66;
    text-align: center;
}

.more-info-text {
    position: relative;
    padding-right: 5px;
}

/* Data policy section */
.data-policy-section {
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    background: rgba(40, 43, 48, 0.9);
    backdrop-filter: blur(10px);
    align-self: stretch;
    display: flex;
    margin: 96px auto 0;
    max-width: 1200px;
    /* Add max-width for consistency */
    border-radius: 20px;
    /* Add border radius for modern look */
    overflow: hidden;
    font-family: Inter, sans-serif;
    color: #fff;
    padding: 41px;
    box-sizing: border-box;
    padding-left: 20px;
}

.policy-content {
    font-family: 'Poppins', sans-serif;
    align-self: stretch;
    display: flex;
    min-width: 240px;
    width: 100%;
    /* max-width: 579px; */
    flex-direction: column;
    /* justify-content: start; */
    margin: auto 0;
}

.policy-heading {
    width: 100%;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
}

.policy-description {
    margin-top: 6px;
    width: 100%;
    /* font-size: 16px;
    font-weight: 700;
    line-height: 24px; */
}

/* Medium screens */
@media (max-width: 1200px) {
    .goals-programs-grid {
        max-width: 900px;
    }

    .item-container {
        height: auto;
        min-height: 75px;
    }
}

/* Small screens */
@media (max-width: 991px) {


    /* Section titles */
    .section-title {
        padding: 0 10px;
        font-size: 2.0rem;
    }

    .section-title-2 {
        font-size: 1.9rem;

    }

    .goals-programs-main-section {
        max-width: 100%;
        padding: 100px 20px 20px;
    }


    .overlay-container {
        width: 100%;
        padding: 20px;
        margin: 20px 0;
    }

    .overlay-heading {
        font-size: 24px;
        line-height: 1.3;
        padding: 0 10px;
    }

    .overlay-content {
        padding: 0 10px;
    }

    .connector-svg {
        display: none;
    }

    .goals-programs-lil-section {
        padding: 20px;
        margin: 20px 0;
    }

    .section-heading {
        margin-left: 0;
        font-size: 28px;
        padding: 0 10px;
    }

    .section-description {
        margin-left: 0;
        width: 100%;
        padding: 0 10px;
    }

    .goals-programs-section {
        padding: 20px;
    }

    .goals-programs-grid {
        width: 100%;
        padding: 0;
    }

    .goals-programs-row {
        flex-direction: column;
        align-items: stretch;
    }

    .goals-column,
    .programs-column {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 20px;
    }

    .column-title {
        font-size: 23px;
        font-weight: 500;
    }

    .column-description {
        margin-top: 13px;
        font-size: 16px;
        line-height: 24px;
    }

    .item-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .item-container {
        width: 100%;
        height: auto;
        min-height: 60px;
    }

    .item-icon {
        width: 45px;
        height: 45px;
    }

    .item-icon i {
        font-size: 20px;
    }

    .item-text {
        font-size: 14px;
    }

    .more-info {
        margin-top: 30px;
    }

    .more-info-content {
        padding: 15px;
    }

    /* .data-policy-section {
      width: 100%;
      margin: 30px 0;
      padding: 20px;
    }
  
    .policy-content {
      width: 100%;
    }
  
    .policy-heading {
      font-size: 24px;
    }
  
    .policy-description {
      font-size: 14px;
    } */
}


/* Data Policy Section */
.data-policy-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
    border: 2px solid #3A3D42;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #2c2c2c, #2d3035);
    color: #ffffff;
    padding: 60px 8%;
    border-radius: 12px;
    margin: 50px auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Background Zero */
.background-zero {
    position: absolute;
    font-size: 200px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
    font-family: 'Arial', sans-serif;
}

/* Policy Content */
.policy-content {
    max-width: 750px;
}

/* Heading */
.policy-heading {
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #97836a, #f7ee74);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.policy-description {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 12px;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .data-policy-section {
        padding: 40px 5%;
        margin: 60px 20px 0;
        /* Add horizontal margins for mobile */
        border-radius: 15px;
        /* Smaller radius for mobile */
    }

    .policy-heading {
        font-size: 28px;
    }

    .policy-description {
        font-size: 16px;
    }

    .background-zero {
        font-size: 150px;
    }
}

@media (max-width: 480px) {
    .data-policy-section {
        padding: 30px 4%;
        margin: 40px 15px 0;
        border-radius: 12px;
    }

    .policy-heading {
        font-size: 24px;
    }

    .policy-description {
        font-size: 14px;
    }

    .background-zero {
        font-size: 120px;
    }
}




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

body {
    font-family: Inter, sans-serif;
    overflow-x: hidden;
}

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

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

/* Why Unite Program Section */
.why-program-section {
    max-width: 1158px;
    margin: 96px auto 0;
    padding: 41px;
    background-color: #ffedac;
    border: 1px solid #32353b;
    box-shadow: 0px 0px 0px 4px rgba(45, 47, 54, 0.3);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-program-content {
    max-width: 579px;
}

.why-program-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #6b6b6b;
    font-weight: 500;
    margin-bottom: 6px;
}

.why-program-description {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #060606;
    font-weight: 700;
    line-height: 24px;
}

.why-video-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 33.75%;
    /* Reduced height - 16:9 aspect ratio */
    position: relative;
}

.why-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Events Section */
.get-events-heading {
    color: #171717;
    font: 400 56px/1 Roboto, sans-serif;
    text-align: center;
    margin: 156px 0 56px;
}

.get-events-grid {
    max-width: 1120px;
    margin: 0 auto;
    overflow: hidden;
}

.get-events-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.get-events-card {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 9px 9px 55px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: all 0.5s ease-in-out;
    opacity: 0;
    transform: translateX(100px) scale(0.8);
    cursor: pointer;
}

.get-events-card.active {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.get-events-card.animate {
    opacity: 1;
    transform: translateX(0) scale(0.9);
}

.get-card-image {
    width: 100%;
    aspect-ratio: 1.61;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.get-card-title {
    font-family: 'Poppins', sans-serif;
    color: #171717;
    font: 24px/32px Roboto, sans-serif;
    margin: 28px 0 0 24px;
}

.get-card-description {
    font-family: 'Poppins', sans-serif;
    color: #5d5d5d;
    font: 16px/24px Inter, sans-serif;
    margin: 10px 24px 0;
}

/* Newsletter Section */
.sub-newsletter-section {
    background: linear-gradient(135deg, #f6f6f6 0%, #e9e9e9 100%);
    padding: 80px 20px;
    margin-top: 76px;
    text-align: center;
}

.sub-newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.sub-newsletter-heading {
    font: 56px/66px Roboto, sans-serif;
    color: #000;
    margin-bottom: 20px;
}

.sub-newsletter-description {
    color: #2a2a2a;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
}

.sub-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.sub-input {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    min-width: 300px;
    font-size: 16px;
}

.sub-button {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sub-button:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 991px) {
    .why-program-section {
        margin-top: 40px;
        padding: 20px;
    }

    .why-program-content {
        max-width: 100%;
    }

    .why-video-container {
        padding-top: 56.25%;
    }

    .get-events-row {
        flex-direction: column;
        align-items: center;
    }

    .get-events-card {
        max-width: 100%;
    }

    .get-events-card.active {
        transform: scale(1.05);
    }

    .get-events-heading {
        font-size: 40px;
        margin: 40px 0;
    }

    .sub-newsletter-heading {
        font-size: 40px;
        line-height: 53px;
    }

    .sub-form {
        flex-direction: column;
        align-items: center;
    }
}






@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 2rem;
        transition: all 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        right: 0;
    }

    .nav-list li {
        margin: 0.5rem 0;
        width: 100%;
    }

    .submenu {
        position: static;
        background-color: transparent;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .has-submenu.active .submenu {
        display: block;
    }

    .has-submenu:hover .submenu {
        display: block;
    }

    .has-submenu>a::after {
        float: right;
        transform: rotate(-90deg);
    }

    .has-submenu.active>a::after {
        transform: rotate(0);
    }
}




/* ===== SECTION SPACER ===== */
.section-spacer {
    height: 80px;
    background: transparent;
}

/* ===== GODMODE TESTIMONIES SECTION STYLES FOR INDEX.HTML ===== */


/* TESTIMONIALS COMPONENT - SELF-CONTAINED STYLES */
.testimonials-component * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.testimonials-component {
    --primary-color: #6b7280;
    --secondary-color: #9ca3af;
    --text-primary: #2c2c2c;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --bg-gradient: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 50%, #f9fafb 100%);
    --card-bg: rgba(249, 250, 251, 0.95);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-primary);
    overflow-x: hidden;
}

.testimonials-component .testimonies-section {
    padding: 120px 0;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

/* Blur circles removed for cleaner look */
.testimonials-component .testimonies-section::before {
    display: none;
}

.testimonials-component .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-component .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6b7280 0%, #9ca3af 50%, #6b7280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Text shadow blur removed for cleaner look */
    position: relative;
}

.testimonials-component .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #6b7280, transparent);
    border-radius: 2px;
}

.testimonials-component .testimonies-subtitle {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
    animation: subtitleFade 2s ease-in-out;
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.testimonials-component .slide-section {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-component .slide-container {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: visible;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(107, 114, 128, 0.1);
    transition: all 0.8s var(--transition-smooth);
    margin-bottom: 40px;
}

.testimonials-component .slide-container.shrunk {
    /* Apple-style: maintain size, just subtle shadow change */
    box-shadow: 0 20px 80px rgba(107, 114, 128, 0.15);
}

.testimonials-component .testimony-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px) scale(0.9);
    transition: all 0.8s var(--transition-smooth);
    background: var(--card-bg);
    backdrop-filter: none;
    border-radius: 30px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(107, 114, 128, 0.1);
    border: 1px solid rgba(107, 114, 128, 0.15);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

/* Shimmer effect removed for cleaner look */
.testimonials-component .testimony-card::before {
    display: none;
}

.testimonials-component .testimony-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    z-index: 2;
    /* Glow animation removed for cleaner look */
}

.testimonials-component .testimony-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.2rem;
    overflow-y: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-right: 10px;
}

.testimonials-component .testimony-content::-webkit-scrollbar {
    width: 4px;
}

.testimonials-component .testimony-content::-webkit-scrollbar-track {
    background: rgba(107, 114, 128, 0.1);
    border-radius: 2px;
}

.testimonials-component .testimony-content::-webkit-scrollbar-thumb {
    background: rgba(107, 114, 128, 0.2);
    border-radius: 2px;
}

.testimonials-component .testimony-content::-webkit-scrollbar-thumb:hover {
    background: rgba(107, 114, 128, 0.3);
}

.testimonials-component .quote-icon {
    font-size: 2.5rem;
    color: rgba(107, 114, 128, 0.6);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 0.8rem;
    position: static;
    transform: none !important;
    text-shadow: none;
    animation: none !important;
}

.testimonials-component .testimony-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a4a3a;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
    font-weight: 300;
    text-shadow: none;
    position: relative;
    padding-left: 15px;
}

.testimonials-component .testimony-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #6b7280, transparent);
    border-radius: 2px;
}

.testimonials-component .testimony-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-component .author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #6b7280;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(107, 114, 128, 0.4);
    transition: all 0.6s var(--transition-smooth);
    cursor: pointer;
    position: relative;
}

.testimonials-component .author-image.cylinder-transform {
    border-radius: 15px;
    width: 200px;
    height: 60px;
    transform: perspective(500px) rotateX(15deg);
    animation: cylinderSlide 1.2s var(--transition-smooth);
}

@keyframes cylinderSlide {
    0% {
        border-radius: 50%;
        width: 120px;
        height: 120px;
        transform: perspective(500px) rotateX(0deg);
    }

    50% {
        border-radius: 25px;
        width: 160px;
        height: 80px;
        transform: perspective(500px) rotateX(25deg) translateY(-20px);
    }

    100% {
        border-radius: 15px;
        width: 200px;
        height: 60px;
        transform: perspective(500px) rotateX(15deg) translateY(0px);
    }
}

.testimonials-component .author-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(107, 114, 128, 0.6);
}

.testimonials-component .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.testimonials-component .author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 10px rgba(107, 114, 128, 0.3);
}

.testimonials-component .author-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.testimonials-component .achievement-badge {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(107, 114, 128, 0.2);
    margin-bottom: 0.8rem;
}

.testimonials-component .read-more-btn {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.3);
}

.testimonials-component .read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 114, 128, 0.4);
}

.testimonials-component .person-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s var(--transition-smooth);
    margin-top: 1rem;
}

.testimonials-component .person-description.expanded {
    opacity: 1;
    max-height: none;
    padding-bottom: 1rem;
}

/* Navigation */
.testimonials-component .testimonies-navigation {
    position: relative;
    top: 20px;
    z-index: 9999;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease-out;
    opacity: 1;
    will-change: transform, opacity;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    margin: 0 auto;
    width: fit-content;
    display: flex;
    justify-content: center;
    transform: scale(0);
    opacity: 0;
    transform-origin: center center;
}

.testimonials-component .nav-container {
    --nav-btn-size: 56px;
    --nav-gap: 16px;
    --nav-padding: 4px;
    --border-radius: 32px;
    display: flex;
    align-items: center;
    gap: var(--nav-gap);
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
    padding: var(--nav-padding);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    will-change: transform;
    contain: layout style paint;
}

.testimonials-component .nav-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 0.5px solid rgba(255, 255, 255, 0.2);
    width: var(--nav-btn-size);
    height: var(--nav-btn-size);
    border-radius: calc(var(--nav-btn-size) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15);
    will-change: transform, background, border, box-shadow;
    contain: layout style;
}

.testimonials-component .nav-btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.testimonials-component .prev-btn i,
.testimonials-component .next-btn i {
    --icon-size: 1.2rem;
    font-size: var(--icon-size);
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s var(--transition-smooth);
}

.testimonials-component .prev-btn:hover i {
    transform: translateX(-2px);
}

.testimonials-component .next-btn:hover i {
    transform: translateX(2px);
}

.testimonials-component .nav-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    border: 0.5px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
        0 12px 48px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
}

.testimonials-component .nav-btn:active {
    transform: scale(0.95) translateY(0);
    background: rgba(255, 255, 255, 0.18);
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 1px 4px rgba(0, 0, 0, 0.15);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-component .nav-btn .apc-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.testimonials-component .nav-btn .apc-play-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.testimonials-component .nav-btn .apc-pause-icon {
    opacity: 0;
    transform: scale(0.6) rotate(180deg);
}

.testimonials-component .nav-btn.apc-playing .apc-play-icon {
    opacity: 0;
    transform: scale(0.6) rotate(-180deg);
}

.testimonials-component .nav-btn.apc-playing .apc-pause-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.testimonials-component .nav-btn:hover .apc-icon {
    fill: rgba(255, 255, 255, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.testimonials-component .testimonies-dots {
    --dot-container-height: 56px;
    --dot-container-padding: 12px;
    --dot-gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
    border-radius: calc(var(--dot-container-height) / 2);
    height: var(--dot-container-height);
    display: flex;
    align-items: center;
    padding: 0 var(--dot-container-padding);
    gap: var(--dot-gap);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    will-change: transform;
    contain: layout style paint;
    padding: 0 20px;
    min-width: 200px;
    box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.testimonials-component .dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
    position: relative;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 0.5px 1px rgba(255, 255, 255, 0.3);
}

.testimonials-component .dot:hover {
    transform: scale(1.25);
    background: rgba(255, 255, 255, 0.7);
    box-shadow:
        inset 0 0.5px 1px rgba(255, 255, 255, 0.5),
        0 2px 8px rgba(255, 255, 255, 0.2);
}

.testimonials-component .dot.active {
    background: transparent;
    box-shadow: none;
}

.testimonials-component .active-indicator {
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0.9) 100%);
    border-radius: 1.5px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 0;
    will-change: transform, width;
    animation: breathing-pulse 2.5s infinite ease-in-out;
    box-shadow: 0 0 8px 1px rgba(255, 255, 255, 0.4);
}

@keyframes breathing-pulse {

    0%,
    100% {
        box-shadow: 0 0 8px 1px rgba(255, 255, 255, 0.4),
            0 0 16px 2px rgba(255, 255, 255, 0.15);
        filter: brightness(1);
    }

    50% {
        box-shadow: 0 0 20px 4px rgba(255, 255, 255, 0.6),
            0 0 32px 6px rgba(255, 255, 255, 0.25);
        filter: brightness(1.1);
    }
}

/* Scroll-triggered animations */
.testimonials-component .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

.testimonials-component .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Big Bang Bouncy Reveal Animation - Expanding from center like an explosion */
@keyframes apc-bounce-reveal {
    0% {
        transform: scale(0);
        opacity: 0;
        filter: blur(20px) brightness(2) drop-shadow(0 0 30px rgba(107, 114, 128, 0.8));
    }

    8% {
        transform: scale(0.1);
        opacity: 0.1;
        filter: blur(15px) brightness(1.8) drop-shadow(0 0 40px rgba(107, 114, 128, 0.9));
    }

    15% {
        transform: scale(0.4);
        opacity: 0.4;
        filter: blur(10px) brightness(1.6) drop-shadow(0 0 50px rgba(107, 114, 128, 1));
    }

    25% {
        transform: scale(1.3) translateY(-20px);
        opacity: 0.8;
        filter: blur(5px) brightness(1.4) drop-shadow(0 10px 60px rgba(107, 114, 128, 0.8));
    }

    35% {
        transform: scale(0.85) translateY(12px);
        opacity: 0.9;
        filter: blur(2px) brightness(1.2) drop-shadow(0 15px 50px rgba(107, 114, 128, 0.6));
    }

    45% {
        transform: scale(1.15) translateY(-8px);
        opacity: 0.95;
        filter: blur(1px) brightness(1.1) drop-shadow(0 20px 45px rgba(107, 114, 128, 0.5));
    }

    55% {
        transform: scale(0.92) translateY(5px);
        opacity: 0.97;
        filter: blur(0px) brightness(1.05) drop-shadow(0 18px 40px rgba(107, 114, 128, 0.4));
    }

    65% {
        transform: scale(1.08) translateY(-3px);
        opacity: 0.98;
        filter: blur(0px) brightness(1.02) drop-shadow(0 16px 35px rgba(107, 114, 128, 0.35));
    }

    75% {
        transform: scale(0.96) translateY(2px);
        opacity: 0.99;
        filter: blur(0px) brightness(1.01) drop-shadow(0 14px 30px rgba(107, 114, 128, 0.3));
    }

    85% {
        transform: scale(1.04) translateY(-1px);
        opacity: 1;
        filter: blur(0px) brightness(1) drop-shadow(0 12px 25px rgba(107, 114, 128, 0.25));
    }

    92% {
        transform: scale(0.98) translateY(1px);
        opacity: 1;
        filter: blur(0px) brightness(1) drop-shadow(0 10px 20px rgba(107, 114, 128, 0.2));
    }

    96% {
        transform: scale(1.02) translateY(0px);
        opacity: 1;
        filter: blur(0px) brightness(1) drop-shadow(0 8px 18px rgba(107, 114, 128, 0.18));
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
        filter: blur(0px) brightness(1) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    }
}

.testimonials-component .testimonies-navigation.apc-initial-reveal {
    animation: apc-bounce-reveal 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Subtle breathing animation after reveal */
@keyframes subtle-breathe {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    }

    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.35));
    }
}

.testimonials-component .testimonies-navigation.apc-visible {
    animation: subtle-breathe 4s ease-in-out infinite;
    transform: scale(1) !important;
    opacity: 1 !important;
}

/* GPU acceleration and performance optimizations */
.testimonials-component .testimonies-navigation,
.testimonials-component .nav-container,
.testimonials-component .nav-btn,
.testimonials-component .testimonies-dots,
.testimonials-component .active-indicator {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonials-component .testimonies-section {
        padding: 80px 0;
    }

    .testimonials-component .section-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .testimonials-component .testimonies-subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .testimonials-component .slide-section {
        padding: 1.5rem 0;
        max-width: 100%;
        margin: 0 20px;
    }

    .testimonials-component .slide-container {
        height: auto;
        min-height: calc(100vh - 300px);
        max-height: none;
        margin-bottom: 30px;
    }

    .testimonials-component .testimony-card {
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .testimonials-component .testimony-content {
        gap: 1rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        max-height: calc(100vh - 300px);
    }

    .testimonials-component .testimony-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 0;
        flex: 1;
        padding-left: 12px;
    }

    .testimonials-component .author-image {
        width: 90px;
        height: 90px;
        border-width: 3px;
    }

    .testimonials-component .author-image.cylinder-transform {
        width: 160px;
        height: 50px;
    }

    .testimonials-component .author-info h4 {
        font-size: 1.1rem;
    }

    .testimonials-component .author-info p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .testimonials-component .achievement-badge {
        padding: 4px 12px;
        font-size: 0.8rem;
    }

    .testimonials-component .quote-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
        opacity: 0.8;
    }

    .testimonials-component .person-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-top: 0.8rem;
    }

    .testimonials-component .person-description.expanded {
        padding-bottom: 0.8rem;
    }

    .testimonials-component .testimonies-navigation {
        top: 15px;
        transform: scale(0.9);
    }

    .testimonials-component .nav-container {
        --nav-btn-size: 52px;
        --nav-gap: 14px;
        --nav-padding: 4px;
        --border-radius: 30px;
        transform: scale(0.98);
        gap: 12px;
    }

    .testimonials-component .nav-btn {
        width: 48px;
        height: 48px;
    }

    .testimonials-component .apc-icon {
        width: 20px;
        height: 20px;
    }

    .testimonials-component .prev-btn i,
    .testimonials-component .next-btn i {
        font-size: 1.15rem;
    }

    .testimonials-component .dot {
        width: 7px;
        height: 7px;
        margin: 0 8px;
    }

    .testimonials-component .testimonies-dots {
        --dot-container-height: 48px;
        --dot-container-padding: 10px;
        --dot-gap: 6px;
        height: 48px;
        padding: 0 16px;
        gap: 6px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .testimonials-component .testimonies-section {
        padding: 60px 0;
    }

    .testimonials-component .section-title {
        font-size: 2rem;
    }

    .testimonials-component .testimonies-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .testimonials-component .slide-container {
        min-height: calc(100vh - 250px);
        margin-bottom: 25px;
    }

    .testimonials-component .testimony-card {
        padding: 20px 16px;
    }

    .testimonials-component .testimony-content {
        gap: 0.6rem;
    }

    .testimonials-component .testimony-text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
        padding-left: 10px;
    }

    .testimonials-component .author-image {
        width: 80px;
        height: 80px;
    }

    .testimonials-component .author-image.cylinder-transform {
        width: 140px;
        height: 45px;
    }

    .testimonials-component .author-info h4 {
        font-size: 1rem;
    }

    .testimonials-component .author-info p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .testimonials-component .achievement-badge {
        padding: 3px 10px;
        font-size: 0.75rem;
    }

    .testimonials-component .quote-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        opacity: 0.7;
    }

    .testimonials-component .person-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-top: 0.6rem;
    }

    .testimonials-component .person-description.expanded {
        padding-bottom: 0.6rem;
    }

    .testimonials-component .testimonies-navigation {
        top: 10px;
        transform: scale(0.85);
    }

    .testimonials-component .nav-container {
        --nav-btn-size: 48px;
        --nav-gap: 10px;
        --nav-padding: 3px;
        --border-radius: 28px;
        transform: scale(0.95);
        gap: 8px;
    }

    .testimonials-component .nav-btn {
        width: 44px;
        height: 44px;
    }

    .testimonials-component .apc-icon {
        width: 18px;
        height: 18px;
    }

    .testimonials-component .prev-btn i,
    .testimonials-component .next-btn i {
        font-size: 1.1rem;
    }

    .testimonials-component .dot {
        width: 6px;
        height: 6px;
        margin: 0 6px;
    }

    .testimonials-component .testimonies-dots {
        --dot-container-height: 40px;
        --dot-container-padding: 6px;
        --dot-gap: 3px;
        height: 44px;
        padding: 0 12px;
        gap: 4px;
        min-width: 160px;
    }
}

@media (max-width: 360px) {
    .testimonials-component .nav-container {
        --nav-btn-size: 42px;
        --nav-gap: 6px;
        --nav-padding: 2px;
        --border-radius: 24px;
        transform: scale(0.88);
    }

    .testimonials-component .dot {
        width: 4px;
        height: 4px;
        margin: 0 4px;
    }

    .testimonials-component .testimonies-dots {
        --dot-container-height: 32px;
        --dot-container-padding: 4px;
        --dot-gap: 1px;
        padding: 0 8px;
        min-width: 100px;
    }
}

@media (max-width: 320px) {
    .testimonials-component .nav-container {
        --nav-btn-size: 40px;
        --nav-gap: 5px;
        --nav-padding: 2px;
        --border-radius: 22px;
        transform: scale(0.85);
    }

    .testimonials-component .dot {
        width: 3px;
        height: 3px;
        margin: 0 3px;
    }

    .testimonials-component .testimonies-dots {
        --dot-container-height: 30px;
        --dot-container-padding: 3px;
        --dot-gap: 1px;
        padding: 0 6px;
        min-width: 80px;
    }
}



/* ===== MODERN MISSION & VISION SECTION STYLES FOR INDEX.HTML ===== */


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

.mission-vision-component {
    --mv-primary-gold: #cd9c5e;
    --mv-dark-gold: #8b7355;
    --mv-cream: #fefcf0;
    --mv-dark-cream: #f8f6ed;
    --mv-text-primary: #1a1a1a;
    --mv-text-secondary: rgba(26, 26, 26, 0.7);
    --mv-glass-bg: rgba(254, 252, 240, 0.85);
    --mv-shadow-light: 0 8px 32px rgba(139, 115, 85, 0.1);
    --mv-shadow-medium: 0 16px 64px rgba(139, 115, 85, 0.15);
    --mv-shadow-heavy: 0 32px 128px rgba(139, 115, 85, 0.2);

    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--mv-cream);
    color: var(--mv-text-primary);
    line-height: 1.47;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
    width: 100%;
}

.mission-vision-component * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mission-vision-component .mv-mission-vision-wrapper {
    position: relative;
    min-height: 100vh;
    background: var(--mv-cream);
    width: 100%;
    overflow: hidden;
}

.mission-vision-component .mv-section-header {
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    animation: heroReveal 2s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mission-vision-component .mv-main-title {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--mv-dark-gold) 30%, var(--mv-primary-gold) 60%, #1a1a1a 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    position: relative;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.mission-vision-component .mv-section-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--mv-text-secondary);
    letter-spacing: 0.01em;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.5s cubic-bezier(0.23, 1, 0.32, 1) 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-vision-component .glass-card {
    background: linear-gradient(135deg, rgba(254, 252, 240, 0.9) 0%, rgba(254, 252, 240, 0.8) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(205, 164, 94, 0.2);
    border-radius: 32px;
    box-shadow: var(--mv-shadow-medium);
    position: relative;
    overflow: hidden;
}

.mission-vision-component .glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(205, 164, 94, 0.1) 0%, transparent 50%, rgba(139, 115, 85, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.mission-vision-component .glass-card:hover::before {
    opacity: 1;
}

.mission-vision-component .mission-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin: 120px 0;
    padding: 60px 40px;
    overflow: hidden;
}

.mission-vision-component .mission-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    border-radius: 40px;
    box-shadow: var(--mv-shadow-heavy);
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    filter: blur(10px);
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), filter 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, opacity, filter;
    overflow: hidden;
}

.mission-vision-component .mission-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.4) 0%, rgba(205, 164, 94, 0.2) 100%);
    z-index: 2;
    border-radius: 40px;
}

.mission-vision-component .mission-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    z-index: 1;
    transition: filter 0.3s ease;
}

.mission-vision-component .mission-video.slow-motion {
    filter: brightness(0.8) contrast(1.1);
}

.mission-vision-component .mission-background.in-view {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

.mission-vision-component .mission-content {
    position: relative;
    z-index: 3;
    margin-left: auto;
    width: 50%;
    padding: 80px 60px;
    margin-right: 3%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.mission-vision-component .mission-section.revealed .mission-background {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateX(0);
}

.mission-vision-component .mission-section.revealed .mission-content {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
}

.mission-vision-component .content-tag {
    font-size: 14px;
    font-weight: 700;
    color: var(--mv-primary-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(205, 164, 94, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(205, 164, 94, 0.3);
}

.mission-vision-component .content-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: var(--mv-text-primary);
    position: relative;
}

.mission-vision-component .content-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--mv-text-secondary);
    margin-bottom: 40px;
}

.mission-vision-component .content-features {
    list-style: none;
    margin-top: 40px;
}

.mission-vision-component .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px 28px;
    background: rgba(205, 164, 94, 0.08);
    border-radius: 24px;
    border: 1px solid rgba(205, 164, 94, 0.2);
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.mission-vision-component .feature-item.revealed {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.mission-vision-component .feature-item:hover {
    background: rgba(205, 164, 94, 0.15);
    transform: translateX(8px) scale(1.02);
    box-shadow: var(--mv-shadow-light);
}

.mission-vision-component .feature-marker {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--mv-primary-gold) 0%, var(--mv-dark-gold) 100%);
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(205, 164, 94, 0.4);
    position: relative;
}

.mission-vision-component .feature-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--mv-text-primary);
}

.mission-vision-component .vision-section {
    position: relative;
    min-height: 120vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--mv-dark-cream);
    margin: 100px 0;
}

.mission-vision-component .vision-background {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 70%;
    height: 120%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(139, 115, 85, 0.5) 50%, rgba(205, 164, 94, 0.3) 100%), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 60px;
    transform: scale(0.95) translateX(20px);
    opacity: 0;
    transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--mv-shadow-heavy);
}

.mission-vision-component .vision-content {
    position: relative;
    z-index: 3;
    width: 50%;
    padding: 80px 60px;
    margin-left: 3%;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.mission-vision-component .vision-section.revealed .vision-background {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateX(0);
}

.mission-vision-component .vision-section.revealed .vision-content {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
}

.mission-vision-component .vision-metrics {
    display: flex;
    gap: 24px;
    margin-top: 48px;
}

.mission-vision-component .metric-item {
    text-align: center;
    padding: 32px 20px;
    background: linear-gradient(135deg, rgba(205, 164, 94, 0.1) 0%, rgba(254, 252, 240, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(205, 164, 94, 0.2);
    flex: 1;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.mission-vision-component .metric-item.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mission-vision-component .metric-item:hover {
    background: linear-gradient(135deg, rgba(205, 164, 94, 0.2) 0%, rgba(254, 252, 240, 1) 100%);
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--mv-shadow-medium);
}

.mission-vision-component .metric-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--mv-primary-gold);
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--mv-primary-gold), var(--mv-dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-vision-component .metric-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--mv-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mission-vision-component .quote-section {
    padding: 140px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--mv-dark-gold) 50%, var(--mv-primary-gold) 100%);
    color: var(--mv-cream);
    position: relative;
    overflow: hidden;
    margin: 100px 0;
}

.mission-vision-component .quote-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.mission-vision-component .quote-section.revealed .quote-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mission-vision-component .quote-text {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    position: relative;
}

.mission-vision-component .quote-text::before,
.mission-vision-component .quote-text::after {
    content: '"';
    font-size: 1.5em;
    color: var(--mv-primary-gold);
    position: absolute;
    font-weight: 700;
}

.mission-vision-component .quote-text::before {
    top: -0.2em;
    left: -0.5em;
}

.mission-vision-component .quote-text::after {
    bottom: -0.2em;
    right: -0.3em;
}

.mission-vision-component .quote-author {
    font-size: 18px;
    font-weight: 500;
    color: rgba(254, 252, 240, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mission-vision-component .values-section {
    padding: 140px 20px;
    background: var(--mv-cream);
    position: relative;
}

.mission-vision-component .values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.mission-vision-component .values-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(135deg, var(--mv-text-primary), var(--mv-dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-vision-component .values-title.revealed {
    opacity: 1;
    transform: translateY(0);
}

.mission-vision-component .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.mission-vision-component .value-card {
    background: linear-gradient(135deg, rgba(254, 252, 240, 0.9) 0%, rgba(248, 246, 237, 0.9) 100%);
    backdrop-filter: blur(20px);
    padding: 60px 40px;
    border-radius: 32px;
    box-shadow: var(--mv-shadow-light);
    border: 1px solid rgba(205, 164, 94, 0.15);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.mission-vision-component .value-card.revealed {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.mission-vision-component .value-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--mv-shadow-medium);
    border-color: rgba(205, 164, 94, 0.2);
}

.mission-vision-component .value-image {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--mv-shadow-light);
}

.mission-vision-component .value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mission-vision-component .value-card:hover .value-image img {
    transform: scale(1.05);
}

.mission-vision-component .value-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--mv-text-primary);
}

.mission-vision-component .value-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--mv-text-secondary);
    line-height: 1.6;
}

@media (max-width: 1200px) {

    .mission-vision-component .mission-content,
    .mission-vision-component .vision-content {
        width: 55%;
        padding: 60px 40px;
    }

    .mission-vision-component .mission-background,
    .mission-vision-component .vision-background {
        width: 60%;
        height: 100%;
        border-radius: 40px;
    }

    .mission-vision-component .vision-metrics {
        gap: 16px;
    }

    .mission-vision-component .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .mission-vision-component .mission-section,
    .mission-vision-component .vision-section {
        min-height: 100vh;
        flex-direction: column;
        justify-content: center;
        margin: 60px 0;
        padding: 40px 20px;
    }

    .mission-vision-component .mission-background {
        position: relative;
        width: 95%;
        height: 50vh;
        margin: 0 auto 40px;
        top: 0;
        left: 0;
        border-radius: 32px;
        transform: scale(1);
        box-shadow: var(--mv-shadow-heavy);
    }

    .mission-vision-component .vision-background {
        position: relative;
        width: 95%;
        height: 50vh;
        margin: 40px auto 0;
        top: 0;
        right: 0;
        border-radius: 32px;
        transform: scale(1);
        box-shadow: var(--mv-shadow-heavy);
        order: 2;
    }

    .mission-vision-component .mission-content,
    .mission-vision-component .vision-content {
        width: 95%;
        margin: 0 auto;
        padding: 40px 30px;
        transform: none;
        position: relative;
        z-index: 3;
    }

    .mission-vision-component .vision-content {
        order: 1;
    }

    .mission-vision-component .mv-section-header {
        padding: 80px 20px 60px;
    }

    .mission-vision-component .mv-main-title {
        font-size: clamp(40px, 12vw, 80px);
        margin-bottom: 24px;
    }

    .mission-vision-component .mv-section-subtitle {
        font-size: 18px;
    }

    .mission-vision-component .content-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 24px;
    }

    .mission-vision-component .content-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .mission-vision-component .feature-item {
        padding: 16px 20px;
        margin-bottom: 16px;
        border-radius: 20px;
    }

    .mission-vision-component .feature-text {
        font-size: 16px;
    }

    .mission-vision-component .vision-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .mission-vision-component .metric-item {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .mission-vision-component .metric-number {
        font-size: 32px;
    }

    .mission-vision-component .quote-section {
        padding: 80px 20px;
    }

    .mission-vision-component .quote-text {
        font-size: clamp(24px, 8vw, 40px);
        margin-bottom: 24px;
    }

    .mission-vision-component .values-section {
        padding: 80px 20px;
    }

    .mission-vision-component .values-title {
        font-size: clamp(32px, 10vw, 56px);
        margin-bottom: 60px;
    }

    .mission-vision-component .values-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mission-vision-component .value-card {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .mission-vision-component .value-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .mission-vision-component .value-description {
        font-size: 16px;
    }
}

.mission-vision-component .gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@media (prefers-reduced-motion: reduce) {
    .mission-vision-component * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}











/* Performance optimizations */
.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}









/*
 Enhanced Epic Hero Section - "We are all heroes" */
.epic-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/IMG_20240919_104633.jpg') center/cover no-repeat fixed;
    overflow: hidden;
}

.epic-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.hero-background-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-background-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 119, 198, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(120, 219, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particlesFloat 20s linear infinite;
}

/* Enhanced Hero Content Container */
.hero-content-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-text-reveal {
    position: relative;
    perspective: 1000px;
}

.hero-word-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

/* Enhanced Hero Words */
.hero-word {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        0 0 60px rgba(255, 215, 0, 0.1),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(3) translateZ(200px) rotateX(45deg);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.hero-word::before {
    content: attr(data-word);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B6B, #4ECDC4);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.8s ease;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-word::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.hero-word:hover::after {
    left: 100%;
}

/* Special styling for "heroes" and "authors" words */
.hero-word.word-heroes,
.hero-word.word-authors {
    color: #FFD700;
    font-size: 4.5rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 215, 0, 0.5),
        0 0 90px rgba(255, 215, 0, 0.3),
        0 0 120px rgba(255, 215, 0, 0.2),
        3px 3px 6px rgba(0, 0, 0, 0.7);
    position: relative;
}

.hero-word.word-heroes::before,
.hero-word.word-authors::before {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700, #FFED4E);
    background-size: 300% 300%;
    animation: heroGradientShift 3s ease-in-out infinite;
}

@keyframes heroGradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-word.revealed {
    opacity: 1;
    transform: scale(1) translateZ(0) rotateX(0deg);
}

.hero-word.revealed::before {
    opacity: 1;
}

.hero-word.fully-visible {
    animation: wordGlow 3s ease-in-out infinite alternate;
}

@keyframes wordGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 215, 0, 0.5),
            0 0 40px rgba(255, 215, 0, 0.3),
            0 0 60px rgba(255, 215, 0, 0.1),
            2px 2px 4px rgba(0, 0, 0, 0.5);
        transform: scale(1);
    }

    100% {
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 215, 0, 0.5),
            0 0 90px rgba(255, 215, 0, 0.3),
            0 0 120px rgba(255, 215, 0, 0.2),
            3px 3px 6px rgba(0, 0, 0, 0.7);
        transform: scale(1.02);
    }
}

/* Enhanced Separator */
.hero-separator {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, #FFA500, #FFD700, transparent);
    background-size: 200% 100%;
    margin: 30px auto;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 1s ease 0.5s;
    animation: separatorFlow 3s ease-in-out infinite;
}

@keyframes separatorFlow {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.hero-separator.revealed {
    opacity: 1;
    transform: scaleX(1);
}

/* Enhanced Glow Effects */
.hero-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Enhanced Ripple Effects */
.hero-ripple-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rippleExpand 3s ease-out infinite;
}

.hero-ripple-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 165, 0, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rippleExpand 3s ease-out infinite 1s;
}

.hero-ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255, 215, 0, 0.7);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rippleExpand 3s ease-out infinite 2s;
}

@keyframes rippleExpand {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
    }

    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
    }
}

/* Enhanced Interactive Effects */
.hero-word:hover {
    transform: scale(1.05) translateZ(0) rotateX(0deg);
    transition: transform 0.3s ease;
}

.hero-word.word-heroes:hover,
.hero-word.word-authors:hover {
    text-shadow: 0 0 40px rgba(255, 215, 0, 1),
        0 0 80px rgba(255, 215, 0, 0.7),
        0 0 120px rgba(255, 215, 0, 0.5),
        0 0 160px rgba(255, 215, 0, 0.3),
        4px 4px 8px rgba(0, 0, 0, 0.8);
}

/* Responsive Design for Enhanced Epic Hero Section */
@media (max-width: 768px) {
    .hero-word {
        font-size: 2.5rem;
    }

    .hero-word.word-heroes,
    .hero-word.word-authors {
        font-size: 3rem;
    }

    .hero-word-container {
        gap: 15px;
    }

    .hero-glow-effect {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-word {
        font-size: 2rem;
    }

    .hero-word.word-heroes,
    .hero-word.word-authors {
        font-size: 2.5rem;
    }

    .hero-word-container {
        gap: 10px;
        margin: 15px 0;
    }

    .hero-separator {
        width: 150px;
    }

    .hero-glow-effect {
        width: 150px;
        height: 150px;
    }
}

/* Additional Epic Effects */
.hero-word.word-we,
.hero-word.word-are,
.hero-word.word-all {
    animation-delay: 0.2s;
}

.hero-word.word-the,
.hero-word.word-of,
.hero-word.word-our {
    animation-delay: 0.4s;
}

.hero-word.word-own,
.hero-word.word-educational,
.hero-word.word-journeys {
    animation-delay: 0.6s;
}

/* Particle System Enhancement */
@keyframes particlesFloat {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(20px);
        opacity: 0;
    }
}

/* Epic Hero Section Background Enhancement */
.epic-hero-section {
    background-attachment: fixed;
    background-size: cover;
}

.epic-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content-container {
    z-index: 10;
}

/* Fix for stable hero background image */
.hero-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;

}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

/* Ensure text stays visible once revealed */
.hero-word.revealed {
    opacity: 1 !important;
    transform: scale(1) translateZ(0) rotateX(0deg) !important;
}

.hero-word.fully-visible {
    animation: wordGlow 3s ease-in-out infinite alternate !important;
}

.hero-separator.revealed {
    opacity: 1 !important;
    transform: scaleX(1) !important;
}

/* Prevent any unwanted resets */
.epic-hero-section .hero-word {
    will-change: transform, opacity;
}

.epic-hero-section .hero-separator {
    will-change: transform, opacity;
}

/* EMER
GENCY FIX - Make Epic Hero Section Always Visible */
.epic-hero-section {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
    position: relative !important;
    background: url('../images/IMG_20240919_104633.jpg') center/cover no-repeat fixed !important;
    overflow: hidden !important;
}

/* Make hero words visible by default */
.hero-word {
    opacity: 0.8 !important;
    transform: scale(1) translateZ(0) rotateX(0deg) !important;
    transition: all 0.5s ease !important;
}

/* Enhanced visibility for key words */
.hero-word.word-heroes,
.hero-word.word-authors {
    opacity: 1 !important;
    color: #FFD700 !important;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 215, 0, 0.5),
        0 0 90px rgba(255, 215, 0, 0.3) !important;
}

/* Make separator visible */
.hero-separator {
    opacity: 0.7 !important;
    transform: scaleX(1) !important;
}

/* Ensure content container is visible */
.hero-content-container {
    position: relative !important;
    z-index: 10 !important;
    text-align: center !important;
    max-width: 1200px !important;
    padding: 0 20px !important;
}

/* Ensure background elements are visible */
.hero-background-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

.hero-background-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 2 !important;
}







/* CLEAN EPIC HERO SECTION - Only image background + text */

.epic-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/IMG_20240919_104633.jpg') center/cover no-repeat fixed;
    font-family: 'Poppins', sans-serif;
}

/* Dark overlay for text readability */
.epic-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Content Container */
.hero-content-container {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-text-reveal {
    position: relative;
}

.hero-word-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

/* Hero Words Styling */
.hero-word {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow:
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
    display: inline-block;
    position: relative;
    cursor: default;
}

/* Special styling for "heroes" and "authors" */
.hero-word.word-heroes,
.hero-word.word-authors {
    color: #FFD700;
    font-size: 4.5rem;
    text-shadow:
        0 0 30px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 215, 0, 0.5),
        0 0 90px rgba(255, 215, 0, 0.3),
        3px 3px 6px rgba(0, 0, 0, 0.8);
    animation: heroGlow 3s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        text-shadow:
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 60px rgba(255, 215, 0, 0.5),
            0 0 90px rgba(255, 215, 0, 0.3),
            3px 3px 6px rgba(0, 0, 0, 0.8);
    }

    100% {
        text-shadow:
            0 0 40px rgba(255, 215, 0, 1),
            0 0 80px rgba(255, 215, 0, 0.7),
            0 0 120px rgba(255, 215, 0, 0.5),
            4px 4px 8px rgba(0, 0, 0, 0.9);
    }
}

/* Hover Effects */
.hero-word:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.hero-word.word-heroes:hover,
.hero-word.word-authors:hover {
    text-shadow:
        0 0 50px rgba(255, 215, 0, 1),
        0 0 100px rgba(255, 215, 0, 0.8),
        0 0 150px rgba(255, 215, 0, 0.6),
        5px 5px 10px rgba(0, 0, 0, 1);
}

/* Separator */
.hero-separator {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD700, #FFA500, #FFD700, transparent);
    margin: 30px auto;
    border-radius: 2px;
    opacity: 1;
    animation: separatorGlow 3s ease-in-out infinite;
}

@keyframes separatorGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    }
}

/* Glow Effect */
.hero-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Ripple Effect */
.hero-ripple-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rippleExpand 4s ease-out infinite;
}

@keyframes rippleExpand {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
    }

    100% {
        width: 600px;
        height: 600px;
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-word {
        font-size: 2.5rem;
    }

    .hero-word.word-heroes,
    .hero-word.word-authors {
        font-size: 3rem;
    }

    .hero-word-container {
        gap: 15px;
    }

    .hero-separator {
        width: 150px;
    }

    .hero-glow-effect {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-word {
        font-size: 2rem;
    }

    .hero-word.word-heroes,
    .hero-word.word-authors {
        font-size: 2.5rem;
    }

    .hero-word-container {
        gap: 10px;
        margin: 15px 0;
    }

    .hero-separator {
        width: 120px;
    }

    .hero-glow-effect {
        width: 150px;
        height: 150px;
    }
}