
/****************************************************
*                                                   *
*             INDEX STYLE SHEET                     *
*                                                   *
*     Designd by   : Kazi M Tarekul Islam           *
*     Published on : 01.12.2022                     *
*     Version      : 3.0                            *
*     Organization : Aplus Software Developer       *
*                                                   *
*                                                   *
****************************************************/

/*===================================================
=               Bangla Fonts                        =
=                                                   =
=       font-family: 'Atma', cursive;               =
=       font-family: 'Hind Siliguri', sans-serif;   =
=       font-family: 'Tiro Bangla', serif;          =
=                                                   =
====================================================*/
html, body{
  scroll-behavior: smooth;
}


body {
    font-family: 'Hind Siliguri', sans-serif;
    color: #202020;
    background-color: #f2f2f2;
    font-size: 14px;
    font-weight:500;
    line-height: 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

a{
    text-decoration: none;
}

a:hover{
    text-decoration: none;
}

.container{
    max-width: 1080px;
    overflow-x: hidden;
    padding-bottom: 20px;
}
/*============================================
            HEADER STYLE
==============================================*/

#header{
  padding-top: 0;
  padding-bottom: 0;
  z-index: 978;
}

#header .container{
    background-color: var(--s_clr);
}

#header .navbar{
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
}

#header .navbar-brand{
  font-family: 'Hind Siliguri', sans-serif;
  color: white;
}

.navbar-brand #brand-img{
  height: 40px;
    border-radius: 100%;
    margin-right: 10px;
    background: white;
    padding: 2px;
}


.navbar-brand #brand-tagline{
    font-size: 13px;
    font-family: 'SolaimanLipi', sans-serif;
    margin-top: -3px;
    font-weight: 200;
}


#header .navbar .nav-item{
   margin-left: 20px;
}

#header .navbar .nav-link{
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0;
    padding-right: 0;
    transition: background 0.3s;  
}



#header .navbar .nav-link:hover, 
#header .navbar .nav-link:focus, 
#header .navbar .nav-link:active,
.activated{
    border-bottom: 1px solid white;
    background-color: var(--f_clr);
}


#header .navbar .nav-item a{
    border-radius: 2px;
    padding: 5px 10px;
    font-family : "Roboto", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    color: white;
    text-decoration: none;    
    display: inline-block;
}

.navbar-toggler{
  background-color: var(--f_clr);
  color: white;
  padding: 6px 8px;
  font-size: 14px;
}


/*================================================
            HERO SECTION
==================================================*/
#hero{
}

#hero .container{
  background-color: var(--bg);
  border-radius:0 0 10px 10px ;
  padding: 0px;
}

#hero .carousel-item{
  overflow: hidden;
}

#hero .carousel-item img{

}

#hero #slide-title,
#hero #slide-desc{
    background-color: rgba(0,0,0,0.5);
    padding: 5px 10px;
    position: absolute;
}

#hero #slide-title {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    color: white;
    font-family: 'Hind Siliguri', sans-serif;
    bottom: 45px;
    border-radius: 5px 5px 0 0;    
}

#hero #slide-desc {
    font-weight:500;
    font-family: 'Tiro Bangla', serif;
    bottom: 15px;
    border-radius: 0 0 5px 5px;
    font-weight: 300;
}






/*-- for animation --*/
.title {
  opacity: 0;
  transform: translateX(-100px);
  animation: titleIn 1s forwards;
  animation-delay: 0.3s;  
}

.desc {
  opacity: 0;
  transform: translateY(50px);
  animation: descIn 1s forwards;
  animation-delay: 0.3s;
}

@keyframes titleIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes descIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}






/*=============================================
             SECTION STYLE
===============================================*/

section{
  padding: 0px;
}

section #marquee-lbl{
    width: 100px;
    background: var(--f_clr);
    padding: 5px;
    font-family: 'Hind Siliguri', sans-serif;
    margin-left: -20px;
    font-size: 16px;
    text-align: center;
    color: white;
    font-weight: 500;

}

section #marquee-text{
    width: calc(103% - 100px);
    margin-right: -30px;
    padding: 5px;
    padding-left: 0px;
    color: var(--bg_clr);
}

section #marquee-item{
    padding-right: 10px;
}

section #marquee-item i{
    color: var(--hover_clr);
    font-size: 12px;
}

section #marquee-item a{
    color: black;
}

section #marquee-item a:hover{
    color: var(--hover_clr);
}


.section-bg{
  background-image: radial-gradient(rgb(252, 252, 252), rgb(245, 234, 245));
}

