/* ========================================
   MEMBERSHIPS HERO COMBINED SECTION
   ======================================== */
.dun-fitness-about-hero-combined-section {
    position: relative;
    width: 100%;
    height: max-content;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 150px 60px;
    overflow: hidden;
    background: #0a0e1a;
}

/* ========================================
   BACKGROUND GYM IMAGE
   ======================================== */
.dun-fitness-about-hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;  
    animation: dunFitnessMembershipsBgFadeIn 1.5s ease-out 0.2s forwards; 
}

.dun-fitness-about-hero-background-img {
    position: absolute;
    top: 0%;
    width: 125%;
    height: 125vh;
    background-image: url('about-hero-bg.jpg');
    z-index: 1;
    transition: transform 0.3s linear;
}

@keyframes dunFitnessMembershipsBgFadeIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   DARK OVERLAY WITH GRADIENT
   ======================================== */
.dun-fitness-about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 14, 26, 0.92) 0%,
        rgba(0, 20, 40, 0.88) 50%,
        rgba(10, 14, 26, 0.92) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Add subtle pattern overlay */
.dun-fitness-about-hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(74, 144, 226, 0.02) 10px,
            rgba(74, 144, 226, 0.02) 20px
        );
    z-index: 1;
}

/* ========================================
   ANIMATED WEIGHT PLATES DECORATION
   ======================================== */
.dun-fitness-about-weight-plates-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.dun-fitness-weight-plate-element {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 8px solid rgba(74, 144, 226, 0.15);
    opacity: 0;
    animation: dunFitnessWeightPlateFadeIn 2s ease-out forwards;
}

.dun-fitness-weight-plate-element::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.dun-fitness-weight-plate-element::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.dun-fitness-plate-top-left {
    top: -90px;
    left: -90px;
    animation-delay: 0.5s;
}

.dun-fitness-plate-top-right {
    top: -90px;
    right: -90px;
    animation-delay: 0.7s;
}

.dun-fitness-plate-bottom-left {
    bottom: -90px;
    left: -90px;
    animation-delay: 0.9s;
}

.dun-fitness-plate-bottom-right {
    bottom: -90px;
    right: -90px;
    animation-delay: 1.1s;
}

@keyframes dunFitnessWeightPlateFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(360deg);
    }
}

/* ========================================
   MAIN CONTENT CONTAINER
   ======================================== */
.dun-fitness-about-hero-content-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* ========================================
   TOP SECTION: ABOUT DUN FITNESS
   ======================================== */
.dun-fitness-about-hero-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Left: Cinematic Heading */
.dun-fitness-about-hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dun-fitness-about-cinematic-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 0.9;
}

.dun-fitness-about-heading-word {
    display: block;
    color: #ffffff;
    font-size: 120px;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 
        0 0 30px rgba(74, 144, 226, 0.4),
        0 0 60px rgba(74, 144, 226, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateX(-100px);
    animation: dunFitnessAboutHeadingSlideIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.dun-fitness-about-word-1 {
    animation-delay: 0.3s;
}

.dun-fitness-about-word-2 {
    animation-delay: 0.5s;
    color: #3e8dff;
    margin-left: 40px;
    text-shadow: 
        0 0 40px rgba(74, 144, 226, 0.8),
        0 0 80px rgba(74, 144, 226, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.6);
}

.dun-fitness-about-word-3 {
    animation-delay: 0.7s;
    margin-left: 80px;
}

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

/* HOVER INTERACTION 1: Heading Glow Effect */
.dun-fitness-about-heading-word:hover {
    text-shadow: 
        0 0 50px rgba(74, 144, 226, 0.9),
        0 0 100px rgba(74, 144, 226, 0.6),
        0 12px 30px rgba(0, 0, 0, 0.8);
    transform: scale(1.02);
    transition: all 0.4s ease;
}

/* ========================================
   ANIMATED BARBELL ACCENT
   ======================================== */
.dun-fitness-about-barbell-accent {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 600px;
    height: 60px;
    position: relative;
    opacity: 0;
    animation: dunFitnessBarbellFadeIn 1s ease-out 1s forwards;
}

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

.dun-fitness-barbell-center-bar {
    flex: 1;
    height: 12px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(74, 144, 226, 0.3) 25%,
        rgba(74, 144, 226, 0.6) 50%,
        rgba(74, 144, 226, 0.3) 75%,
        transparent 100%
    );
    border-radius: 6px;
    position: relative;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
    animation: dunFitnessBarbellPulse 3s ease-in-out infinite;
}

@keyframes dunFitnessBarbellPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(74, 144, 226, 0.8);
    }
}

