html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    backface-visibility: hidden;
    /* transform: translateZ(0); */
    /* will-change: transform; */
}

/* Header */
.SSL-header {
    background-color: #000;
    padding: 15px 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.SSL-header .navbar-brand img {
    height: 40px;
}

.ssl-logo-header {
    width: 100%;
    height: 75px;
}

.SSL-header .nav-link {
    color: #fdfdd8;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.SSL-header .nav-link:hover {
    color: #fffcc3;
}

.SSL-header .btn-quote {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    background-color: transparent;
    border: 2px solid #fdfdd8;
    color: #fdfdd8;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 30px;
    transition: color 0.4s ease;
    z-index: 1;
}

.SSL-header .btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background-color: #fdfdd8;
    transition: right 0.4s ease;
    z-index: -1;
}

.SSL-header .btn-quote:hover::before {
    right: 0;
}

.SSL-header .btn-quote:hover {
    color: #000;
}

.btn-quote i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-quote:hover i {
    transform: translateX(5px);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    border: #222 1px solid;
}

/* === CUSTOM MOBILE @ 486px === */
@media (max-width: 486px) {
    .SSL-header {
        padding: 10px 15px;
    }

    .SSL-header .navbar-brand img {
        height: 45px;
        max-width: 160px;
    }

    /* Navbar collapse background */
    .navbar-collapse {
        background-color: #000;
        padding: 15px;
    }

    /* Nav vertical stack */
    .navbar-nav {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .SSL-header .nav-link {
        font-size: 13px;
    }

    /* Button full width and margin top */
    .SSL-header .btn-quote {
        width: 100%;
        padding: 8px 0;
        font-size: 14px;
        margin-top: 15px;
        text-align: center;
        display: block !important;
    }
}

/* === CUSTOM TABLET @ 786px === */
@media (max-width: 786px) and (min-width: 487px) {
    .SSL-header {
        padding: 12px 25px;
    }

    .SSL-header .navbar-brand img {
        height: 45px;
        max-width: 160px;
    }

    /* Navbar collapse background */
    .navbar-collapse {
        background-color: #000;
        padding: 15px;
    }

    /* Nav vertical stack */
    .navbar-nav {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .SSL-header .nav-link {
        font-size: 14px;
    }

    /* Button full width and margin top */
    .SSL-header .btn-quote {
        width: 100%;
        padding: 10px 0;
        font-size: 15px;
        margin-top: 20px;
        text-align: center;
        display: block !important;
    }
}

/* carousel css */
.ssl-carousel-caption {
    position: absolute;
    top: 40%;
    left: 50px;
    max-width: 50%;
    padding: 10px;
    text-align: start;
    transition: opacity 0.7s ease;
}

.ssl-carousel-heading {
    font-weight: 800;
    font-size: 2.2rem;
    color: #fff;
}

.ssl-carousel-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: #f1f1f1;
    margin-top: 10px;
}

.ssl-carousel-img {
    object-fit: cover;
    height: 500px;
    width: 100%;
}

.ssl-carousel-counter {
    font-weight: bold;
    font-size: 1rem;
}

.carousel-btn-quote {
    position: relative;
    align-items: center;
    overflow: hidden;
    background-color: transparent;
    border: 2px solid #fdfdd8;
    color: #fdfdd8;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 30px;
    transition: color 0.4s ease;
    z-index: 1;
}

.carousel-btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background-color: #fdfdd8;
    transition: right 0.4s ease;
    z-index: -1;
}

.carousel-btn-quote:hover::before {
    right: 0;
}

.carousel-btn-quote:hover {
    color: #000;
}

.carousel-btn-quote i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.carousel-btn-quote:hover i {
    transform: translateX(5px);
}

