@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gotu&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
:root{
    --green: #5d972f;
    --green2:rgb(120, 216, 41);
    --green3: #08a657;
    --blue: #1c7ff0;
    --white: #ffffff;
    --black: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Lato", sans-serif; */
    /* font-family: "Gotu", sans-serif; */
    /* font-family: "Poppins", serif; */
    font-family: "Merriweather", serif;
    scroll-behavior: smooth;
}
#top{
    display: inline-block;
    background-color: var(--green3);
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2.4em;
    line-height: 50px;
    color: #fff;
  }
  #top:hover {
    cursor: pointer;
    background-color: var(--black);
  }
  #top:active {
    background-color: var(--black);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    /* background: rgba(255, 255, 255, 0.2); */
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    /* border: 1px solid rgba(255, 255, 255, 0.18); */
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    /* box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37); */
    width: 95%;
    border-radius: 0 0 30px 30px;
    transition: .5s ease-in-out;
}
.logo{
    padding: 10px 0;
}
#logo{
    transition: .5s ease-in-out;
    width: 110px;
}
.logo-small{
    width: 60px !important;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li {
    position: relative;
    margin-left: 1.2rem;
}
.nav-links a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin: 10px 0;
    border-bottom: 3px solid transparent;
}

.nav-links a:hover {
    color: var(--blue);
    border-bottom: 2px solid var(--blue);
}

/* Dropdown Styles */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--blue);
    /* background: rgba(255, 255, 255, 0.25); */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    min-width: 250px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1;
    top: 100%;
    left: 0;
    overflow: hidden;
}

.dropdown-content:nth-last-child{
    border-color: transparent;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    display: block;
    margin: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.18);
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    border-color: transparent;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.8s ease;
}

.dropdown-arrow {
    margin-left: 7px;
    transition: transform 0.8s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}
/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 40px;
    color: var(--blue);
}

#banner .ban-wrap{
    position: relative;
}
#banner .ban-text{
    width: 30%;
    position: absolute;
    top: 50%;
    right: 200px;
    margin-top: 60px;
    transform: translateY(-50%);
    color: #fff;
    background-color: rgba(0,0,0,0.45);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    text-align: center;
}
#banner .ban-text h1{
    font-size: 50px;
    font-family: "Gotu", sans-serif;
}
#banner .ban-text h5{
    margin-top: 20px;
    color: #efefef;
    font-weight: 300;
    font-size: 18px;
    font-family: "Lato", sans-serif;
}
#banner .b-btn a{
    color: #fff;
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid #fff;
    transition: .3s ease-in-out;
}
#banner .b-btn a:hover{
    background-color: var(--blue);
    border-color: var(--blue);
}
.carousel-indicators{
    display: flex;
    align-items: center;
}
.carousel-indicators [data-bs-target]{
    width: 15px;
    height: 15px;
    margin: 0 5px;
    border-radius: 50%;
    opacity: 1;
}
.carousel-indicators .active{
    width: 25px;
    height: 25px;
    background-color: var(--blue) !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
#header .logo img{
    width: 70px;
    /* filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(1%) hue-rotate(330deg) brightness(94%) contrast(100%); */
}
#header a{
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
}
#header ul{
    list-style: none;
    display: flex;
}
#header ul li a{
    padding: 10px 20px;
    transition: .3s ease-in-out;
}
#header ul li a:hover{
    color: var(--green);
}
#header ul li{
    margin: 0 5px;
}
.logo-white{
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(1%) hue-rotate(330deg) brightness(94%) contrast(100%);
} 
.menu-color ul li a{
    color: var(--black) !important;
}
.menu-color ul li a:hover{
    color: var(--green) !important;
}
#header{
    position: fixed;
    /* background-color: rgba(0, 0, 0, 0.4); */
    /* background-color: rgba(255, 255, 255, 0.6); */
    z-index: 99999999;
    transition: .4s ease-in-out;
}
.header-shadow{
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.3);
}
#header .sign a{
    /* background-color: var(--green); */
    background-color: #6d02c0;
    padding: 10px 30px;
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    transition: .3s ease-in-out;
}
#header .sign a:hover{
    background-color: var(--black);
}
.pos-fixed{
    background-color: var(--white) !important;
}


