@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@400;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Cabin', sans-serif; /* Use Cabin font */
    overflow-x: hidden; /* Prevent horizontal scrolling */

}

.background-image {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Set height to cover the entire viewport */
    z-index: -1; /* Place the image behind other content */
    filter: brightness(70%); /* Darken the image */
}


.background-image1 {
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh; /* Set height to cover the entire viewport */
    z-index: -1; /* Place the image behind other content */
    filter: brightness(70%); /* Darken the image */
}

.background-image1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark tint color */
    z-index: 1; /* Ensure the tint layer is above the image */
}


.background-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark tint color */
    z-index: 1; /* Ensure the tint layer is above the image */
}

    .navbar {
    
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        width: calc(100% - 20px); /* Adjust width to accommodate padding */
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px; /* Decrease padding for a smaller navbar */
        background-color: #F7E7CE;
    
    
    }
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.navbar-logo {
    position: relative;
    width: 150px; /* Increase the width of the logo */
    height: auto;
    margin-left: 50px; /* Move the logo to the right */
}

    



@keyframes slideIn {
    from {
        left: -100%; /* Start position off the screen */
    }
    to {
        left: 0; /* End position */
    }
}

.navbar-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start; /* Align text to the left */
    align-items: center;
    display: flex;
    list-style-type: none;
}


.navbar-menu li {
    margin-right: 15px; /* Decrease margin between navbar items */
    font-size: 18px; /* Decrease font size for navbar items */
    opacity: 0; /* Initially hidden */
    animation: fadeIn 1s 1s ease forwards; /* Fade-in animation with delay */
}


@media screen and (max-width: 1350px) {
    .navbar-menu li   {
        margin-right: 2.5px;

    }


}



.navbar-logo {
    position: relative;
    width: 150px; /* Increase the width of the logo */
    height: auto;
    margin-left: 50px; /* Move the logo to the right */
}

    
@media screen and (max-width: 768px) {
    .navbar-logo {
        margin-left: 1px; /* Move the logo to the right */
    }
    
     
}



@media screen and (max-width: 1222px) {
    .navbar-menu li   {
        margin-right: 2.5px;

    }
}


@media screen and (max-width: 1200px) {
    .navbar-menu li   {
        margin-right: 0px;

    }
}


.navbar-menu li:last-child {
    margin-right: 0;
}

.navbar-menu li a {
    position: relative;
    right: 50px;
    color: #000;
    text-decoration: none;
    font-size: 15px; /* Increase font size for navbar links */
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar-menu li a:hover {
    color: #fff; /* Change color on hover */
}

.centered-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Ensure text contrasts well with the background */
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    opacity: 0; /* Initially hidden */
    animation: fadeIn 1s 1s ease forwards; /* Fade-in animation with delay */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a subtle text shadow */
    white-space: nowrap; /* Prevent text from wrapping */

}

.centered-text1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Ensure text contrasts well with the background */
    text-align: center;
    font-size: 38px;
    font-weight: bold;
    opacity: 0; /* Initially hidden */
    animation: fadeIn 1s 1s ease forwards; /* Fade-in animation with delay */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add a subtle text shadow */
}

.custom-text {
    position: relative;
    top: 25px;
    text-align: center;
    font-family: 'Cabin', sans-serif; /* Use Cabin font */
    margin-top: 50px; /* Add space above the text */
}

.custom-header {
    font-family: 'Cabin', sans-serif;
    font-size: 36px;
    font-weight: bold;
    margin-right: 20px; /* Adjust margin-right to move the header further from the screen border */
}


.custom-text p {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: normal; /* Reset font weight to default */
    margin: 0 20px; /* Adjust margin to push the paragraph text further from the border */
    margin-bottom: 100px;
}

.sticky {
    background-color: #F7E7CE; /* Change navbar background color when sticky */
    transition: background-color 0.5s ease; /* Add smooth transition effect */
}


.sticky .navbar-menu a {
    color: #000 !important; /* Change color of navbar links when sticky */
}


.footer {
    background-color: #F7E7CE;
    color: #000;
    padding: 50px 0;
    text-align: center;
}

.footer-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}



.footer-top {
    margin-bottom: 40px;
}

