/* Hide mobile Get a quotation button on non-mobile viewports */
@media (min-width: 992px) {
    .d-block.d-lg-none.btn[href="quotation.html"] {
        display: none !important;
    }
}
/* Clients Slider */
.clients-carousel .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
}
.clients-carousel .client-logo img {
    max-height: 80px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
}
.clients-carousel .client-logo img:hover {
    transform: scale(1.05);
}
.clients-carousel .owl-stage {
    display: flex;
    align-items: center;
}
.clients-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .clients-carousel .client-logo img {
        max-height: 50px;
        max-width: 100px;
    }
}
/********** Template CSS **********/
:root {
    --primary: #70b4e9;
    --secondary: #FBA504;
    --light: #FFFFFF;
    --dark: #04000B;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar {
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar .btn {
    background-color: var(--primary) !important;
    color: #FFFFFF !important;
    border: none;
    transition: .3s;
}

.navbar .btn:hover {
    background-color: #f0c147 !important;
    color: #FFFFFF !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: #FFFFFF !important;
        background: var(--primary) !important;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}

/* Ensure sticky-top elements stay below navbar */
.sticky-top:not(.navbar) {
    z-index: 10;
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 18rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png),
        url(../img/bg-bottom.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Fact ***/
.fact {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/blob-primary.png) center center no-repeat;
    background-size: contain;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-top.png),
        url(../img/map.png);
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}


/*** Top Header Bar ***/
.bg-dark {
    background-color: var(--dark) !important;
}

.bg-dark a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bg-dark a:hover {
    color: var(--secondary);
}

.bg-dark .text-primary {
    color: var(--primary) !important;
}

@media (max-width: 768px) {
    .bg-dark {
        display: none;
    }

    .bg-dark .row {
        flex-direction: column;
    }
    
    .bg-dark .text-end {
        text-align: left !important;
        margin-top: 1rem;
    }
}


/*** Quotation Page Styles ***/
.quotation-service-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.quotation-service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(112, 180, 233, 0.2);
    transform: translateY(-5px);
}

.quotation-service-header {
    text-align: center;
    margin-bottom: 20px;
}

.service-icon-large {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #5fa3d8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.quotation-service-header h4 {
    color: #04000B;
    margin: 0;
    font-weight: 600;
    font-size: 1.3rem;
}

.quotation-service-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pricing-section {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #dee2e6;
    z-index: 1;
}

.pricing-label {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-value {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

.quotation-service-card .btn {
    background: linear-gradient(135deg, var(--primary) 0%, #5fa3d8 100%);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.quotation-service-card .btn:hover {
    background: linear-gradient(135deg, #5fa3d8 0%, #4a92c7 100%);
    transform: scale(1.02);
}

.quotation-service-card .get-quotation-btn {
    color: white;
}

/* Modal Styles */
.modal-header {
    border-bottom: none;
}

.modal-title {
    font-weight: 700;
    font-size: 1.4rem;
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

.modal .form-floating > label {
    color: #666;
}

.modal .form-control,
.modal .form-select {
    border: 1px solid #dee2e6;
    padding: 10px 15px;
    font-size: 0.95rem;
}

.modal .form-control:focus,
.modal .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(112, 180, 233, 0.25);
}

.modal .form-control[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

#submitQuotationBtn {
    background: linear-gradient(135deg, var(--primary) 0%, #5fa3d8 100%);
    border: none;
    font-weight: 600;
    padding: 10px 30px;
}

#submitQuotationBtn:hover {
    background: linear-gradient(135deg, #5fa3d8 0%, #4a92c7 100%);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .quotation-service-card {
        padding: 25px;
    }

    .service-icon-large {
        width: 70px;
        height: 70px;
    }

    .pricing-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .quotation-service-card {
        padding: 20px;
    }

    .quotation-service-header h4 {
        font-size: 1.1rem;
    }

    .pricing-value {
        font-size: 1.3rem;
    }

    .modal-dialog {
        margin: 10px;
    }
}


/*** About Page - Mission Vision Values ***/
.mvv-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mvv-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(112, 180, 233, 0.15);
    transform: translateY(-5px);
}

.mvv-icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #5fa3d8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mvv-item h4 {
    color: #04000B;
    font-weight: 600;
    font-size: 1.2rem;
}

.mvv-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}


/*** Why Choose Us Section ***/
.why-choose-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    flex-shrink: 0;
}

.why-choose-icon i {
    color: var(--primary);
}

.why-choose-text h5 {
    color: #04000B;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-choose-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .mvv-item {
        padding: 25px;
    }

    .why-choose-item {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .mvv-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .mvv-icon {
        width: 60px;
        height: 60px;
    }

    .why-choose-item {
        flex-direction: column;
        padding: 15px;
    }

    .why-choose-icon {
        margin-bottom: 10px;
    }
}

/*** Floating WhatsApp Button ***/
.whatsapp-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1f9e54;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.whatsapp-btn i {
    color: white;
    font-size: 28px;
}


/*** Hero Slider Styles ***/
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--dark);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-slide.active {
    display: block;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Stronger dark overlay for better text visibility */
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.99));
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    transition: background 0.3s;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content hr {
    margin: 0 auto 1.5rem;
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Slider Navigation Buttons */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    padding: 15px 24px;
}

.hero-slider-btn.prev {
    left: 30px;
}

.hero-slider-btn.next {
    right: 30px;
}

/* Slider Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .hero-slider-container {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-slider-btn {
        padding: 12px 16px;
        font-size: 1.2rem;
    }

    .hero-slider-btn.prev {
        left: 15px;
    }

    .hero-slider-btn.next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        height: 400px;
    }

    .hero-content {
        padding: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-content hr {
        width: 60px !important;
        margin: 0 auto 1rem;
    }

    .breadcrumb {
        flex-wrap: wrap;
    }

    .breadcrumb-item {
        font-size: 0.85rem;
    }

    .hero-slider-btn {
        padding: 10px 13px;
        font-size: 1rem;
    }

    .hero-slider-btn.prev {
        left: 10px;
    }

    .hero-slider-btn.next {
        right: 10px;
    }

    .hero-slider-indicators {
        bottom: 20px;
        gap: 10px;
    }

    .indicator {
        width: 12px;
        height: 12px;
    }

    .indicator.active {
        width: 30px;
    }
}

@media (max-width: 576px) {
    .hero-slider-container {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .hero-slider-btn {
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    .hero-slider-btn.prev {
        left: 8px;
    }

    .hero-slider-btn.next {
        right: 8px;
    }

    .breadcrumb-item {
        font-size: 0.75rem;
    }

    .hero-slider-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 25px;
    }
}