
//* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
}

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

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 5px;
  font-weight: 600;
  letter-spacing: -0.15px;
}

/* Navigation */
.navbar {
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  letter-spacing: 2px;
}

.logo img{

  width: 55px;
  height: 55px;
  }


.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: #666666;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: #000000;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  margin-top: 70px;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
 opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #000;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 2px solid #000000;
  font-size: 1rem;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #000000;
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
}

/* About Section */
.about-section {
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

/* --- New Login Icon Styling --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-login {
  font-size: 1.8rem;
  color: #000000;
  transition: color 0.3s ease;
  display: flexbox;
  align-items: center;
}

.user-login:hover {
  color: #666666;
}

/* --- TMA Success Stories Formatting Fix --- */
.about-card .none {
  list-style-type: none;
  text-align: left;      /* Text itself stays left-aligned for readability */
  display: inline-block; /* Container only takes up as much space as the text */
  margin: 0 auto;        /* Centers the inline-block container */
  padding: 0;
}

.about-card ul li {
  list-style: none;
  position: relative;
  padding-left: 25px;    /* Space for the icon */
  margin-bottom: 10px;
}

/* Optional: Add a custom bullet icon if you prefer */
.about-card ul li::before {
  content: "🎖";
  position: absolute;
  left: 0;
}

/* Center the container holding the list */
.about-card {
  text-align: center;    /* This centers the inline-block UL */
}.about-card {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #000000;
}



.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-card p {
  color: #333333;
  line-height: 1.8;
}
/* Programmes Section */
.programmes-section {
  background-color: #f9f9f9;
}

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.programme-card {
    display: flex;
    flex-direction: column;
    align-items: center; /* This centers all children, including the button */
    text-align: center;
    padding: 20px;
    /* ... keep your existing card styles ... */
}

.programme-card .btn-secondary {
    display: inline-block;
    margin-top: auto; /* Pushes button to bottom if cards have different heights */
    width: fit-content; /* Ensures the button doesn't stretch to full width */
}
.programme-card a{
 align-content: center;
 align-self: center;

}

.programme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



.programme-content {
  padding: 30px;
  text-align: center;
}

.programme-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.programme-content p {
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.7;
}
/* --- Professional Scrollable Modal --- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    overflow-y: auto; /* CRITICAL: Enables scrolling for the background overlay */
    padding: 20px 10px; /* Adds space so modal doesn't touch screen edges */
}

.modal-content {
    background-color: #fff;
    margin: 20px auto; /* Changed from fixed % to allow better scrolling */
    width: 100%;
    max-width: 850px;
    border-radius: 15px;
    position: relative;
    overflow: hidden; /* Clips the image corners to the border-radius */
}

.modal-body-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Slightly more space for text */
}

/* --- Modal Image Layering --- */
.modal-image {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background: Blurred and cropped to fill space */
.img-blur-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px) brightness(0.6);
    transform: scale(1.1); /* Prevents white edges from blur */
}

/* Foreground: Full image, never cut off */
.img-main {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain; /* CRITICAL: This ensures the whole person is visible */
}

/* --- Programmes Grid Image Fix --- */
.programme-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top; /* Focuses on faces/heads rather than feet */
    border-bottom: 3px solid #eee;
}

.modal-text {
    padding: 35px;
    max-height: 80vh; /* Limits text height */
    overflow-y: auto; /* Allows internal text scrolling if paragraph is huge */
}
.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    z-index: 100; /* Stays on top of the image */
    background: rgba(255,255,255,0.7); /* Adds a little circle background */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}
/* --- Mobile Specific Fixes --- */
@media (max-width: 768px) {
    .modal-body-grid {
        grid-template-columns: 1fr; /* Stacks image on top of text */
    }

    .modal-image img {
        height: 250px; /* Limits the "blown up" image height on phones */
    }

    .modal-text {
        padding: 20px;
        max-height: none; /* Let the main modal scroll handle it */
    }

    .modal-content {
        margin: 10px auto;
    }
}
.application-cta {
  text-align: center;
  padding: 50px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 5px;
}

.application-cta h3 {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Model Management Section */
.model-management-section {
  background-color: #ffffff;
}

.management-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.2rem;
  color: #333333;
}

.talent-categories {
  margin-bottom: 60px;
}

.talent-categories h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

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