.sub-heading{
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
    font-size: 18px;
}
.heading{
    font-family: "Gotu", sans-serif;
    font-size: 45px;
    font-weight: 400;
}
.heading .s-green{
    font-family: "Gotu", sans-serif;
    color: var(--green3);
}
.heading .s-blue{
    font-family: "Gotu", sans-serif;
    color: var(--blue);
}
#about{
    background-image: url(./img/a-bg.png);
    background-size: cover;
    background-position: center;
}
#about h1{
    margin-bottom: 26px;
}
#about p{
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
}
#about p span{
    font-weight: 700;
    color: var(--blue);
}
#about .a-btn{
    margin-top: 20px;
}
#about .a-btn a{
    /* background-color: #008ec4; */
    background-color: var(--blue);
    border-radius: 0;
    font-size: 14px;
    padding: 10px 35px;
    color: var(--white);
}
#about .a-btn a:hover{
    background-color: var(--black);
}
#founder{
    background-image: url(./img/test-bg.png);
    background-size: cover;
    background-position:center;
    background-attachment: fixed;
}
#founder .f-img img{
    width: 250px;
}
#founder h1{
    color: var(--white);
    font-size: 50px;
    font-weight: 700;
}
#founder h4{
    color: var(--green2);
    font-size: 24px;
    font-weight: 500;
}
#founder h2{
    color: var(--white);
}
#founder h5{
    margin-bottom: 30px;
    color: var(--green2);
}
#founder p{
    font-family: "Gotu", sans-serif;
    color: var(--white);
    line-height: 1.7;
    font-weight: 300;
    text-align: justify;
}
#founder .a-btn{
    margin-top: 30px;
}
#founder .a-btn a{
    background-color: var(--green3);
    border-radius: 0;
    font-size: 14px;
    padding: 10px 35px;
    color: var(--white);
}
#founder .a-btn a:hover{
    background-color: var(--black);
}
#events .e-link{
    text-decoration: none;
}
#events .e-link-1{
    text-decoration: none;
}
#events .e-link:hover .event{
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.2);
}
#events .e-link:hover i{
    transform: translateX(20px);
    color: var(--green);
}
#events .e-link:hover img{
    transform: scale(1.4) rotate(10deg);
}
#events .event{
    background-color: #F5F3EF;
    border-radius: 15px;
    overflow: hidden;
    transition: .3s ease-in-out;
}
#events .e-link-1:hover .event{
    box-shadow: 0 0 25px 0 rgba(0,0,0,0.2);
}
#events .e-link-1:hover i{
    transform: translateX(20px);
    color: var(--blue) !important;
}
#events .e-link-1:hover img{
    transform: scale(1.3) rotate(15deg);
}
#events .e-link:hover i{
    color: var(--blue) !important;
}
#events .event1{
    background-color: #F5F3EF;
    border-radius: 15px;
    overflow: hidden;
    transition: .3s ease-in-out;
}
#events .e-tag span{
    padding: 8px 20px;
    border-radius: 50px;
    background-color: var(--green3);
    color: var(--white);
    font-family: "Gotu", sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline;
    z-index: 777;
}
#events .e-tag{
    position: relative;
    z-index: 2;
    margin-top: -40px;
}
#events .e-img img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: .4s ease-in-out;
}
#events .e-img-1{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
#events .e-img{
    position: relative;
    overflow: hidden;
    z-index: 1;
}
#events .e-img-1 img{
    height: 400px;
    object-fit: cover;
    overflow: hidden;
    transition: .4s ease-in-out;
}
#events .e-text h3:hover{
    color: var(--blue);
}
#events .e-text h3{
    color: var(--green3);
    font-size: 22px;
    font-family: "Gotu", sans-serif;
    transition: .3s ease-in-out;
}
#events .e-text-wrap-1 .e-text h3{
    font-size: 28px;
}
#events .e-text-wrap-1 .date h4{
    font-size: 18px;
}

#events .date h4{
    font-size: 14px;
    color: #585858;
    margin-bottom: 0;
    font-family: "Gotu", sans-serif;
}
#events .date i{
    font-size: 20px;
    color: var(--green3);
    margin-bottom: 0;
    margin-right: 20px;
    transition: .3s ease-in-out;
}

#events .a-btn{
    margin-top: 90px;
    padding-left: 10px;
}
#events .a-btn a{
    background-color: var(--black);
    border-radius: 0;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    padding: 15px 35px;
    color: var(--white);
    border-radius: 50px;
    font-family: "Lato", sans-serif;
    letter-spacing: 2px;
    transition: .3s ease-in-out;
}
#events .a-btn a:hover{
    background-color: var(--green3);
}
.slick-dots li button:before {
    display: none;
}

/* Reset button styles */
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    width: 12px;
    height: 12px;
    background: #ccc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Active dot style */
