
 /* Loading Website Animation 1.7 */

        #loading-screen {
            position: fixed;
            /* Stays on top of everything */
            top: 0;
            left: 0;
            width: 100%;
            /* Full width */
            height: 100vh;
            /* Full height of the viewport */
             background: linear-gradient(128deg, #8f23f1, #008881);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            /* Ensure it's above all other content */
        }

        .loading-text {
            font-size: 2rem;
            color: #fff;
            display: inline-block;
            animation: bounce 1s infinite ease-in-out;
            text-shadow: 0px 3px 6px #252525;
            font-family: revert;

        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
                font-size: 2rem;
            }

            25% {
                transform: translateY(-20px);
                font-size: 1rem;
            }

            50% {
                font-size: 1.5rem;
                transform: translateY(25px);
            }
        }

        /* Loading Website Animation 1.7 End */
    /* Navbar 1.1 */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    /* Navbar Styles */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      /* background-color: #4c06f18c; */
      color: white;
      padding: 0.5rem 1rem;
      position: fixed;
     top:0; left:0; width: 100%;
      overflow: hidden;
      /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.6); */
      z-index: 999;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .logo {
              color: white;
    text-decoration: none;
    font-size: 1.4rem;
    background: url(mlogo.jpeg);
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 64px;
    height: 58px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);

    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 999;
    }

    .hamburger span {
         display: block;
    width: 33px;
    height: 4px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .navbar-menu {
      list-style: none;
      display: flex;
      gap: 1rem;
    }

    .navbar-menu a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      margin:20px 0px;
        padding:20px 0px;
    }

    .navbar-menu a:hover {
      text-decoration: underline;
      color: rgb(50, 142, 248);
    }

    /* Responsive Styles */

    @media (max-width: 768px) {
      .hamburger {
              display: flex
;
        box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.6);
        padding: 11px;
        border-radius: 4px;
      }

      .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        /* background-color: #333; */
        width: 100%;
        padding: 1.3rem 0;
        gap: 0.5rem;
      }

      .navbar-menu.show {
  
        display: flex;
        height: 100vh;
        width: 80%;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0px;
        right: 30%;
        overflow: hidden;
        /* width: 100%; */
        background-color: #000000;
        background: linear-gradient(128deg, #8f23f1, #008881);
        transition: all 3s;
      }

      .navbar-menu a {
        padding: 0.5rem 1rem;
      }
    }

    /* Navbar 1.1 end */
.intro {
    width: 100%;
    height: 100vh;
     background-image: url("car.jpeg"); 
    /*background: linear-gradient(rgba(240, 98, 98, 0.466), rgba(65, 75, 66, 0.22)), url(car.jpeg) no-repeat center center / cover;*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inside {
    width: 100%;
    height: 100vh;
    text-align: center;
    padding: 21vh 0px;
    color: #ffffff;
    font-size: 31px;
    backdrop-filter: blur(1.7px);
    /* margin-top: 8vh; */
}