.category-item {
  text-align: center;
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.category-item:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.category-item i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.category-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

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

/* Kids Gym Section */
.kids-gym-section {
  background-color: #f9f9f9;
}

.gym-intro {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.gym-intro img {
  width: 45%;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
}

.gym-text {
  flex: 1;
}

.gym-text h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.gym-text p {
  color: #333333;
  line-height: 1.8;
  font-size: 1.1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.benefit-item {
  text-align: center;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
}

.benefit-item i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #000000;
}

.benefit-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit-item p {
  color: #333333;
}

.programs-list {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  margin-bottom: 40px;
}

.programs-list h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

.programs-list ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.programs-list li {
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.1rem;
}

.programs-list li:last-child {
  border-bottom: none;
}

.programs-list i {
  margin-right: 15px;
  color: #000000;
}

.kids-gym-section > .container > .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Ambassador Section */
.ambassador-section {
  background-color: #ffffff;
}

.ambassador-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.2rem;
  color: #333333;
}

.winners-section {
  margin-bottom: 60px;
}

.winners-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.winner-card {
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}

.winner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.winner-card.featured {
  max-width: 400px;
  margin: 0 auto;
}

.winner-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.winner-info {
  padding: 20px;
  text-align: center;
}

.winner-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
}

.winner-card .year {
  padding: 0 20px 20px;
  color: #666666;
}

.past-winners h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.winners-grid .winner-card img {
  height: 350px;
}

.ambassador-section > .container > .btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Shop Section */
.shop-section {
  background-color: #f9f9f9;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.shop-category {
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.shop-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shop-category img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.shop-content {
  padding: 30px;
  text-align: center;
}

.shop-content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.shop-content p {
  color: #333333;
  margin-bottom: 25px;
  line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
  background-color: #ffffff;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.tab-btn {
  padding: 12px 30px;
  background-color: #ffffff;
  border: 2px solid #000000;
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: #000000;
  color: #ffffff;
}

.gallery-grid {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  animation: fadeIn 0.5s ease;
}

.gallery-grid.active {
  display: grid;
}

.gallery-item {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* Partnerships Section */
.partnerships-section {
  background-color: #f9f9f9;
}
/* --- Testimonials Styling --- */
.testimonials-section {
  background-color: #f9f9f9; /* Subtle light grey to separate from other sections */
  padding: 5px 0;
}

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

.testimonial-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

/* --- Star Rating Styling --- */
.testimonial-rating {
    margin-bottom: 15px;
    color: #D4AF37; /* Metallic Gold color */
    font-size: 0.9rem;
}

/* Optional: Make the quote icon a bit more subtle so it doesn't fight with the stars */
.quote-icon {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.1;
}

/* Ensure the cards align stars to the left */
.testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns stars, text, and user info to the left */
}

.testimonial-user {
    width: 100%; /* Ensures user info spreads correctly */
}.quote-icon {
  color: #000; /* Matching your black theme */
  font-size: 2rem;
  margin-bottom: 20px;
  opacity: 0.2;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 30px;
  flex-grow: 1;
}

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

.testimonial-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Perfect circle */
  object-fit: cover;
}

.user-info h4 {
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}

.user-info span {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonial-cta {
    text-align: center;
    margin-top: 50px;
}

.testimonial-cta p {
    margin-bottom: 15px;
    color: #666;
}
/* Mobile Tweak */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
  }
}
.partnerships-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.2rem;
  color: #333333;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.partner-card {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  text-align: center;
  transition: transform 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-logo {
  font-size: 4rem;
  margin-bottom: 25px;
  color: #000000;
}

.partner-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.partner-card p {
  color: #333333;
  line-height: 1.7;
}

.partnership-gallery {
  margin-top: 60px;
}

.partnership-gallery h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.partnership-item {
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.partnership-item:hover {
  transform: scale(1.05);
}

.partnership-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Contact Section */
.contact-section {
  background-color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.5rem;
  color: #000000;
  margin-top: 5px;
  min-width: 30px;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-item p {
  color: #333333;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border: 2px solid #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  background-color: #000000;
  color: #ffffff;
}

.contact-map {
  height: 450px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 30px 0;
  text-align: center;
}

.footer-content p {
  margin: 5px 0;
  font-size: 0.95rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .ceo-section {
    flex-direction: column;
    text-align: center;
  }

  .gym-intro {
    flex-direction: column;
  }

  .gym-intro img {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    padding: 15px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: 80vh;
    padding: 100px 20px 80px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  section {
    padding: 60px 0;
  }

  .about-grid,
  .programmes-grid,
  .categories-grid,
  .benefits-grid,
  .winners-grid,
  .shop-grid,
  .gallery-grid,
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .ceo-section {
    padding: 30px;
  }

  .ceo-section img {
    width: 200px;
    height: 200px;
  }

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

  .action-buttons .btn-primary,
  .action-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .gallery-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 30px;
    font-size: 0.95rem;
  }

  .programme-card img,
  .gallery-item img {
    height: 200px;
  }
}
