/********** Template CSS **********/

/*** 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 !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.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;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-primary);
    border-right: 2px solid var(--bs-primary);
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}


/*** Navbar ***/
/* Header Wrapper */



        /* Top Header */
        .top-header {
            background-color: #f6821f; /* Orange color */
            color: white;
            font-size: 14px;
        }

        .top-header .container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 20px;
        }

        .top-header .contact-info span {
            margin-right: 20px;
            display: inline-flex;
            align-items: center;
        }

        .top-header .contact-info i {
            margin-right: 5px;
        }

        .top-header .social-icons a {
            color: white;
            margin-left: 10px;
            text-decoration: none;
            transition: 0.3s;
        }

        .top-header .social-icons a:hover {
            color: #000;
        }

        /* Main Header */
       header.main-header {
    background-color: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-top: 3px solid #f6821f; /* Orange border at top */
    border-bottom: 3px solid #f6821f; /* Orange border at bottom */
}

        header.main-header .container {
            max-width: 1200px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Logo */
        .main-header .logo img {
            height: 70px;
        }

        /* Navigation */
        nav.main-nav ul {
            list-style: none;
            display: flex;
        }

        nav.main-nav ul li {
            margin-left: 25px;
        }

        nav.main-nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
            transition: 0.3s;
        }

        nav.main-nav ul li a:hover {
            color: #ff6600;
        }

        /* Contact Button */
        .contact-btn a {
            padding: 10px 20px;
            background-color: #f6821f;
            color: #fff;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
        }

        .contact-btn a:hover {
            background-color: #e65c00;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .top-header .container {
                flex-direction: column;
                text-align: center;
            }
            nav.main-nav ul {
                flex-direction: column;
                gap: 10px;
            }
            header.main-header .container {
                flex-direction: column;
                gap: 10px;
            }
        }


/*** Hero Header ***/
.hero-header {
    position: relative;
    background: url(../img/hero-bg.jpg) center center no-repeat;
    background-size: cover;
}

.hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,245,248,.95), rgba(255,255,255,.85));
    z-index: 0;
}

.hero-header .row {
    position: relative;
    z-index: 1;
}

/*** LEFT TEXT SLIDER ***/
.hero-header-text {
    padding: 100px 50px;
}

.hero-slide-text h5 {
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-slide-text h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-slide-text p {
    font-size: 18px;
    color: #555;
    max-width: 480px;
    margin-bottom: 35px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.hero-btn:hover {
    background: #d63384;
}

/*** IMAGE SLIDER ***/
.header-carousel img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 0 0 0 80px;
}



/*** RESPONSIVE ***/
@media (max-width: 992px) {
    .hero-header-text {
        padding: 60px 30px;
        text-align: center;
    }

    .hero-slide-text h1 {
        font-size: 42px;
    }

    .header-carousel img {
        height: 380px;
        border-radius: 0;
    }
}


/* ===============================
   ABOUT SECTION
================================ */
.about {
    padding: 90px 0;
    background: #fafafa;
}

/* Section Title */
.about-title {
    font-size: 48px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
    position: relative;
}

.about-subtitle {
    font-size: 18px;
    color: #777;
}

/* Image */
.about-left-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-left-image img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

/* Right Content */
.about-heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-heading span {
    color: #ff7a18;
}

.about-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff7a18, #ffb347);
    margin-bottom: 20px;
    border-radius: 2px;
}

.about-text {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

/* Skills */
.skill-box {
    background: #fff;
    padding: 25px 15px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.skill-box h3 {
    font-size: 36px;
    font-weight: 800;
    color: #ff7a18;
    margin-bottom: 5px;
}

.skill-box p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.skill-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 36px;
    }

    .about-heading {
        font-size: 26px;
        text-align: center;
    }

    .about-line {
        margin: 0 auto 20px;
    }

    .about-text {
        text-align: center;
    }
}


.products-section {
    background: #f6821f;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.product-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(13, 10, 253);
    transition: all 0.35s ease;
    border-bottom: 6px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
    border-bottom: 6px solid #f6821f;
}

.product-img {
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 22px;
}

.product-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .4s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #f6821f;
    margin-bottom: 12px;
}

.product-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }

    .product-img img {
        height: 200px;
    }
}


/*** Service ***/
@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
}

.service .service-item .btn-primary:hover {
    background: var(--bs-primary);
}

