/* General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    color: #fff;
    line-height: 1.6;
  }
  header, section, footer {
    padding: 40px 20px;
  }
  .section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    position: relative;
  }
  .section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ff4d4d;
    margin: 16px auto 0;
    border-radius: 2px;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
/* Navbar Base */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    transition: background 0.3s ease, opacity 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo a {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
  }
  
  .logo b {
    color: red;
  }
  
/* Language */

  .lang-switch {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* hide the label visually but keep it accessible */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* the select itself */
.lang-switch select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 28px 6px 10px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* hover/focus effects */
.lang-switch select:hover {
  border-color: #888;
}
.lang-switch select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* add a custom dropdown arrow */
.lang-switch::after {
  content: "▼";
  position: absolute;
  right: 10px;
  pointer-events: none;
  font-size: 10px;
  color: #555;
}

/* dark header variant (optional) */
.header-dark .lang-switch select {
  background-color: #222;
  color: #fff;
  border-color: #444;
}
.header-dark .lang-switch::after {
  color: #ccc;
}

  /* Desktop Nav Links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
  }
  .nav-links .instagram{
    color:red;
    font-weight: 600;
  }

  .nav-links .instagram:hover{
    color:white;
    font-weight: 400;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  
  .nav-links a:hover {
    color: red;
  }
  
  .nav-links .btn {
    padding: 8px 18px;
    background-color: red;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.2s ease;
  }
  
  .nav-links .btn:hover {
    background-color: darkred;
    color: white;
  }
  
  /* Burger Menu (Mobile Only) */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
  }
  
  .burger span {
    display: block;
    height: 3px;
    background: white;
    border-radius: 2px;
  }
  
  /* Hero */
  .hero {
    height: 830px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('/./Assets/HeroImage.webp') center/cover no-repeat;
    color:white;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .btn {
    background: red;
    color: white;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
  }
  
  /*About */
  .about {
    background-color: #1a1a1a;
    padding: 60px 20px;
    color: #fff;
  }
  
  .about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .about-text {
    flex: 1 1 500px;
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .about-text p {
    margin-bottom: 20px;
  }
  
  .about-text .quote {
    font-style: italic;
    color: #ff4d4d;
    text-align: left;
    font-size: 1.2rem;
  }
  
  .about-image {
    flex: 1 1 400px;
    text-align: center;
  }
  
  .about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
  }
  /* Programs */
  .services {
  padding: 80px 20px;
  background-color: #111;
  color: #fff;
}

.programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.program {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 77, 77, 0.2);
  transition: transform 0.3s ease;
}

.program:hover {
  transform: translateY(-5px);
}

.program img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.program h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ff4d4d;
}

.program p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 15px;
  height: 95px;
}

.program .price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background-color: #ff4d4d;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
}

.contact-program {
  text-align: center;
  margin-top: 50px;
}

.contact-program p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.contact-program .btn {
  background-color: #ff4d4d;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-program .btn:hover {
  background-color: #e63b3b;
}
.more-btn {
  background-color: transparent;
  border: 1px solid #ff4d4d;
  color: #ff4d4d;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.more-btn:hover {
  background-color: #ff4d4d;
  color: #fff;
}

.personal-support {
  background-color: #1f1f1f;
  border-left: 4px solid #ff4d4d;
  padding: 20px;
  margin-top: 40px;
  border-radius: 8px;
  text-align: center;
}

.personal-support h3 {
  color: #ff4d4d;
  margin-bottom: 10px;
}

.personal-support p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 15px;
}

.personal-support .price {
  display: block;
  font-weight: bold;
  color: #fff;
  background: #ff4d4d;
  padding: 6px 12px;
  border-radius: 6px;
  margin: 10px auto;
  width: fit-content;
}