/* Bar Grip Marks */
.dun-fitness-barbell-center-bar::before,
.dun-fitness-barbell-center-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 3px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
}

.dun-fitness-barbell-center-bar::before {
    left: 30%;
}

.dun-fitness-barbell-center-bar::after {
    right: 30%;
}

/* HOVER INTERACTION 2: Barbell Weight Lift Animation */
.dun-fitness-about-barbell-accent:hover .dun-fitness-barbell-center-bar {
    height: 14px;
    box-shadow: 0 0 50px rgba(74, 144, 226, 0.8);
}

/* ========================================
   RIGHT: DESCRIPTION TEXT
   ======================================== */
.dun-fitness-about-hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
    opacity: 0;
    transform: translateX(50px);
    animation: dunFitnessAboutRightSlideIn 1s ease-out 0.9s forwards;
}

@keyframes dunFitnessAboutRightSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dun-fitness-about-description-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    font-family: 'Noto Sans';
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* Highlighted Text Spans */
.dun-fitness-highlight-text {
    color: #3e8dff;
    font-weight: 500;
    position: relative;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* HOVER INTERACTION 3: Highlight Text Glow */
.dun-fitness-highlight-text:hover {
    background: rgba(74, 144, 226, 0.2);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
    transform: scale(1.05);
}

/* ========================================
   ABOUT CTA BUTTON
   ======================================== */
.dun-fitness-about-cta-button-wrapper {
    display: flex;
}

.dun-fitness-about-trial-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
    background: linear-gradient(135deg, #3e8dff, #357abd);
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
}

/* HOVER INTERACTION 4: Button Lift and Expand */
.dun-fitness-about-trial-button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.7);
}

.dun-fitness-about-trial-text {
    position: relative;
    z-index: 2;
}

.dun-fitness-about-trial-icon-wrapper {
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.dun-fitness-about-trial-button:hover .dun-fitness-about-trial-icon-wrapper {
    transform: rotate(360deg) scale(1.2);
    background: rgba(255, 255, 255, 0.3);
}

.dun-fitness-about-trial-icon {
    font-size: 16px;
}

/* Button Glow Effect */
.dun-fitness-about-trial-button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.4) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.dun-fitness-about-trial-button:hover .dun-fitness-about-trial-button-glow {
    width: 400px;
    height: 400px;
}

/* ========================================
   SECTION DIVIDER WITH PULSE
   ======================================== */
.dun-fitness-hero-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    margin: 40px 0;
    opacity: 0;
    animation: dunFitnessDividerFadeIn 1s ease-out 1.4s forwards;
}

@keyframes dunFitnessDividerFadeIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.dun-fitness-divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(74, 144, 226, 0.6) 50%,
        transparent 100%
    );
    max-width: 400px;
}

.dun-fitness-divider-left {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(74, 144, 226, 0.6) 100%
    );
}

.dun-fitness-divider-right {
    background: linear-gradient(
        90deg,
        rgba(74, 144, 226, 0.6) 0%,
        transparent 100%
    );
}

.dun-fitness-divider-pulse-center {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3e8dff, #357abd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(74, 144, 226, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.3);
    animation: dunFitnessPulseIcon 2s ease-in-out infinite;
    position: relative;
}

@keyframes dunFitnessPulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(74, 144, 226, 0.6),
            0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 
            0 0 50px rgba(74, 144, 226, 0.9),
            0 6px 20px rgba(0, 0, 0, 0.4);
    }
}

/* Pulse Rings */
.dun-fitness-divider-pulse-center::before,
.dun-fitness-divider-pulse-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(74, 144, 226, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: dunFitnessPulseRing 2s ease-out infinite;
}

.dun-fitness-divider-pulse-center::after {
    animation-delay: 1s;
}

