/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background-color: #000;
    height: 100px;
    position: relative;
    z-index: 100;
}

.logo img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%;
    clip-path: circle(46%);
    /* Slightly crops the edge to hide white border */
    transform: scale(1.1);
    /* Zooms in to keep the logo content large */
    transition: all 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.3));
}

.logo img:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links a:hover {
    color: #ff69b4;
    transform: translateY(-2px);
}

.nav-icon {
    font-size: 14px;
    width: 0;
    opacity: 0;
    display: inline-block;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(0);
    color: #ff69b4;
    margin-right: 0;
}

.nav-links a:hover .nav-icon {
    width: 18px;
    opacity: 1;
    transform: scale(1.2);
    margin-right: 8px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff69b4;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.social-icons a {
    font-size: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 8px currentColor);
}

.fab.fa-instagram {
    color: #E1306C;
    /* Instagram gradient approx fallback */
}

.fab.fa-whatsapp {
    color: #25D366;
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 100px);
    /* Fill remaining height */
    min-height: 600px;
    /* Background image removed in favor of slider */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 50px;
}

/* Hero Static Background */
.hero-static-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/tridev home page.png');
    background-size: cover;
    background-position: center top;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-static-bg {
        background-size: cover; /* Keep cover for background to fill space */
        background-position: center;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    width: 100%;
    flex-grow: 1;
}

/* Left Content */
.left-content {
    max-width: 50%;
}

.left-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
}

.achievements {
    margin-bottom: 30px;
}

.achievement-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.achievement-icon {
    color: #4CAF50;
    /* Green color from design */
    font-size: 1.5rem;
    margin-right: 15px;
}

.btn-primary {
    display: inline-block;
    background-color: #34495e;
    /* Dark slate blue/grey */
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2c3e50;
}

/* Right Content - Image Frame */
.right-content {
    position: relative;
    margin-top: 50px;
    /* Slight offset to match design overlay feel */
}

.image-frame {
    background: #ffffff00;
    padding: 0;
    /* No padding - image fills frame completely */
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(240, 239, 239, 0.488);
    width: 310px;
    /* Slightly larger on desktop */
    height: 420px;
    /* Fixed height for proper visibility */
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(247, 245, 245, 0.93);
}

@media (max-width: 768px) {
    .image-frame {
        width: 280px;
        height: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .image-frame {
        width: 250px;
        height: 340px;
        margin: 0 auto;
    }
}

.placeholder-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
}

.placeholder-image .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #000;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.placeholder-image .slide.active {
    opacity: 1;
}

/* Hero Footer */
.hero-footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 30px;
    background: linear-gradient(to top, #000 0%, transparent 100%);
    /* Fade to black at bottom */
    width: 100%;
}

.hero-footer h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.hero-footer p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #ccc;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        height: auto;
        min-height: calc(100vh - 100px);
        padding-bottom: 50px;
    }

    .hero-content {
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        padding-top: 60px;
    }

    .left-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .achievement-item {
        justify-content: center;
    }

    .right-content {
        margin-top: 0;
    }

    .left-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-top: 40px;
    }

    .left-content h1 {
        font-size: 2.2rem;
        margin-top: 20px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-footer h2 {
        font-size: 1.8rem;
    }

    .hero-footer p {
        font-size: 1.2rem;
    }
}

.enroll-section {
    position: relative;
    height: 500px;
    background-image: url('assets/enroll-bg.png');
    background-size: 120% 100%;
    background-position: left center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-bottom: 50px;
}

.enroll-content {
    max-width: 600px;
}

.enroll-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.enroll-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
    font-weight: 300;
}

