:root {
    --primary-color: #009ee2;
    --secondary-color: #002c6c;
    --accent-color: #ff7f00;
}

.navbar-custom {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 5px 0;
}

.navbar-brand .logo {
    width: 100px !important;
    height: 65px !important;
    object-fit: contain;
    background-size: contain;
    background-position: center;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}


.img-fluid-service-banner {
    width: 100%;
    height: auto; /* maintains aspect ratio */
    padding: 0;
}

.service-box{
    text-decoration: none !important;
    list-style: none !important;
}

.service-box-inside{
    background: #f8f9fa;
    color: #000 !important;
}

.img-fluid{
    border-radius: 20px;
}

.navbar-brand .logo {
    width: 150px;
    height: 50px;
}

  /* footer */

  footer {
    background-color: #002152;
    color: white;
    padding: 50px 0 20px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.solutions-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.solution-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.solution-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.solution-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    color: white;
}

.stats-section {
    padding: 80px 0;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.innovation-section {
    padding: 80px 0;
}

.innovation-img {
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width:476px){
    .service-main-head{
        font-size: 32px;
    }
}