@keyframes dunFitnessPulseRing {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

.dun-fitness-divider-pulse-center i {
    color: #ffffff;
    font-size: 24px;
    z-index: 2;
}

/* ========================================
   BOTTOM SECTION: CLOSER GYM
   ======================================== */
.dun-fitness-closer-gym-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    width: 100%;
}

/* Left: Heading */
.dun-fitness-closer-gym-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dun-fitness-closer-gym-heading {
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1;
}

.dun-fitness-closer-heading-line {
    display: block;
    color: #ffffff;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(40px);
    animation: dunFitnessCloserHeadingSlide 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.dun-fitness-closer-line-1 {
    animation-delay: 1.6s;
}

.dun-fitness-closer-line-2 {
    animation-delay: 1.8s;
    color: #3e8dff;
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.6);
}

.dun-fitness-closer-line-3 {
    animation-delay: 2s;
}

@keyframes dunFitnessCloserHeadingSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ========================================
   RIGHT: EXPANDABLE CARD
   ======================================== */
.dun-fitness-closer-gym-right {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    animation: dunFitnessCloserRightSlide 1s ease-out 1.8s forwards;
}

@keyframes dunFitnessCloserRightSlide {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dun-fitness-closer-gym-expandable-card {
    font-family: 'Noto Sans';
    background: rgba(0, 37, 61, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.dun-fitness-closer-gym-expandable-card:hover {
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 12px 50px rgba(74, 144, 226, 0.3);
    transform: translateY(-5px);
}

/* ========================================
   EXPANDABLE PREVIEW SECTION
   ======================================== */
.dun-fitness-expandable-preview-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 35px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dun-fitness-expandable-preview-section:hover {
    background: rgba(255, 255, 255, 0.03);
}

.dun-fitness-expandable-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3e8dff, #357abd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.4);
    transition: all 0.4s ease;
}

.dun-fitness-closer-gym-expandable-card:hover .dun-fitness-expandable-icon-circle {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 6px 30px rgba(74, 144, 226, 0.7);
}

.dun-fitness-expandable-icon-circle i {
    color: #ffffff;
    font-size: 26px;
}

.dun-fitness-expandable-preview-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dun-fitness-expandable-preview-heading {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.dun-fitness-expandable-preview-subtext {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.dun-fitness-expandable-toggle-arrow {
    width: 45px;
    height: 45px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.dun-fitness-expandable-toggle-arrow i {
    color: #3e8dff;
    font-size: 20px;
    transition: transform 0.4s ease;
}

.dun-fitness-expanded-active .dun-fitness-expandable-toggle-arrow {
    background: rgba(74, 144, 226, 0.3);
    transform: rotate(180deg);
}

/* ========================================
   EXPANDABLE HIDDEN CONTENT
   ======================================== */
.dun-fitness-expandable-hidden-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), padding 0.6s ease;
    padding: 0 35px;
}

.dun-fitness-expanded-active .dun-fitness-expandable-hidden-content {
    max-height: 600px;
    padding: 0 35px 35px 35px;
}

.dun-fitness-expandable-content-inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.dun-fitness-expandable-full-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

/* Service Highlights */
.dun-fitness-service-highlight {
    color: #3e8dff;
    font-weight: 500;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 3px;
}

/* ========================================
   BENEFITS MINI GRID
   ======================================== */
.dun-fitness-benefits-mini-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.dun-fitness-benefit-mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.dun-fitness-benefit-mini-item:hover {
    background: rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.dun-fitness-benefit-mini-item i {
    color: #3e8dff;
    font-size: 16px;
}

.dun-fitness-benefit-mini-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 400;
}

/* ========================================
   SCROLL DOWN INDICATOR
   ======================================== */
.dun-fitness-about-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    opacity: 0;
    cursor: pointer;
    animation: dunFitnessScrollFadeIn 1s ease-out 2.5s forwards;
}

@keyframes dunFitnessScrollFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dun-fitness-scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        #3e8dff 50%,
        transparent 100%
    );
    animation: dunFitnessScrollLineMove 2s ease-in-out infinite;
}

@keyframes dunFitnessScrollLineMove {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.5;
    }
    50% {
        transform: scaleY(1.3);
        opacity: 1;
    }
}

