.description-collapse {
    max-height: 70px;
    min-height: 70px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease-in-out;
}
.description-expanded {
    max-height: none;
}
.read-more-btn {
    display: inline-block;
    color: #000;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}


.price_section {
    max-height: 100px;
    min-height: 100px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease-in-out;
}


/* Start here............................ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}





.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Push button to bottom */
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    transform: scale(1.05);
    border: 3px solid #ff6b6b;
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    transform: scaleX(1);
}

.pricing-section {
  display: flex;
  justify-content: center;
  align-items: stretch; /* Make all cards equal height */
  gap: 20px; /* space between cards */
  flex-wrap: wrap;
}


.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.plan-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d3748;
}

.plan-duration {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.price-display {
    margin: 30px 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2d3748;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    color: #718096;
    vertical-align: top;
}

.price-period {
    color: #718096;
    font-size: 1.1rem;
    margin-left: 5px;
}

.features-list {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 30px;
    color: #4a5568;
    font-weight: 500;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #bfa046, #FFD700);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.pricing-card.featured .cta-button {
    
    background: linear-gradient(90deg, #bfa046, #FFD700);
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .price-amount {
        font-size: 2.8rem;
    }
}

.slider-content h2 {
    letter-spacing: 1.0px;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
}


.slider-content h2 strong {
  font-weight: 900;
  color: #FFD700; /* gold highlight */
}

.slider-content p {
  font-weight: bold;        /* ✅ Much better for paragraphs — 3rem is too large */
  color: #461212;
  font-weight: 800;
 
}


.s-about-img img {
    display: block;
    width: 110%;
    max-width: none;
    height: auto;
    margin-top: -20%;
    margin-bottom: 4%;
    object-fit: cover;
    margin-left: -8%;
}

/* .about-area .img-about {
    margin-top: -50px;
    margin-bottom: -100px;
} */


/* Offer Section.................. */

.section-title h2 {
    color: gold;
}

.section-title h5 {
    color: black;
}

.section-title .offre {
    color: #fff;              /* Bright white text */
    font-weight: 700;         /* Makes it bold and stand out */
         
}
.gold-text ul.green li {
    color: white;
    font-size: 25px;
     font-weight: 700;
    font-family: "Font Awesome 5 Pro";
    
}

.offer-area {
    position: relative;
    background-image: url("../img/gym pulse/3.jpg"); /* update path as needed */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/* Dark overlay using ::before pseudo-element */
.offer-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% dark overlay */
    z-index: 1;
}

/* Ensure content is above overlay */
.offer-area > .container {
    position: relative;
    z-index: 2;
}


/* Offer Section End .................. */

/* Testimonial section .......... */
.testimonial-link {
    display: inline-block; /* makes it block-like */
    text-decoration: none; /* remove underline */
    color: inherit; /* inherit colors from children */
}

.testimonial-link .testimonial-heading {
    padding: 20px 30px;

    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.testimonial-link .testimonial-heading:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* Testimonial section  End .................. */



/* CTA Section Styles */
.cta-area {
    position: relative;
    background: linear-gradient(135deg, #b8962e 0%, #f4c430 50%, #fdb931 100%);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.cta-bg {
    background-size: cover;
    background-position: center;
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* Decorative geometric shapes on the left */
.cta-area::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 250px;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
    z-index: 2;
}

.cta-area::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 200px;
    background: repeating-linear-gradient(
        45deg,
        rgba(218, 165, 32, 0.6),
        rgba(218, 165, 32, 0.6) 15px,
        transparent 15px,
        transparent 30px
    );
    clip-path: polygon(0 0, 100% 20%, 100% 80%, 0 100%);
    z-index: 3;
}

.cta-area .container {
    position: relative;
    z-index: 5;
}

/* Title Styles */
.cta-title {
    text-align: center;
}

.cta-title h2 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;

    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

/* Button Styles */
.cta-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn.ss-btn {
    background-color: #ffffff;
    color: #f4c430;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}



/* Animation Classes */
.wow {
    visibility: hidden;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(50px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .cta-title h2 {
        font-size: 32px;
    }
    
    .cta-area::after {
        width: 60px;
        height: 150px;
    }
    
    .col-lg-3:first-child {
        display: none;
    }
    
    .cta-btn {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .cta-title h2 {
        font-size: 26px;
    }
    
    .btn.ss-btn {
        padding: 14px 32px;
        font-size: 14px;
    }
    
    .pt-60 {
        padding-top: 40px;
    }
    
    .pb-60 {
        padding-bottom: 40px;
    }
    
    .cta-area::before {
        width: 150px;
    }
    
    .cta-area::after {
        left: 10px;
        width: 40px;
        height: 120px;
    }
}

@media (max-width: 575px) {
    .cta-title h2 {
        font-size: 22px;
    }
}



.container {
    max-width: 95%;

}

.s-about-img img {
    border-radius: 15px;
    /* Outer transparent glow */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2), /* subtle inner shadow */
                0 0 40px rgba(0, 0, 0, 0.1); /* outer soft glow */
    background: transparent; /* ensures transparency if the image has space around */
}

.nos {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 800 !important;
}



.team-actives {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Wraps nicely on small screens */

    margin: 40px auto;
}

.coach-card img {
    /* width: 380px;
    height: 550px; */
    width: 100px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.coach-card img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .coach-card img {
        width: 200px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .coach-card img {
        width: 45%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .coach-card img {
        width: 100%;
        height: auto;
    }
}


/* Hide scrollbar while maintaining scroll functionality */

/* For Chrome, Safari and Opera */
::-webkit-scrollbar {
  display: none;
}

/* For Firefox */
html {
  scrollbar-width: none;
}

/* For Internet Explorer and Edge */
body {
  -ms-overflow-style: none;
}

/* Alternative: Hide scrollbar on body if needed */
body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}




.testimonials {
    padding: 50px 0;
    background: #f8f8f8;
}
.testimonial {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.testimonial-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.testimonial-author {
    font-weight: bold;
    color: #333;
    text-decoration: none;
}
.testimonial-time {
    font-size: 0.9em;
    color: #777;
}
.testimonial-text {
    font-style: italic;
    margin: 10px 0;
}
.testimonial-rating {
    color: #FFD700;
    font-size: 1.2em;
}


/* Instagram post...................... */
 .instagram-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* spacing between posts */
    justify-content: center;
  }

  .instagram-post {
    width: 300px;  /* adjust width */
    height: 400px; /* optional: control height */
    overflow: hidden;
  }

  /* Make embedded iframes scale down */
  .instagram-post iframe {
    width: 100% !important;
    height: 100% !important;
    transform: scale(0.9);  /* optional: shrink content slightly */
    transform-origin: top left;
  }