* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0b0f0c;
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #a6ff00;
}

.logo span {
    color: white;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.navbar li {
    cursor: pointer;
    transition: 0.3s;
}

.navbar li:hover {
    color: #a6ff00;
}

/* HERO */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #1b2b12, #0b0f0c);
    animation: fadeIn 1.5s ease;
}

.hero-text {
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
}

.hero span {
    color: #a6ff00;
}

.hero p {
    margin: 15px 0;
    opacity: 0.8;
}

.hero button {
    padding: 14px 40px;
    background: #a6ff00;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.hero button:hover {
    transform: scale(1.1);
}

/* SECTIONS */
section {
    padding: 80px 60px;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* INFO BOX */
.info-box, .timing-box {
    background: #111;
    max-width: 500px;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #1f1f1f;
}

/* PROGRAMS */
.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.card {
    background: #111;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: 0.4s;
    border: 1px solid #1f1f1f;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #a6ff00;
}

/* TRAINER */
.trainer-card {
    background: #111;
    width: 280px;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #a6ff00;
}

/* PRICING */
.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.price-card {
    background: #111;
    padding: 30px;
    width: 260px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #1f1f1f;
}

.price {
    font-size: 26px;
    color: #a6ff00;
    margin-top: 10px;
}

.highlight {
    border-color: #3f3c3c;
    transform: scale(1.05);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: black;
    opacity: 0.7;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trainer-number {
    margin-top: 10px;
    color: #a6ff00;
    font-weight: bold;
}

.trainer-desc {
    margin: 15px 0;
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
}

/* CONTACT PAGE */
.contact {
    padding: 100px 60px;
    text-align: center;
}

.contact-sub {
    opacity: 0.8;
    margin-bottom: 50px;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    background: #111;
    width: 320px;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #1f1f1f;
    transition: 0.3s;
}

.contact-card:hover {
    border-color: #a6ff00;
    transform: translateY(-8px);
}

.contact-name {
    margin: 10px 0 20px;
    font-size: 18px;
    opacity: 0.9;
}

.contact-number {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 30px;
    background: #a6ff00;
    color: black;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.contact-number:hover {
    transform: scale(1.08);
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* SCROLL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* PHOTO CONTACT CARD */
.photo-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    height: 380px;
}

/* IMAGE */
.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.2)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    text-align: center;
}

/* TEXT ON PHOTO */
.photo-overlay h3 {
    color: #a6ff00;
    margin-bottom: 5px;
}

.photo-overlay .contact-name {
    font-size: 20px;
    margin-bottom: 15px;
}

/* BUTTON ON PHOTO */
.photo-overlay .contact-number {
    background: #a6ff00;
    color: black;
    padding: 12px 22px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.photo-overlay .contact-number:hover {
    transform: scale(1.08);
}

.join-btn {
    display: inline-block;
    background: #a6ff00;
    color: black;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.join-btn:hover {
    transform: scale(1.1);
}

/* NAVBAR LINKS AS BUTTONS */
.navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.navbar li a {
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    background: #111;           /* dark background */
    color: #a6ff00;             /* neon green text */
    font-weight: bold;
    transition: 0.3s;
}

/* HOVER EFFECT */
.navbar li a:hover {
    background: #a6ff00;
    color: black;
    transform: scale(1.05);
}

/* ACTIVE PAGE */
.navbar li a.active {
    background: #a6ff00;
    color: black;
}

/* TIMING BOX STYLING */
.timing-box {
    background: #111;                /* dark card background */
    border-radius: 20px;             /* rounded corners */
    padding: 40px 30px;              /* good spacing */
    max-width: 500px;                /* moderate width */
    margin: 30px auto;               /* center on page */
    text-align: center;
    border: 2px solid #1f1f1f;      /* subtle dark border */
    box-shadow: 0 0 15px rgba(166, 255, 0, 0.2); /* neon glow effect */
    transition: transform 0.3s, box-shadow 0.3s;
}

/* HOVER EFFECT */
.timing-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(166, 255, 0, 0.5); /* stronger glow */
}

/* TEXT */
.timing-box p {
    color: #a6ff00;       /* neon green text */
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

/* INFO BOX STYLING */
.info-box {
    background: #111;                /* dark card background */
    border-radius: 20px;             /* rounded corners */
    padding: 40px 30px;              /* good spacing */
    max-width: 500px;                /* moderate width */
    margin: 30px auto;               /* center on page */
    text-align: center;
    border: 2px solid #1f1f1f;      /* subtle dark border */
    box-shadow: 0 0 15px rgba(166, 255, 0, 0.2); /* neon glow effect */
    transition: transform 0.3s, box-shadow 0.3s;
}

/* HOVER EFFECT */
.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(166, 255, 0, 0.5); /* stronger glow */
}

/* TEXT */
.info-box p {
    color: #a6ff00;       /* neon green text */
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}


/* trainercard STYLING */
.trainer-card {
    background: #111;                /* dark card background */
    border-radius: 20px;             /* rounded corners */
    padding: 40px 30px;              /* good spacing */
    max-width: 500px;                /* moderate width */
    margin: 30px auto;               /* center on page */
    text-align: center;
    border: 2px solid #1f1f1f;      /* subtle dark border */
    box-shadow: 0 0 15px rgba(166, 255, 0, 0.2); /* neon glow effect */
    transition: transform 0.3s, box-shadow 0.3s;
}

/* HOVER EFFECT */
.trainer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(166, 255, 0, 0.5); /* stronger glow */
}

/* TEXT */
.trainer-card p {
    color: #a6ff00;       /* neon green text */
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

/* MOBILE STYLING */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        gap: 15px;
        padding: 0;
    }

    .navbar li a {
        padding: 12px 25px; /* slightly bigger touch area */
    }

    .program-cards,
    .pricing-cards,
    .contact-cards {
        flex-direction: column;
        gap: 20px;
    }

    .trainer-card,
    .info-box,
    .timing-box,
    .contact-card,
    .photo-card {
        width: 95%; /* full width on mobile */
        padding: 30px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 14px;
    }

    .join-btn {
        padding: 12px 35px;
        font-size: 14px;
    }
}

.map-box{
  flex:1;
  max-width:520px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 0 35px rgba(0,0,0,0.6);
}

.map-box iframe{
  width:100%;
  height:100%;
  min-height:350px;
  border:none;
}


body::after {
  content: "Designedby Rakesh";
  position: fixed;
  bottom: 8px;
  right: 12px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 9999;
  user-select: none;
}