.dun-fitness-scroll-text {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.dun-fitness-scroll-chevron {
    color: #3e8dff;
    font-size: 20px;
    animation: dunFitnessScrollBounce 2s ease-in-out infinite;
}

@keyframes dunFitnessScrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .dun-fitness-about-heading-word {
        font-size: 90px;
    }

    .dun-fitness-closer-heading-line {
        font-size: 56px;
    }
}

@media (max-width: 1024px) {
    .dun-fitness-about-hero-wrapper,
    .dun-fitness-closer-gym-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .dun-fitness-about-hero-left {
        align-items: center;
    }

    .dun-fitness-about-word-2,
    .dun-fitness-about-word-3 {
        margin-left: 0;
    }

    .dun-fitness-about-barbell-accent {
        margin: 0 auto;
    }

    .dun-fitness-about-hero-right {
        align-items: center;
    }

    .dun-fitness-closer-gym-left {
        align-items: center;
    }
}

@media (max-width: 768px) {

    .dun-fitness-about-heading-word {
        font-size: 56px;
        letter-spacing: 4px;
    }

    .dun-fitness-about-description-text {
        font-size: 16px;
    }

    .dun-fitness-closer-heading-line {
        font-size: 42px;
    }

    .dun-fitness-weight-plate-element {
        width: 120px;
        height: 120px;
        border-width: 5px;
    }

    .dun-fitness-plate-top-left {
        top: -60px;
        left: -60px;
    }

    .dun-fitness-plate-top-right {
        top: -60px;
        right: -60px;
    }

    .dun-fitness-plate-bottom-left {
        bottom: -60px;
        left: -60px;
    }

    .dun-fitness-plate-bottom-right {
        bottom: -60px;
        right: -60px;
    }
}

@media (max-width: 480px) {
    .dun-fitness-about-heading-word {
        font-size: 42px;
    }

    .dun-fitness-closer-heading-line {
        font-size: 32px;
    }

    .dun-fitness-about-trial-button {
        padding: 10px 20px;
        font-size: 16px;
    }

    .dun-fitness-expandable-preview-section {
        padding: 25px;
        flex-direction: column;
        align-items: center;
    }

    .dun-fitness-lifestyle-text-container {
        align-items: center;
    }

    .dun-fitness-weight-plate-element {
        display: none;
    }
}


/* ========================================
   SECTION 1: GYM LIFESTYLE & BELONGING
   ======================================== */
.dun-fitness-about-lifestyle-belonging-section {
    position: relative;
    width: 100%;
    height: max-content;
    background: linear-gradient(180deg, #001428 0%, #00253d 100%);
    padding: 120px 50px;
    overflow: hidden;
}

.dun-fitness-about-lifestyle-belonging-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* ========================================
   PART A: A GYM FOR EVERY LIFESTYLE
   ======================================== */
.dun-fitness-lifestyle-part-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.dun-fitness-lifestyle-part-wrapper.dun-fitness-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Right: Kettlebell Image */
.dun-fitness-lifestyle-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dun-fitness-lifestyle-image-frame {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dun-fitness-lifestyle-kettlebell-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 3;
    border-radius: 8px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

/* HOVER INTERACTION 1: Image Zoom and Brighten */
.dun-fitness-lifestyle-image-frame:hover .dun-fitness-lifestyle-kettlebell-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Animated Corner Brackets */
.dun-fitness-lifestyle-image-bracket {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 4px solid #3e8dff;
    z-index: 4;
    transition: all 0.5s ease;
}

.dun-fitness-bracket-top-left {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
}

.dun-fitness-bracket-top-right {
    top: -15px;
    right: -15px;
    border-left: none;
    border-bottom: none;
}

.dun-fitness-bracket-bottom-left {
    bottom: -15px;
    left: -15px;
    border-right: none;
    border-top: none;
}

.dun-fitness-bracket-bottom-right {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
}

/* HOVER INTERACTION 2: Brackets Expand and Glow */
.dun-fitness-lifestyle-image-frame:hover .dun-fitness-lifestyle-image-bracket {
    width: 40px;
    height: 40px;
}

.dun-fitness-lifestyle-image-frame:hover .dun-fitness-bracket-top-left {
    top: -20px;
    left: -20px;
}

.dun-fitness-lifestyle-image-frame:hover .dun-fitness-bracket-top-right {
    top: -20px;
    right: -20px;
}

.dun-fitness-lifestyle-image-frame:hover .dun-fitness-bracket-bottom-left {
    bottom: -20px;
    left: -20px;
}

.dun-fitness-lifestyle-image-frame:hover .dun-fitness-bracket-bottom-right {
    bottom: -20px;
    right: -20px;
}

/* Blue Triangle Accent Behind Image */
.dun-fitness-lifestyle-blue-triangle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 600px 600px 0;
    border-color: transparent transparent rgba(74, 144, 226, 1) transparent;
    z-index: 1;
    transition: all 0.6s ease;
}

.dun-fitness-lifestyle-image-frame:hover .dun-fitness-lifestyle-blue-triangle {
    border-width: 0 700px 700px 0;
    border-color: transparent transparent rgba(74, 144, 226, 0.25) transparent;
}

/* Left: Text Content */
.dun-fitness-lifestyle-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dun-fitness-lifestyle-main-heading {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
    transition: all 0.4s ease;
}

/* HOVER INTERACTION 3: Heading Glow */
.dun-fitness-lifestyle-main-heading:hover {
    text-shadow: 0 0 40px rgba(74, 144, 226, 0.8);
    transform: translateX(5px);
}

.dun-fitness-lifestyle-text-content {
    font-family: 'Noto Sans';
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dun-fitness-lifestyle-paragraph {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.dun-fitness-lifestyle-final-text {
    color: #3e8dff;
    font-weight: 400;
    font-size: 19px;
}

/* CTA Button */
.dun-fitness-lifestyle-cta-wrapper {
    display: flex;
    margin-top: 20px;
}

.dun-fitness-lifestyle-start-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #3e8dff, #357abd);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
}

/* HOVER INTERACTION 4: Button Lift and Glow Expand */
.dun-fitness-lifestyle-start-button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.7);
}

