/* ===== CONTAINER ===== */
.container {
    width: 90%;
    margin: 0 auto;
}

/* ===== TOPBAR ===== */
.sarthak-topbar {
    background: #0b1c5a;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left span {
    margin-right: 15px;
}

.topbar-right a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}

/* ===== HEADER ===== */
.sarthak-header {
    background: #f4f4f4;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo a {
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

/* MENU */
#menu-sarthak {
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu-sarthak > li {
    display: inline-block;
    margin: 0 15px;
}

#menu-sarthak li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* CALL SECTION */
.header-call {
    display: flex;
    align-items: center;
}

.call-icon {
    background: #28a745;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.call-text small {
    display: block;
    font-size: 12px;
    color: #555;
}

/* ===== 404 PAGE ===== */

.sarthak-404 {
    text-align: center;
    padding: 100px 20px;
    background: #f8f9fa;
}

.sarthak-404 .error-code {
    font-size: 120px;
    font-weight: 700;
    color: #0b1c5a;
    margin-bottom: 20px;
}

.sarthak-404 h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.sarthak-404 p {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
}

.back-home {
    display: inline-block;
    padding: 12px 25px;
    background: #2e49ff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.back-home:hover {
    background: #0b1c5a;
}

/*Hero Slider*/

.hero-slider {
    width: 100%;
    overflow: hidden;
    background: #0b1c5a;
    color: #fff;
    height: 300px;
    display: flex;
    align-items: center;
}

.slides {
    display: flex;
    width: 300%;
    animation: slideHero 12s infinite;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    font-size: 32px;
    text-align: center;
}

@keyframes slideHero {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/*Services Slider*/

.services-slider {
    overflow: hidden;
    padding: 50px 0;
}

.services-track {
    display: flex;
    animation: slideServices 15s linear infinite;
}

.service-box {
    min-width: 250px;
    margin-right: 20px;
    background: #2e49ff;
    color: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}

@keyframes slideServices {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/*testimonial Slider*/
.testimonial-slider {
    background: #f4f4f4;
    overflow: hidden;
    padding: 60px 0;
    text-align: center;
}

.testimonial-track {
    display: flex;
    width: 300%;
    animation: slideTestimonial 12s infinite;
}

.testimonial {
    width: 100%;
    flex-shrink: 0;
    font-size: 20px;
    padding: 20px;
}

@keyframes slideTestimonial {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}



@media (max-width: 1024px) {

    .header-inner {
        flex-wrap: wrap;
    }

    .main-navigation {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    #menu-sarthak > li {
        margin: 0 10px;
    }

    .header-call {
        margin-top: 10px;
    }

}


@media (max-width: 767px) {

    /* TOPBAR STACK */
    .topbar-inner {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    /* HEADER STACK */
    .header-inner {
        flex-direction: column;
        text-align: center;
    }

    /* MENU VERTICAL */
    #menu-sarthak > li {
        display: block;
        margin: 10px 0;
    }

    /* CALL SECTION CENTER */
    .header-call {
        margin-top: 15px;
        justify-content: center;
    }

}

/*slider*/

@media (max-width: 768px) {

    .slide {
        font-size: 22px;
    }

    .service-box {
        min-width: 200px;
        padding: 20px;
    }

    .testimonial {
        font-size: 16px;
    }

}
