/* Main Css are Here */
@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');
:root{
    --primary-color: #9b029b;
    --secondary-color: #e92a2a;
    --black: #131313;
    --white: white;
    /* Two variables for Swiper Package */
    --swiper-theme-color: #9b029b;
    --swiper-navigation-size: 20px;
}
/* Start of Primary CSS */
*{
    margin: 0;
    padding: 0;
}body{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;
    background: #fcfafa;
}.justify-paragraph{
    text-align: justify;
}ul, li{
    list-style: none;
}img{
    width: 100%;
}a{
    text-decoration: none;
}p{
    color: #4d4b4b;
}
.section-heading-style{
    text-align: center;
}
.section-info{
    margin: 0 4rem;
    color: #686767;
    text-align: justify;
}
.container{
    width: 1280px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
@media all and (max-width:768px){
    .container{
        width: 98%;
    }p{
        font-size: 14px;
    }
    .section-info{
        margin: 0 4px;
        color: #686767;
        text-align: justify;
    }
}/* End of Primary CSS */

/* Start of Header CSS */
header{
    padding: 2px 0;
}/* End of Header CSS */

/* START OF PRE-HEADER CSS */
.pre-header{
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 0;
    font-size: 14px;
}.pre-header-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}.pre-header-right-cont{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}.pre-header-tel{
    color: var(--white);
    transition: all 0.4s ease;
    font-size: 12px;
}.pre-header-tel:hover{
    text-decoration: underline;
}.pre-header-email{
    color: var(--white);
    font-size: 13px;
}.pre-header-email:hover{
    text-decoration: underline;
}.pre-header-profile{
    height: 28px;
    width: auto;
    border-radius: 50%;
    /* border: 1px solid var(--secondary-color); */
}.pre-header-seperator{
    padding: 0px 6px;
}.pre-header-btn{
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 1px 14px;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: all 0.4s ease;
}.pre-header-btn:hover{
    border: 2px solid var(--white);
    background: none;
}/* END OF PRE-HEADER CSS */

/* Start of Main Header Css */
.main-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}.sticky-wrapper.sticky{
    z-index: 100000;
    width: 100%;
    background-color: #FCFAFA;
    position: fixed;
    top: 0;
    /* box-shadow: 0 0 8px gray; */
    box-shadow: 1px 1px 15px #00000052 !important;
}.main-header-menu-icon{display: none;}
.main-header-logo{
    height: 86px;
    width: auto;
}.main-header-ul{
    display: flex;
    gap: 0.5rem;
    margin-right: 8%;
}.main-header-ul .link{
    color: #131313;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.4s ease;
    padding: 2px 0.8rem 4px 0.8rem;
    border-radius: 6px;
}.main-header-ul .link:hover{
    background-color: var(--primary-color);
    color: white;
    padding: 6px 0.8rem 6px 0.8rem;
    border-radius: 6px;
}.main-header-ul .active{
    color: var(--primary-color);
    padding: 2px 0.8rem 8px 0.8rem;
    border-bottom: 2px solid var(--primary-color);
    border-radius: 2px;
}
@media all and (max-width:768px){
    .pre-header-seperator{
        display: none;
    }.pre-header-email{
        display: none;
    }.main-header-ul{
        display: none;
    }.main-header-logo{
        height: 56px;
        width: auto;
    }.main-header{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}/* End of Main Header Css */

/* Start of Notice Header Css */
.notice-header{
    background-color: #fca3f0;
    margin-bottom: -2px;
}.marquee-container{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
}.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}.marquee-content{
    display: inline-block;
    animation: scroll 20s linear infinite;
    font-size: 16px;
    font-weight: 500;
    padding-left: 50%;
}.notice-header-link{
    color: #4e4e4e;
    padding: 6px 0;
}.notice-header-link:hover{
    text-decoration: underline;
}
@keyframes scroll{
    0%{
        transform: translateX(0);
    }100%{
      transform: translateX(-100%);
    }
}/* End of Notice Header Css */

/* Start of Section Heading */
.welcome-section{
    margin-top: 2rem;
}.welcome-heading{
    border-bottom: 1px solid #cccbcb;
    padding-bottom: 14px;
}.section-heading{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #cccbcb;
    padding-bottom: 14px;
}.section-heading a{
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    transition: all 0.4s ease;
}.section-heading a:hover{
    color: var(--secondary-color);
}/* End of Section Heading */

