/********** Professional Template CSS **********/

:root {
    --primary: #5a189a;
    --secondary: #7b2cbf;
    --accent: #9d4edd;
    --light: #f8f9fa;
    --white: #ffffff;
    --border: #e9ecef;
    --shadow: 0 8px 25px rgb(239, 235, 241);
    --transition: all 0.35s ease;
}

/********** Global **********/
body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    display: none;
}

/********** Spinner **********/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0s linear 0s;
}

/********** Buttons **********/
.btn {
    transition: var(--transition);
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: var(--white) !important;
    border-radius: 50px;
    padding: 12px 28px;
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(123, 44, 191, 0.35);
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 10px;
}

.btn-square {
    width: 40px;
    height: 40px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 50px;
    height: 50px;
}

/********** Navbar **********/
.navbar-light {
    transition: var(--transition);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: var(--transition);
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 30px 0;
    color: var(--dark) !important;
    font-size: 17px;
    font-weight: 700;
    transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

@media (min-width: 992px) {

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--white);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .navbar-light .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        width: 0;
        height: 3px;
        left: 50%;
        bottom: -2px;
        background: var(--primary);
        transition: var(--transition);
        border-radius: 10px;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 991.98px) {

    .sticky-top.navbar-light {
        position: relative;
        background: var(--white);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid var(--border);
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
        margin-right: 0;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

/********** Hero Header **********/
/* HERO SECTION */
.hero-header {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: url("../img/banner.jpg") center center no-repeat;
    background-size: cover;
    background-attachment: fixed;

    overflow: hidden;
}

/* DARK OVERLAY */
.hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.hero-header .container {
    position: relative;
    z-index: 2;
}

/* HERO TITLE */
.hero-header h1 {
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

/* HERO TEXT */
.hero-header p {
    max-width: 800px;
    margin: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .hero-header {
        min-height: 600px;
        background-attachment: scroll;
    }

    .hero-header h1 {
        font-size: 2.2rem;
    }

    .hero-header p {
        font-size: 1rem;
    }
}
/********** Services **********/
.service-item {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid transparent;
}

.service-item i {
    font-size: 45px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-item h5 {
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: rgb(255, 255, 255);
}

.service-item:hover h5,
.service-item:hover p,
.service-item:hover i {
    color: var(--white);
}

/********** Services List **********/
.services-list p {
    background: var(--light);
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: var(--transition);
    font-weight: 600;
}

.services-list p:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateX(8px);
}

/********** Package **********/
.package-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.package-item img {
    transition: transform 0.5s ease;
}

.package-item:hover img {
    transform: scale(1.08);
}

/********** Booking **********/
.booking {
    background:
        linear-gradient(rgba(20, 0, 20, 0.8),
        rgba(68, 0, 95, 0.8)),
        url("../img/booking.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 25px;
}

/********** Team **********/
.team-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-item img {
    transition: transform 0.5s ease;
}

.team-item:hover img {
    transform: scale(1.08);
}

.team-item .btn {
    background: var(--white);
    color: var(--primary);
    border-radius: 50px;
    border: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: var(--white);
}

/********** Testimonials **********/
.testimonial-item {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--white) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    width: 14px;
    height: 14px;
    margin: 0 6px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
}

/********** Footer **********/
.footer {
    background: #340355;
    color: rgba(255, 255, 255, 0.7);
}

.footer .btn.btn-social {
    width: 38px;
    height: 38px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer .btn.btn-social:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: var(--transition);
}

.footer .btn.btn-link::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--white);
    letter-spacing: 1px;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .copyright a {
    color: var(--white);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .footer-menu a:hover {
    color: var(--white);
}

/********** Responsive **********/
@media (max-width: 768px) {

    .hero-header {
        padding: 140px 0 80px;
        text-align: center;
    }

    .hero-header h1 {
        font-size: 2.5rem;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }
}
        * {
         font-family: 'Poppins', sans-serif;
        }

        body {
            overflow-x: hidden;
            background: #feffff;
        }

        .hero-header h1 {
            font-size: 65px;
            font-weight: 800;
        }

        .section-title {
            color: #470050;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .about-image img,
        .machine-card img,
        .review-card img {
            width: 100%;
            border-radius: 20px;
        }

        .story-box,
        .machine-card,
        .review-card,
        .company-box {
            background: #fff;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 35px rgb(82, 46, 85);
            transition: 0.4s;
            height: 100%;
        }

        .machine-card:hover,
        .review-card:hover,
        .company-box:hover,
        .story-box:hover {
            transform: translateY(-8px);
        }

        .machine-card img {
            height: 250px;
            object-fit: cover;
            margin-bottom: 20px;
        }

        .company-box img {
            max-height: 90px;
            object-fit: contain;
        }

        .review-card i {
            font-size: 40px;
            color: #490364;
            margin-bottom: 20px;
        }

        .stats-section {
            background: linear-gradient(45deg, #9556a1, #490364);
            color: #fff;
            padding: 80px 0;
            font: white;
        }

        .stat-box h2 {
            font-size: 55px;
            font-weight: 800;
        }

        .btn-main {
            background: linear-gradient(45deg, #fffeff, #490364);
            color: white;
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.4s;
            display: inline-block;
        }

        .btn-main:hover {
            color: white;
            transform: translateY(-4px);
        }

        footer {
            background: #4e0244;
            color: #fff;
            padding: 60px 0 20px;
        }

        .footer-social a {
            width: 42px;
            height: 42px;
            border: 1px solid rgb(255, 255, 255);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 5px;
            color: white;
            transition: 0.4s;
            text-decoration: none;
        }

        .footer-social a:hover {
            background: rgb(92, 4, 95);
            border-color: #fff;
        }

        @media(max-width:768px) {

            .hero-header h1 {
                font-size: 42px;
            }

        }
  
#aboutSlider img{
    height:550px;
    object-fit:cover;
    border-radius:20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    background-color:rgba(0,0,0,0.5);
    border-radius:50%;
    padding:20px;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
}
.hero-car{
    background: linear-gradient(135deg,#ff6600,#f1e6f1);
    padding:120px 0;
}

.service-item{
    transition:.4s;
    overflow:hidden;
}

.service-item:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.service-item img{
    height:250px;
    width:100%;
    object-fit:cover;
    transition:.5s;
}

.service-item:hover img{
    transform:scale(1.08);
}

.btn-primary{
    background:#ff6600;
    border:none;
}

.btn-primary:hover{
    background:#e65c00;
}

.service-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.service-item h5 {
    font-size: 13px;
    min-height: 38px;
    font-weight: 600;
}

.service-item p {
    font-size: 14px;
    margin-bottom: 10px;
}

.service-item .btn {
    padding: 6px 14px;
    font-size: 12px;
}

@media (max-width: 991px) {
    .service-item img {
        height: 180px;
    }
}

.feature-box{
    margin-top:-80px;
    position:relative;
    z-index:10;
}

.feature-card{
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 35px rgba(0,0,0,.1);
    transition:.4s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card i{
    font-size:45px;
    color:#520347;
    margin-bottom:15px;
}
/* HERO */

.hero-car{
    position: relative;
    background:
    linear-gradient(rgb(3, 3, 3),
    rgba(255, 255, 255, 0)),
    url('../img/BG Car.jpg');
   
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    min-height: 650px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-car h1{
    font-weight:800;
    text-shadow:0 5px 20px rgba(0,0,0,.5);
}

.hero-car p{
    max-width:700px;
    margin:auto;
}