
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* TRANSPARENT HEADER */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: absolute; 
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent; 
    transition: 0.3s;
}

.main-header.scrolled {
    background-color: rgba(0,0,0,0.7); 
}

.logo-section img {
    width: 150px;
}

.navbar a {
    margin: 0 20px;
    color: #fff; 
    font-weight: 500;
    transition: 0.3s;
}

.navbar a:hover {
    color: #ff4d6d;
}

.navbar .try-btn {
    padding: 8px 20px;
    background-color: #ff4d6d;
    color: #fff;
    border-radius: 25px;
    transition: all 0.3s;
}

.navbar .try-btn:hover {
    background-color: #e03e5f;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 75vh; 
    background: url('../images/ambassador.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-section .hero-content h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}

.hero-section .hero-content p {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero-section .hero-content .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff4d6d;
    color: #fff;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s;
}

.hero-section .hero-content .btn:hover {
    background-color: #e03e5f;
}

/* ABOUT SECTION */
.about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.about-section .ambassadors {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.about-section .ambassadors img {
    width: 250px;
    border-radius: 10px;
}

.about-section .ambassadors div h3 {
    margin: 0;
    color: #ff4d6d;
}

.about-section .ambassadors div p {
    margin-top: 5px;
}

/* FEATURES */
.features-section {
    padding: 60px 20px;
    background-color: #fff;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.feature-box {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    width: 250px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box img {
    width: 100%;
    height: 200px;          
    object-fit: cover;      
    border-radius: 10px;
    margin-bottom: 15px;
}

.feature-box h3 {
    color: #ff4d6d;
    margin-bottom: 10px;
}

/* FACULTY */
/* ===== FACULTY SECTION ===== */

.faculty-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.faculty-wrapper {
    display: flex;
    align-items: center;   /* SAME ALIGNMENT */
    justify-content: center;
    gap: 70px;
}

.faculty-image img {
    width: 480px;   /* BIGGER IMAGE */
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.faculty-content {
    max-width: 550px;
}

.faculty-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #222;
}

.faculty-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.faculty-points {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.faculty-points li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-weight: 500;
}

.faculty-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #444;
}

.faculty-tagline {
    font-weight: 600;
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .faculty-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .faculty-image img {
        width: 100%;
        max-width: 400px;
    }
}


/* ============================= */
/* REMOVE DEFAULT BODY GAP */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}


/* ============================= */
/* CTA SECTION */
/* ============================= */

.cta-section {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background: url('../images/cta-bg.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0;
}

.cta-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.cta-content {
    max-width:50%;
}

.cta-content h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Premium Button Design */
.cta-content .btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #ff4d6d, #ff1e4d);
    color: #fff;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 77, 109, 0.4);
}

.cta-content .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 77, 109, 0.6);
}


/* ============================= */
/* FOOTER (CONNECTED TO CTA) */
/* ============================= */

.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin: 0;
}

.footer p {
    margin: 0;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

    .hero-section {
        height: 60vh;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
    }

    .feature-box {
        width: 80%;
    }

    .about-section .ambassadors {
        flex-direction: column;
    }

    .about-section .ambassadors img {
        width: 80%;
    }

    .cta-section {
        min-height: 50vh;
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}


/* ================= FOOTER ================= */

.footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    width: 100%;
}

.footer p {
    margin: 0;
    font-size: 14px;
}



/* ============================= */
/* GENERAL BODY */
/* ============================= */

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fcfcff;
}


/* ============================= */
/* HERO SECTION (GREY HEADER) */
/* ============================= */

.membership-hero {
    /*width: 100%;*/
    /*height: 320px;*/
    /*background: #6d6d6d;   Grey like your screenshot */
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: center;*/
    /*text-align: center;*/
    /*color: #fff;*/
     position: relative;
    width: 100%;
    height: 75vh; 
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
               url('../images/gym5.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.membership-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 600;
}

.membership-hero p {
    font-size: 20px;
    color: #f2f2f2;
}


/* ============================= */
/* MEMBERSHIP SECTION */
/* ============================= */

.membership-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff, #f5f7fa);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}


/* MAIN CONTAINER */
.membership-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}


/* LEFT CONTENT */
.membership-content {
    flex: 1;
}

