/* Reset */
:root {
    --primary-orange:#ffa600;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #0b0f1a;
    color: #fff;
  }

  p {
    color: #fff;
  }
  
  /* Navbar */


  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    position: fixed;
    width: 100%;
    padding: 1rem 10rem;
    background: transparent;  /* starts transparent */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
  }
  /* When scrolled */
.navbar.scrolled {
  background: rgba(0,0,0,0.8);   /* change this to your desired color */
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled a {
  color: white; /* adjust link color when scrolled */
}
  .logo img {
   max-width: 150px;
   margin-bottom: -15px;
  }
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }
  .nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  .nav-links a:hover {
    color: var(--primary-orange);
  }
  .mobile-nav {
    display: none;
  }
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    margin-top: -15px;
    font-size: 3rem;
    color: #fff;
  }

  @media (max-width:767px) {
    .mobile-nav {
        display: block;
      }
      .nav-links {
        display: none !important;
      }

body
{
  margin: 0;
  padding: 0;
  
  /* make it look decent enough */
  background: #000;
  color: #fff;
}

main {
  width: calc(100% - 240px);
  max-width: 680px;
  margin: 100px auto;
}

p {
  font-size: 18px;
  line-height: 28px;
}

* {
  scroll-behavior: smooth;
}

/* Menu code starts here */

#menuToggle
{
  display: relative;
  /* You can also use relative/absolute here if you want to stay on the top */
  position: fixed;
  top: 25px;
  right: 25px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #fff;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #fff;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #fff;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  max-width: 400px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px 0 0 310px;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background: #121212;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform: none;
  transform-origin: 0% 0%;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}

#menu li label
{
  cursor: pointer;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
    transform: translate(-150%, 0);
}
  }
  
  /* Hero */
  .hero-overlay {
    background:  rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-bottom-right-radius: 80px;
  }
  .hero {
    background: url('images/header-image-desktop.jpg') no-repeat center right/cover;
    border-bottom-right-radius: 80px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-text {
    display: flex;
    margin-inline: 20px;
    flex-direction: column;
    color: #fff;
    text-align: center;
    align-items: center;
    max-width: 70ch;
  }
  .hero-text img {
    max-width: 360px;
    width: 100%;
  }
  .hero-text h1 {
    font-size: 2rem;
    line-height: 110%;
    color: #fff;
    margin-bottom: 1rem;
  }
  .hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;

  }
  .btn-primary, .btn-secondary {
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    margin-top: 20px;
    text-decoration: none;
  }
  .btn-primary {
    background: var(--primary-orange);
    color: #000;
    width: 230px;
    text-align: center;
    margin-right: 1rem;
  }
  .btn-secondary {
    border: 1px solid #fff;
    background-color: white;
    text-align: center;
    color: #000000;
  }
  .scroll-dot {
    position: absolute;
    bottom: 2rem; /* adjust to move it up/down */
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid white;
    width: 30px;   /* fixed width */
    height: 50px;  /* fixed height */
    border-radius: 20px;
    cursor: pointer;
  
    display: flex;
    justify-content: center; /* center dot horizontally */
    align-items: center;     /* center dot vertically */
  }
  
  .scroll-dot span {
    width: 12px;
    height: 12px;
    background: #fff; /* white dot */
    border-radius: 50%;
    animation: scrollDot 1.5s infinite;
  }
  
  @keyframes scrollDot {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px); /* moves up */
    }

    100% {
      transform: translateY(0); /* back down */
    }
  }
  

  
  /* About */
  .about {
    padding: 3rem 1rem;
    text-align: center;
  }
  .about-header {
    max-width: 70ch;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    margin-bottom: 5%;
  }
  .about-grid-image img {
    width: 100%;
    max-width: 350px;
  }
  .about-grid {
display: flex;
max-width: 350px;
margin-inline: 20px;
flex-direction: column;
text-align: left;
    gap: 2rem;
  }
  
  /* Programs */
  .programs {
    padding: 3rem 1rem;
    background: #000;
    text-align: center;
  }
  .programs-header {
    max-width: 70ch;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    margin-bottom: 5%;
  }
  .program-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
  }
   .card {
    background: #1a1f2f;
    padding: 1.5rem;
    border-radius: 10px;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: #223251 solid 2px;
  } 
  .card img {
    width: 100%;
    margin-block: 15px;
  }
  .card h3 {
    margin-bottom: 0.5rem;
    line-height: 1;
    font-size: 30px;
  }
  .card ul {
    margin-top: 1rem;
    text-align: left;
  }
  .card .card-duration {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
  }
  .card .card-duration p {
    color: #ffffff;
    opacity: 0.5;
    margin-left: 7px;
  }
  .card .card-duration img {
    width: 15px;
  }
  /* Mobile Slider */