.footer-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.footer-description {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer .facebook-icon {
    width: 40px;
    margin-top: 20px;
    border-radius: 50%;
}

@media screen and (min-width: 1140px) {

    .footer-sections {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: left;
    }

    .footer-section {
        flex: 1;
        min-width: 250px;
        margin-right: 10px;    
        margin-left: 10px;
        margin-bottom: 20px;
        margin: 10px;
    }

}


.footer-section {
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 16px;
    margin: 5px 0;
}

.footer a {
    color: #000;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-rights {
    font-size: 14px;
}


.hh {
    color: #fff;
}

/* Default styles */
.navbar-menu li a {
    font-size: 20px;
}
/* Default styles */
.navbar-menu li a {
    font-size: 20px;
}

/* Default styles */
.navbar-menu li a {
    font-size: 20px;
    margin-right: 20px; /* Default margin */
}

@media screen and (max-width: 768px) {
    .navbar-menu {
        flex-direction: column; /* Stack navbar items vertically on smaller screens */
        align-items: flex-start; /* Align navbar items to the start */
    }

    .navbar-menu li {
        margin-right: 0; /* Remove margin between navbar items */
    }

    .navbar-menu li a {
        padding: 10px; /* Add padding to navbar items for touch targets */
        font-size: 16px; /* Decrease font size for smaller screens */
    }

    .navbar-logo {
        margin-left: 10px; /* Decrease margin for logo on smaller screens */
    }
}

@media screen and (max-width: 1180px) {

    .navbar-menu li 

}

.hamburger {
    display: block;
    width: 50px;
    cursor: pointer;
    height: 35px;
    appearance: none;
    background: none;
    border: none;
    color: #000;
}



.hamburger .bar, .hamburger:before, .hamburger:after {
    width: 100%;
    height: 5px;
    background-color: #000;
    margin: 6px 0px;
    transition: 1s;
    content: "";
    display: block;
}

.hamburger.is-active:before {
    -webkit-transform: rotate(-45deg) translate(-8px, 6px); 
    transform: rotate(-45deg) translate(-8px, 6px);
}

.hamburger.is-active:after {
    -webkit-transform: rotate(45deg) translate(-9px, -8px); 
    transform: rotate(45deg) translate(-9px, -8px);
}

.hamburger.is-active .bar {

    opacity: 0;
    transition: 1ms;


}

.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    min-height: 100vh;
    z-index: 98;
    background-color: #F7E7CE;
    padding-top: 120px;
    transition: 0.4s;
}

.mobile-nav.is-active {
    left: 0;

}

.mobile-nav a {
    font-size: 14px;
    position: relative;
    top: 20px;
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto 16px;
    text-align: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #000;
    

}


@media (min-width: 1195px) {
    .mobile-nav {
        display: none;
    }

    .hamburger {
        display: none;
    }
}


@media (max-width: 1195px) {
    .navbar-menu {
        display: none;
    }

}

.background-image-about {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Set height to cover the entire viewport */
    z-index: -1; /* Place the image behind other content */
    filter: brightness(70%); /* Darken the image */
}

.background-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark tint color */
    z-index: 1; /* Ensure the tint layer is above the image */
}

.about-section {
    font-family: 'Cabin', sans-serif;
    font-size: 36px;
    font-weight: bold;
    margin-right: 20px; /* Adjust margin-right to move the header further from the screen border */
    text-align: center;
    margin-top: 15vh;

}

.about-section p {
    position: relative;
    text-align: center;
    font-size: 24px;
    font-weight: normal; /* Reset font weight to default */
    margin: 0 40px; /* Adjust margin to push the paragraph text further from the border */
    margin-bottom: 100px;
}
.team-header {
    text-align: center;
    margin-top: 150px;
}

.team-header .custom-header {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px; /* Adjust gap between cards */
    padding: 20px; /* Add padding around cards */
}

.team-card {
    width: 400px; /* Adjust card width */
    height: 550px; /* Adjust card height */
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 80%; /* Adjust image width */
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 28px; /* Increase font size */
    margin-bottom: 10px;
}