.personal-support .btn {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #ff4d4d;
  color: #ff4d4d;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.personal-support .btn:hover {
  background-color: #ff4d4d;
  color: #fff;
}
/* Modal base + big-content support */
.modal {
  display: none; /* toggled by JS */
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.75);
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-content {
  background: #111;
  color: #fff;
  width: 100%;
  max-width: 900px;
  max-height: calc(100vh - 120px); /* allow large content but limited to viewport */
  overflow-y: auto;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

/* close button */
.close-btn {
  background: transparent;
  color: #ff4d4d;
  border: none;
  font-size: 28px;
  float: right;
  cursor: pointer;
}

/* modal content inner formatting */
.modal-description h4,
.modal-description h5 {
  color: #ff4d4d;
  margin-top: 18px;
}

.modal-description p {
  color: #ddd;
  margin-bottom: 12px;
  line-height: 1.6;
}

.modal-description ul {
  margin: 10px 0 16px 18px;
}

.modal-description li {
  margin-bottom: 8px;
  color: #ccc;
}

/* level blocks */
.level-block {
  background: rgba(255,77,77,0.02);
  border-left: 3px solid rgba(255,77,77,0.4);
  padding: 10px 12px;
  margin-bottom: 12px;
  color: #ddd;
}

/* prevent body scroll while modal open */
body.modal-open {
  overflow: hidden;
}

/* Testimonials */

.testimonials {
  background: #0b0b0b;
  padding: 80px 20px;
  color: #fff;
}

.section-title h2 {
  font-size: 2.2rem;
  color: #ff4444;
  margin-bottom: 10px;
  text-align: center;
}

.section-title p {
  text-align: center;
  color: #aaa;
  margin-bottom: 50px;
  font-size: 1rem;
}

.testimonial-stories {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.story-card {
  display: flex;
  align-items: flex-start;
  background: #1a1a1a;
  padding: 25px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 8px 30px rgba(255, 0, 0, 0.1);
  transition: background 0.3s ease;
  border-left: 5px solid #ff4444;
}

.story-card:hover {
  background: #222;
}

.story-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 20px;
  border: 2px solid #ff4444;
  object-fit: cover;
}

.story-content {
  display: flex;
  flex-direction: column;
}

.quote-mark {
  font-size: 2.5rem;
  color: #ff4444;
  margin-bottom: 5px;
  font-family: serif;
  line-height: 1;
}

.story-content h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #fff;
}

.story-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
}

/* Contact */

.contact {
  background-color: #1a1a1a;
  padding: 60px 20px;
  color: #fff;
}

.contact-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper {
  flex: 1 1 450px;
}

.contact-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: #888;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
  outline: none;
  background-color: #2a2a2a;
  box-shadow: 0 0 5px 2px #ff4d4d;
}

.contact-form-wrapper button.btn {
  background-color: red;
  padding: 14px 25px;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form-wrapper button.btn:hover {
  background-color: darkred;
}

.contact-image-wrapper {
  flex: 1 1 450px;
  text-align: center;
}

.contact-image-wrapper img {
  width: 650px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  object-fit: cover;
  position: relative;
  top:10px;
}

/* Footer */
footer {
  text-align: center;
  background: #000;
  padding: 20px;
  font-size: 0.9rem;
}
  /* Responsive CSS */
  /* Burger  */
  @media (max-width: 999px) {
    .burger {
      display: flex;
    }
  
    .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background: #111;
      width: 100%;
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      gap: 20px;
      display: none;
    }
  
    .nav-links.active {
      display: flex;
    }
  }

  /* Hero */
     @media (max-width: 1150px) {
      .hero {
      height: 650px;
    }
  }
  @media (max-width: 768px) {
      .hero {
      margin-top: 10%;
      width:100%;
      height: 450px;
    }
    .hero h1 {
      font-size: 2rem;
    }
    .hero p {
      font-size: 1rem;
    }
  }

  /* About */
  @media (max-width: 768px) {
    .about-flex {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text {
      text-align: left;
    }
  
    .about-text .quote {
      text-align: center;
    }
  }

  /* Modals */
  /* small devices - full screen modal */
@media (max-width: 600px) {
  .modal-content {
    max-width: 100%;
    max-height: calc(100vh - 40px);
    padding: 16px;
    border-radius: 8px;
  }
}
/* Contact */
 @media (max-width: 1180px) {
    .contact-flex {
      flex-direction: column-reverse;
      text-align: center;
    }
  }
  @media (max-width: 850px) {
    .contact-flex {
      flex-direction: column-reverse;
      text-align: center;
    }
  
    .contact-form-wrapper,
    .contact-image-wrapper {
      flex: 1 1 100%;
    }
  
    .contact-form-wrapper form {
      max-width: 400px;
      margin: 0 auto;
    }
  
    .contact-image-wrapper img {
      max-width: 350px;
    }
  }