/* Add here all your css styles (customizations) */
/* WIDGETS */
.widget {
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.widget.style1 h2 {
    font-size: 30px;
}
.widget h2,
.widget h3 {
    margin-top: 5px;
    margin-bottom: 0;
}
.widget-text-box {
    padding: 20px;
    border: 1px solid #e7eaec;
    background: #ffffff;
}
.widget-head-color-box {
    border-radius: 20px;
    margin-top: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}
.widget-head-color-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
}
.widget .flot-chart {
    height: 100px;
}

.navy-bg {
    background-color: #1ab394 !important;
    color: #ffffff;
}
.text-center {
    text-align: center !important;
}
img.circle-border {
    border: 6px solid #FFFFFF;
    border-radius: 50%;
}
.rounded-circle {
    border-radius: 50% !important;
}

element {
}
img.circle-border {
    border: 6px solid #FFFFFF;
    border-radius: 50%;
}
.m-b-md {
    margin-bottom: 20px;
}
.p-lg {
    padding: 30px;
}




.container{
    width:100%;
    margin:auto;

}

.section-title{
    text-align:center;
    margin:50px 0 25px;
    font-size:32px;
}


.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
    padding-bottom:60px;
}

.card{
    background:#0d4373;
    color:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    transition:.4s;
}

.cal_card {
    background: #0d4373;
    color: #1a1a1a;
}
.cal_card h2{
    color: yellowgreen;
}
.ccard{
    background:#0d4373;
    color:#ffffff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    transition:.4s;
}

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

.card img{
    width:128px;
    height:128px;
    text-align: center;
    margin: 0 auto;
    padding: 5px;
    margin-top: 15px;
}

.ccard img{
    width:128px;
    height:128px;
    text-align: center;
    margin: 0 auto;
    padding: 5px;
    margin-top: 15px;
}

.content{
    padding:20px;
}

.content h3{
    color:yellow;
}

.content h4{
    color:#e67e22;
    margin:8px 0;
}

.content p{
    font-size:14px;
    line-height:1.6;
}

/* Calendar */
.calendar{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:5px;
    margin-top:20px;
}

.day-name{
    background:#2c3e50;
    color:white;
    padding:10px;
    text-align:center;
    font-weight:bold;
}

.day{
    background:#ecf0f1;
    height:90px;
    padding:8px;
    border-radius:5px;
    position:relative;
}

.day:hover{
    background:#d6eaf8;
}

.event{
    background:#3498db;
    color:#0a0a0a;
    padding:2px 5px;
    font-size:11px;
    border-radius:3px;
    display:block;
    margin-top:5px;
}

/* Event List */
.event-list{
    list-style:none;
}

.event-list li{
    border-left:5px solid #3498db;
    background:#f8f9fa;
    padding:12px;
    margin-bottom:15px;
    color: #111111;
}

.cal_content{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:20px;
}

@media(max-width:768px){
    .content{
        grid-template-columns:1fr;
    }

    .calendar{
        font-size:12px;
    }

    .day{
        height:70px;
    }
}