.team-card p {
    font-size: 20px; /* Increase font size */
    color: #888;
    margin-top: 10px; /* Add space between text and image */
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .team-cards {
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .team-card {
        width: calc(50% - 20px); /* Show two cards per row on smaller screens */
    }
}

.large-logo { 

    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 5%;
}


/* Custom CSS for testimonials */
.testimonials {
    position: relative;
    top: 150px;
    font-size: 25px;
}

.testimonial-header {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.testimonial-text {
    color: #000;
    font-size: 25px;
    font-style: italic;
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
}

.testimonial-name {
    color: #555;
    font-size: 25px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .testimonial-text {
        font-size: 22px;
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media screen and (min-width: 1024px) {
    .testimonial-text {
        font-size: 25px;
        margin-left: 15%;
        margin-right: 15%;
    }
}



  .title {
     text-align: center;
     font-family: 'Cabin', sans-serif; /* Use Cabin font */
     text-transform: uppercase;
     letter-spacing: 3px;
     font-size: 36px;
     line-height: 48px;
     padding-bottom: 48px;
  }


   .input-text {
      display: block;
      width: 100%;
      height: 36px;
      border-width: 0 0 2px 0;
      border-color: #000;
      font-family: 'Cabin', sans-serif; /* Use Cabin font */
      font-size: 18px;
      line-height: 26px;
      font-weight: 400;
      
      &:focus {
         outline: none;
      }
      
      &:focus,
      &.not-empty {
         + .label {
            transform: translateY(-24px);
         }
      }
   }
/* Default style for label */
.label {
    position: absolute;
    left: 20px;
    bottom: 11px;
    font-family: 'Cabin', sans-serif; /* Use Cabin font */
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #000;
    cursor: text;
    transition: opacity 0.2s ease-in-out;
}

/* Keep label visible even when input field is not empty */
.input-text + .label {
    opacity: 1;
}

   
   .submit-btn {
      display: inline-block;
      background-color: #000;
      color: #fff;
      font-family: 'Cabin', sans-serif; /* Use Cabin font */
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 16px;
      line-height: 24px;
      padding: 8px 16px;
      border: none;
      cursor: pointer;
   }
}

.submit-btn:hover {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-family: 'Cabin', sans-serif; /* Use Cabin font */
    text-transform: uppercase;
    border: #000;

 }


.note {
   position: absolute;
   left: 0;
   bottom: 10px;
   width: 100%;
   text-align: center;
   font-family: 'Cabin', sans-serif; /* Use Cabin font */
   font-size: 16px;
   line-height: 21px;
   
   .link {
      color: #888;
      text-decoration: none;
      &:hover {
         text-decoration: underline;
      }
   }
}

.get-in-touch {
    position: relative;
    top: 25px;
    margin: 200px auto 0; 
    text-align: center;
    max-width: 650px;
}

.email-phone {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh; /* Adjust as needed */
    flex-direction: column;
    margin-bottom: 10px;
}




.main-content1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh; /* Adjust as needed */
    flex-direction: column;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 2vh;
    margin-bottom: 2vh;
    font-size: 18px;
height: 75vh;
}

.main-content1 h1{
    font-size: 128px;

}

.main-content1 h2{
    font-size: 18px;
}



.main-content1 h3{
    font-size: 18px;
}

.main-content1 p{
    font-size: 18px;
}

.main-content1 ul {
    font-size: 18px;
}


.main-content1 ul li{
    font-size: 18px;
}



@media screen and (max-width: 400px) { 
    .main-content1 {
    
        margin-top: 12vh;
        margin-bottom: 12vh;
    } 
}


.font-size-class {
    font-size: 182px;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 15px; /* Add margin top */
}

.main-content1 p {
    font-size: 25px;
    font-weight: 400;
}

.main-content1 h2 {
    font-size: 25px;

}

.main-content1 h3 {
    font-size: 25px;

}

.main-content1  li {
    font-size: 25px;
}

.curriculum-section {
    display: flex;
    justify-content: center; /* Align items horizontally */
    align-items: flex-start; /* Align items at the start vertically */
    margin-top: 10vh; /* Add margin top */
}

.curriculum-item {
    text-align: center; /* Center align the content */
    max-width: 600px; /* Increase maximum width */
    margin: 0 20px; /* Add margin around each item */
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Align items horizontally */
}



.buy-now-btn {
    display: inline-block;
    background-color: #ffcc00;
    color: #000;
    font-family: 'Cabin', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-top: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.buy-now-btn:hover {
    background-color: #f0c200;
}

.curriculum-item {
    text-align: center; /* Center align the content */
    max-width: 600px; /* Increase maximum width */
    margin: 0 20px; /* Add margin around each item */
}

.curriculum-item img {
    max-width: 100%; /* Make images responsive */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Add space between image and text */
}



.books {
    color: #000;
    text-align: center;
    margin-top: 40vh;
    margin-bottom: 25vh;
    font-size: 50px;

}



.charter-info {
    text-align: center;
    margin: 100px; 
    font-size: 40px;
}

@media screen and (max-width: 768px) {
    .charter-info   {
        

        margin: 50px;


    }
}



.charter-list {
    list-style-type: disc; /* Use disc bullets */
    font-size: 25px; /* Adjust the font size as needed */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center-align the list horizontally */
}

.charter-list li {
    margin-bottom: 5px; /* Adjust spacing between list items */
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #F7E7CE;
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: bold;
    transition: color 0.3s ease;
}

.dropdown-content a:hover {

    color: white;

} 

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn:hover {
    background-color: #F7E7CE; /* Change background color on hover */
}

.tutoring-text {
    text-align: center;
    margin-top: 10vh;
    font-size: 20px;
    font-weight: bold;
    margin-left: 300px;
    margin-right: 300px;
    margin-bottom: 150px;
}

@media screen and (max-width: 1000px) {
    .tutoring-text   {
        
        margin-right: 100px;
        margin-left: 100px;

    }
}


@media screen and (max-width: 800px) {
    .tutoring-text   {
        
        margin-right: 50px;
        margin-left: 50px;

    }
}

@media screen and (max-width: 700px) {
    .tutoring-text   {
        
        margin-right: 1px;
        margin-left: 1px;

    }
}


/* Style for the assessment section */
.assessment-section {
    margin-top: 25vh; /* Increase margin-top */
    margin-bottom: 25vh; /* Increase margin-bottom */
    margin-left: 7.5vh; /* Add margin to the left */
    margin-right: 7.5vh; /* Add margin to the right */
    text-align: center;
}

.assessment-section p {
    font-size: 25px;

}

.assessment-section h1, h2, h3 {
    font-size: 30px;

}

.assessment-section ul li {
    font-size: 25px;

}


/* Center-align bullet pointed sections */
.assessment-section ul {
    text-align: left; /* Left align the content */
    margin-left: auto; /* Center align the content */
    margin-right: auto; /* Center align the content */
    max-width: 600px; /* Limit width to make it look better */
}



/* Responsive margin top for assessment section */
@media screen and (max-width: 768px) {
    .assessment-section {
        margin-top: 20vh; /* Increase margin top for smaller screens */
    }
}

@media screen and (max-width: 480px) {
    .assessment-section {
        margin-top: 30vh; /* Further increase margin top for smaller screens */
    }
}

/* Set color of assessment section */
.assessment-section {
    color: #000; /* Black color */
}

/* Adjustments for the centered wrapper */
.centered-wrapper {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

/* Adjustments for the affiliate text */
.affiliate-text {
    margin-top: 25vh;
    text-align: center;
    max-width: 800px; /* Set a maximum width for better readability */
    margin-bottom: 25vh;
}

.affiliate-text h1 {
    font-size: 30px;
}

.affiliate-text p {
    font-size: 18px;
}

.affiliate-text ul li {
    text-align: left;
    font-size: 18px;
}

.learning-text {
    text-align: center;
    margin-top: 25vh;
    font-size: 20px;
    font-weight: bold;
    margin-left: 300px;
    margin-right: 300px;
    margin-bottom: 150px;
}


@media screen and (max-width: 1000px) {
    .learning-text   {
        
        margin-right: 100px;
        margin-left: 100px;

    }
}


@media screen and (max-width: 800px) {
    .learning-text   {
        
        margin-right: 50px;
        margin-left: 50px;

    }
}

@media screen and (max-width: 700px) {
    .learning-text   {
        
        margin-right: 1px;
        margin-left: 1px;

    }
}

.sticky ul li a:hover {

    color: #fff;
}

.main-content p {
    font-size: 15p0x;
} 



@media (max-width: 1000px) {
    .navbar-logo {
        position: relative;
        right: 3vh;             /* Align it to the far left with no gap */
    }
    
    .centered-text {
        white-space: wrap; /* Prevent text from wrapping */

    }

  }

  @media (max-width: 300px) {
    .centered-text {
        margin-top: 8vh;
        font-size: 20px;
    }
}