 input[type="file"] {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: auto !important;
        width: 100% !important;
        padding: 17px 15px !important;
        border: 1px solid #ccc !important;
        background: #fff !important;
        border-radius: 13px;
    }
 






.counter-section{
    background:#f16032;
    padding:60px 0;
}

.counter-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    border-right:1px solid rgba(255,255,255,.15);
}

.counter-item:last-child{
    border-right:none;
}

.counter-icon{
    font-size:50px;
    color:#ffffff;
}

.counter-content h2{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:5px;
}

.counter-content p{
    color:#ddd;
    margin:0;
    text-transform:uppercase;
    font-size:16px;
}

@media(max-width:991px){

    .counter-item{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.15);
        padding:25px 0;
    }

    .counter-item:last-child{
        border-bottom:none;
    }

}



.award-section{
    background:#f8fafc;
}

.award-tag{
    display:inline-block;
    padding:8px 20px;
    background:#f16032;
    color:#ffffff;
    border-radius:30px;
    font-weight:600;
}

.award-section h2{
    font-size:42px;
    font-weight:700;
    color:#0b2545;
}

.award-section h2 span{
    color:#f16032;
}

.award-text{
    max-width:700px;
    margin:20px auto;
    color:#666;
    line-height:30px;
}

.award-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.award-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    transition:.5s;
}

.award-card:hover img{
    transform:scale(1.08);
}

.award-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:30px;
    background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
}

.award-overlay h4{
    color:#fff;
    margin-bottom:5px;
    font-weight:700;
}

.award-overlay p{
    color:#ddd;
    margin:0;
}

.play-btn{

    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:80px;
    height:80px;
    background:#f16032;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    text-decoration:none;
    transition:.4s;
    z-index:5;
}

.play-btn:hover{

    background:#FFD400;
    color:#000;
    transform:translate(-50%,-50%) scale(1.15);

}

.award-card:hover{

    transform:translateY(-8px);
    transition:.4s;

}








/*==========================
      Gallery Section
==========================*/