.btn-light {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 12px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-light:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

/* Responsive Enroll */
@media (max-width: 768px) {
    .enroll-section {
        justify-content: center;
        text-align: center;
        height: 350px;
    }

    .enroll-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .enroll-section {
        height: 300px;
    }

    .enroll-content h2 {
        font-size: 1.8rem;
    }

    .enroll-content p {
        font-size: 1rem;
    }
}

/* About Program Section */
.about-program {
    position: relative;
    height: 500px;
    background-image: url('assets/about-program-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    /* Vertically center content */
    padding: 0 5%;
    background-color: #000;
    /* Fallback */
}

/* Dark overlay to ensure text readability */
.about-program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.program-content-overlay {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

.program-content-overlay h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.program-content-overlay .highlight-text {
    color: #ffffff;
    /* Hot Pink */
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.program-content-overlay p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.program-content-overlay .program-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    /* Handle mobile */
}

/* Button Styling for About Program */
.btn-whatsapp {
    background-color: #ffffff;
    color: #1f1b1b;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #45be6f;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(158, 255, 194, 0.4);
}

.btn-join {
    background-color: #ff69b4;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
    text-transform: uppercase;
}

.btn-join:hover {
    background-color: #ff4d94;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

/* Ensure these are treated as buttons in the about section */
.about-program .btn-whatsapp,
.about-program .btn-join {
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive About */
@media (max-width: 768px) {
    .about-program {
        justify-content: center;
        text-align: center;
        height: auto;
        padding: 60px 5%;
    }

    .program-content-overlay h2 {
        font-size: 2.5rem;
    }

    .program-content-overlay .program-actions {
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .program-content-overlay h2 {
        font-size: 2rem;
    }

    .program-content-overlay .highlight-text {
        font-size: 1.2rem;
    }

    .program-content-overlay p {
        font-size: 1rem;
    }

    .btn-whatsapp, .btn-join {
        width: 100%;
        min-width: unset;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 50px 0 30px;
    color: #fff;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin: 30px 0 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* Program Details Section */
.program-details-section {
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000;
    /* Ensure continuity */
}

.details-card {
    background-color: #2c2f36;
    /* Dark grey/blue shade */
    border: 1px solid #ff69b4;
    /* Pink border accent */
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.2);
}

.details-header {
    color: #ff69b4;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.detail-item i {
    font-size: 1.5rem;
    color: #ff69b4;
}

.detail-item .label {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}

.detail-item .value {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
}

/* Supplies Section (Tilt Effect) */
.supplies-section {
    padding: 50px 5%;
    text-align: center;
    background-color: #000;
}

.supplies-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    perspective: 1000px;
    /* Essential for 3D effect */
}

.tilt-card {
    background-color: #2c2f36;
    border-radius: 15px;
    padding: 15px;
    width: 300px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #3a3f4b;
}

.card-image-box {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    /* Ensure image corners are clipped */
    transform: translateZ(20px);
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-label {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    transform: translateZ(20px);
    /* Brings text forward */
}

.card-label i {
    color: #ff69b4;
}

@media (max-width: 768px) {
    .supplies-container {
        gap: 20px;
    }

    .tilt-card {
        width: 100%;
        max-width: 300px;
    }
}

.supplies-footer {
    margin-top: 40px;
    color: #aaa;
    font-size: 1rem;
}

/* Missed Class Section */
.missed-class-section {
    padding: 50px 5%;
    display: flex;
    justify-content: center;
    background-color: #000;
    margin-bottom: 50px;
}

.missed-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    max-width: 900px;
    transition: transform 0.3s ease;
}

.missed-card-link:hover {
    transform: scale(1.02);
}

.missed-card {
    background: linear-gradient(135deg, #1e2129 0%, #16181d 100%);
    border: 1px solid #4a90e2;
    /* Blue border */
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    position: relative;
}

.play-icon-wrapper {
    font-size: 2rem;
    color: #fff;
    background-color: #4a90e2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

.missed-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.missed-card p {
    color: #ccc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .missed-card {
        padding: 30px 20px;
    }

    .missed-card h2 {
        font-size: 1.5rem;
    }

    .missed-card p {
        font-size: 1rem;
    }
}

/* Responsive details */
@media (max-width: 600px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews Section */
.reviews-section {
    background-color: #000;
    padding: 50px 0;
    text-align: center;
}

.reviews-container {
    display: flex;
    overflow-x: auto;
    gap: 40px;
    padding: 20px 5%;
    margin-bottom: 30px;
    scroll-behavior: smooth;
    /* Hide scrollbar for Chrome, Safari and Opera */
    -webkit-overflow-scrolling: touch;
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.reviews-container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.review-card {
    height: 400px;
    /* Allow width to adjust based on image */
    width: auto;
    background-color: #2c2f36;
    border-radius: 15px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #444;
    overflow: hidden;
}

.review-card img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .review-card {
        height: 300px;
    }
}

.btn-view-more {
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-view-more:hover {
    background-color: transparent;
    color: #fff;
}

/* How to Join Section */
.how-to-join-section {
    background-color: #4a4a4a;
    /* Dark Grey background matches image */
    padding: 50px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.join-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.join-card {
    position: relative;
    width: 350px;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    /* Pink border on hover logic */
    border: 2px solid transparent;
}

.join-card:hover {
    border-color: #ff69b4;
    /* Highlight Pink */
}

@media (max-width: 768px) {
    .join-card {
        width: 100%;
        max-width: 350px;
    }
}

.join-card-bg {
    width: 100%;
    height: 100%;
}

.join-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.join-card:hover .join-card-bg img {
    transform: scale(1.1);
    /* Subtle zoom on hover */
}

.join-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, transparent 100%);
    color: #fff;
    pointer-events: none;
}

.join-card-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.small-text {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 2px;
}

.highlight-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.join-notification {
    background-color: #2c2f40;
    /* Dark blue/grey box */
    border: 1px solid #4a5060;
    padding: 15px 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #ccc;
    font-size: 0.95rem;
    max-width: 800px;
    width: 100%;
}

.join-notification i {
    color: #ff69b4;
    font-size: 1.2rem;
}

/* Who Is This Batch For Section */
.who-for-section {
    background-color: #050a14;
    /* Very dark blue/black */
    padding: 50px 5%;
}

.who-for-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.who-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.who-item {
    background-color: #3a4050;
    /* Item slate background */
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 1rem;
    border: 1px solid #4a5060;
}

.who-item i {
    color: #25D366;
    /* WhatsApp Green for checkmark approximation */
    font-size: 1.5rem;
}

.who-image {
    flex: 1;
    height: 340px;
}

.who-img-box {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.who-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-img-square {
    width: 100%;
    height: 100%;
    background-color: #222;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555;
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .who-for-container {
        flex-direction: column;
    }

    .who-for-section h2 {
        text-align: center !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .who-item {
        padding: 15px;
        font-size: 0.9rem;
        gap: 10px;
    }

    .who-image {
        height: 250px;
    }
}

/* Transformation Section */
.transformation-section {
    background-color: #2b2b2b;
    /* Dark grey bg */
    padding: 50px 5%;
    color: #fff;
}

.trans-container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    /* Stretch to match height */
}

.trans-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trans-slider {
    position: relative;
    width: 100%;
    flex-grow: 1;
    /* Fill remaining space */
    min-height: 500px;
    /* Minimum height */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.trans-slider .trans-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.trans-slider .trans-slide.active {
    opacity: 1;
}

.trans-right {
    flex: 1.2;
}

.trans-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.flame-icon {
    color: #ff69b4;
    font-size: 1.5rem;
    margin-left: 10px;
}

.trans-subtext {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 30px;
}

.included-card {
    background-color: #383d4a;
    /* Card bg */
    border: 1px solid #5a6070;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.included-card h3 {
    color: #ff69b4;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.included-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.included-item i {
    color: #25D366;
    /* Green icon */
    font-size: 1.3rem;
    margin-top: 3px;
}

.inc-title {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.inc-desc {
    display: block;
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 3px;
}


.trans-header-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.trans-header-row h2 {
    margin: 0;
    line-height: 1.2;
}

.left-price-tag {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4CAF50;
    /* Green color */
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
}

.trans-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.footer-item {
    display: flex;
    flex-direction: column;
}

.footer-item.full-width {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.equipment-label {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 5px;
}

.equipment-val {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* Remove old footer styles if no longer needed or keep generic classes */

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #25D366;
    /* Green price */
}

.btn-transform {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-transform:hover {
    background-color: #25D366;
    /* Whatsapp green hover */
    border-color: #25D366;
    color: #000;
}

@media (max-width: 900px) {
    .trans-container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .trans-right h2 {
        font-size: 1.8rem;
    }

    .included-card {
        padding: 20px;
    }

    .left-price-tag {
        font-size: 1.8rem;
    }

    /* Adjust transformation slider frame size for mobile */
    .trans-slider {
        min-height: 450px;
        max-width: 100%;
        border-radius: 15px;
    }

    .trans-slider .trans-slide {
        object-fit: contain;
        background-color: #000;
    }
}

/* Nutrition Section */
.nutrition-section {
    background-color: #000;
    padding: 50px 5%;
    color: #fff;
    text-align: center;
}

.section-subtext {
    font-size: 1.2rem;
    color: #ff69b4;
    margin-bottom: 50px;
    margin-top: -20px;
}

.nutri-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.reverse-row {
    flex-direction: row-reverse;
}

.nutri-image,
.nutri-content {
    flex: 1;
}

.placeholder-img-rect {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

.placeholder-img-rect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nutri-card {
    background-color: #383d4a;
    /* Card bg matching screenshot */
    border: 1px solid #5a6070;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
}

.row-3 .nutri-card {
    padding: 50px 50px;
    /* Increased horizontal padding */
}

.nutri-card h3 {
    color: #ff69b4;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.card-intro {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.nutri-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nutri-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.nutri-item i {
    color: #25D366;
    font-size: 1.2rem;
}

.nutri-item .error-icon {
    color: #ff4d4d;
    /* Red for X icon */
}

.card-footer-text {
    margin-top: 20px;
    font-style: italic;
    color: #aaa;
    font-size: 0.9rem;
}

/* Nutrition Footer - Who Is This For */
.nutri-footer-section {
    text-align: left;
    max-width: 1200px;
    margin: 50px auto 0;
}

.nutri-footer-section h3 {
    color: #ff69b4;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.nutri-who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.nutri-who-item {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 1.1rem;
}

.nutri-who-item i {
    color: #ff69b4;
    font-size: 1.3rem;
    width: 30px;
    /* Fixed width for alignment */
    text-align: center;
}

@media (max-width: 900px) {
    .nutri-row {
        flex-direction: column !important;
    }

    .nutri-who-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nutri-card {
        padding: 20px;
    }

    .nutri-card h3 {
        font-size: 1.2rem;
    }

    .placeholder-img-rect {
        height: 200px;
    }
}

/* Pricing Section */
.pricing-section {
    background-color: #2b2b2b;
    /* Dark bg */
    padding: 50px 5%;
    text-align: center;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricing-card {
    background-color: #323846;
    /* Blue-grey card bg */
    border: 1px solid #4a5060;
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

.recommended-card {
    border: 2px solid #ff69b4;
    /* Pink border */
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.2);
}

.badge-recommended {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #d4af37;
    /* Gold/Yellow badge */
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
}

.pricing-sub {
    text-align: center;
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 25px;
}

.pricing-img-placeholder {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
}

.pricing-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pricing-includes h4 {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.pricing-includes ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-includes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ddd;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.pricing-includes li i {
    color: #25D366;
    /* Green check */
    margin-top: 4px;
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        max-width: 350px;
    }
}

.btn-enroll {
    margin-top: auto;
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 1px solid #aaa;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-enroll:hover {
    background-color: #fff;
    color: #000;
}

/* Trainer Bio Section */
.trainer-section {
    background-color: #050a14;
    /* Very dark/black bg */
    padding: 80px 5%;
    color: #fff;
}

.trainer-row {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.trainer-row:last-child {
    margin-bottom: 0;
}

.trainer-content {
    flex: 1.2;
}

.trainer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    /* Using Poppins for modern look here */
    font-weight: 700;
}

.trainer-content p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.6;
}

.trainer-content strong {
    color: #fff;
    font-weight: 700;
}

.trainer-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bio-img-1,
.bio-img-2,
.bio-img-3 {
    width: 100%;
    max-width: 350px;
    height: 320px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bio-img-1 img,
.bio-img-2 img,
.bio-img-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

@media (max-width: 900px) {
    .trainer-row {
        flex-direction: column !important;
        gap: 30px;
        text-align: center;
        margin-bottom: 60px;
    }

    .trainer-content h2 {
        font-size: 2rem;
    }

    .bio-img-1,
    .bio-img-2,
    .bio-img-3 {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .trainer-content h2 {
        font-size: 1.8rem;
    }

    .trainer-content p {
        font-size: 1rem;
    }

    .bio-img-1, .bio-img-2, .bio-img-3 {
        height: 250px;
    }
}

/* Footer Section */
.site-footer {
    background-color: #000;
    padding: 60px 5% 20px;
    border-top: 1px solid #333;
    color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 50px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
    clip-path: circle(46%);
    transform: scale(1.1);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.3));
}

.footer-desc {
    color: #aaa;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    /* Grey text */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff69b4;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 0.95rem;
}

.contact-list i {
    color: #fff;
    /* White Icons */
    width: 20px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto;
    }

    .contact-list li {
        justify-content: center;
    }
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100px;
        left: 0;
        background-color: #000;
        padding: 20px;
        z-index: 99;
        text-align: center;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .social-icons {
        margin-left: 0;
        justify-content: center;
        margin-top: 10px;
    }
}