.intro h1 {
    margin: 20px 0px;
    font-size: 2rem;
    text-shadow: 1px 3px rgb(63, 63, 63);
}
.intro p {
    font-size: 1rem;
    margin: 38px 2%;
    text-shadow: 1px 1px 1px rgb(59 59 59);
    word-spacing: 3px;
    font-family: sans-serif;


}
.intro_button{
    background-color: #ff4343;
    background-color: #8f23f1;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 10px 34px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    text-decoration: none;
}
/* intro Design 1.1 End */
     /* FAQ 1.1 */
 .faq-container {
      max-width: 600px;
      margin: 0 auto;
      padding: 20px;
    }

    .faq-container h3 {
      cursor: pointer;
      font-family: math;
    }

    .faq-heading {
      text-align: center;
      margin: 71px 0px;
      color: #646464;
      font-size: 30px;
      font-family: sans-serif;
    }

    .faq-item {
      margin-bottom: 20px;
    }

    .question {
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .answer {
      display: none;
    }

    .answer.show {
    display: block;
    font-family: math;
    color: #797979;
    padding: 25px 0px;
    }

    .faq-container svg {
      transition: transform 0.3s ease;
    }

    .rotated {
      transform: rotate(180deg);
    }
    /* Contact Us Form 1.2 */

        .contact-form {
            background: linear-gradient(128deg, #dd6060, #33ffb46b);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 19px 3%;
    width: 90%;
    margin: 30px auto;
    max-width: 700px;
        }

        .contact-form:hover {
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);

        }

        .contact-form h1 {
            font-size: 31px;
            margin-bottom: 62px;
            text-align: center;
            color: white;
            font-family: serif;
        }

        .contact-form form input,
        .contact-form form textarea {
            outline: none;
            border: none;
            width: 90%;
            padding: 10px 4px;
            margin-bottom: 15px;
            border-bottom: 1px solid #3b3b3b;
            outline: none;
            border-radius: 3px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

        }

        .contact-form form textarea {
            height: 150px;
            flex-direction: column;
        }

        .contact-form form .aa {
            background-color: #ff4343;
            color: #fff;
            border: none;
            border-radius: 3px;
            padding: 10px 34px;
            cursor: pointer;
            font-size: 16px;
            text-align: center;
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
        }

        .contact-form form button:hover {
            background-color: #ff1b1b;
        }
     /* Scroll Infinity 1.1 */

        .main_testimonial {
            display: grid
;
    min-block-size: 50vh;
    place-content: center;
    font-family: system-ui;
    font-size: 1.125rem;
    background-color: var(--clr-primary-800);

        }

        .course_img {
            width: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .course_img img {

       width: 54px;
    /* aspect-ratio: 1.2; */
    border-radius: 72px;
    margin: 22px 0px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}
        .scroller {
            max-width: 90%;
            color-scheme: dark;
            margin: 10px auto;
        }

        .scroller p {
            color: #fff;
        }

        .scroller h4 {

            color: #fff;

        }

        .scroller__inner {
            padding-block: 1rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .scroller[data-animated="true"] {
            overflow: hidden;
            -webkit-mask: linear-gradient(90deg,
                    transparent,
                    white 20%,
                    white 80%,
                    transparent);
            mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
        }

        .scroller[data-animated="true"] .scroller__inner {
            width: max-content;
            flex-wrap: nowrap;
            animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
        }

        .scroller[data-direction="right"] {
            --_animation-direction: reverse;
        }

        .scroller[data-direction="left"] {
            --_animation-direction: forwards;
        }

        .scroller[data-speed="fast"] {
            --_animation-duration: 20s;
        }

        .scroller[data-speed="slow"] {
            --_animation-duration: 60s;
        }

        @keyframes scroll {
            to {
                transform: translate(calc(-50% - 0.5rem));
            }
        }

        /* general styles */

        :root {
            --clr-neutral-100: hsl(0, 0%, 100%);
            --clr-primary-100: hsl(205, 15%, 58%);
            --clr-primary-400: hsl(194, 94%, 38%);
            --clr-primary-800: hsl(0, 0%, 99%);
            --clr-primary-900: hsl(218, 33%, 9%);
        }


        .tag-list {
            margin: 0;
            padding-inline: 0;
            list-style: none;
        }

        .tag-list li {
            padding: 1rem;
            background: var(--clr-primary-400);
            border-radius: 0.5rem;
            box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900);
        }

        /* for testing purposed to ensure the animation lined up correctly */
        .test {
            background: red !important;
        }

        /* Scroll Infinity 1.1 End */


        /* scroll navbar animation  */
        .navbar-scrolled {
  /* background-color: #333; */
  box-shadow: 0px 5px 15px rgba(0,0,0,0.5);
  /* background-color: #008881;  */
  background-color: #8f23f1;
      background: linear-gradient(266deg, #bd74ca, #338ce8);
}


/* footer  */


/* Footer Section */
footer {
    padding: 30px 20px;
    background-color: #333;
    color: white;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-column {
    width: 30%;
    max-width: 300px;
    text-align: left;
    margin: 10px 0;
    color: white;
}

.footer-column h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.footer-column p,
.footer-column a {
    font-size: 0.9em;
    color: rgb(223, 223, 223);
    text-decoration: none;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #ff5733;
}

.footer-links a {
    display: block;
    margin: 5px 0;
}
/* add mediaquery for footer */
@media (max-width: 480px) {
    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        max-width: none;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        width: 100%;
        max-width: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    footer {
        flex-direction: row;
        text-align: left;
    }

    .footer-column {
        width: 45%;
        max-width: none;
    }
}

@media (min-width: 1025px) {
    footer {
        flex-direction: row;
        text-align: left;
    }
.footer-column {
        width: 30%;
        max-width: 300px;
    }
}

@media screen and (min-width: 768px) {
    
    #bbrand{
    display:none;
}
}