@media (max-width: 768px) {
    .program-cards {
      display: flex;
      max-width: 100%;
      justify-content: left;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1rem;
      padding-bottom: 1rem;
      -webkit-overflow-scrolling: touch;
    }
    /* Hide scrollbar */
    .program-cards::-webkit-scrollbar {
      display: none;
    }
    .program-cards {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
  }
  /* Pricing */
  .pricing {
    padding: 3rem 1rem;
    text-align: center;
  }
  .price {
    font-size: 65px;
    line-height: 2;
    font-weight: bold;
  }
  .pricing-header {
    max-width: 70ch;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    margin-bottom: 5%;
  }
  .pricing-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  .pricing-cards .card {
    padding: 1.8rem;
    height: 450px;
    position: relative;
  }
  .pricing-cards .card-container {
    padding-block: 1.8rem;
  }
  .best-value {
    border: 2px solid var(--primary-orange);
  }
  .best-value-pill {
    background-color: var(--primary-orange);
    color: #000;
    padding-inline: 20px;
    padding-block: 2px;
    top: -4%;
    z-index: 1;
    position: absolute;
    border-radius: 10px;
  }
/* Mobile Slider */
@media (max-width: 768px) {
    .pricing-cards {
      display: flex;
      max-width: 100%;
      justify-content: left;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1rem;
      padding-bottom: 1rem;
      -webkit-overflow-scrolling: touch;
    }
  
    .card {
      flex: 0 0 90%; /* ✅ fills most of screen */
    }
  
    /* Hide scrollbar */
    .pricing-cards::-webkit-scrollbar {
      display: none;
    }
    .pricing-cards {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
  }
  /* sign up form */
/* Signup Section */
.signup {
    padding: 3rem 1rem;
    background: #0b0f1a;
    text-align: center;
  }
  
  .signup h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
  }
  
  /* Form Styling */
  .signup-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Stack fields vertically */
    gap: 1rem; /* Space between fields */
    text-align: left;
  }
  
  .signup-form label {
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #fff;
  }
  
  .signup-form input,
  .signup-form select {
    padding: 0.8rem;
    border-radius: 10px;
    border: 1px solid #444;
    background: #1a1f2f;
    color: #fff;
    font-size: 1rem;
    width: 100%;
  }
  .signup-form select {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    line-height: 1;
    border: 1px solid #444;
    border-radius: 10px;
    background: url(/images/keyboard_arrow_down.svg) no-repeat right #1a1f2f;
    -webkit-appearance: none;
    background-position-x: 97%;
}
  
  .signup-form input:focus,
  .signup-form select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 5px var(--primary-orange);
  }
  
  .signup-form button {
    margin-top: 1rem;
    padding: 1rem;
    width: 100%;
    border: none;
    border-radius: 10px;
    background: var(--primary-orange);
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .signup-form button:hover {
    background: #ff9900;
  }
  
  
  /* Testimonials */
  .testimonials {
    padding: 3rem 1rem;
    background: #111;
    text-align: center;
  }
  .testimonial {
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  
  /* Contact */
  .contact {
    padding: 3rem 1rem;
    text-align: center;
  }
  
  /* Footer */
  .footer {
    padding: 1rem;
    text-align: center;
    background: #0b0f1a;
    font-size: 0.9rem;
  }
  

/* Reviews Section */
/* Reviews Section */
/* Reviews Section */
.reviews {
    padding: 4rem 2rem;
    background: #0b0f1a;
    text-align: center;
    color: #fff;
  }
  
  .reviews h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .reviews p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #bbb;
  }
  
  /* Desktop Grid */
  .review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 70%;
    margin: auto;
    gap: 1.5rem;
    justify-items: center;
  }
  
  /* Review Card */
  .review-card {
    padding: 2rem;
    background: #1a1f2f;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    max-width: 350px;
    text-align: center;
    flex: 0 0 90%; /* ✅ used in mobile slider */
    scroll-snap-align: center;
  }
  
  .stars {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
  }
  
  .review-card p {
    font-style: italic;
    color: #ddd;
  }
  
  .review-card span {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    color: #ccc;
  }
  
  /* Mobile Slider */
  @media (max-width: 768px) {
    .review-grid {
      display: flex;
      max-width: 100%;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 1rem;
      padding-bottom: 1rem;
      -webkit-overflow-scrolling: touch;
    }
  
    .review-card {
      flex: 0 0 90%; /* ✅ fills most of screen */
    }
  
    /* Hide scrollbar */
    .review-grid::-webkit-scrollbar {
      display: none;
    }
    .review-grid {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
  
    /* Show dots only on mobile */
    .review-dots {
      margin-top: 1rem;
      text-align: center;
      display: block;
    }
  }
  
  /* Dots */
  .review-dots {
    display: none; /* hidden on desktop */
  }
  
  .review-dots .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: #555;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .review-dots .dot.active {
    background: var(--primary-orange);
  }
