@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Mulish", sans-serif;

}
html,body{
    overflow-x: hidden;
}
.top{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    background-color: white;
    border: 0px solid #939191; /* Light gray border */
    border-radius: 5px;
    box-shadow: 0px 2px 4px  #939191; /* Subtle shadow effect */
    outline: none; /* Remove default focus outline */
    transition: box-shadow 0.3s ease;
}
.class-dropdown {
    position: relative;
    display: inline-block;
    background-color: #c45a02;
    color: white;
    margin-top: 12px;
    padding-bottom: 5px;
    padding-left: 10px;
    border-radius: 10px;
    padding-right: 5px;
        z-index: 9;

}
.top-right{
    margin-top: 7px;
}

.switch-class-btn {
    margin-top: 5px;
    background-color: #da6602;
    color: white;
    /* padding: 10px 20px; */
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 95px;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
    margin-left: 0px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 99999;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.class-dropdown:hover .dropdown-content {
    display: block;
}

.class-dropdown:hover .switch-class-btn {
    background-color: #c45a02;
}

.top button{
    background: none;
    border: none;
    outline: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}
.text-black{
    color: #333 !important;
}
.top-left span{
    position: relative;
    top: -10px;
    line-height: 1px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 20px;
    transition: color 0.3s ease;
}
.top .left svg{
    width: 30px;
    height: 40px;
}
.top .left{
    font-size: 24px;
    margin-left: 20px;
    padding: 10px;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
}
.top h2{
    margin-top: 15px;
    font-size: 20px;
}
.top .right{
    margin-right: 20px;
}
.top .right svg{
    width: 25px;
    height: 20px;
}

.side-menu{
    position: fixed;
    top: 0;
    left: -50%;
    width: 50%;
    background-color: white;
    border: 0px solid #939191; /* Light gray border */
    border-radius: 5px;
    box-shadow: 0px 2px 4px  #939191; /* Subtle shadow effect */
    outline: none; /* Remove default focus outline */
    transition: box-shadow 0.3s ease;
    height: 100vh;
    z-index: 9999;
        transition: all 0.3s ease;


}
.side-menu .side-top{
    display: flex;
    height: 110px;
    /* sjustify-content: space-between; */
    padding: 15px;
    background-color: #faf7f7;
    color: black;
    border-bottom: 1px solid #ccc;
    border: 0px solid #939191; /* Light gray border */
    border-radius: 5px;
    box-shadow: 0px 2px 4px  #939191; /* Subtle shadow effect */
    outline: none; /* Remove default focus outline */
    transition: box-shadow 0.3s ease;
    
}
.side-menu .side-top img{
    width: 50px;
    height: 50px;
    border: 2px solid #050505;
    border-radius: 70px;
    margin-right: 0px;
    margin-top: 15px;
    background-color: gray;
    
}
.side-menu .side-top .right{
    margin-left: 10px;
    margin-top: 1px;
    font-style: 20px;
}
.side-menu .side-top .name{
    font-size: 20px;
    margin-top: 10px;
    font-weight: 600;
}

.side-menu .side-content{
    padding: 20px;
    overflow-y: auto;
    height: 1800px;
    font-size: 15px;
    background-color: white;

    border-bottom: 1px solid #ccc;
    border: 0px solid #939191; /* Light gray border */
    border-radius: 5px;
    box-shadow: 0px 2px 4px  #939191; /* Subtle shadow effect */
    outline: none; /* Remove default focus outline */
    transition: box-shadow 0.3s ease;
    
}
.side-menu .side-content p{
    padding-bottom: 10px;
    color: #333;
}
.side-menu .menu{
    display: flex;
    /* justify-content: space-around; */
    /* padding-bottom: 20px; */
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.side-menu .menu i{
    margin-top: 5px;
    width: 40px;
    height: 40px;
    
}
.side-menu .menu i svg{
    width: 20px;
    height: 20px;
}
body.menu-open .side-menu{
    left: 0;
    transition: all 0.3s ease;
}

.menu-background{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(244, 240, 240, 0.5);
    z-index: 9998;
    display: none;
}
.menu-background.show{
    display: block;
}


/* home */
.slider-container{
    overflow-x: hidden;
    width: 100vw;
    /* height: 380px; */
    position: relative;
    /* margin-top: 50px;  */
}
.home_swiper img{
    width: 96vw;
    margin-left: 1vw;
    /* height: 370px; */
    border-radius: 15px;
    margin: 10px;
    
}
.menu-content{
    width: 80%;
}
.home_swiper {
  width: 100vw;
}
.swiper-pagination{
  position: relative !important;
}

.services{
    background-color: rgb(248, 171, 129);
    padding: 10px;
    padding-right: 15px;
    padding-left: 15px;
    border: 0px solid #939191; /* Light gray border */
    border-radius: 5px;
    box-shadow: 0px 2px 4px  #939191; /* Subtle shadow effect */
    outline: none; /* Remove default focus outline */
    transition: box-shadow 0.3s ease;

}
.services h2{
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.services .services-card-container{
    /* display: flex; */
    flex-wrap: wrap;
    /* justify-content: space-around; */
    margin-bottom: 0px;

    
}
.services-card-container .row{
    display: flex;
    /* justify-content: space-between; */
    gap: 40px;
}

.services-card-container .row .services-card img{
    width: 50px;
    height: 50px;
    border-radius: 5px;
}
.row .services-card{
    display: flex;
    gap: 10px;
    background-color: white;
    width: 45%;
    padding: 10px;
    border-radius: 15px;
     box-shadow: 0px 2px 4px  #da6602; /* Subtle shadow effect */
    outline: none; /* Remove default focus outline */
    transition: box-shadow 0.3s ease;
} 
.row .services-card p{
    margin-top: 14px;
}
.row2{
    display: flex;
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.row2 .services-card img{
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-left: 10%;
}
.row2 .services-card{
    background-color: white;
    width: 45%;
    padding: 10px;
    border-radius: 15px;
     box-shadow: 0px 2px 4px  #da6602; /* Subtle shadow effect */
    outline: none; /* Remove default focus outline */
    transition: box-shadow 0.3s ease;
}

/* tabnine */
.previous-classes {
    padding: 20px;
    background-color: #f5f5f5;
    /* overflow-x: hidden; */
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.view-all-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.view-all-btn:hover {
    background-color: #45a049;
}

.previous-classes-swiper {
    padding: 20px 0;
}

.class-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.class-card img {
    width: 100%;
    /* height: 150px; */
    object-fit: cover;
}

.class-card h3 {
    font-size: 16px;
    margin: 10px;
}

.class-card p {
    font-size: 14px;
    color: #666;
    margin: 0 10px 10px;
}

.class-card .footer{
    border-top: 1px solid black;
    padding: 10px;

}
.class-card .footer button{
    background-color: #e37245;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 98%;
    font-size: 20px;
     box-shadow: 0px 2px 4px  #da6602; /* Subtle shadow effect */
    outline: none; /* Remove default focus outline */
    transition: box-shadow 0.3s ease;
}


/* notes */
.notes-section {
    padding: 20px;
    background-color: #f5f5f5;
    margin-top: 20px;
}

.notes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    row-gap: 10px;
    justify-content: space-between;
}

.notes-card {
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    width: 43%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.notes-card:hover {
    transform: translateY(-5px);
}

.subject-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.subject-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.notes-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.notes-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.view-notes-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #da6602;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-notes-btn:hover {
    background-color: #c45500;
}

/* FOOTER */
.fixed-footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.footer-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-icon {
    margin-bottom: 4px;
    color: #666;
}

.footer-menu-item span {
    font-size: 12px;
    color: #666;
}

.footer-menu-item.active .footer-icon,
.footer-menu-item.active span {
    color: #da6602;
}

.footer-menu-item:hover .footer-icon,
.footer-menu-item:hover span {
    color: #da6602;
}

/* Adjust main content to accommodate fixed footer */
body {
    padding-bottom: 70px; /* Adjust this value based on your footer height */
}


.dropup-menu {
    position: fixed;
    bottom: 60px; /* Adjust based on your footer height */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    padding: 10px 0;
    z-index: 999;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
}

.dropup-menu.show {
    display: flex;
    transform: translateY(0);
}

.dropup-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dropup-item:hover {
    background-color: #f5f5f5;
}

.dropup-icon {
    margin-right: 15px;
    color: #da6602;
}

.dropup-item span {
    font-size: 16px;
    color: #333;
    position: relative;
    bottom: 5px;
}
.dropup-item a{
    text-decoration: none;
}

.menu a{
    display: flex;
    text-decoration: none;
    color: #333;
}
/* syllabus */
.syllabus-banner-container{
    position: relative;
}

.syllabus-banner-container img{
    width: 100%;
    height: 200px;
}

.syllabus-banner-container a{
    position: absolute;
    top: 42%;
    right: 10px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: background-color 0.3s ease;
    border: 2px solid #4CAF50;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: #4CAF50;
}

.vdo-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vdo-container video {
    width: 100%;
    display: block;
}

.vdo-btn {
    position: static;
    margin-left: 35%;
    /* transform: translateX(-0%); */
    background-color: #ff9900;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
/* lecture */

.lecture-container{
    width: 90%;
    padding-left: 4px;
    margin-top: 20px;
    margin-left: 20px;
}
.lecture-container .cards{
    background-color:rgb(228, 227, 227);
    border: #666;
    border-radius: 10px;
    padding: 20px;
        box-shadow: 5px 8px 10px rgba(0, 0, 0, 0.5);

}
.lecture-container .cards .row{
    display: flex;
    gap: 20px;
}

.lecture-container .cards .row img{
    width: 80px;
    height: 80px;
    border-radius: 5px;
}

.lecture-container .cards .row h4{
    font-size: 15px;
    margin-bottom: 10px;
    color: gray;
    text-transform: capitalize;

}
.lecture-container .cards .row h3{
    text-transform: capitalize;
}
.lecture-container .cards .btn-container{
    margin-top: 20px;
    border-top: 1px solid #000;
    padding-top: 10px;
    justify-content: space-around;
}

.lecture-container .cards .btn-container {
    margin-top: 20px;
    border-top: 1px solid #000;
    padding-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lecture-container .cards .btn-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    background-color: #da6602;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    flex: 1;
    margin: 0 5px;
            box-shadow: 5px 8px 10px rgba(248, 129, 2, 0.4);

}

.lecture-container i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lecture-container i svg {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
/* test series */
.test_instruction .row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;

}
.test_instruction .row img{
    width: 50px;
    height: 50px;
    border-radius: 5px;
}
.test_body p{
    font-size: 16px;
    margin-bottom: 20px;
    color: black;
}

.test_body ul{
    list-style-type: disc;
    margin-left: 20px;
    color: black;
    margin-bottom: 30px;
}
.test_instruction{
    background: #FFFF;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 19%, rgba(235, 143, 14, 1) 100%);
    padding: 10px;
    border-radius: 10px;
    
}
 .m-4{
    width: 90%;
    margin-left: 5%;
    margin-bottom: 10px;
}
.notes-card.no_padding{
    padding: 0;
    margin: 0;
}
.test_instruction .header{
    border-bottom: 2px solid white;
    margin-bottom: 10px;
}
.test_instruction .header h4{
    font-size: 18px;
    color: #da6602;
    margin-bottom: 20px;
    background: white;
    padding: 5px 20px;
    border: 10px;
    border-radius: 10px;
    box-shadow: 5px 8px 10px rgba(0, 0, 0, 0.5);
    text-transform: capitalize;
    
}
.notes-card.w45{
    width: 48%;
}


.filter-container {
    padding: 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

.filter-input {
    width: 70%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.filter-input:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
}


.cards {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.cards.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    height: 0px;
    margin: 0;
    padding: 0;
}

.cards.visible {
    opacity: 1;
    transform: translateY(0);
}

.filter-container {
    margin-bottom: 20px;
}

.filter-input {
    width: 70%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.filter-input:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
    outline: none;
}

.cards .row {
    padding: 15px;
}

.cards .left-img img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: top center;

}

.cards .right-content {
    padding-left: 15px;
}

.cards h4 {
    color: #666;
    margin-bottom: 5px;
}

.cards h3 {
    color: #333;
    margin-top: 0;
}

.cards .btn-container {
    background-color: #f9f9f9;
    padding: 15px;
    border-top: 1px solid #e0e0e0;
}

.cards .btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cards .btn:hover {
    background-color: #45a049;
}

.cards .btn svg {
    margin-right: 8px;
}

        .subject-list {
            padding: 2rem;
            background-color: #f5f5f5;
        }

        .section-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            color: #333333;
        }

        .subject-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
        }

        .subject-card {
            background-color: #fff;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: orangered;
        }

        .subject-card h3 {
            color: #fb6d01;
            font-size: 22px;
            text-align: left;
        }

        .subject-card:hover {
            transform: translateY(-5px);
        }

        .subject-name {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .view-syllabus-btn {
            display: inline-block;
            background-color: #d26b1c;
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s ease;
            text-wrap: nowrap;
            height: 20px;
        }



        .footer-menu-item a{
            text-decoration: none;
            text-align: center;
        }
         .footer-menu-item a i{
            display: block;
         }


#filter-icon {
    position: fixed;
    bottom: 80px; /* Adjust this value to position above the footer */
    right: 20px;
    background-color: #da6602;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

#filter-icon:hover {
    background-color: #c45500;
}

#filter-icon svg {
    width: 24px;
    height: 24px;
}

       @media (max-width: 410px)  {
        .top-left span{
            font-size: 17px;
        }
        
        .test_instruction .header h4{
            font-size: 16px;
            padding: 5px 10px;
        }
        
       }
        @media (max-width: 383px)  {
        .top-left span{
            font-size: 15px;
        }

        .test_instruction .header h4{
            font-size: 16px;
            padding: 5px 10px;
        }
        .switch-class-btn{
            min-width: 10px;
        }
        
       }
    @media (max-width: 350px)  {
        .top-left span{
            font-size: 16px;
        }

        .test_instruction .header h4{
            font-size: 13px;
            padding: 5px 10px;
        }
        .top button{
            font-size: 15px;
        }
        .class-dropdown{
            padding-left: 7px;
            padding-right: 4px;
        }
        
        
       }



    @media (max-width: 330px)  {
          .top-left span{
            font-size: 14px;
        }

        }
       .t-none{
        text-decoration: none;
 color: inherit;       }



 
 /* Dropdown styles */
 .dropdown {
     position: relative;
     display: inline-block;
         z-index: 99999999999;
 }
 
 .dropbtn {
     background-color: #f1f1f1;
     color: black;
     padding: 10px;
     font-size: 16px;
     border: none;
     cursor: pointer;
 }
 .follow-icon{
    width: 35px;
    position: absolute;
        right: 3px;
    top: -5px;

 }
 .dropdown-content {
     display: none;
     position: absolute;
     background-color: #f9f9f9;
     min-width: 160px;
     box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
     z-index: 1;
 }
 
 .dropdown-content a {
     color: black;
     padding: 12px 16px;
     text-decoration: none;
     display: block;
     text-wrap: nowrap;
 }
 
 .dropdown-content a:hover {
     background-color: #f1f1f1;
 }
 
 .dropdown:hover .dropdown-content {
     display: block;
 }
 
 .dropdown:hover .dropbtn {
     background-color: #ddd;
 }
 
 /* Icon styles */
 .dropdown-content a i {
     margin-right: 10px;
 }