.slick-dots li.slick-active button {
    background: var(--blue); /* Your accent color */
    width: 16px;
    height: 16px;
}
.slick-dots {
    text-align: center;
    bottom: -100px;
}
#banner .slick-dots li button {
    background: #fff;
}
#banner .slick-dots li.slick-active button {
    background: var(--blue);
}
#banner .slick-dots {
    bottom: 20px;
}
#banner .slick-dots li {
    display: inline-block;
    margin: 10px 3px;
}
.slick-dots li {
    display: inline-block;
    margin: 10px 6px;
}
#courses .course{
    background-color: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 20px;
}
#courses .course .c-details {
    background-color: #F5F3EF;
    border-radius: 20px;
    margin-top: -40px;
    z-index: 2; /* you don't need a huge number */
    position: relative;
}
#courses .a-btn{
    margin-top: 40px;
    margin-bottom: 30px;
}
#courses .a-btn a{
    background-color: var(--blue);
    border-radius: 0;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    padding: 15px 35px;
    color: var(--white);
    border-radius: 50px;
    font-family: "Lato", sans-serif;
    letter-spacing: 2px;
    transition: .3s ease-in-out;
}
#courses .a-btn a:hover{
    background-color: var(--black);
}
#courses .course .c-img img{
    height: 250px;
    object-fit: cover;
}
#courses .course .c-img {
    z-index: 1;
    position: relative;
}
#courses .course h1{
    font-family: "Gotu", sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--green3);
}
#courses .course .c-img img{
    border-radius: 20px;
}
#courses .course .c-details span{
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--blue);
    font-family: "Lato", sans-serif;
}
#courses .course .c-details h4{
    font-size: 18px;
    font-weight: 600;
    font-family: "Lato", sans-serif;
}

#test .test-inner ul{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
#test .test-inner ul li{
    margin: 0 3px;
    font-size: 22px;
    color: #d2bf32;
}
#test{
    background-image: url(./img/test-bg4.png);
    background-size: cover;
    background-position: center;
}
#test .t-text p{
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 500;
    font-family: "Gotu", sans-serif;
    color: #000;
}
#test .t-img{
    margin: 30px 0;
}
#test .t-img img{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}
#test .t-name h5{
    font-size: 16px;
    font-weight: 600;
    font-family: "Lato", sans-serif;
    color: var(--black);
}
#test .test-inner{
    height: 100%;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    min-height: 470px;
    max-height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}
.test-wrap {
    display: flex;
    flex-wrap: wrap;
}

#quote{
    background-image: url(./img/q-bg.png);
    background-size: cover;
    background-position: center;
}
#quote img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: .4s ease-in-out;
    opacity: .6;
}
#quote img:hover{
    transform: scale(1.2);
    opacity: 1;
}
#quote .q-img{
    overflow: hidden;
}
#quote h1{
    color: var(--green3);
    font-weight: 400;
    margin-bottom: 20px;
    font-family: "Gotu", sans-serif;
}
#quote h6{
    font-weight: 400;
    margin-bottom: 0;
    font-size: 22px;
}
#contact .c-icon img{
    width: 50px;
}
#contact h5{
    font-family: "Gotu", sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
    cursor: pointer;
    transition: .3s ease-in-out;
}
#contact h5:hover{
    color: rgb(169, 0, 0);
    text-decoration: underline;
}
#footer{
    /* background-image: url(./img/test-bg.png); */
    background-image: linear-gradient(90deg,#384bb7,#0f6bcd);
    /* background-color: var(--black); */
}
#footer .logo img{
    width: 80px;
    /* filter: brightness(0) saturate(100%) invert(93%) sepia(100%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%); */
}
#footer ul{
    list-style: none;
}
#copy ul{
    list-style: none;
}
#copy .f-icon ul{
    display: flex;
    align-items: center;
    justify-content: center;
}
#copy .f-icon ul li{
    margin: 0 6px;
    font-size: 20px;
}
#copy .f-icon ul li a{
    transition: .3s ease-in-out;
    color: var(--white);
}
#copy .f-icon ul li a:hover{
    color: var(--green2);
}
#footer .f-link h5{
    color: var(--white);
    font-family: "Gotu", sans-serif;
}
#footer .f-list ul li a{
    text-decoration: none;
    color: var(--white);
    font-family: "Lato", sans-serif;
}
#footer .f-list ul li a:hover{
    text-decoration: underline;
}
#footer .f-list ul li{
    margin: 4px 0;
}
#footer p{
    color: #fff;
    font-family: "Gotu", sans-serif;
    font-size: 14px;
}
.newsletter-input {
    border-radius: 50px;
    padding: 15px;
    font-size: 14px;
  }
  .newsletter-btn {
    background-color: var(--green3);
    color: white;
    border-radius: 50px;
    border: none;
    width: 40%;
    font-size: 14px;
  }
  .newsletter-btn:hover {
    background-color: var(--black);
    color: var(--white);
  }

#copy{
    background-image: linear-gradient(90deg,#384bb7,#0f6bcd);
    border-top: 1px solid #6f84ba;
}
#copy p{
    font-size: 14.3px;
    color: #d7d7d7;
    font-family: "Gotu", sans-serif;
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.8rem 1.5rem;
    }
    
    .nav-links li {
        margin-left: 0.8rem;
    }
}

@media (max-width: 1350px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 90%;
        height: auto;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 0;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        transition: all 0.5s ease;
    }
    
    .nav-links.active {
        left: 5%;
    }
    
    .nav-links li {
        width: 100%;
        margin: 0;
        text-align: center;
    }
    
    .nav-links a {
        justify-content: center;
        padding: 1rem;
        border-radius: 0;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 0;
        border: none;
        animation: none;
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .menu-toggle {
        display: block;
    }
}