/********** Template CSS **********/
:root {
    --primary: #005555;
    --secondary: #F65005;
    --light: #F7F8FC;
    --dark: #111111;
}
.body{
    color:#005555;
}

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

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.bg-icon {
    
    background-size: contain;
}


/*** 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;
}


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

.btn.btn-primary,
.btn.btn-secondary,
.btn.btn-outline-primary:hover,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
}

.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;
}


 /* Navbar Styling */
 .navbar {
    padding: 10px 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Navbar Links */
.navbar-nav .nav-link {
    font-size: 18px;
    padding: 10px 15px;
    color: #555;
    transition: color 0.3s ease;
    font-weight: bold;
}

/* Navbar Brand Logo */
.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Social Media Styling */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Social Media Colors */
.social-icon.facebook { background-color: #3b5998; }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.linkedin { background-color: #0077b5; }

/* Icon Color */
.social-icon i { color: white !important; }

/* Hover Effect */
.social-icon:hover { transform: scale(1.2); }

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    background: transparent;
    outline: none;
}

.navbar-toggler:focus { box-shadow: none; }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar {
        padding: 5px;
    }
    .navbar-collapse {
        background: #fff;
        padding: 10px;
        border-radius: 5px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    .navbar-nav .nav-link {
        padding: 10px;
        font-size: 16px;
    }
    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 3px 0;
    }
    .navbar-nav .nav-link {
        font-size: 15px;
        padding: 8px;
    }
    .logo {
        width: 50px;
        height: 50px;
    }
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

 /* Style for the popup modal */
        .modal-backdrop {
            z-index: 1040 !important;
        }

        .modal-dialog {
            max-width: 500px;
            margin: auto;
        }

        .modal-content {
            border-radius: 15px;
        }

        .form-container {
            padding: 20px;
            background: #f9f9f9;
            border-radius: 10px;
        }

        .form-label {
            font-weight: bold;
            color: black;
        }

        .btn-primary {
            background-color: #005555;
            border: none;

            padding: 10px;
            font-size: 16px;
            border-radius: 5px;
        }

        .btn-primary:hover {
            background-color: #004444;
        }

        .modal-header {
            background-color: #005555;
            color: white;
        }

        .modal-title {
            font-weight: bold;
            color: white;
        }

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

        @media (max-width: 768px) {
            .modal-dialog {
                max-width: 90%;
            }

            .form-container {
                padding: 15px;
            }
        }


/* new carousal  */
        /* carousel */

        .carousel {
            width: 100vw;
            height: 80vh;
            margin-top: 135px;
            overflow: hidden;
            position: relative;
        }

        .carousel .list .item {
            width: 180px;
            height: 250px;
            position: absolute;
            top: 80%;
            transform: translateY(-70%);
            left: 70%;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            background-position: 50% 50%;
            background-size: cover;
            z-index: 100;
            transition: 1s;
        }

        .carousel .list .item:nth-child(1),
        .carousel .list .item:nth-child(2) {
            top: 0;
            left: 0;
            transform: translate(0, 0);
            border-radius: 0;
            width: 100%;
            height: 100%;
        }

        .carousel .list .item:nth-child(3) {
            left: 67%;
        }

        .carousel .list .item:nth-child(4) {
            left: calc(67% + 200px);
        }

        .carousel .list .item:nth-child(5) {
            left: calc(67% + 400px);
        }

        .carousel .list .item:nth-child(6) {
            left: calc(67% + 600px);
        }

        .carousel .list .item:nth-child(n+7) {
            left: calc(67% + 800px);
            opacity: 0;
        }





        .list .item .content {
            position: absolute;
            top: 50%;
            left: 100px;
            transform: translateY(-50%);
            width: 400px;
            text-align: left;
            color: #fff;
            display: none;
            font-family: aclonica;
        }

        .list .item:nth-child(2) .content {
            display: block;
        }

        .content .title {
            font-size: 70px;
            text-transform: uppercase;
            color: black;
            font-weight: bold;
            line-height: 1;

            opacity: 0;
            animation: animate 1s ease-in-out 0.3s 1 forwards;
        }

        .content .name {
            font-size: 60px;
            text-transform: uppercase;
            font-weight: bold;
            line-height: 1;
            text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);

            opacity: 0;
            animation: animate 1s ease-in-out 0.6s 1 forwards;
        }

        .content .des {
            margin-top: 10px;
            margin-bottom: 20px;
            font-size: 18px;
            margin-left: 5px;

            opacity: 0;
            animation: animate 1s ease-in-out 0.9s 1 forwards;
        }

        .content .btn {
            margin-left: 5px;

            opacity: 0;
            animation: animate 1s ease-in-out 1.2s 1 forwards;
        }

        .content .btn button {
            padding: 10px 20px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            border: 2px solid #fff;
        }

        .content .btn button:nth-child(1) {
            margin-right: 15px;
        }

        .content .btn button:nth-child(2) {
            background: transparent;
            color: black;
            border: 2px solid #fff;
            transition: 0.3s;
        }

        .content .btn button:nth-child(2):hover {
            background-color: #005555;
            color: #fff;
            border-color: #005555;
        }


        @keyframes animate {

            from {
                opacity: 0;
                transform: translate(0, 100px);
                filter: blur(33px);
            }

            to {
                opacity: 1;
                transform: translate(0);
                filter: blur(0);
            }
        }

        /* Carousel */


        /* next prev arrows */

        .arrows {
            position: absolute;
            top: 80%;
            right: 52%;
            z-index: 100;
            width: 300px;
            max-width: 30%;
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .arrows button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #005555;
            color: #fff;
            border: none;
            outline: none;
            font-size: 16px;
            font-family: monospace;
            font-weight: bold;
            transition: .5s;
            cursor: pointer;
        }

        .arrows button:hover {
            background: #fff;
            color: #000;
        }


        /* time running */
        .carousel .timeRunning {
            position: absolute;
            z-index: 1000;
            width: 0%;
            height: 4px;
            background-color: #005555;
            left: 0;
            top: 0;
            animation: runningTime 7s linear 1 forwards;
        }

        @keyframes runningTime {

            from {
                width: 0%;
            }

            to {
                width: 100%;
            }

        }


       /* Responsive Design */