@media (max-width: 991.98px) {
    .ssl-carousel-caption {
        top: 30%;
        left: 30px;
        max-width: 80%;
        padding: 8px;
    }

    .ssl-carousel-heading {
        font-size: 1.8rem;
    }

    .ssl-carousel-text {
        font-size: 1rem;
    }

    .carousel-btn-quote {
        padding: 5px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .ssl-carousel-caption {
        top: 25%;
        left: 20px;
        max-width: 90%;
        padding: 6px;
    }

    .ssl-carousel-heading {
        font-size: 1.5rem;
    }

    .ssl-carousel-text {
        font-size: 0.95rem;
    }

    .carousel-btn-quote {
        padding: 5px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ssl-carousel-caption {
        top: 20%;
        left: 15px;
        max-width: 95%;
        padding: 5px;
    }

    .ssl-carousel-heading {
        font-size: 1.3rem !important;
    }

    .ssl-carousel-text {
        font-size: 0.9rem !important;
    }

    .carousel-btn-quote {
        padding: 4px 10px;
        font-size: 0.85rem;
    }

    .ssl-carousel-img {
        height: 150px;
    }
}


/* home about us css  */
.ssl-home-about {
    background-color: #000;
    color: #fff;
    padding: 50px;
}

.ssl-home-about-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.ssl-home-about-text {
    color: #bcbcbc;
    font-size: 1rem;
    line-height: 1.6;
}

.ssl-home-about-btn .btn {
    border-radius: 0;
}

.ssl-home-about-img {
    object-fit: cover !important;
    height: 500px !important;
}

.btn-about1 {
    background: #202020;
    border: 1px solid #202020;
}

.btn-about1:hover {
    background: #000000;
    border: 1px solid #fff;
}

.btn-about1 i {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.btn-about1:hover i {
    transform: translateX(5px);
}

/* Mobile View (max-width: 576px) */
@media (max-width: 576px) {
    .ssl-home-about {
        padding: 30px 15px;
        text-align: center;
    }

    .ssl-home-about-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .ssl-home-about-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .ssl-home-about-img {
        height: 250px !important;
        width: 100%;
        margin-top: 20px;
    }

    .ssl-home-about-btn {
        display: flex;
        justify-content: center;
    }
}

/* Tablet View (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .ssl-home-about {
        padding: 40px 30px;
    }

    .ssl-home-about-title {
        font-size: 2.2rem;
    }

    .ssl-home-about-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .ssl-home-about-img {
        height: 300px !important;
    }
}

/* Small Laptops (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .ssl-home-about {
        padding: 50px 40px;
    }

    .ssl-home-about-title {
        font-size: 2.5rem;
    }

    .ssl-home-about-img {
        height: 400px !important;
    }
}


/* footer css  */
.ssl-footer {
    background-color: #000 !important;
    color: #fff;
    font-size: 0.95rem;
    border-top: 1px solid #f5f5f5;
}

.ssl-footer-logo {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.25rem;
    border: 2px solid #007bff;
}

.ssl-footer-btn-contact {
    background-color: #444242;
    border-radius: 25px;
    padding: 10px 25px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid #444242;
}

.ssl-footer-btn-contact:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
}

.ssl-footer-link-list li {
    margin-bottom: 10px;
}

.ssl-footer-link-list a {
    color: #ffffff;
    text-decoration: none;
}

.ssl-footer-link-list a:hover {
    text-decoration: underline;
}

.ssl-footer-divider {
    border-color: #444;
}

.footer-logos {
    width: 250px;
}

.ssl-footer-social {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff20;
    /* light white transparent background */
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.ssl-footer-social:hover {
    background-color: #ffffff80;
    /* on hover make the background brighter */
    color: #000;
    transform: scale(1.1);
}

.footer-aaa {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

/* Responsive: Tablet View (768px to 991px) */
@media (max-width: 991.98px) {
    .ssl-footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .ssl-footer-link-list {
        width: 100%;
    }

    .ssl-footer-connect,
    .ssl-footer-links {
        text-align: left !important;
    }

    .ssl-footer-family {
        justify-content: center !important;
        margin-top: 1rem;
    }

    .footer-logos {
        width: 200px;
    }
}

/* Responsive: Mobile View (up to 767px) */
@media (max-width: 767.98px) {
    .ssl-footer-btn-contact {
        padding: 8px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .ssl-footer-heading {
        font-size: 1.2rem;
    }

    .ssl-footer-text {
        font-size: 0.9rem;
    }

    .ssl-footer-link-list li {
        margin-bottom: 8px;
    }

    .ssl-footer-link-list a {
        font-size: 0.9rem;
    }

    .ssl-footer-copy,
    .ssl-footer-family {
        text-align: center !important;
        margin-bottom: 10px;
    }

    .ssl-footer-social {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        margin: 0 5px;
    }

    .footer-logos {
        width: 180px;
    }

    .ssl-footer-links {
        gap: 1rem;
    }
}

/* Responsive: Very Small Devices (up to 480px) */
@media (max-width: 480px) {
    .ssl-footer-heading {
        font-size: 1rem;
    }

    .ssl-footer-btn-contact {
        font-size: 13px;
        padding: 6px 15px;
    }

    .ssl-footer-social {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .footer-logos {
        width: 150px;
    }
}


.ssl-home-ban-section {
    background-color: #000;
    padding: 50px;
}

.ssl-home-ban-card {
    height: 250px;
    /* border-radius: 4px; */
    background-size: cover;
    position: relative;
    overflow: hidden;
    height: 200px;
    object-fit: contain;
}

.ssl-home-ban-card1 {
    background-image: url('../assets/banner-111.jpg');
}

.ssl-home-ban-card2 {
    background-image: url('../assets/banner-222.jpg');
}

.ssl-home-ban-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ssl-home-ban-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
}

.ssl-home-ban-link {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid #fff;
}

/* Mobile View (max-width: 576px) */
@media (max-width: 576px) {
    .ssl-home-ban-section {
        padding: 30px 15px;
    }

    .ssl-home-ban-card {
        height: 150px;
        margin-bottom: 20px;
    }

    .ssl-home-ban-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }

    .ssl-home-ban-title {
        font-size: 1rem;
        line-height: 1.2;
    }

    .ssl-home-ban-link {
        font-size: 0.85rem;
    }
}

/* Tablet View (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .ssl-home-ban-section {
        padding: 40px 30px;
    }

    .ssl-home-ban-card {
        height: 180px;
    }

    .ssl-home-ban-subtitle {
        font-size: 0.8rem;
    }

    .ssl-home-ban-title {
        font-size: 1.1rem;
    }

    .ssl-home-ban-link {
        font-size: 0.9rem;
    }
}

/* Small Laptops (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .ssl-home-ban-section {
        padding: 50px;
    }

    .ssl-home-ban-card {
        height: 200px;
    }

    .ssl-home-ban-title {
        font-size: 1.2rem;
    }
}


/* our services css  */
.ssl-home-service {
    background-color: #000;
    padding: 50px;
}

.ssl-home-service-title {
    color: #fff;
}

.ssl-home-service-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    color: #ccc;
}

.ssl-home-service-card {
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.ssl-home-service-card:hover {
    border-color: #fff;
    /* background: #000 !important; */
    transform: translateY(-5px);
}

.ssl-home-service-img {
    position: relative;
}

.ssl-home-service-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 8px;
    border-radius: 0px;
    background-color: #000;
    /* orange */
    font-size: 1.1rem;
}

.ssl-home-service-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 21px;
    color: #fff;
    transition: all 0.3s ease;
}

.ssl-home-service-link:hover {
    color: #fff;
    transform: scale(1.2);
}

.ssl-rotate-arrow {
    transform: rotate(-45deg);
    /* Makes it look like ↗ */
}
.ssl-home-service-card {
    will-change: transform;
    transition: transform 0.3s ease;
}
.ssl-home-service-icon,
.ssl-home-service-link {
    will-change: transform;
}

.ssl-home-service-img img {
    loading: lazy;
}


/* Mobile View (max-width: 576px) */
@media (max-width: 576px) {
    .ssl-home-service {
        padding: 30px 15px;
        text-align: center;
    }

    .ssl-home-service-title {
        font-size: 1.8rem;
    }

    .ssl-home-service-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .ssl-home-service-card {
        margin-bottom: 20px;
    }

    .ssl-home-service-icon,
    .ssl-home-service-link {
        font-size: 1rem;
        padding: 6px;
        bottom: 8px;
        right: 8px;
    }

    .ssl-home-service-img img {
        width: 100%;
        height: auto;
    }
}

/* Tablet View (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .ssl-home-service {
        padding: 40px 25px;
    }

    .ssl-home-service-title {
        font-size: 2.2rem;
    }

    .ssl-home-service-subtitle {
        font-size: 1rem;
    }

    .ssl-home-service-icon,
    .ssl-home-service-link {
        font-size: 1.1rem;
    }
}

/* Small Laptops (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .ssl-home-service {
        padding: 50px 40px;
    }

    .ssl-home-service-title {
        font-size: 2.5rem;
    }

    .ssl-home-service-subtitle {
        font-size: 1rem;
        max-width: 600px;
    }
}




/* banner section  */
.ssl-home-numbercount {
    background: url('../assets/full-banner1.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px;
    position: relative;
}


.ssl-home-numbercount::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.ssl-home-numbercount .container {
    position: relative;
    z-index: 2;
}

.ssl-numbercount-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.ssl-numbercount-subtitle {
    font-size: 1.1rem;
    margin-top: 10px;
    max-width: 600px;
    color: #ddd;
}

.ssl-numbercount-btn {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ssl-numbercount-btn:hover {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

/* Mobile View (max-width: 576px) */
@media (max-width: 576px) {
    .ssl-home-numbercount {
        padding: 30px 15px;
        background-attachment: scroll;
        /* disables parallax on mobile for performance */
    }

    .ssl-numbercount-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .ssl-numbercount-subtitle {
        font-size: 0.95rem;
        text-align: center;
        margin: 10px auto 20px;
    }

    .ssl-numbercount-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
}

/* Tablet View (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .ssl-home-numbercount {
        padding: 40px 25px;
    }

    .ssl-numbercount-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .ssl-numbercount-subtitle {
        font-size: 1rem;
        text-align: center;
        margin: 10px auto 25px;
    }

    .ssl-numbercount-btn {
        padding: 12px 25px;
        display: inline-block;
    }
}

/* Small Laptops (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .ssl-home-numbercount {
        padding: 50px 40px;
    }

    .ssl-numbercount-title {
        font-size: 2.3rem;
    }

    .ssl-numbercount-subtitle {
        font-size: 1.05rem;
        max-width: 550px;
    }
}



/* awards section css  */
.ssl-award-home-section {
    background-color: #fff;
    padding: 50px;
}

.ssl-award-home-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
}

.ssl-award-home-logos {
    margin-top: 20px;
}

.ssl-award-home-logo-img {
    max-height: 40px;
    opacity: 0.6;
    filter: none;
}

.ssl-award-home-logo-img:hover {
    opacity: 1;
}

/* Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
    .ssl-award-home-section {
        padding: 30px 15px;
        text-align: center;
    }

    .ssl-award-home-title {
        font-size: 1.4rem;
    }

    .ssl-award-home-logo-img {
        max-height: 30px;
        margin: 10px auto;
    }

    .ssl-award-home-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* Tablets (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .ssl-award-home-section {
        padding: 40px 30px;
    }

    .ssl-award-home-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .ssl-award-home-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 25px;
    }

    .ssl-award-home-logo-img {
        max-height: 35px;
    }
}

/* Laptops (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .ssl-award-home-section {
        padding: 50px 40px;
    }

    .ssl-award-home-title {
        font-size: 1.7rem;
    }

    .ssl-award-home-logo-img {
        max-height: 38px;
        margin: 10px;
    }

    .ssl-award-home-logos {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}



/* Why Choose Us - Dark Theme */
.ssl-home-whyus-section {
    background-color: #000;
    padding: 50px;
}

.ssl-home-whyus-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.ssl-home-whyus-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.ssl-home-whyus-icon:hover {
    transform: scale(1.1);
}

.ssl-home-whyus-text {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.4;
    min-height: 60px;
}

/* Mobile Devices (max-width: 576px) */
@media (max-width: 576px) {
    .ssl-home-whyus-section {
        padding: 30px 15px;
        text-align: center;
    }

    .ssl-home-whyus-title {
        font-size: 1.5rem;
    }

    .ssl-home-whyus-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .ssl-home-whyus-text {
        font-size: 0.95rem;
        min-height: auto;
    }
}

/* Tablets (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .ssl-home-whyus-section {
        padding: 40px 20px;
    }

    .ssl-home-whyus-title {
        font-size: 1.8rem;
    }

    .ssl-home-whyus-icon {
        width: 55px;
        height: 55px;
    }

    .ssl-home-whyus-text {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Laptops (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .ssl-home-whyus-section {
        padding: 50px 40px;
    }

    .ssl-home-whyus-title {
        font-size: 2rem;
    }

    .ssl-home-whyus-icon {
        width: 60px;
        height: 60px;
    }

    .ssl-home-whyus-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}



/* contact us page css - Dark Theme */
/* Base Styles */
.ssl-contactus-section {
    background-color: #000;
    padding: 50px;
}

.ssl-contactus-map iframe {
    filter: grayscale(100%);
    border: none;
    width: 100%;
    height: 300px;
}

.ssl-contactus-info h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.ssl-contactus-info p {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0;
}

.ssl-contactus-icon {
    font-size: 1.5rem;
    color: #ffc107;
}

.ssl-contactus-formbox {
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
}

.ssl-contactus-form h4 {
    font-weight: 600;
    color: #fff;
}

.ssl-contactus-form .form-control,
.ssl-contactus-form .form-select,
.ssl-contactus-form textarea {
    font-size: 0.95rem;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    border: 1px solid #555;
}

.ssl-contactus-form .form-control::placeholder,
.ssl-contactus-form textarea::placeholder {
    color: #aaa;
}

.text-orange {
    color: #ff7f00;
}

.contact-us-images {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.ssl-contact-send {
    background-color: #fff;
    border: #fff 1px solid;
    color: #000;
}

.ssl-contact-send:hover {
    background-color: transparent;
    border: #fff 1px solid;
    color: #fff;
}

/* Medium Devices (Tablets) */
@media (max-width: 991px) {
    .ssl-contactus-section {
        padding: 40px 15px;
    }

    .ssl-contactus-form h4 {
        font-size: 1.4rem;
    }

    .contact-us-images {
        height: 400px;
    }

    .ssl-contactus-info h6 {
        font-size: 1rem;
    }

    .ssl-contactus-info p {
        font-size: 0.9rem;
    }

    .ssl-contact-send {
        margin-bottom: 15px;
    }

}

/* Small Devices (Mobile) */
@media (max-width: 767px) {
    .ssl-contactus-section {
        padding: 30px 10px;
    }

    .ssl-contactus-formbox {
        flex-direction: column;
    }

    .ssl-contactus-form h4 {
        font-size: 1.2rem;
        text-align: center;
    }

    .contact-us-images {
        height: 250px;
    }

    .ssl-contactus-info .col-md-4 {
        margin-bottom: 20px;
    }

    .ssl-contactus-info h6,
    .ssl-contactus-info p {
        text-align: center;
    }

    .ssl-contact-send {
        margin-bottom: 15px;
    }
}


/* banner section css  */
.ssl-contactus-banner {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    object-fit: cover;
}

.ssl-contactus-banner-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.ssl-contactus-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.ssl-contactus-banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    z-index: 3;
    position: relative;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .ssl-contactus-banner {
        height: 300px;
    }

    .ssl-contactus-banner-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .ssl-contactus-banner {
        height: 250px;
        padding: 0 10px;
    }

    .ssl-contactus-banner-title {
        font-size: 1.6rem;
    }
}


/* product page css  */
.ssl-home-service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
.ssl-service-details {
    padding: 50px;
}

.ssl-service-details h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.ssl-inner-product-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    /* Changed from 'cover' to 'contain' */
    background-color: #000;
    /* Optional: for a black frame around image */
}

.ssl-product-bnt {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    background-color: transparent;
    border: 2px solid #fdfdd8;
    color: #fdfdd8;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 30px;
    transition: color 0.4s ease;
    z-index: 1;
}

.ssl-product-bnt::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background-color: #fdfdd8;
    transition: right 0.4s ease;
    z-index: -1;
}

.ssl-product-bnt:hover::before {
    right: 0;
}

.ssl-product-bnt:hover {
    color: #000;
}

.ssl-product-bnt i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.ssl-product-bnt:hover i {
    transform: translateX(5px);
}

/* Mobile View (max-width: 576px) */
@media (max-width: 576px) {
    .ssl-home-service-card img {
        height: 180px;
        border-radius: 6px;
    }

    .ssl-service-details {
        padding: 25px 15px;
    }

    .ssl-service-details h2 {
        font-size: 1.5rem;
        text-align: start;
    }

    .ssl-inner-product-img {
        height: 220px;
    }

    .ssl-product-bnt {
        padding: 5px 15px;
        font-size: 0.85rem;
        margin: 0 auto;
        justify-content: center;
    }
}

/* Tablet View (577px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .ssl-home-service-card img {
        height: 200px;
        border-radius: 6px;
    }

    .ssl-service-details {
        padding: 35px 25px;
    }

    .ssl-service-details h2 {
        font-size: 1.75rem;
        text-align: start;
    }

    .ssl-inner-product-img {
        height: 260px;
    }

    .ssl-product-bnt {
        padding: 6px 20px;
        font-size: 0.9rem;
    }
}


/* gallery section css  */
.ssl-gallery-section {
    background: #000;
    padding: 50px;
    color: #fff;
}

.ssl-gallery-section h3 {
    font-size: 28px;
    color: #00bcd4;
    font-weight: 600;
    margin-bottom: 30px;
}

.ssl-gallery-section #page-indicator {
    font-size: 16px;
    color: #ccc;
    font-weight: 500;
}

.video-card {
    background-color: #f9f9f9;
    border: none;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(112, 111, 111, 0.08);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(199, 197, 197, 0.15);
}


.video-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumb:hover img {
    transform: scale(1.05);
}

.video-info {
    padding: 12px 16px;
    background-color: #2c2c2c;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-info small {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

/* Pagination Styles */
.ssl-gallery-section .pagination .page-link {
    background-color: #121212;
    color: #00bcd4;
    border: 1px solid #00bcd4;
    margin: 0 4px;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.ssl-gallery-section .pagination .page-link:hover {
    background-color: #00bcd4;
    color: #000;
}

.ssl-gallery-section .pagination .active .page-link {
    background-color: #00bcd4;
    color: #000;
    border-color: #00bcd4;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gallery-slide-left {
    animation: slideInFromLeft 0.5s ease-in-out;
}

.gallery-slide-right {
    animation: slideInFromRight 0.5s ease-in-out;
}

@media (max-width: 576px) {
    .ssl-gallery-section {
        padding: 30px;
    }

    .ssl-gallery-section h3 {
        font-size: 22px;
        text-align: center;
    }

    #page-indicator {
        font-size: 14px;
        text-align: center;
        display: block;
        margin-top: 10px;
    }

    .video-thumb img {
        height: 160px;
    }

    .video-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 12px;
    }

    .video-info small {
        font-size: 13px;
    }

    .gallery-item {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .ssl-gallery-section {
        padding: 40px 20px;
    }

    .video-thumb img {
        height: 180px;
    }

    .video-info small {
        font-size: 13px;
    }

    .gallery-item {
        width: 50%;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .ssl-gallery-section {
        padding: 50px 30px;
    }

    .gallery-item {
        width: 33.33%;
    }

    .video-thumb img {
        height: 190px;
    }
}

@media (min-width: 992px) {
    .gallery-item {
        width: 25%;
    }

    .video-thumb img {
        height: 200px;
    }
}


/* our team css   */
.ssl-about-team-section {
    background-color: #000;
    padding: 50px;
}

.ssl-about-team-section h2 span {
    color: #fff;
}

.ssl-about-team-card {
    background: #000;
    border-radius: 0px !important;
    /* padding: 20px; */
    margin: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.ssl-about-team-card:hover {
    transform: translateY(-5px);
}

.ssl-about-team-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.ssl-about-team-img-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 6px;
}

.ssl-about-team-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 10px 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
    /* smooth fade */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 0 0 6px 6px;
}


.ssl-about-team-info-overlay h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.ssl-about-team-info-overlay p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.owl-nav {
    display: flex !important;
    justify-content: end !important;
    align-items: center !important;
    margin-top: 0px !important;
}

.bi-chevron-left::before,
.bi-chevron-right::before {
    content: "\f284";
    background: #fff;
    color: #000;
    padding: 10px;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px #fff solid;
}

/* Hover Effect */
.owl-nav button:hover .bi-chevron-left::before,
.owl-nav button:hover .bi-chevron-right::before {
    background-color: transparent;
    color: #fff;
    border: 1px #fff solid;
}

/* Mobile (up to 576px) */
@media (max-width: 576px) {
    .ssl-about-team-section {
        padding: 30px 15px;
    }

    .ssl-about-team-img-wrapper img {
        height: 220px;
    }

    .ssl-about-team-info-overlay h5 {
        font-size: 0.95rem;
    }

    .ssl-about-team-info-overlay p {
        font-size: 0.75rem;
    }

    .owl-nav {
        justify-content: center !important;
        margin-top: 15px !important;
    }

    .bi-chevron-left::before,
    .bi-chevron-right::before {
        padding: 8px;
        font-size: 16px;
    }
}

/* Tablet (576px to 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .ssl-about-team-section {
        padding: 40px 20px;
    }

    .ssl-about-team-img-wrapper img {
        height: 250px;
    }

    .ssl-about-team-info-overlay h5 {
        font-size: 1rem;
    }

    .ssl-about-team-info-overlay p {
        font-size: 0.8rem;
    }

    .owl-nav {
        justify-content: end !important;
    }
}

/* Small Laptop (769px to 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .ssl-about-team-section {
        padding: 50px 30px;
    }

    .ssl-about-team-img-wrapper img {
        height: 280px;
    }

    .ssl-about-team-info-overlay h5 {
        font-size: 1rem;
    }

    .ssl-about-team-info-overlay p {
        font-size: 0.85rem;
    }
}


/* our vision and mission css  */
.ssl-about-vision {
    background-color: #000;
    padding: 50px;
}

.ssl-about-vision-block {
    background-color: #000;
    overflow: hidden;
    min-height: 300px;
}

.ssl-about-vision-img {
    height: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

.ssl-about-vision-content {
    padding: 30px;
}

.ssl-about-vision-content h3 {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.4;
}

.ssl-about-vision-content p {
    color: #ccc;
    font-size: 0.95rem;
}

.ssl-about-vision-content small {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.ssl-about-vision-btn {
    background-color: #fff;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    border: 1px solid #fff;
}

.ssl-about-vision-btn:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* ✅ Tablet View */
@media (max-width: 991px) {
    .ssl-about-vision-content {
        padding: 20px;
    }

    .ssl-about-vision-content h3 {
        font-size: 1.4rem;
    }

    .ssl-about-vision-content p {
        font-size: 0.9rem;
    }
}

/* ✅ Mobile View */
@media (max-width: 767px) {
    .ssl-about-vision-block {
        flex-direction: column;
        text-align: center;
    }

    .ssl-about-vision {
        background-color: #000;
        padding: 30px;
    }

    .ssl-about-vision-img {
        width: 100%;
        height: 250px;
        min-height: auto;
    }

    .ssl-about-vision-content {
        padding: 20px 15px;
    }

    .ssl-about-vision-content h3 {
        font-size: 1.3rem;
    }

    .ssl-about-vision-content p {
        font-size: 0.9rem;
    }

    .ssl-about-vision-btn {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
}



/* number count section css  */
.ssl-about-numbers {
    background-color: #000;
    color: #fff;
    padding: 50px 0;
    overflow: hidden;
}

.ssl-number-box {
    position: relative;
    padding: 20px;
    text-align: center;
}

.ssl-number-box::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background-color: #333;
}

.ssl-number-box:last-child::after {
    display: none;
}

.ssl-number-value {
    font-size: 7rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    margin: 0;
    position: relative;
    z-index: 1;
}

.ssl-number-label {
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #fff;
    z-index: 2;
}

/* ✅ Tablet View (768px to 991px) */
@media (max-width: 991px) {
    .ssl-number-value {
        font-size: 5rem;
    }

    .ssl-number-label {
        font-size: 0.95rem;
    }

    .ssl-number-box::after {
        height: 1px;
        width: 100%;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .ssl-number-box:last-child::after {
        display: none;
    }
}

/* ✅ Mobile View (below 768px) */
@media (max-width: 767px) {
    .ssl-number-value {
        font-size: 3.5rem;
    }

    .ssl-number-label {
        font-size: 0.9rem;
    }

    .ssl-number-box {
        padding: 30px 0;
    }

    .ssl-number-box::after {
        height: 1px;
        width: 100%;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .ssl-number-box:last-child::after {
        display: none;
    }
}


/* about page why choose us css  */
.ssl-about-whychoose {
    background-color: #000;
    color: #fff;
    padding: 50px;
}

.ssl-about-whychoose-subtitle {
    color: #fbd204;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.85rem;
}

.ssl-about-whychoose-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
}

.ssl-about-whychoose-desc {
    font-size: 1rem;
    color: #ccc;
}

.ssl-about-whychoose-image img {
    border-radius: 5px;
    max-height: 480px;
    object-fit: cover;
}

.ssl-about-feature-item img {
    background-color: #fbd204;
    padding: 8px;
    border-radius: 4px;
    width: 100px;
    height: 50px;
}

.ssl-about-feature-item h6 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.ssl-about-feature-item p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.arrow-shape {
    width: 0;
    height: 0;
    border-left: 25px solid #fbd204;
    border-top: 25px solid transparent;
    transform: rotate(-45deg);
}



.privacy-policy {
    padding: 50px !important;
    background-color: #fff;
}

.privacy-policy h1 {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
}

.privacy-policy h5 {
    font-weight: 600 !important;
    margin-top: 30px !important;
}

/* Tablet view (768px and below) */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 40px 15px;
    }

    .privacy-policy h1 {
        font-size: 26px;
    }

    .privacy-policy h5 {
        font-size: 18px;
    }
}

/* Mobile view (480px and below) */
@media (max-width: 480px) {
    .privacy-policy {
        padding: 30px 10px;
    }

    .privacy-policy h1 {
        font-size: 22px;
        text-align: center;
    }

    .privacy-policy h5 {
        font-size: 16px;
    }

    .privacy-policy p,
    .privacy-policy ul {
        font-size: 15px;
    }
}

.disclaimer-section {
    padding: 50px !important;
    background-color: #fff3cd !important;
    border-left: 5px solid #ffc107 !important;
}

.disclaimer-section h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #856404;
}

.disclaimer-section p {
    font-size: 16px;
    color: #5c4b00;
}

/* Tablet view */
@media (max-width: 768px) {
    .disclaimer-section {
        padding: 40px 15px;
    }

    .disclaimer-section h1 {
        font-size: 26px;
    }

    .disclaimer-section p {
        font-size: 15px;
    }
}

/* Mobile view */
@media (max-width: 480px) {
    .disclaimer-section {
        padding: 30px 10px;
    }

    .disclaimer-section h1 {
        font-size: 22px;
        text-align: center;
    }

    .disclaimer-section p {
        font-size: 14px;
    }
}