.hero {
    position: relative;
    width: 100%;
    height: 630px;
    overflow: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -2;
}

.hero-content {
    position: relative;
    width: 100%;
    z-index: 2;
    padding: 0 20px;
}

.hero-text {
    max-width: var(--gMaxWidth);
    margin: 0 auto;
    color: var(--color2);
    text-align: left;
}

.welcome-text {
    font-family: "Lemon Milk Light", sans-serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 2.2px;
    margin-bottom: 10px;
    animation: fadeIn 0.8s ease-in-out;
    text-transform: uppercase;
}

.main-heading {
    font-family: "Lemon Milk", sans-serif;
    font-size: 51px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 10px 0;
    animation: slideInUp 0.8s ease-in-out 0.2s both;
}

.therapy-badge {
    display: inline-block;
    background-color: var(--color7);
    padding: 10px 30px 10px 15px;
    margin: 0 0 0 -9px;
    animation: bounceIn 0.8s ease-in-out 0.4s both;
    text-transform: uppercase;
}

.therapy-badge h2 {
    font-family: "Lemon Milk Light", sans-serif;
    font-size: 39px;
    font-weight: 400;
    color: white;
    margin: 0;
}

.sub-heading {
    font-family: "Lemon Milk", sans-serif;
    font-size: 51px;
    font-weight: bold;
    margin: 8px 0 20px 0;
    animation: slideInDown 0.8s ease-in-out 0.6s both;
}

.description {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    max-width: 44%;
    margin: 12px 0 30px 0;
    animation: slideInDown 0.8s ease-in-out 0.8s both;
}

.cta-button {
    display: inline-block;
    background-color: var(--color6);
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    padding: 12px 25px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    animation: slideInRight 0.8s ease-in-out 1s both;
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.heading_title_orange {
    font-size: 45px;
    font-weight: 400;
    color: var(--color6);
    border-bottom: 1px solid var(--color6);
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text {
        max-width: 100%;
        margin-left: 5%;
    }

    .main-heading {
        font-size: 45px;
    }

    .therapy-badge h2 {
        font-size: 35px;
    }

    .sub-heading {
        font-size: 36px;
    }

    .description {
        max-width: 60%;
    }
}

@media (max-width: 767px) {
    .hero {
        height: 500px;
    }

    .hero-text {
        max-width: 100%;
        margin-left: 0%;
    }

    .welcome-text {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .main-heading {
        font-size: 32px;
    }

    .therapy-badge {
        padding: 8px 25px 8px 12px;
        margin: 0;
    }

    .therapy-badge h2 {
        font-size: 28px;
    }

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

    .description {
        max-width: 90%;
        font-size: 14px;
    }
}

/* --- FFT Section Layout --- */
.fft-section {
    padding: 60px 20px;
}

.fft-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.fft-section .row {
    display: flex;
    flex-wrap: row;
    align-items: center;
    gap: 40px;
}

.fft-section .col-50 {
    flex: 1 1 50%;
    min-width: 300px;
}

/* --- Video Overlay --- */
.video-overlay {
    display: block;
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px; /* Optional */
    overflow: hidden;
    text-decoration: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid #333;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.video-overlay:hover .play-button {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper {
    width: 100%;
}

.fft-section .heading-title {
    font-size: 45px;
    font-weight: 400;
    /* text-transform: capitalize; */
}

.fft-section p {
    font-size: 13px;
    font-weight: 400;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .fft-section .row {
        flex-direction: column;
    }
    .fft-section .col-50 {
        flex: 1 1 100%;
    }
}