/* Start of Welcome Part Css */
.welcome-page-buttons{
    display: flex;
    justify-content: space-around;
}.explore-btn{
    color: white;
    font-size: 18px;
    padding: 10px 2rem;
    border: 1px solid transparent;
    background-color: var(--primary-color);
    border-radius: 50px;
    transition: all 0.4s ease;
}.explore-btn:hover{
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: transparent;
}.apply-btn{
    color: white;
    font-size: 18px;
    padding: 10px 2rem;
    border: 1px solid transparent;
    background-color: var(--secondary-color);
    border-radius: 50px;
    transition: all 0.4s ease;
}.apply-btn:hover{
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    background-color: transparent;
}
@media all and (max-width:768px){
    .welcome-heading{
        border: none;
        padding-bottom: 6px;
    }.welcome-page-buttons{
        gap: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }.explore-btn{
        font-size: 14px;
        padding: 8px 1.5rem;
    }.apply-btn{
        font-size: 14px;
        padding: 8px 1.5rem;
    }
}/* End of Welcome Part Css */

/* Start of Notice Part Css */
.notice-title-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}.view-all-link{
    margin-right: 10px;
    font-size: 14px;
    color: var(--primary-color);
}.view-all-link:hover{
    color: var(--secondary-color);
}.notice-body{
    border: 1px solid #eedada;
    margin-bottom: 12px;
    padding: 6px 8px;
    border-radius: 6px;
}.notice-body a{
    font-size: 1.25rem;
    color: #313131;
}.notice-body a:hover{
    text-decoration: underline;
}.notice-category{
    font-size: 14px;
    color: var(--white);
    background-color: var(--secondary-color);
    padding: 4px 12px;
}.notice-date{
    background-image: linear-gradient(to right, #a324a3, #72049e );
    font-size: 12px;
    color: var(--white);
    padding: 3px 10px;
    border-radius: 6px;
}/* End of Notice Part Css */

/* Start of Result Part Css */
.result-section .th{
    color: var(--white);
    background-color: var(--primary-color);
}.result-section .td{
    background-color: transparent;
}.result-icon{
    font-size: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    padding: 6px 10px;
    transition: all 0.4s ease;
}.result-icon:hover{
    background-color: var(--secondary-color);
}
@media all and (max-width:768px){
    .result-section .th{
        font-weight: 600;
        font-size: 16px;
    }.result-section .td{
        font-size: 14px;
    }
}/* End of Result Part Css */

/* Start of Class Card Css */
.class-section{
    margin-top: 1rem;
}.class-card{
    border-radius: 8px;
    box-shadow: #00000030 0px 10px 20px, #0000003b 0px 6px 6px;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}.class-card:hover{
    margin-top: -16px;
}.class-image{
    border-radius: 8px 8px 0 0;
}.class-text-wrapper{
    /* text-align: center; */
    padding: 4px 12px 20px 12px;
}.class-name{
    font-size: 24px;
    font-weight: 500;
}.class-paragraph{
    font-size: 14px;
}.class-card-btn{
    display: block;
    font-size: 16px;
    color: white;
    background-color:var(--primary-color);
    border-radius: 4px;
    padding-top: 6px;
    padding-bottom: 6px;
    transition: all 0.4s ease;
}
@media all and (max-width:768px){
    .class-card:hover{
        margin-top: 0px;
    }
}/* End of Class Card Css */

/* Start of Blog Part Css*/
.blog-section{
    margin-top: 2rem;
    padding: 2rem 0;
    background-color: #f5ececa4;
}.blog-cards-wrapper{
    margin-top: 1rem;
}.blog-card{
    margin-bottom: 20px; /* for mobile device */
    transition: all 0.4s ease;
    border-radius: 8px;
    background-image: linear-gradient(to right, #f8f2f2, white, white, #f8f2f2);
    box-shadow: #32325d40 0px 13px 27px -5px, #0000004d 0px 8px 16px -8px;
}.blog-card:hover{
    transform: scale(1.04);
}.blog-image{
    border-radius: 8px 8px 0 0 ;
}.blog-icon{
    margin-right: 4px;
    color: var(--primary-color);
}.blog-section span{
    color: #7a7a7a;
}.blog-section .text-wrapper{
    padding: 12px 1.25rem 1rem 1.25rem;
}.blog-learn-more{
    font-size: 14px;
    color: var(--primary-color);
}.blog-learn-more:hover{
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}.blog-view-all{
    color: white;
    font-size: 12px;
    border: 2px solid transparent;
    background: var(--secondary-color);
    padding: 0.4rem 14px;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}.blog-view-all:hover{
    border: 2px solid var(--secondary-color);
    background: none;
    color: var(--secondary-color);
}
@media all and (max-width:768px){
    .blog-card:hover{
        transform: none;
    }
}/* End of Blog Part Css*/

/* Start of Contact Part Css */
.contact-section{
    margin-top: 2rem;
}.contact-heading{
    border-bottom: 1px solid #cccbcb;
    padding-bottom: 14px;
}.cf-control{
    margin-top: 1px;
    width: 100%;
    background-color: #f2f1f3;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 10px 27px;
}.cf-control:focus{
    outline: none;
    border: 2px solid var(--primary-color);
}.cf-control::placeholder {
    color: #212221;
    font-size: 14px;
    font-weight: 400;
}.cf-submit-btn{
    font-size: 18px;
    color: var(--white);
    background-color: var(--primary-color);
    border: none;
    padding: 12px 26px;
    /* for mobile version */
    /* display: block;
    margin-right: auto;
    margin-left: auto; */
}
@media all and (max-width:768px){
    .cf-submit-btn{
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}/* End of Contact Part Css */

/* Start of Newsletter Css */
.newsletter-section{
    padding: 4rem 0;
    background-image: url('/myassets/frontend/images/newsletter/newsletter.jpg');
}.newsletter-input{
    width: 38%;
    padding: 12px 20px;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}.newsletter-input:focus {
    outline: none;
}.newsletter-btn{
    color: var(--white);
    margin-left: -4px;
    background-color: var(--primary-color);
    width: 16%;
    padding: 14px 20px;
    border: none;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}.newsletter-btn:hover{
    background-color: var(--secondary-color);
}.newsletter-break{
    display: none;
}
@media all and (max-width:768px){
    .newsletter-break{
        display: block;
        height: 10px;
    }.newsletter-section{
        padding: 2rem 0;
    }.newsletter-input{
        width: 60%;
        border: none;
        border-radius: 24px;
    }.newsletter-btn{
        margin-left: 0px;
        width: auto;
        padding: 14px 20px;
        border-radius: 24px;
    }
}/* End of Newsletter Css */

/* Start of Footer Part Css */
.footer-section{
    padding: 2.5rem 0;
    color: var(--white);
    background-color: var(--primary-color);
}
.half-border{
    width: 20%;
    border-top: 2px solid white;
    margin-bottom: 1rem;
}
.footer-section li{
    margin-bottom: 8px;
}
.footer-li{
    display: flex;
    align-items: baseline;
    gap: 14px;
}
.footer-li a{
    color: var(--white);
    transition: all 0.4s ease;
}
.footer-li a:hover{
    color: var(--secondary-color);
}
.footer-link{
    color: var(--white);
    transition: all 0.4s ease;
}
.footer-link:hover{
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    margin-left: 0.5rem;
}

.footer-icon-container{
    display: flex;
    padding: 0.75rem 0;
    justify-content: space-evenly;
    border-top: 1px solid #c7c5c5;
    border-bottom: 1px solid #c7c5c5;
}

.footer-icon-link{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    width: 3.25rem;
    height: 3.25rem;
    color: var(--white);
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid var(--white);
    transition: all 0.4s ease;
}
.footer-icon-link:hover{
    background-color: var(--white);
    color: var(--primary-color);
}
.footer-logo{
    margin-bottom: 10px;
    background-color: var(--white);
    padding: 10px;
    border-radius: 8px;
}.footer-map{
    height: 200px;
    width: 96%;
    /* border: 3px solid gray; */
    /* border-radius: 12px; */
    /* border garda hand move aaudaina */
}.footer1{
    background-color: rgb(173, 170, 170);
}.footer1-items{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}.footer-love{
    font-size: 14px;
    color: var(--secondary-color);
}.footer-designer{
    font-size: 14px;
}.footer-designer-name{
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.4s ease;
}.footer-designer-name:hover{
    color: var(--secondary-color);
}.hide-communication{display: none;}
.footer-icon-container-mobile{
    display: none;
}
@media all and (max-width:768px){
    footer{
        padding: 1.25rem 0 0 0;
    }.fmmb{
        margin-bottom: 1rem;
    }.half-border{
        width: 12%;
    }.footer-logo{
        display: none;
    }.hide-communication{
        display: block;
    }.footer-icon-container{
        display: none;
    }.footer1-items{
        display: flex;
        flex-direction: column;
        padding: 4px 0;
    }.footer-love{
        display: none;
    }.footer-icon-container-mobile{
        display: flex;
        gap: 10px;
        justify-content: center; margin-top: 6px;
    }.footer1{
        background-color: var(--primary-color);
        color: var(--white);
    }.footer-designer-name{
        color: #f3a515;
    }
}/* End of Footer Part Css */

/* Start of Carousel Swiper Css */
.swiper{
    width: 100%;
    height: 100%;
}

.swiper-slide{
    position: relative;
}
.carousel-text{
    position: absolute;
    bottom: 8%;
    left: 5%;
    max-width: 500px;
    background-color: #ccc5;
    padding: 1rem;
    border-radius: 1rem;
}
/* .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
} */
.swiper-slideimg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* End of Carousel Swiper Css */

/* Start of Testimonial Css */
.testimonial-section{
    margin: 2rem 1rem 0 1rem;
}.testimonial-section .icon{ /* swip icon */
    color: #a09e9e;
}.testimonial-section .swiper-slide{
    background-color: #e9e9e9;
    border-radius: 12px 12px 0 0;
}.testimonial-items{
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}.testimonial-message{
    text-align: justify;
    margin-top: 1rem;
}.student-voice-items{
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}.testimonial-student-image{
    height: 80px;
    width: 80px;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
}
.testimonial-image{
    height: 100px;
    width: 100px;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
}

/* End of Testimonial Css */

/* ------------------------------------- END OF INDEX PAGE CSS ------------------------------- */

/* Start of Breadcrumb Part Css */
.breadcrumb-section{    
    padding: 5rem 0;
    background-image: url('/myassets/frontend/images/breadcumbs/b-4.jpg');
}.breadcrumb-title{
    display: flex;
    justify-content: center;
    align-items: center;
}.breadcrumb-border{
    height: 38px;
    width: 10px;
    background-color: var(--secondary-color);
    margin-right: 12px;
}.breadcrumb-title a{
    font-size: 30px;
    color: white;
    font-weight: 600;
    transition: all 0.4s ease;
}.breadcrumb-title a:hover{
    color: var(--secondary-color);
    text-decoration: underline;
}.breadcrumb-title .seperator{
    padding: 0 0.5rem;
    color: white;
    font-size: 24px;
    font-weight: 800;
}/* End of Breadcrumb Part Css */

/* --------------------------------------- SEPERATE PAGES CSS ------------------------- */

/* Start of Facility Page Css */
.facility-heading{
    color: var(--primary-color);
    display: flex;
    justify-content: center;
}
.facility-wrapper{
    margin: 1.5rem 0;
}
.facility-images{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
}
.facility-image{
    height: 250px;
    width: auto;    
}
.facility-desc{
    margin-left: 2rem;
    margin-right: 2rem;
    text-align: justify;
}/* End of Facility Page Css */

/* Start of Class Details Page Css */
.class-detail-heading{
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}.class-detail-student-number{
    margin-left: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    color: var(--white);
    background-color: var(--primary-color);
    border-radius: 50%;
}.tab-buttons{
    display: flex;
    justify-content: center;
    gap: 1rem;
}.tab-buttons .active{
    padding: 8px 16px;
    background: var(--secondary-color);
    border: 2px solid transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}.tab-button{
    padding: 8px 16px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}.tab-button:hover{
    padding: 8px 16px;
    background: var(--secondary-color);
    border: 2px solid transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}.tab-content {
    display: none;
    padding: 20px;
}.routine-table th{
    color: var(--white);
    font-weight: 500;
    background-color: var(--primary-color);
}.routine-table .c{
    text-align: center;
}.routine-table td{
    background-color: transparent;
}


/* End of Class Details Page Css */

/* Start of BlogPage Part */
.blog-page-section{
    margin-top: 2rem;
    padding: 2rem 0;
    background-color: #f5ececa4;
}
.blog-page-section .text-wrapper{
    padding: 10px 1rem 1rem 1rem;
}
.blog-page-section span{
    font-size: 14px;
}
.page-blog-link{
    display: flex;
    justify-content: center;
    color: #3d3d3d;
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 1rem;
    transition: all 0.4s ease;
}
.page-blog-card{
    border-radius: 8px;
    background-image: linear-gradient(to right, #f8f2f2, white, white, #f8f2f2);
    box-shadow: #32325d40 0px 13px 27px -5px, #0000004d 0px 8px 16px -8px;
}
.page-blog-image{
    border-radius: 8px 8px 0 0;
}
.page-blog-icons{
    padding: 1rem 1rem 0.5rem 1rem;
    display: flex; justify-content: space-between;
}
.page-blog-link:hover{
    color: var(--primary-color);
}/* End of BlogPage Part */

/* Start of Contact Page Part */
.page-contact-box-wrapper{
    margin-top: 2rem;
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    /* gap: 5rem; */
}.page-contact-box{
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    height: auto;
    background-color: rgb(235, 196, 235);
    height: auto;
    width: 200px;
    padding: 1rem 0.5rem 0.25rem 0.5rem;
}.page-contact-box .top-icon{
    background-color: var(--secondary-color);
    padding: 1.5rem;
    color: var(--white);
    font-size: 28px;
}.page-contact-box h3{
    margin-top: 10px;
    color: var(--primary-color);
    font-weight: 700;
}.social-icon-wrapper{
    padding-bottom: 26px;
    margin-top: 8px;
    display: flex;
    gap: 4px;
}.social-link{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    transition: all 0.4s ease;
}.social-link:hover{
    background-color: var(--primary-color);
    color: var(--white);
}/* End of Contact Page Part */

/* Start of Blog Detail Page Part */
.page-blog-detail-card{
    margin-bottom: 1.25rem;
    border-radius: 8px;
}.page-blog-detail-card img{
    border-radius: 8px;
}
.page-blog-detail-title{
    margin-left: auto;
    margin-right: auto;
}
.page-blog-detail-image{
    width: 100%;
    height: auto;
}
.page-blog-detail-paragraph{
    margin: 1.5rem 0;
    text-align: justify;
}



/* End of Blog Detail Page Part */

/* Start of About Page Part */
.page-about-paragraph{
    margin: 0 2rem;
    text-align: justify;
}.page-about-banner-div{
    margin: 2rem 0;
}.page-about-banner{
    height: auto;
    width: 96%;
}.principal-message-wrapper{
    margin: 1rem;
}.principal-image{
    margin-right: 18px;
    float: left;
    width: 40%;
    height: auto;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
}.principal-message-title{
    color: var(--primary-color);
    font-size: 30px; font-weight: 600
}.principal-message-footer{
    margin-top: -14px;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--primary-color);
}.staff-card{
    display: flex;
    align-items: center;
    gap: 18px;
    border: 2px solid gray;
    padding: 10px;
    border-radius: 14px;
}
.stack-items{
    position: relative;
}

.staff-profile{
    height: 60px;
    width: 60px;
    /* border: 3px solid var(--primary-color); */
    border-radius: 50%;
}
.staff-green{
    font-size: 13px;
    position: absolute;
    top: 0;
    left: 46px;
    color: #05be05;
}



.facility-bullet-link{
    color: var(--black);
    font-size: 18px;
    transition: all 0.4s ease;
}.facility-bullet-link:hover{
    margin-left: 10px;
    color: var(--secondary-color);
}/* End of About Page Part */

/* Start of Result Page Css */
.page-result-card{
    margin-bottom: 34px;
    padding: 1rem 1rem 1px 1rem;
    box-shadow: #32325d40 0px 13px 27px -5px, #0000004d 0px 8px 16px -8px;
    border-radius: 18px;
    height: 150px;
    width: 100%;
    background-image: url('/myassets/frontend/images/background/b-1.jpg');
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
}.page-result-card a{
    color: #3f3e3e;
    font-size: 20px;
    font-weight: 500;
}.page-result-card a:hover{
    color: var(--secondary-color);
}.page-result-standard{
    margin-top: 18px;
    padding: 4px 1rem;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    background-color: var(--secondary-color);
}
/* .page-result-standard{
    font-size: 40px;
} */

/* End of Result Page Css */

/* Start of Notice Page Css */

.page-notice-card{
    margin-bottom: 34px;
    padding: 1rem 1rem 1px 1rem;
    box-shadow: #32325d40 0px 13px 27px -5px, #0000004d 0px 8px 16px -8px;
    border-radius: 18px;
    height: 180px;
    width: 100%;
    /* background-image: url('/images/background/b-2.jpg'); */
    background-image: url('/myassets/frontend/images/background/b-5.jpg');
    /* background-size: cover; */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-notice-card a{
    color: #3f3e3e;
    font-size: 20px;
    font-weight: 500;
}.page-notice-card a:hover{
    color: var(--secondary-color);
}

.page-notice-category{
    margin-top: 16px;
    padding: 4px 1rem;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    background-color: var(--secondary-color);
}/* End of Notice Page Css */

/* Start of Online Application Page Css */
.application-form{
    padding: 1.5rem;
    height: auto;
    width: 80%;
    background-color: pink;
    border-radius: 10px;
    margin: 2rem auto;
}.afg{
    margin-bottom: 20px;
}.af-control{
    margin-top: 1px;
    width: 100%;
    background-color: #f2f1f3;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 10px 27px;
}.af-control:focus{
    outline: none;
    border: 2px solid var(--primary-color);
}.af-control::placeholder {
    color: #212221;
    font-size: 14px;
    font-weight: 400;
}.af-btn{
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 500;
    padding: 12px 1.5rem;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.4s ease;
}.af-btn:hover{
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 6px;
}/* End of Online Application Page Css */

/* Start of Class Page Css */
.page-class-card{
    margin-bottom: 34px;
    padding: 2.75rem 1rem 1px 1rem;
    box-shadow: #32325d40 0px 13px 27px -5px, #0000004d 0px 8px 16px -8px;
    border-radius: 18px;
    height: 180px;
    width: 100%;
    background-image: url('/myassets/frontend/images/background/b-6.jpg');
    /* background-size: cover; */
    display: flex;
    flex-direction: column;
    align-items: center;
}.page-class-card a{
    color: #252525;
    font-size: 30px;
    font-weight: 600;
    transition:  all 0.4s ease;
}.page-class-card a:hover{
    color: var(--secondary-color);
}.page-class-category{
    margin-top: auto;
    margin-bottom: 1.5rem;
    /* margin-top: 18px; */
    padding: 8px 1.25rem;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    background-color: var(--secondary-color);
}/* End of Class Page Css */

/* Mobile Device Responsive Media Queries */

/* Welcome Part Mobile Css */


/* STart of Enroll Part Css */
.enroll-section{
    height: 300px; /* height for section part not for background */
}.enroll-section{
    background-image: url('https://akm-img-a-in.tosshub.com/businesstoday/images/story/202207/web_3-sixteen_nine.png');
    background-size: cover;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}.enroll-section{
    display: flex;
    align-items: center;
}.enroll-title{
    font-weight: 600;
    text-align: center;
}.enroll-paragraph{
    font-size: 18px;
    text-align: center;
    color: var(--primary-color);
}.enroll-link-container{
    text-align: center;
    margin-top: 2.5rem;
}.enroll-link{
    font-size: 1.25rem;
    font-weight: 600;
    color: #f5eeee;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 2px solid #f5eeee;
    background-color: transparent;
    transition: all 0.4s ease;
}.enroll-link:hover{
    color: #3b3b3b;
    border: 2px solid #f5eeee;
    background-color: #f3eeee;
}/* End of Enroll Part Css */

/* Start of Download Page Css */
.download-table{
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
}.download-table th, td {
    padding: 10px;
    text-align: center;
    border: 2px solid #ddd;
}.download-table th{
    background-color: var(--primary-color);
    color: white;
}/* End of Download Page Css */

/* Start of Scroll to Top Css */
.scroll-to-top{
    display: none;
}.scroll-to-top.show{
    z-index: 1;
    height: 60px;
    width: 60px;
    color: var(--white);
    background-color: var(--secondary-color);
    border: none;
    position: fixed;
    bottom: 40px;
    right: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    display: block;
}.scroll-to-top:hover{
    margin-bottom: 10px;
}/* End of Scroll to Top Css */