.dun-fitness-lifestyle-button-text {
    position: relative;
    z-index: 2;
}

.dun-fitness-lifestyle-button-arrow {
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.dun-fitness-lifestyle-start-button:hover .dun-fitness-lifestyle-button-arrow {
    transform: translateX(8px) rotate(45deg);
    background: rgba(255, 255, 255, 0.3);
}

.dun-fitness-lifestyle-button-arrow i {
    font-size: 16px;
}

.dun-fitness-lifestyle-button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.dun-fitness-lifestyle-start-button:hover .dun-fitness-lifestyle-button-glow {
    width: 400px;
    height: 400px;
}

/* ========================================
   PART B: A PLACE WHERE YOU BELONG
   ======================================== */
.dun-fitness-belonging-part-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.dun-fitness-belonging-part-wrapper.dun-fitness-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Left: Heading */
.dun-fitness-belonging-heading-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dun-fitness-belonging-main-heading {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    line-height: 1;
}

.dun-fitness-belonging-heading-line {
    display: block;
    color: #ffffff;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.dun-fitness-belonging-heading-line:hover {
    transform: translateX(10px);
}

.dun-fitness-belonging-highlight-line {
    color: #3e8dff;
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.6);
}

/* Right: Expandable Card */
.dun-fitness-belonging-expandable-container {
    flex: 1;
}

.dun-fitness-belonging-expandable-card {
    font-family: 'Noto Sans';
    background: rgba(0, 37, 61, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.dun-fitness-belonging-expandable-card:hover {
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 12px 50px rgba(74, 144, 226, 0.3);
    transform: translateY(-5px);
}

.dun-fitness-belonging-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 35px;
    transition: background 0.3s ease;
}

.dun-fitness-belonging-card-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.dun-fitness-belonging-preview-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

.dun-fitness-belonging-expand-toggle {
    width: 45px;
    height: 45px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.dun-fitness-belonging-expand-toggle i {
    color: #3e8dff;
    font-size: 20px;
    transition: transform 0.4s ease;
}

.dun-fitness-belonging-card-expanded .dun-fitness-belonging-expand-toggle {
    background: rgba(74, 144, 226, 0.3);
    transform: rotate(180deg);
}

/* Hidden Content */
.dun-fitness-belonging-hidden-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), padding 0.6s ease;
    padding: 0 35px;
}

