body{
  background-color: hsl(195, 43%, 95%);
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}


    .navbar-brand img {
      height: 40px;
      width: 40px;
      object-fit: contain;
      margin-right: 8px;
    }
    .navbar .container-fluid {
      padding-left: 0.1rem;
      padding-right: 1rem;
    }

    .navbar {
      padding: 0.5rem 1rem;
      position: fixed;
      width: 100vw;
      text-align: right;
      z-index: 200;
    }

    .slogan-stripe {
    display: flex; 
    height: 100vh; 
    background-color: #96bdce;
    position: relative;
}

.slogan-text {
    flex: 1; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    height: 100%; 
    margin-top: 25px;
    margin-left: 50px;
    text-decoration: solid;
  }

.slogan-image {
    flex: 1; 
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%; 
    position: relative;
}

.slogan-image img {
    max-height: 80%; 
    object-fit: contain; 
    height: auto; 
    margin-bottom: 0; 
    z-index: 1;
}

.pulsating-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #121415;
    position: absolute;
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%); 
    cursor: pointer;
    animation: pulsate 1.5s infinite;
    transition: transform 0.3s ease;
    z-index: 10; 
}


.content-stripe {
  background-color: hsl(217, 24%, 15%);
  color: #dddddd;
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  padding: 3vh 2vw;
  gap: 0.5rem; /* Much smaller spacing */
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;  /* aligns items to the left */
  padding-left: 1rem;  
  
}

.content-stripe-text {
  flex: 1 1 350px;
  max-width: 500px;
  padding-left: 0;  
  margin-left: 0;   
  text-align: left;
}

.content-stripe-text h2 {
  font-size: 2.5rem; 
  margin-bottom: 0.3rem; 
  color: #ffffff;
 
}

.content-stripe-text p {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 0;
  color: #cccccc;
  line-height: 1.4;
  
}