#section-title {
    text-align: center;
    padding-top: 80px;
}

#section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: var(--p4);
    font-family: 'Hind Siliguri', sans-serif;
}

#section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 2px;
  background: #276fe6;
  bottom: 2px;
  left: calc(50% - 80px);
}

#section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 6px;
  background: var(--f_clr);
  bottom: 0;
  left: calc(50% - 30px);
}

section p{
    font-size: 120%;
    font-family: 'Kalpurush', serif;
    font-weight: 400;
    padding-top: 10px;
    margin-bottom: 0;
    padding-bottom: 20px;
    text-align: justify;
}

#aboutus #sub-tit{
  background-color: var(--b_clr);
  padding: 5px 15px;
  border-radius: 50px;
  color: white;
  display: block;
  margin: 0 auto;
  width: 150px;
  font-size: 110%;
  text-align: center;
}

ul li{
  font-family: 'Kalpurush', serif;
  font-size: 120%;
  margin-top: 7px;
}

#notice-board #not-title{
  border-bottom: 2px solid var(--f_clr);
  font-size: 18px;
  font-weight: 600;
}

#notice-board #notice-number{
  padding: 5px;
  border-radius: 3px;
  border: 1px solid lightgray;
  font-size: 20px;
  border-bottom: 2px solid var(--f_clr);
  display: inline-block;
  margin-right: 10px;
  width: 35px;
  height: 35px;
  text-align: center;
}

#notice-board a{
  color: var(--dark);
  font-size: 14px;
  font-weight: 600;
}

#notice-board a:hover{
    color: var(--f_clr);
    text-decoration: underline;
}


#events h5{
font-family: 'Hind Siliguri', sans-serif;
  background-color: lightgoldenrodyellow;
  padding: 8px;
  padding-top: 16px;
  margin-top: -10px;
  border-radius: 0 0 8px 8px;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
}

.br-40{
  border-radius: 10px 40px;
}

.br-10{
  border-radius: 6px 6px 12px;
}

.br-rt-50{
  background-color: #ffffe6;    
  border-radius: 0 50% 0 0;
}

.br-rb-50{
  background-color: #ffffe6;    
  border-radius: 0 0 50% 0;
}

.br-lt-50{
  background-color: #ffffe6;  
  border-radius: 50% 0 0 0;
}

.br-lb-50{
  background-color: #ffffe6;
  border-radius: 0 0 0 50%;
}




.time-right {
  float: right;
  color: #aaa;
}

.time-left {
  float: left;
  color: #999;
}


#s_type span{
    background: var(--f_clr);
    padding: 8px 10px;
    border-radius: 50px;
    color: white;
    display: block;
    width: 130px;
    text-align: center;
    margin-bottom: 5px;
    font-size: 130%;
}

#s_cat span{
    background: var(--b_clr);
    padding: 8px 10px;
    border-radius: 50px;
    color: white;
    display: block;
    width: 140px;
    margin-bottom: 5px;
    text-align: center;
    font-size: 130%;
}



/*=============================================
            FOOTER STYLE
===============================================*/
#footer{
    background-color: var(--dark);
    color: white;
    padding: 60px 0;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: normal;
}

#footer h3{
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

#footer a{
    color: lightgray;
    text-decoration: none;
    cursor: pointer;
}

#footer a:hover{
    color: var(--h_clr);
    text-decoration: underline;
}

#important-link a, 
#footer-contact p{
    font-family: 'Hind Siliguri', sans-serif;
}



#sociallink a{
    font-size: 16px;
    text-align: center;
    height: 35px;
    width: 35px;
    padding-top: 5px;
    background: var(--f_clr);
    border-radius: 3px; 
    color: white;
    margin-right: 5px;
    display: inline-block;
}

#sociallink a:hover{
    background-color: lightgray;
    color: var(--dark)
}

#footer dl, #footer ol, #footer ul {
  margin-left: -27px;
}


#sociallink #login-btn{
    font-size: 16px;
    text-align: center;
    height: 35px;
    width: 100%;
    padding: 5px;
    background: var(--f_clr);
    border-radius: 3px; 
    color: white;
}

#sociallink #login-btn:hover{
        background-color: var(--h_clr);
}


#go-to-up{
    background: var(--f_clr);
    width: 40px;
    padding: 4px;
    position: fixed;
    right: 5px;
    bottom: 5px;
    border-radius: 100%;
    cursor: pointer;
    display: none;
    opacity: 0.8;
    height: 40px;
    text-align: center;
    padding-top: 9px;
    font-size: 20px;
    color: white;
    box-shadow: 0 0 10px #002347;
}