/*Google Calendar booking styles*/
.booking {
    background: url('images/1-2-1-image-desktop.jpg') no-repeat right;
    padding-block: 4rem;
    background-size: cover;
}
.booking h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.booking p {
    color: #fff;
}
.booking .booking-header { 
    margin: auto;
    max-width: 600px;
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    text-align: center;
}
.booking-header button {
    margin-top: 3rem;
    padding: 1rem;
    width: 94%;
    max-width: 500px;
    border: none;
    border-radius: 10px;
    background: var(--primary-orange) !important;
    color: #000 !important; 
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}
.booking-header button:hover {
    background: #ff9900 ;
  }

  /* Mobile */
  @media (max-width: 768px) {
    .booking-container {
      grid-template-columns: 1fr;
    }
  }
  
  
/*About grid container*/
.about-grid-container {
    display: flex;
    justify-content: center;
    margin-top: 45px;
    flex-direction: row;
    margin-bottom: 60px;
}
  /* Mobile */
  @media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    .booking {
            background: url('images/1-2-1-image-mobile.jpg') no-repeat right;
            padding-block: 4rem;
            background-size: cover;
    }
    .nav-links {
      display: none;
      flex-direction: column;
      background: #111;
      position: absolute;
      top: 60px;
      font-size: 18px;
      text-align: center;
      width: 100%;
      right: 0;
      padding: 1rem;
    }
    .menu-toggle {
      display: block;
    }
    .about-grid-container {
        flex-direction: column;
        margin-inline: 20px;
    }
    .hero {
        background: url('images/header-image-mobile.jpg') no-repeat top right/cover;
      }
    .hero-text {
      margin-top: -20%;
    }
  }
  /* Contact Section */
.contact {
    padding: 4rem 1rem;
    background: #000;
    color: #fff;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  /* Grid Layout */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
    text-align: left;
  }
  
  /* Contact Info Card */
  .contact-card {
    background: #0b1320;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  }
  
  .contact-card h3 {
    margin-bottom: 1.5rem;
    color: #fff;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .contact-item .icon {
    font-size: 1.5rem;
    margin-right: 1rem;
  }
  
  .contact-item a {
    color: #fff;
    text-decoration: none;
  }
  
  .contact-item a:hover {
    text-decoration: underline;
  }



  /* Map + Location */
  .contact-map iframe {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  }
  
  .contact-map .location {
    font-size: 0.95rem;
    color: #ddd;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  .footer {
    padding-block:60px ;
  }
.footer .designed-by {
    color: #ffffff !important;
    opacity: 0.2 !important;
}  
.ayOY8d {
    display: none !important;
}