body {
    overflow-x: hidden !important;
}

.nav-menus-wrapper .nav-menu li {
    padding: 0px 22px;
}

.header-logo img {
    width: 200px;
}

.navigation .nav-menus-wrapper .nav-menu li a.active {
    color: #07294D;
    position: relative;
}


.navigation .nav-menus-wrapper .nav-menu li .active-indicator {
    display: block;
    text-align: center;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 30px;
}


.active-indicator {
    display: block;
    text-align: center;
    margin-top: 4px;
    /* Adjust spacing */
}

/* preloader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .leap-frog {
    --uib-size: 50px;
    --uib-speed: 1.5s;
    --uib-color: #07294D;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--uib-size);
    height: var(--uib-size);
  }
  
  .leap-frog__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
  }
  
  .leap-frog__dot::before {
    content: '';
    display: block;
    height: calc(var(--uib-size) * 0.22);
    width: calc(var(--uib-size) * 0.22);
    border-radius: 50%;
    background-color: var(--uib-color);
    will-change: transform;
  }
  
  .leap-frog__dot:nth-child(1) {
    animation: leapFrog var(--uib-speed) ease infinite;
  }
  
  .leap-frog__dot:nth-child(2) {
    transform: translateX(calc(var(--uib-size) * 0.4));
    animation: leapFrog var(--uib-speed) ease calc(var(--uib-speed) / -1.5) infinite;
  }
  
  .leap-frog__dot:nth-child(3) {
    transform: translateX(calc(var(--uib-size) * 0.8)) rotate(0deg);
    animation: leapFrog var(--uib-speed) ease calc(var(--uib-speed) / -3) infinite;
  }
  
  @keyframes leapFrog {
    0% {
      transform: translateX(0) rotate(0deg);
    }
    33.333% {
      transform: translateX(0) rotate(180deg);
    }
    66.666% {
      transform: translateX(calc(var(--uib-size) * -0.4)) rotate(180deg);
    }
    99.999% {
      transform: translateX(calc(var(--uib-size) * -0.8)) rotate(180deg);
    }
    100% {
      transform: translateX(0) rotate(0deg);
    }
  }
  











/* ============footer=============== */
.footer-area {
    width: 100% !important;
    height: auto;
}

.footer-widget {
    padding-top: 1px;
    padding-bottom: 40px
}

.foot-1 ul li {
    color: white;
    font-size: 14px;
    text-align: center;
}

.foot-1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.navigation .nav-menus-wrapper .nav-menu li:hover>a {
    color: #07294D;
}

.footer-title {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding-bottom: 8px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 3px;
    background-color: white;
}



/* Half underline effect */
.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 3px;
    background-color: white;
    transition: width 0.3s ease-in-out;
}

/* Hover effect: Expand underline */
.footer-title:hover::after {
    width: 100%;
}

/* Style the list */
.link-list {
    list-style: none;
    padding: 0;
}

.link-list li {
    margin-bottom: 8px;
}

/* Style the links */
.link-list li a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    transition: color 0.3s ease-in-out;
}


.link-list li a i {
    margin-right: 8px;
    transition: transform 0.3s ease-in-out;
}


.link-list li a:hover {
    color: #0c8b51;
}

.link-list li a:hover i {
    transform: translateX(5px);
}

.footer-copy {
    display: flex;
    justify-content: space-around;
    background-color: white;
    padding: 15px 0px;
    align-items: center;
}

.footer-copy p {
    font-size: 16px;
}


/* about us  */
.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}


.about-list li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    width: 6px;

    height: 6px;

    background-color: #07294D;

    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;

}

.contact-form {
    border: 1px solid rgb(221, 221, 221);
    border-radius: 7px;
    padding-bottom: 30px;
}

.about-list li::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 50%;
    width: 12px;
    height: 12px;
    background-color: rgba(7, 41, 77, 0.6);

    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 1;

    animation: blink 1s infinite;
}

/* Blinking animation */
@keyframes blink {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 0;
    }
}

.footer-area {
    position: relative;
    background-color: #07294D;
    color: #ffffff;
    padding: 20px;
    overflow: hidden;
}


.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}


.rating-link a {
    color: white;
    font-weight: 500;
    text-decoration: underline;
}

.rating-link a:hover {
    color: white;
}

.error-message {
    color: red;
    font-size: 14px;
}


.rating-link a {
    position: relative;
    display: inline-block;

    color: white;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
    padding-left: 20px;
}

.rating-link a::before {
    content: "→";
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.rating-link a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.rating-link a:hover {
    transform: translateX(10px);
}

.features-wrapper p {
    text-align: center;
}
.courses-title{
    color: white;
}
.foot-1 img{
    width: 280px;
}

.single-courses-2 .duration-rating {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* When active, show the duration */
.single-courses-2.active .duration-rating {
    opacity: 1;
    visibility: visible;
}



@media screen and (max-width:1440px) {
    .slider-content .title {
        font-size: 54px;
    }


}
@media screen and (max-width:1199px) {

    .slider-area {
        padding-top: 55px;
    }
}

@media screen and (max-width:991px) {

    .navigation .nav-menus-wrapper .nav-menu li a.active {
        color: green;
        position: relative;
    }

    .foot-1 {
        display: flex;
        justify-content: center;
        align-items:start;
    }

    .foot-1 img {
        width: 34%;
    }
    .slider-area {
        padding-top: 110px;
    }
    .slider-content .title {
        font-size: 48px;
    }
    .about-content {
        max-width: 600;
    }
    .navigation .nav-menus-wrapper .nav-menu li:hover>a {
        color: green;
    }
    .contact-form{
        padding: 10px;
    }
}

@media screen and (max-width:767px) {}

@media screen and (max-width:575px) {
    .footer-copy {
        display: flex;
        justify-content: space-around;
        background-color: white;
        padding: 10px 0px;
        align-items: center;
    }

    .footer-copy p {
        font-size: 14px;
    }
    .foot-1 img {
        width: 55%;
    }

    .footer-area {
        position: relative;
        z-index: 5;
        padding-top: 20px
    }
    .slider-content .title {
        font-size: 38px;
    }
    .slider-area {
        padding-top: 160px;
    }
}

@media screen and (max-width:425px) {
    .footer-copy {
        flex-direction: column;
    }

    .foot-1 {
        display: flex;
        justify-content: start !important;
        align-items: left !important;
    }

    .header-logo img {
        width: 120px;
    }
    .slider-content .title {
        font-size: 38px;
    }


}