
.title-line {

    width:100px;
    height:4px;
    background:#d4af37;

    margin:15px auto !important;

    border-radius:5px;

}
.clients-section {

    padding:45px 0;

    background:#f8f9fa;

}
.clients-title {
       font-size:32px;

    font-weight:700;

    color:#002b8f;
}

.clients-subtitle {
    color: #666;
    
}

/* Slider Container */

.client-slider {

    overflow:hidden;

    width:100%;

    margin-top:30px;

}
.client-track {

    display:flex;

    gap:40px;

    width:max-content;

    animation:scrollClients 20s linear infinite;

}
.client-slider:hover .client-track {

    animation-play-state:paused;

}
.client-card {
       width:150px;

    text-align:center;

    flex-shrink:0;
}

/* Circle Logo */

.client-logo {

    width:100px;

    height:100px;

    border-radius:50%;

    background:white;

    margin:auto;

    padding:15px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 5px 15px rgba(0,0,0,0.15);

}
.client-card:hover {
    transform: translateY(-5px);
}

.client-logo img {

    max-width:100%;

    max-height:100%;

    object-fit:contain;

}

.client-card h6 {

    margin-top:12px;

    font-size:14px;

    font-weight:600;

    color:#333;

}


@keyframes scrollClients {
    from {
        transform:translateX(0);
    }
    to {
        transform:translateX(-50%);
    }
}

.projects-section {
    background: #D2D9CE;
    padding: 80px 0;
}

.projects-title {
    color: #002b8f;
    font-size: 3rem;
    font-weight: 700;
}

.title-line {
    width: 120px;
    height: 5px;
    background: #d8be75;
    margin-top: 10px;
}
/* Projects Section */

.projects-section {
    background:#e8ecf0;
    padding:50px 0;
}

.projects-title {

    font-size:38px;

    font-weight:700;

    color:#002b8f;

}



.title-line {

    width:80px;

    height:4px;

    background:#d4af37;

    margin-top:10px;

}



/* Project Card */


.project-card {

    background:rgb(255, 255, 255);

    padding:25px;

    border-radius:15px;

    min-height:220px;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);

    position:relative;

    transition:all .3s ease;

    border-top:4px solid #002b8f;

}



.project-card:hover {

    transform:translateY(-8px);

    box-shadow:0 15px 30px rgba(0,0,0,0.15);

}

/* Number */

.project-number {
    width:45px;
    height:45px;
    border-radius:50%;
    background:#002b8f;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
    margin-bottom:20px;

}

/* Title */

.project-card h4 {
    font-size:20px;
    color:#002b8f;
    font-weight:700;
    margin-bottom:15px;

}

/* Location */

.project-location {
    color:#666;
    font-size:14px;
    margin-bottom:15px;
}



/* Service badge */


.project-service {
    display:inline-block;
    background:#f0c75e;
    color:#333;
    padding:6px 15px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
}

/* Footer   */

.footer-section {
    background:#001f66;
    width:98%;
    margin:40px auto 0;
    border-radius:25px 25px 0 0;
    color:white;
    padding:45px 40px 20px;
    box-shadow:0 -5px 25px rgba(0,0,0,.15);
}
.footer-container {
    max-width:1200px;
    margin:auto;

}

.footer-logo {
    font-size:25px;
    font-weight:700;
    line-height:1.3;
}

.footer-logo span {
    color: #d4af37;
}

.footer-text {
    margin-top:15px;
    color:#ddd;
    line-height:1.7;
    font-size:15px;
}

.footer-section h4 {
    color:#d4af37;
    font-size:18px;
    margin-bottom:20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom:12px;
    color:#ddd;
    font-size:14px;
}

.footer-section a {
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-section a:hover {
    color:#d4af37;
}

.social-icons a {
    width:35px;
    height:35px;
    border-radius:50%;
    background:white;
    color:#002b8f;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    margin-right:10px;
}

.social-icons a:hover {
    background:#d4af37;
    color:white;
}


.footer-bottom {
    margin-top:25px;

    padding-top:15px;

    border-top:1px solid rgba(255,255,255,.2);

    text-align:center;

    color:#ddd;

    font-size:14px;


}