.content-stripe-image {
  flex: 1 1 300px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.content-stripe-image img {
  width: 100%;
  max-width: 400px; /* Larger image */
  height: auto;
  object-fit: contain;
  border-radius: 0.4rem;
  margin: 0;
}


@media (max-width: 768px) {
  .content-stripe {
    flex-direction: column;
    text-align: center;
    padding: 2vh 5vw;
  }

  .content-stripe-text h2 {
    font-size: 2rem;
    margin-left: 10%;
  }

  .content-stripe-text p {
    font-size: 1.1rem;
    margin-right: 10%;
  }

  .content-stripe-image img {
    max-width: 90%;
    margin-left: 10%;
  }
}


    
   .courses{
    text-align: center;
    
   }

    .image-boxes-section {
      margin-top: 3rem;
      padding: 0 1rem;
      
    }
    .image-box {
      
      border-radius: 0.5rem;
      overflow: hidden;
      
      margin-bottom: 1.5rem;
      background: transparent;
      transition: transform 0.3s ease;
      cursor: pointer;
      position: relative;
    }
    .image-box:hover {
      transform: scale(1.25);
      
      z-index: 10;
      position: relative;
    }
    .image-box img {
      width: 100%;
      height: auto;
      display: block;
    }
    .image-box-content {
      padding: 1rem;
      text-align: center;
    }
   
    .review-text-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 180px; 
      
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      text-align: center;
      border-radius: 0.5rem 0.5rem 0 0;
      font-size: 0.9rem;
      pointer-events: none;
    }
    .review-box:hover .review-text-overlay,
    .review-image-wrapper:hover .review-text-overlay {
      opacity: 1;
      pointer-events: auto;
    }
  
    .reviewer-info {
      padding: 0.5rem 1rem 0 1rem;
      font-weight: 600;
      font-size: 1rem;
      color: #212529;
      flex-shrink: 0;
      text-align: center; 
    }
    
    .star-rating {
      text-align: center;
      font-size: 1.15rem;
      color: #ffc107; 
      margin: 0.5rem 0 1.5rem 0;
      user-select: none;
    }
    .star-rating .bi-star-fill {
      color: #ffc107; 
    }
    .star-rating .bi-star {
      color: #adb5bd; 
    }
    /* Timer section */
    .timer-section {
      margin-top: 4rem;
      margin-bottom: 5rem;
      text-align: center;
    }
    .timer-display {
      font-size: 3rem;
      font-weight: 700;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      letter-spacing: 0.1em;
      color: #343a40;
      user-select: none;
      margin: 1rem 0;
    }
    .timer-text {
      font-size: 1.25rem;
      color: #6c757d;
    }
    
    .gallery-section {
      margin-bottom: 4rem;
      
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 1rem;
    }
    .gallery-title {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 2rem;
      color: #212529;
    }
   
    .carousel-item {
      position: relative;
      color: white;
      user-select: none;
    }
    .carousel-item img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 0.5rem;
    }
    .carousel-caption {
      position: absolute;
      left: 1rem;
      bottom: 1rem;
      right: auto;
      text-align: left;
      background: rgba(0, 0, 0, 0.5);
      padding: 0.5rem 1rem;
      border-radius: 0.25rem;
      max-width: 75%;
    }
   
    .faq-stripe {
      height: auto;
      background-color: #96bdce;
      padding: 2rem 1rem;
      width: 100%;
      margin-left: calc(-50vw + 50%);
      box-sizing: border-box;
    }

    .faq-content-wrapper {
      max-width: 700px;
      margin: 0 auto;
    }
    .faq-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      text-align: center;
      color: #212529;
    }
    .faq-item .btn {
      width: 100%;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.1rem;
      font-weight: 600;
      color: #343a40;
      padding: 1rem;
      background: #fff;
      border: 1px solid #dee2e6;
      border-radius: 0.375rem;
      transition: background-color 0.3s ease;
      cursor: pointer;
    }
    .faq-item .btn:hover,
    .faq-item .btn:focus {
      background-color: #e9ecef;
      color: #212529;
      text-decoration: none;
      box-shadow: none;
    }
    .faq-item .btn:after {
      content: "";
      display: inline-block;
      width: 12px;
      height: 12px;
      border-right: 2px solid black;
      border-bottom: 2px solid black;
      transform: rotate(45deg);
      transition: transform 0.25s ease;
      margin-left: 8px;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .faq-item .btn.collapsed:after {
      transform: rotate(45deg);
    }
    .faq-item .btn:not(.collapsed):after {
      transform: rotate(135deg);
    }
    .faq-collapse {
      border: 1px solid #dee2e6;
      border-top: none;
      border-radius: 0 0 0.375rem 0.375rem;
      background: #fff;
      padding: 1rem;;
      color: #495057;
      box-sizing: border-box;
    }
 
    .faq-gap {
      height: 3rem;
    }
    /* Honest Reviews section */
    .honest-reviews-title {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 2rem;
      color: #212529;
    }
    .reviews-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
      padding: 0 1rem 2rem;
    }
    .review-box {
      position: relative;
      width: 20%;
      min-width: 100px;
      border: 1px solid #ddd;
      border-radius: 0.5rem;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: #fff;
      display: flex;
      flex-direction: column;
    }


    @media (max-width: 992px) {
      .review-box {
        width: 45%;
      }
    }
    @media (max-width: 576px) {
      .review-box {
        width: 100%;
      }
    }
    
    .review-image-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      border-radius: 0.5rem 0.5rem 0 0;
    }
    .review-box img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
    }
    .review-text-overlay {
      
      height: 100%;
      background: rgba(0, 0, 0, 0.75);
      color: white;
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      text-align: center;
      border-radius: 0.5rem 0.5rem 0 0;
      font-size: 0.9rem;
      pointer-events: none;
    }
    .review-image-wrapper:hover .review-text-overlay {
      opacity: 1;
      pointer-events: auto;
    }
    
    .reviewer-info {
      padding: 0.5rem 1rem 0 1rem;
      font-weight: 600;
      font-size: 1rem;
      color: #212529;
      flex-shrink: 0;
      text-align: center;
    }
    
    .star-rating {
      text-align: center;
      font-size: 1.15rem;
      color: #ffc107; 
      margin: 0.5rem 0 1.5rem 0;
      user-select: none;
    }
    .star-rating .bi-star-fill {
      color: #ffc107; 
    }
    .star-rating .bi-star {
      color: #adb5bd; 
    }
   
    footer {
      background-color: hsl(217, 24%, 15%);
      color: white;
      padding: 2rem 1rem;
    }
    .footer-container {
      max-width: 1140px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
    }
    .footer-left, .footer-right {
      flex: 1 1 300px;
      min-width: 280px;
    }
    .footer-left iframe {
      width: 100%;
      height: 250px;
      border: 0;
      border-radius: 0.5rem;
    }
    .footer-right h5 {
      margin-bottom: 1rem;
      font-weight: 700;
    }
    .footer-right p {
      margin-bottom: 0.5rem;
      font-size: 1rem;
    }
      .social-icons {
  display: flex;
  
  gap: 2vw;
  justify-content: flex-start;
}

.social-icons a {
  color: white;
  font-size: 2rem;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ffc107; 
  transform: scale(1.2); 
}


    @media (max-width: 576px) {
      .footer-container {
        flex-direction: column;
      }
      .footer-left iframe {
        height: 200px;
      }
    }