@media screen and (max-width: 999px) {

    header {
        padding-left: 30px;
    }

    .list .item .content {
        left: 30px;
        width: 90%;
    }

    .content .title,
    .content .name {
        font-size: 60px;
        line-height: 1.2;
    }

    .content .des {
        font-size: 16px;
        margin-right: 10px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 768px) {
    .list .item .content {
        top: 45%;
        left: 20px;
        width: 85%;
    }

    .content .title,
    .content .name {
        font-size: 45px;
        text-align: center;
        width: 100%;
    }

    .content .des {
        font-size: 16px;
        text-align: center;
        margin: 0 auto;
        width: 90%;
    }

    .content .btn {
        text-align: center;
        margin-top: 15px;
    }
}

@media screen and (max-width: 576px) {
    .list .item .content {
        top: 40%;
        left: 10px;
        width: 90%;
    }

    .content .title,
    .content .name {
        font-size: 28px;
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    .content .des {
        font-size: 14px;
        text-align: center;
        width: 100%;
    }

    .content .btn {
        text-align: center;
        margin-top: 10px;
    }
}

/* All product slider new */
   
    .slider-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        height: 150px; /* Adjust height based on your image size */
    }
    .slider {
        display: flex;
        align-items: center;
        height: 100%;
        animation: scroll 30s linear infinite;
    }
    .slider-item {
        flex: 0 0 auto;
        width: 150px; /* Adjust width based on your image size */
        margin: 0 20px; /* Spacing between items */
        text-align: center;
        background-color: #ddd;
    }
    .slider-item img {
        width: 80px; /* Adjust width based on your image size */
        height: 100px; /* Adjust height based on your image size */
        object-fit: cover;
        border-radius: 8px;
        ;
    }
    .slider-item p {
        margin-top: 10px;
        font-size: 14px;
        color: #333;
    }
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    /* Ensure seamless looping */
    .slider::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 200%;
        height: 100%;
        background: inherit;
    }