.membership-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff7a18, #ffc371);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.membership-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.features div {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.contact {
    margin-top: 25px;
    font-size: 17px;
    color: #444;
}


/* ============================= */
/* FORM BOX */
/* ============================= */

.membership-form {
    flex: 1;
    padding: 45px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.membership-form:hover {
    transform: translateY(-4px);
}

.membership-form h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 28px;
    color: #444;
}


/* ============================= */
/* INPUT GROUP */
/* ============================= */

.input-group {
    position: relative;
    margin-bottom: 35px;
}

.input-group input {
    width: 100%;
    padding: 14px 10px;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: #333;
}

.input-group input:focus {
    border-bottom: 2px solid #ff7a18;
}

.input-group label {
    position: absolute;
    left: 10px;
    top: 14px;
    color: #999;
    transition: 0.3s;
    pointer-events: none;
}

/* FLOATING LABEL */
.input-group input:focus + label,
.input-group input:valid + label {
    top: -10px;
    font-size: 13px;
    color: #ff7a18;
}


/* ============================= */
/* BUTTON */
/* ============================= */

.join-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(45deg, #ff7a18, #ffc371);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.4s ease;
}

.join-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 20px rgba(255, 122, 24, 0.25);
}


/* ============================= */
/* FOOTER */
/* ============================= */

.footer {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    color: #888;
    font-size: 14px;
    border-top: 1px solid #f0f0f0;
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width: 900px) {

    .membership-container {
        flex-direction: column;
        text-align: center;
    }

    .membership-content h1 {
        font-size: 36px;
    }

    .membership-form {
        width: 100%;
    }

    .membership-hero {
        height: 260px;
    }

    .membership-hero h1 {
        font-size: 36px;
    }

    .membership-hero p {
        font-size: 16px;
    }
}


/* INPUT GROUP */
.input-group {
    position: relative;
    margin-bottom: 35px;
}

.input-group input {
    width: 100%;
    padding: 14px 10px;
    border: none;
    border-bottom: 2px solid #ddd;  /* lighter border */
    background: transparent;
    font-size: 16px;
    outline: none;
    color: #333;
}

.input-group input:focus {
    border-bottom: 2px solid #ff7a18;
}

.input-group label {
    position: absolute;
    left: 10px;
    top: 14px;
    color: #999;
    transition: 0.3s;
    pointer-events: none;
}

/* FLOATING LABEL */
.input-group input:focus + label,
.input-group input:valid + label {
    top: -10px;
    font-size: 13px;
    color: #ff7a18;
}

/* BUTTON */
.join-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(45deg, #ff7a18, #ffc371);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.4s ease;
}

.join-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 20px rgba(255, 122, 24, 0.25);
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    color: #888;
    font-size: 14px;
    border-top: 1px solid #f0f0f0;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .membership-container {
        flex-direction: column;
        text-align: center;
    }

    .membership-content h1 {
        font-size: 36px;
    }

    .membership-form {
        width: 100%;
    }
}



/* ===============================
   CONTACT PAGE SECTION
=================================*/
/* HERO SECTION */
.contact-hero {
    background: url('../images/gym-bg.jpg') no-repeat center center/cover;
    height: 300px;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.hero-overlay h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-size: 18px;
}

/* MAIN CONTACT SECTION */
.contact-main {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 10%;
    gap: 40px;
    background: #f7f7f7;
}

/* LEFT SIDE */
.contact-details {
    flex: 1;
}

.contact-details h2 {
    margin-bottom: 20px;
    color: #ff4d6d;
}

.info-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-box i {
    font-size: 20px;
    color: #ff4d6d;
    margin-right: 10px;
}

.social-icons a {
    margin-right: 15px;
    font-size: 20px;
    color: #333;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff4d6d;
}