.service .service-item img {
    width: 70px;
    margin-bottom: 20px;
}


/*** Team ***/
.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 200%;
    height: 200px;
    top: 50%;
    left: -50%;
    transform: translateY(-50%);
    margin-top: 1rem;
    background: var(--bs-primary);
}

.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .5);
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, .9);
}

.team-overlay p {
    letter-spacing: 1px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: var(--bs-dark);
    background: transparent;
}

.team-overlay .btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item {
    position: relative;
}

.testimonial-carousel .owl-item::before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
}

.testimonial-carousel .owl-item img {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item span {
    letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
    background: var(--bs-primary) !important;
}

.testimonial-carousel .owl-item.center .bg-light * {
    color: var(--bs-dark) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Footer ***/
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--bs-secondary);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}


/* ===== IMAGE SLIDER ===== */
.rectangular-client-carousel .client-box {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    height: 100%;
}

.rectangular-client-carousel .client-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.15);
}

/* Image */
/* Image with Orange Shadow */
.rectangular-client-carousel .client-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px; /* optional: rounds the image corners slightly */
    box-shadow: 0 8px 20px rgba(246, 130, 31, 0.6); /* Orange shadow */
    transition: 0.4s ease;
}

/* Hover effect for image */
.rectangular-client-carousel .client-box img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(246, 130, 31, 0.8); /* stronger orange glow on hover */
}


/* Content */
.rectangular-client-carousel .client-info {
    padding: 18px;
    text-align: center;
    background: #fff;
}

.rectangular-client-carousel .client-info h5 {
    margin: 0;
    font-weight: 600;
    color: #222;
}

.rectangular-client-carousel .client-info span {
    display: block;
    font-size: 13px;
    color: #f6821f;
    margin-top: 5px;
}

/* Dots */
.rectangular-client-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.rectangular-client-carousel .owl-dot span {
    background: #ccc !important;
}

.rectangular-client-carousel .owl-dot.active span {
    background: #f6821f !important;
}
.company-vmv {
    background: #f8f9fa;
}

.vmv-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.vmv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.vmv-icon {
    width: 70px;
    height: 70px;
    background: #f6821f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.vmv-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.vmv-card p {
    color: #555;
}

.vmv-card ul {
    list-style: none;
    padding: 0;
}

.vmv-card ul li {
    padding: 6px 0;
    color: #555;
}

/* On-Time Delivery */
.delivery-box {
    background: linear-gradient(135deg, #f6821f, #ff9f45);
    border-radius: 18px;
    padding: 40px;
    display: flex;
    gap: 25px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.delivery-icon {
    font-size: 50px;
}

.delivery-content h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.delivery-content ul {
    list-style: none;
    padding: 0;
}

.delivery-content ul li {
    padding: 5px 0;
}

/* Mobile */
@media (max-width: 768px) {
    .delivery-box {
        flex-direction: column;
        text-align: center;
    }
}
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Colors */
.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.call {
    background: #0d6efd;
}

.float-btn.email {
    background: #f6821f;
}
@media (max-width: 576px) {
    .floating-contact {
        right: 15px;
        bottom: 80px;
    }

    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}
.contact-section {
    background: #f8f9fa;
}

/* Contact Info Box */
.contact-info-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon {
    width: 55px;
    height: 55px;
    background: #f6821f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-item .text h5 {
    margin: 0 0 5px;
    font-weight: 700;
}

.contact-item .text p {
    margin: 0;
    color: #555;
}

.contact-item a {
    color: #333;
    text-decoration: none;
}

.contact-item a:hover {
    color: #f6821f;
}

/* Map */
.map-box {
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-info-box {
        padding: 25px;
    }

    .map-box iframe {
        min-height: 300px;
    }
}
.quality-policy-section {
    padding: 60px 0;
    background: #f6f8fb;
}

.quality-policy-section .container {
    max-width: 1200px;
    margin: auto;
}

.policy-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 35px;
    margin-bottom: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    position: relative;
}

.policy-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    border-radius: 16px 0 0 16px;
}

.policy-orange::before {
    background: #f6821f;
}

.policy-blue::before {
    background: #1e4fd7;
}

.policy-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-orange h3 {
    color: #f6821f;
}

.policy-blue h3 {
    color: #1e4fd7;
}

.policy-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
}

.policy-card ul {
    padding-left: 20px;
}

.policy-card ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}
