/*=====================================
      Digital Notice Board
======================================*/

.notice-section{
    padding:110px 0;
    background:linear-gradient(135deg,#fff8f2,#ffffff);
    overflow:hidden;
}

.notice-heading{
    text-align:center;
    margin-bottom:70px;
}

.notice-badge{
    display:inline-block;
    padding:10px 22px;
    background:#ff6b35;
    color:#fff;
    border-radius:40px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.notice-heading h2{
    font-size:48px;
    font-weight:800;
    color:#222;
    margin-bottom:18px;
}

.notice-heading p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:30px;
    font-size:17px;
}

.notice-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* Left Images */

.notice-gallery{
    flex:1;
    position:relative;
    height:550px;
}

.notice-img{
    position:absolute;
    border-radius:25px;
    object-fit:cover;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
    transition:.5s;
}

.notice-img:hover{
    transform:translateY(-10px) scale(1.04);
    z-index:10;
}

.notice1{
    width:330px;
    height:240px;
    left:0;
    top:20px;
}

.notice2{
    width:240px;
    height:310px;
    right:20px;
    top:80px;
}

.notice3{
    width:300px;
    height:220px;
    left:100px;
    bottom:0;
}

/* Right Content */

.notice-content{
    flex:1;
}

.notice-content h3{
    font-size:38px;
    font-weight:700;
    color:#222;
    margin-bottom:18px;
}

.notice-content p{
    color:#666;
    line-height:28px;
    margin-bottom:35px;
}

.notice-list{
    list-style:none;
    padding:0;
    margin:0;
}

.notice-list li{
    display:flex;
    align-items:center;
    margin-bottom:18px;
    padding:18px 22px;
    background:#fff;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
}

.notice-list li:hover{
    transform:translateX(12px);
    box-shadow:0 18px 40px rgba(255,107,53,.18);
}

.notice-list i{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#ff6b35;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:18px;
    font-size:18px;
}

.notice-list span{
    font-size:18px;
    font-weight:600;
    color:#222;
}

/* Button */

.notice-btn{
    display:inline-block;
    margin-top:35px;
    padding:16px 38px;
    background:#ff6b35;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.notice-btn:hover{
    background:#e65b28;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(255,107,53,.30);
}

/* Responsive */

@media(max-width:991px){

.notice-wrapper{
    flex-direction:column;
}

.notice-gallery{
    width:100%;
    height:650px;
}

.notice1{
    width:90%;
    left:5%;
}

.notice2{
    width:70%;
    right:5%;
    top:240px;
}

.notice3{
    width:80%;
    left:10%;
    bottom:0;
}

.notice-heading h2{
    font-size:36px;
}

.notice-content h3{
    font-size:30px;
}

}