.dun-fitness-belonging-card-expanded .dun-fitness-belonging-hidden-content {
    max-height: 300px;
    padding: 0 35px 35px 35px;
}

.dun-fitness-belonging-expanded-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
}

/* ========================================
   SECTION 2: STORY, FOUNDER & MISSION
   ======================================== */
.dun-fitness-about-story-founder-mission-section {
    position: relative;
    width: 100%;
    height: max-content;
    background: #001428;
    padding: 120px 50px;
    overflow: hidden;
}

/* Animated Wave Background */
.dun-fitness-story-wave-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.dun-fitness-story-wave-top,
.dun-fitness-story-wave-middle,
.dun-fitness-story-wave-bottom {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: dunFitnessWaveFadeIn 2s ease-out forwards;
}

.dun-fitness-story-wave-top {
    animation-delay: 0.2s;
}

.dun-fitness-story-wave-middle {
    animation-delay: 0.5s;
}

.dun-fitness-story-wave-bottom {
    animation-delay: 0.8s;
}

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

.dun-fitness-story-founder-mission-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

/* Left Column: Story, Founder Image, Mission */
.dun-fitness-story-mission-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease;
}

.dun-fitness-story-mission-column.dun-fitness-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Our Story Block */
.dun-fitness-story-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dun-fitness-story-heading {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
}

.dun-fitness-story-description {
    font-family: 'Noto Sans';
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* Founder Image with Spinning Border */
.dun-fitness-founder-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease;
}

.dun-fitness-founder-image-container.dun-fitness-visible {
    opacity: 1;
    transform: scale(1);
}

/* Founder Photo Circle */
.dun-fitness-founder-photo-circle {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #3e8dff;
    box-shadow: 0 0 40px rgba(74, 144, 226, 0.6);
    z-index: 3;
    transition: all 0.5s ease;
}

/* HOVER INTERACTION 5: Founder Image Scale and Glow */
.dun-fitness-founder-image-container:hover .dun-fitness-founder-photo-circle {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(74, 144, 226, 0.9);
}

.dun-fitness-founder-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.dun-fitness-founder-image-container:hover .dun-fitness-founder-image {
    transform: scale(1.1);
}

/* Our Mission Block */
.dun-fitness-mission-block {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
}

.dun-fitness-mission-heading {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
}

.dun-fitness-mission-description {
    font-family: 'Noto Sans';
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* Right Column: Our Founder Info */
.dun-fitness-founder-info-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 400;
    gap: 40px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease;
}

.dun-fitness-founder-info-column.dun-fitness-visible {
    opacity: 1;
    transform: translateX(0);
}

.dun-fitness-founder-info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dun-fitness-founder-heading {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
}

.dun-fitness-founder-bio {
    font-family: 'Noto Sans';
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* Gym Interior Image */
.dun-fitness-gym-interior-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(74, 144, 226, 0.3);
    transition: all 0.5s ease;
}

/* HOVER INTERACTION 6: Gym Interior Image Zoom */
.dun-fitness-gym-interior-image-wrapper:hover {
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.4);
    transform: translateY(-5px);
}

.dun-fitness-gym-interior-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dun-fitness-gym-interior-image-wrapper:hover .dun-fitness-gym-interior-image {
    transform: scale(1.1);
}

/* Image Frame Accent */
.dun-fitness-interior-frame-accent {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    border-top: 4px solid #3e8dff;
    border-right: 4px solid #3e8dff;
    border-radius: 0 12px 0 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

.dun-fitness-gym-interior-image-wrapper:hover .dun-fitness-interior-frame-accent {
    top: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
}

/* ========================================
   SECTION 3: JOIN OUR COMMUNITY CTA
   ======================================== */
.dun-fitness-about-join-community-section {
    position: relative;
    width: 100%;
    height: max-content;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 50px;
    overflow: hidden;
}
.dun-fitness-about-join-community-section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 23, 46, 0.7);
    z-index: 2;
}

