
/*--------------------------------- about page-----------------------------------------------*/

/* Academy Hero Banner */
.academy-hero-banner {
    position: relative;
    height: 65vh;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    overflow: hidden;
}

.academy-hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("https://images.unsplash.com/photo-1577896851905-dc0a2685a3d1?w=1600")
        center/cover;
    opacity: 0.25;
}

.academy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeSlideUp 1s ease-out;
}

.academy-hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.academy-hero-subtitle {
    font-size: 1.3rem;
    color: #d1d5db;
}

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

/* Academy Introduction Section */
.academy-intro-wrapper {
    max-width: 1400px;
    margin: 5px auto 30px auto;
    padding: 0 20px;
}

.academy-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
}

.academy-section-badge::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--neon-green);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.academy-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Stats Counter Cards */
.academy-stats-container {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.academy-stat-card {
    flex: 1;
    background: var(--neon-green);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.academy-stat-card:hover {
    transform: translateY(-10px);
}

.academy-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
}

.academy-stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
}

/* Programs Section */
.programs-showcase-section {
    background: #f9fafb;
    padding: 100px 0;
}

.programs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.programs-heading-center {
    text-align: center;
    margin-bottom: 70px;
}

.programs-subtitle-text {
    font-size: 1.2rem;
    color: #666;
}

/* Program Service Card */
.program-service-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.program-service-card:hover::before {
    left: 100%;
}

.program-service-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-10px);
}

.program-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--neon-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.program-service-card:hover .program-icon-wrapper {
    transform: rotate(10deg) scale(1.1);
}

.program-icon-wrapper i {
    font-size: 2.5rem;
    color: #000;
}

.program-service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.program-service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.program-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #444;
}

.program-feature-item i {
    color: var(--neon-green);
    font-size: 1.1rem;
}

/* Dual Education & Sports Section */
.dual-approach-section {
    padding: 100px 0;
    background: #000;
    color: white;
}

.dual-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.dual-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.dual-section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.dual-section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
}

.dual-column-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 45px;
    height: 100%;
    border: 2px solid rgba(163, 230, 53, 0.2);
    transition: all 0.4s ease;
}

.dual-column-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neon-green);
    transform: translateY(-5px);
}

.dual-card-icon {
    width: 70px;
    height: 70px;
    background: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.dual-card-icon i {
    font-size: 2rem;
    color: #000;
}

.dual-card-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.dual-card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
}

.dual-benefits-list {
    list-style: none;
    padding: 0;
}

.dual-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #d1d5db;
}

.dual-benefit-item i {
    color: var(--neon-green);
    margin-top: 3px;
    font-size: 1.2rem;
}

/* Testimonials Section */
.academy-testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.testimonials-subtitle-line {
    font-size: 1.2rem;
    color: #666;
}

.testimonial-card-item {
    background: #f9fafb;
    border-radius: 25px;
    padding: 40px;
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card-item:hover {
    transform: translateY(-5px);
}

.testimonial-quote-icon {
    width: 50px;
    height: 50px;
    background: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-quote-icon i {
    font-size: 1.5rem;
    color: #000;
}

.testimonial-text-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--neon-green);
    object-fit: cover;
}

.testimonial-author-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.testimonial-author-role {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* CTA Section */
.academy-cta-section {
    background: linear-gradient(135deg, var(--neon-green) 0%, #92d629 100%);
    padding: 80px 0;
}

.academy-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta-heading-large {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.cta-text-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #000;
}

.cta-action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-btn,
.cta-secondary-btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-primary-btn {
    background: #000;
    color: var(--neon-green);
    border: 2px solid #000;
}

.cta-primary-btn:hover {
    background: transparent;
    color: #000;
    transform: translateY(-3px);
}

.cta-secondary-btn {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.cta-secondary-btn:hover {
    background: #000;
    color: var(--neon-green);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .academy-hero-title {
        font-size: 3rem;
    }

    .dual-section-title,
    .testimonials-main-title,
    .cta-heading-large {
        font-size: 2.5rem;
    }

    .academy-stats-container {
        flex-direction: column;
    }

    .cta-action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .academy-hero-title {
        font-size: 2.2rem;
    }

    .academy-hero-subtitle {
        font-size: 1.1rem;
    }

    .dual-section-title,
    .testimonials-main-title,
    .cta-heading-large {
        font-size: 2rem;
    }

    .academy-stat-number {
        font-size: 2.5rem;
    }

    .program-service-card,
    .dual-column-card,
    .testimonial-card-item {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .academy-hero-title {
        font-size: 1.8rem;
    }

    .dual-section-title,
    .testimonials-main-title,
    .cta-heading-large {
        font-size: 1.6rem;
    }

    .cta-text-description {
        font-size: 1.1rem;
    }
}

/* Team Showcase Area */
.team-showcase-area {
    padding: 80px 20px 20px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header Section */
.team-header-section {
    text-align: center;
    margin-bottom: 60px;
}

.label-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.label-badge::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: pulsate 2s ease-in-out infinite;
}

@keyframes pulsate {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Trainers Grid */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Trainer Profile Card */
.trainer-profile-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
}

.trainer-profile-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

/* Profile Photo Wrapper */
.profile-photo-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trainer-profile-card:hover .profile-photo {
    transform: scale(1.1);
}

/* Sport Badge */
.sport-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sport-badge i {
    font-size: 1rem;
}

/* Social Media Overlay */
.social-media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 25px;
    display: flex;
    gap: 12px;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.trainer-profile-card:hover .social-media-overlay {
    transform: translateY(0);
}

.social-icon-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icon-link:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

/* Trainer Details */
.trainer-details {
    padding: 10px;
}

.trainer-full-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.trainer-position {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.trainer-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

/* Performance Metrics */
.performance-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 10px;
    padding: 5px;
    background: #f9fafb;
    border-radius: 15px;
}

.metric-box {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.metric-description {
    display: block;
    font-size: 10px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Expertise Tags */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.certification-tag {
    background: #000;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.certification-tag:hover {
    background: var(--primary);
    color: #000;
}

/* Action Call Area */
.action-call-area {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.action-icon-box {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: floatAnimation 3s ease-in-out infinite;
}

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

.action-icon-box i {
    font-size: 2rem;
    color: #000;
}

.action-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.action-description {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.action-buttons-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-button {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.primary-action {
    background: var(--primary);
    color: #000;
}

.primary-action:hover {
    background: #bef264;
    transform: translateY(-3px);
}

.primary-action i {
    transition: transform 0.3s ease;
}

.primary-action:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-showcase-area {
        padding: 60px 15px;
    }

    .trainers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .profile-photo-wrapper {
        height: 300px;
    }

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

    .action-heading {
        font-size: 1.8rem;
    }

    .action-call-area {
        padding: 40px 25px;
    }

    .action-buttons-group {
        flex-direction: column;
        align-items: center;
    }

    .action-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .trainer-full-name {
        font-size: 1.3rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }

    .action-heading {
        font-size: 1.5rem;
    }

    .trainer-details {
        padding: 20px;
    }
}

/*------------------- page hero-----------------------*/


/* Dark overlay (optional but recommended) */
.main-slider__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 44px;
}


/* Text container */
.hero-text {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    color: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center */
    align-items: center;     /* horizontal center */

    text-align: center;
    font-style: italic;
}


.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    margin-top: 10px;
}