.gallery-section{
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

.gallery-section:before{
    content:"";
    width:320px;
    height:320px;
    background:#e8f2ff;
    border-radius:50%;
    position:absolute;
    top:-120px;
    left:-120px;
}

.gallery-section:after{
    content:"";
    width:260px;
    height:260px;
    background:#fff6d7;
    border-radius:50%;
    position:absolute;
    right:-80px;
    bottom:-80px;
}

.gallery-section .container{
    position:relative;
    z-index:2;
}

/*==========================
      Heading
==========================*/

.gallery-subtitle{

    display:inline-block;
    background:#fff;
    color:#19134d;
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.section-title h2{

    font-size:46px;
    font-weight:700;
    color:#1d3557;

}

.section-title h2 span{

    color:#f16032;

}

.o-clr{
    color: #18124d;
}

.section-title p{

    max-width:700px;
    margin:auto;
    color:#6c757d;
    line-height:30px;

}

/*==========================
      Tabs
==========================*/

.gallery-tabs{

    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;

}

.gallery-tabs button{

    border:none;
    background:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    color:#333;
    transition:.35s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.gallery-tabs button:hover{

    background:#19134c;
    color:#fff;
    transform:translateY(-4px);

}

.gallery-tabs button.active{

    background:#19134c;
    color:#fff;
    transform:translateY(-4px);

}

/*==========================
      Gallery Card
==========================*/

.gallery-item{

    margin-bottom:30px;

}

.gallery-card{

    position:relative;
    overflow:hidden;
    border-radius:22px;
    cursor:pointer;
    background:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
    transition:.4s;

}

.gallery-card img{

    width:100%;
    height:280px;
    object-fit:cover;
    transition:all .6s ease;

}

.gallery-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 55px rgba(0,0,0,.18);

}

.gallery-card:hover img{

    transform:scale(1.12);

}

/*==========================
      Overlay
==========================*/

.gallery-overlay{

    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:25px;
    background:linear-gradient(to top,rgba(0,0,0,.9),transparent);

    transform:translateY(100%);
    transition:.45s;

}

.gallery-card:hover .gallery-overlay{

    transform:translateY(0);

}

.gallery-overlay h4{

    color:#fff;
    margin-bottom:6px;
    font-size:22px;
    font-weight:700;

}

.gallery-overlay p{

    color:#f16032;
    margin:0;
    font-size:15px;

}

/*==========================
      Mobile
==========================*/

@media(max-width:991px){

.section-title h2{

font-size:34px;

}

.gallery-card img{

height:240px;

}

}

@media(max-width:576px){

.gallery-tabs{

gap:10px;

}

.gallery-tabs button{

width:100%;
padding:12px;

}

.section-title h2{

font-size:28px;

}

.gallery-card img{

height:220px;

}

}















/*=========================
      AUTH SECTION
==========================*/

.auth-section{
    padding:80px 0;
    background:#f5f8fc;
}

.auth-wrapper{

    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);

}

/*=========================
        LEFT SIDE
==========================*/

.auth-left{

    background: linear-gradient(135deg, #18114b, #18114b);
    height:100%;
    padding:60px;
    color:#fff;
    position:relative;
    overflow:hidden;

}

.auth-left:before{

    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-120px;
    right:-120px;

}

.auth-left:after{

    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-80px;
    left:-80px;

}

.auth-badge{

    display:inline-block;
    background:#fff;
    color:#f16032;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:25px;

}

.auth-left h2{

    font-size:48px;
    font-weight:700;
    line-height:60px;
    margin-bottom:25px;
    color:#fff;

}

.auth-left p{

    color:#eefcf8;
    line-height:30px;
    margin-bottom:35px;

}

.auth-left ul{

    padding:0;
    margin:0;
    list-style:none;

}

.auth-left ul li{

    margin-bottom:16px;
    font-size:16px;
    display:flex;
    align-items:center;

}

.auth-left ul li i{

    color:#FFD54A;
    margin-right:12px;
    font-size:18px;

}

.auth-image{

    margin-top:45px;
    max-width:320px;

}

/*=========================
       RIGHT SIDE
==========================*/

.auth-card{

    padding:60px;
    background:#fff;

}

/*=========================
          TABS
==========================*/

.auth-tabs{

    display:flex;
    background:#f3f6fb;
    padding:6px;
    border-radius:50px;
    margin-bottom:40px;

}

.auth-tabs button{

    width:50%;
    border:none;
    background:transparent;
    padding:14px;
    border-radius:40px;
    font-size:16px;
    font-weight:600;
    transition:.35s;

}

.auth-tabs button.active{

    background:#18124c;
    color:#fff;
    box-shadow:0 8px 20px rgba(19,184,134,.35);

}

/*=========================
        FORM
==========================*/

.tab-content{

    display:none;

}

.tab-content.active{

    display:block;

}

.tab-content h3{

    font-size:34px;
    font-weight:700;
    margin-bottom:10px;

}

.tab-content p{

    color:#777;
    margin-bottom:35px;

}

.form-control{

    height:58px;
    border-radius:14px;
    border:1px solid #e3e6eb;
    margin-bottom:20px;
    padding-left:18px;
    box-shadow:none;
    transition:.3s;

}

.form-control:focus{

    border-color:#13B886;
    box-shadow:0 0 0 .15rem rgba(19,184,134,.15);

}

/*=========================
       BUTTON
==========================*/

.cus-btn{

    border-radius:6px !important;
    /* height:45px;
    font-size:16px;
    font-weight:600; */

}

/*=========================
      RESPONSIVE
==========================*/

@media(max-width:991px){

.auth-left{

padding:40px;

}

.auth-card{

padding:35px;

}

.auth-left h2{

font-size:36px;
line-height:46px;

}

.auth-image{

display:none;

}

.smheight{
    height: 42px !important;
}
}

@media(max-width:576px){

.auth-tabs{

flex-direction:column;
border-radius:15px;

}

.auth-tabs button{

width:100%;

}

.auth-card{

padding:25px;

}

.auth-left{

padding:25px;

}

.auth-left h2{

font-size:30px;
line-height:40px;

}

}


.article-image{
    width: 100%;
    height: 220px;      /* jitni height chahiye */
    overflow: hidden;
    border-radius: 8px;
}

.article-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;  /* image crop hoke same size me dikhegi */
    display: block;
}











.content-block{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.recent-blog-item{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    padding-bottom:18px;
    border-bottom:1px solid #ececec;
    transition:.3s;
}

.recent-blog-item:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.recent-blog-img{
    width:100px;
    height:80px;
    flex-shrink:0;
    border-radius:8px;
    overflow:hidden;
}

.recent-blog-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.recent-blog-item:hover .recent-blog-img img{
    transform:scale(1.08);
}

.recent-blog-content{
    flex:1;
}

.recent-blog-content h6{
    font-size:18px;
    line-height:1.45;
    color:#222;
    margin:0 0 10px;
    font-weight:600;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.recent-blog-content span{
    display:flex;
    align-items:center;
    gap:6px;
    color:#777;
    font-size:14px;
}

.recent-blog-item:hover h6{
    color:#ff6b35;
}


.h1{
        font-size: 40px !important;
}


.topbar-one{
    background:#18124c;
}

.topbar-one .container-fluid{
    padding:0 20px;
}

.topbar-one__inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:3px 0;
}

.topbar-one__info{
    display:flex;
    align-items:center;
    gap:20px;
    margin:0;
    padding:0;
    list-style:none;
}

.topbar-one__info__item{
    display:flex;
    align-items:center;
    gap:8px;
}

.topbar-one__info__item a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.topbar-one__right{
    margin-left:auto;
}

.topbar-one__social{
    display:flex;
    align-items:center;
    gap:10px;
}

.reg-class{
    background:#fff;
    color:#000 !important;
    font-size:12px !important;
    padding:6px 12px;
    border-radius:5px;
    text-decoration:none;
    white-space:nowrap;
}

.reg-class:hover{
    background:#fff;
    color:#000 !important;
}

.school-reg-class{
    animation:pulseBtn 1s infinite;
}

@keyframes pulseBtn{
    0%{transform:scale(1);}
    50%{transform:scale(1.08);background-color: red; color: #fff !important;}
    100%{transform:scale(1);}
}

/* ===========================
   MOBILE
=========================== */

@media (max-width:576px){

    .topbar-one .container-fluid{
        padding:8px 10px;
    }

    .topbar-one__inner{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-direction:row;
        flex-wrap:nowrap;
    }

    /* Gmail Hide */
    .topbar-one__info .d-none.d-md-flex{
        display:none !important;
    }

    .topbar-one__info{
        display:flex;
        align-items:center;
        gap:0;
        margin:0;
        flex:1;
    }

    .topbar-one__info__item{
        margin:0;
    }

    .topbar-one__info__item a{
        font-size:11px;
    }

    .topbar-one__right{
        margin-left:auto;
    }

    .topbar-one__social{
        display:flex;
        flex-direction:row;
        align-items:center;
        gap:5px;
        width:auto;
    }

    .reg-class{
        width:auto;
        font-size:9px !important;
        padding:4px 6px;
        white-space:nowrap;
    }
}

/* //register page css */
.position-relative{
    position:relative;
}

.toggle-password{
    position:absolute;
    top:36%;
    right:10px;
    transform:translateY(-50%);
    cursor:pointer;
    color:#666;
    z-index:9;
}



/* menu detail pages css */

.product-badge{
    color:#18124d;
}




.headign{
    font-size: 54px !important;
    line-height: 60px !important;
}

@media (max-width: 991px){
    .headign{
        font-size: 42px !important;
        line-height: 48px !important;
    }
}

@media (max-width: 767px){
    .headign{
        font-size: 32px !important;
        line-height: 40px !important;
    }
}

@media (max-width: 576px){
    .headign{
        font-size: 26px !important;
        line-height: 34px !important;
    }
}


/* index carousel */
.olympiad-resources-slider .item{
    padding:0 12px;
}

.olympiad-resources-slider .slick-list{
    margin:0 -12px;
}

.olympiad-resources-slider .slick-track{
    display:flex;
}

.olympiad-resources-slider .slick-slide{
    height:auto;
}

.olympiad-resources-slider .slick-slide > div{
    height:100%;
}

.olympiad-resources-slider .article-block{
    display:block;
    height:100%;
}

.olympiad-resources-slider .slick-dots{
    position:relative;
    bottom:0;
    margin-top:35px;
    text-align:center;
}

.olympiad-resources-slider .slick-dots li{
    margin:0 5px;
}

.olympiad-resources-slider .slick-dots li button:before{
    font-size:12px;
    color:#18124c;
    opacity:.3;
}

.olympiad-resources-slider .slick-dots li.slick-active button:before{
    color:#18124c;
    opacity:1;
}

/* Hide default text */
.olympiad-resources-slider .slick-dots li button{
    font-size:0;
    line-height:0;
    width:16px;
    height:16px;
    padding:0;
    border:1px solid #0d6b61;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
}

/* Default pseudo text hatao */
.olympiad-resources-slider .slick-dots li button:before{
    content:"";
    display:none;
}

/* Active Dot */
.olympiad-resources-slider .slick-dots li.slick-active button{
    background:#1b1464;
    border:3px solid #fff;
    box-shadow:0 0 0 1px #0d6b61;
}

/* Dots center */
.olympiad-resources-slider .slick-dots{
    display:flex !important;
    justify-content:center;
    align-items:center;
    gap:3px;
    margin-top:35px;
    list-style:none;
    padding:0;
}

.table-theme{
    background-color: #18124c;
    color: #fff;
}
.btn-theme{
    background:#ff6032;color:#fff;
        padding: 10px;
    border: none;
    border-radius: 10px;

}

.btn-theme::hover{
    background:#ff6032 !important;
    color:#fff !important;
}


.editStudenticon{
    color: #18124c;
}