/* Background Image */
.dun-fitness-join-community-background-image {
    position: absolute;
    top: 0;
    left: -42%;
    width: 145%;
    height: 100%;
    background-image: url('join-community-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: dunFitnessJoinBgZoom 1.5s ease-out forwards;
}

@keyframes dunFitnessJoinBgZoom {
    from {
        transform: scale(1.1);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Content */
.dun-fitness-join-community-content-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 60px 30px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.dun-fitness-join-community-content-container.dun-fitness-visible {
    opacity: 1;
    transform: translateY(0);
}

.dun-fitness-join-community-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1;
}

.dun-fitness-join-heading-word {
    display: block;
    color: #ffffff;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.8);
}

.dun-fitness-join-highlight-word {
    color: #8fc3ff;
    text-shadow: 0 0 40px rgba(74, 144, 226, 0.8);
}

.dun-fitness-join-community-description {
    font-family: 'Noto Sans';
    color: rgba(255, 255, 255, 0.9);
    text-shadow:
    0 0 6px rgba(0, 0, 0, 0.7),
    0 0 12px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(0, 0, 0, 0.5);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* Join Button */
.dun-fitness-join-community-button-wrapper {
    display: flex;
    margin-top: 20px;
}

.dun-fitness-join-community-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    background: linear-gradient(135deg, #3e8dff, #357abd);
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.5);
}

/* HOVER INTERACTION 7: Join Button Super Lift */
.dun-fitness-join-community-button:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.8);
}

.dun-fitness-join-button-text {
    position: relative;
    z-index: 2;
}

.dun-fitness-join-button-icon-wrapper {
    position: relative;
    z-index: 2;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.dun-fitness-join-community-button:hover .dun-fitness-join-button-icon-wrapper {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.3);
}

.dun-fitness-join-button-icon-wrapper i {
    font-size: 18px;
}

.dun-fitness-join-button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.7s ease;
}

.dun-fitness-join-community-button:hover .dun-fitness-join-button-glow {
    width: 500px;
    height: 500px;
}

/* Animated Fitness Icons Decoration */
.dun-fitness-join-icons-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.dun-fitness-join-icon-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: dunFitnessIconFloat 6s ease-in-out infinite;
}

.dun-fitness-join-icon-element i {
    color: rgba(74, 144, 226, 0.4);
    font-size: 36px;
}

.dun-fitness-icon-dumbbell {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.dun-fitness-icon-heartbeat {
    top: 20%;
    right: 12%;
    animation-delay: 2s;
}

.dun-fitness-icon-running {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes dunFitnessIconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* ========================================
   SCROLL ANIMATION UTILITIES
   ======================================== */
.dun-fitness-scroll-fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.dun-fitness-scroll-fade-in.dun-fitness-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .dun-fitness-lifestyle-part-wrapper,
    .dun-fitness-belonging-part-wrapper,
    .dun-fitness-story-founder-mission-container {
        flex-direction: column;
    }

    .dun-fitness-lifestyle-main-heading,
    .dun-fitness-belonging-heading-line {
        font-size: 48px;
    }

    .dun-fitness-founder-image-container {
        max-width: 350px;
        height: 350px;
    }

    .dun-fitness-founder-photo-circle {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .dun-fitness-about-lifestyle-belonging-section,
    .dun-fitness-about-story-founder-mission-section,
    .dun-fitness-about-join-community-section {
        padding: 80px 20px;
    }

    .dun-fitness-lifestyle-main-heading {
        font-size: 36px;
    }

    .dun-fitness-belonging-heading-line {
        font-size: 42px;
    }

    .dun-fitness-story-heading,
    .dun-fitness-founder-heading,
    .dun-fitness-mission-heading {
        font-size: 36px;
    }

    .dun-fitness-join-heading-word {
        font-size: 48px;
    }

    .dun-fitness-lifestyle-image-frame {
        height: 500px;
    }

    .dun-fitness-founder-image-container {
        max-width: 280px;
        height: 280px;
    }

    .dun-fitness-founder-photo-circle {
        width: 250px;
        height: 250px;
    }

    .dun-fitness-founder-spinning-border {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 480px) {
    .dun-fitness-lifestyle-main-heading {
        font-size: 28px;
    }

    .dun-fitness-belonging-heading-line {
        font-size: 32px;
    }

    .dun-fitness-join-heading-word {
        font-size: 36px;
    }

    .dun-fitness-lifestyle-image-frame {
        height: 400px;
    }

    .dun-fitness-join-icons-decoration {
        display: none;
    }
}