/* about us section new */
    
    


#about {
  background: #f8f9fa;
  padding-top: 60px;
  padding-bottom: 60px;
}

#about h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

#about p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

#about .btn {
  font-size: 1rem;
  padding: 10px 20px;
}

#about img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

#about img:hover {
  transform: scale(1.05);
}

.about-container-section{
    width:100%;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
    border-radius: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/carousel-1.jpg) top right no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Section Header ***/
.section-header {
    position: relative;
    padding-top: 25px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
}

.section-header::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
}

.section-header.text-start::before,
.section-header.text-start::after {
    left: 0;
    transform: translateX(0);
}



/*** About ***/
/* .about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background-image: -webkit-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -moz-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -ms-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: -o-repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-image: repeating-radial-gradient(#FFFFFF, #EEEEEE 5px, transparent 5px, transparent 10px);
    background-size: 20px 20px;
    transform: skew(20deg);
    z-index: 1;
} */


/*** Product ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

@keyframes borderRotate {
    0% { border-color: red; }
    25% { border-color: blue; }
    50% { border-color: green; }
    75% { border-color: orange; }
    100% { border-color: red; }
}

.product-item {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 450px;
    /* width: 300px; */
    border: 5px solid red; /* Default Border */
    animation: borderRotate 5s infinite linear;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    border-radius: 20px 20px 20px 20px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
   
}

.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    

}

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

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

.product-item small a:hover {
    color: var(--primary) !important;
}

/* new product */
.product-item {
    border: 3px solid #ddd; /* Add border to product boxes */
    border-radius: 5px; /* Optional: rounded corners */
    overflow: hidden; /* Ensure the border-radius applies to children */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
    background-color: #fff; /* Optional: white background */
}

/* contact section new */
/* contact section */

/* Custom Styles for Contact Section */
.contact-section {
    background-image: url('images/backgroundimg1.webp');
    background-position: top left;
    background-repeat: repeat;
    padding: 60px 0;
}

.contact-section h6 {
    color: #306b46;
    font-family: Aclonica;
    font-size: 38px;
    font-weight: bold;
    margin-top: -35px;
}

.contact-section p {
    font-size: 1.2rem;
    color: #333;
}

.contact-section .form-control {
    border-radius: 10px;
    margin-bottom: 15px;
}

.contact-section .btn-primary {
    background-color: #005555;
    border-color: #005555;
    font-size: 1.2rem;
    padding: 10px 25px;
    width: 100%;
}

.contact-section .btn-primary:hover {
    background-color: #005555;

}

.contact-info {
    margin-top: 30px;

}

.contact-info h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
}

.contact-info .icons i {
    font-size: 1.5rem;
    color: #005555;
    margin-right: 10px;
}

.contact-info .icons i:hover {
    color: #306b46;
}

@media (max-width: 768px) {
    
    .img-fluid7 {
        width: 100px;
        margin-top: 400px;
    }

    .img-fluid8 {
        width: 120px;
        margin-top: -10px;
        margin-left: -8px;
    }
}





/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-item.center .testimonial-item i {
    color: var(--secondary) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

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

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

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

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

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

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

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

/* float button start */
.float_wa {
    position: fixed;
    width: 100px;
    height: 100px;
    bottom: 24px;
    left: 20px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    z-index: 100;
    border-radius: 61%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  .float_wa:hover {
    transform: scale(1.1); /* Slight zoom on hover */
  }
  
  .float_wa img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
  }
  
  .float_call {
    position: fixed;
    bottom: 125px;
    left: 20px;
    width: 100px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }
  
  .float_call:hover {
    transform: scale(1.1);
  }
  
  .float_call img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: contrast(1.5);
  }
  /* float button end */