body{
    font-family: 'Segoe UI',sans-serif;
    background:#f5f7fb;
}

.navbar{
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}


.navbar-brand{
    font-size:24px;
    font-weight:bold;
}

.carousel-item img{
    height:550px;
    object-fit:cover;
}

.section-title{
    font-size:36px;
    font-weight:700;
    color:#0d6efd;
    margin-bottom:25px;
}

.counter-box{
    background:#fff;
    border-radius:15px;
    padding:30px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.4s;
}

.counter-box:hover{
    transform:translateY(-8px);
}

.counter-box i{
    font-size:45px;
    color:#0d6efd;
}

.counter{
    font-size:50px;
    color:#ff5722;
    font-weight:bold;
}

.project-card{
    transition:.4s;
}

.project-card:hover{
    transform:translateY(-8px);
}

.footer{
    background:#1d3557;
    color:#fff;
    padding:60px 0;
    margin-top:60px;
}

.footer h4{
    margin-bottom:20px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer li{
    margin-bottom:10px;
}
/* Responsive adjustments and utility style rulesets */
.transition-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.transition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
}
.border-dashed {
    border-style: dashed !important;
}
@media (min-md-width: 768px) {
    .border-end-md {
        border-right: 1px solid #dee2e6 !important;
    }
}