/* FORM SECTION */
.contact-form-box {
    flex: 1;
    background: rgba(255,255,255,0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-form-box h2 {
    margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #ff4d6d;
}

.contact-form-box button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #ff4d6d;
    color: #fff;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-box button:hover {
    background: #e63956;
}

/* SUCCESS & ERROR */
.success-msg {
    background: #d4edda;
    padding: 10px;
    color: #155724;
    margin-bottom: 15px;
    border-radius: 6px;
}

.error-msg {
    background: #f8d7da;
    padding: 10px;
    color: #721c24;
    margin-bottom: 15px;
    border-radius: 6px;
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:768px){
    .contact-main {
        flex-direction: column;
    }
}




/* HERO */
.services-hero-unique{
    height:80vh;
    background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
               url('../images/services-bg.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.hero-text h1{
    font-size:60px;
    letter-spacing:2px;
}

.hero-text p{
    font-size:22px;
    margin-top:15px;
    color:#ff6a00;
}

/* SERVICE ROW */
.service-row{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 10%;
    background:#111;
    color:#fff;
    gap:50px;
}

.service-row:nth-child(even){
    background:#1a1a1a;
}

.service-row.reverse{
    flex-direction:row-reverse;
}

.service-img img{
    width:450px;
    border-radius:15px;
    transition:0.4s;
}

.service-img img:hover{
    transform:scale(1.05);
}

.service-content{
    max-width:500px;
}

.service-content h2{
    font-size:36px;
    margin-bottom:20px;
    color:#ff6a00;
}

.service-content p{
    line-height:1.8;
    margin-bottom:25px;
}

.service-btn{
    padding:12px 30px;
    background:linear-gradient(45deg,#ff6a00,#ff4500);
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:0.3s;
}

.service-btn:hover{
    opacity:0.8;
}

/* FOOTER */
.footer{
    background:#000;
    color:#fff;
    text-align:center;
    padding:20px;
}

/* RESPONSIVE */
@media(max-width:900px){
    .service-row{
        flex-direction:column;
        text-align:center;
    }

    .service-row.reverse{
        flex-direction:column;
    }

    .service-img img{
        width:100%;
    }

    .hero-text h1{
        font-size:38px;
    }
    .hero-section .hero-content h1 {
    
    margin-top: 41%;
}
}

/* HERO SECTION */
.gallery-hero {
    /*height: 60vh;*/
    /*background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*text-align: center;*/
    /*color: white;*/
    position: relative;
    width: 100%;
    height: 75vh; 
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
               url('../images/gym1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 45px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
}

/* SLIDESHOW */
.slideshow-section {
    padding: 50px 10%;
    background: #111;
}

.slideshow-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* GALLERY GRID */
.gallery-section {
    padding: 60px 10%;
    background: #000;
    text-align: center;
    color: white;
}

.gallery-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-card {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    transition: 0.4s;
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover {
    box-shadow: 0 12px 30px rgba(255,0,0,0.5);
}

/* FOOTER */
.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}


/* POPUP OVERLAY */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* ===== PREMIUM DARK GLASS POPUP ===== */

.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-box {
    width: 80%;
    padding: 40px;
    border-radius: 20px;
    background: rgba(20, 20, 20, 0.9);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.3);
    position: relative;
    animation: popupFade 0.4s ease;
    color: #fff;
}

.popup-box h2 {
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 26px;
    cursor: pointer;
    color: #ff4d4d;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ===== FLOATING INPUT STYLE ===== */

.input-group {
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 12px 10px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #555;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.input-group label {
    position: absolute;
    left: 10px;
    top: 12px;
    color: #aaa;
    font-size: 14px;
    transition: 0.3s;
    pointer-events: none;
}

/* Focus Animation */
.input-group input:focus {
    border-bottom: 2px solid #ff0000;
}

.input-group input:focus + label,
.input-group input:valid + label {
    top: -10px;
    font-size: 12px;
    color: #ff4d4d;
}

/* ===== PREMIUM BUTTON ===== */

.premium-submit {
    margin-top: 10px;
    padding: 14px;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    background: linear-gradient(135deg, #ff0000, #ff4d4d);
    color: white;
    letter-spacing: 1px;
    transition: 0.4s;
    box-shadow: 0 0 20px rgba(255,0,0,0.5);
}

.premium-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(255,0,0,0.8);
}

.premium-submit:active {
    transform: scale(0.95);
}

/* Animation */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.cta-footer-image {
    max-width: 50%;
}

.cta-footer-image img {
    width: 100%;
    height: 100%;
}


.hero-content h1{
    font-size:42px;
    color:#f6f3f3;
}

.hero-content p{
    margin-top:15px;
    color:#faf9f9;
}
