@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
}

:root{
    --red:#DC2C1E;
    --light:#fff;
    --dark:#000;
}


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


.bg-primary{
    background: var(--red) !important;
}

.btn-danger{
    background-color: var(--red);
    color: var(--light) !important;
}

p{
    font-size: 18px;
    font-weight: bold;
}

A{
    text-decoration: none;
}

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

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

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

/*** Button ***/
.btn {
    transition: .5s;
    border-radius: 0 !important;
}

.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:hover{
    background-color: var(--red) !important;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar {
    padding: 15px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 0;
    outline: none;
    color: var(--dark);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--red);
}

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

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--light);
    background: var(--red);
}

.navbar-brand img{
    width: 120px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

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


/*** Hero Header ***/
.hero-header {
    margin-top: -100px;
    padding-top: 150px;
    background: url(../img/banner/hero-bg.jpg) top center no-repeat;
    background-size: cover;
}
.hero-header.index-banner  {
    padding-top: 100px !important;

}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.header-carousel {
    position: relative;
    padding: 45px 90px 45px 0;
}

.header-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--red);
    z-index: -1;
}

.header-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    border: 2px solid var(--dark);
    transition: .5s;
}

.header-carousel .owl-dot.active {
    height: 30px;
    background: var(--light) !important;
}

.owl-carousel button.owl-dot {
    background-color: #000 !important;
}




/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../img/bg-about-img.png) top left no-repeat;
    background-size: contain;
}

.about .btn-primary{
    background: var(--red);
    border-color: var(--red);
}

.about p{
    font-size: 18px;
    text-align: justify;
}


/*** features start ***/
.feature-sec{

}


/*** .product  ***/

.product-sec .project-item img {
    transition: .5s;
}
  
.product-sec .project-item:hover img {
    transform: scale(1.2);
}
  
.product-sec .project-overlay {
    position: absolute;
    padding: 25px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--dark));
    z-index: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 30px 25px;
    transition: .5s;
}

.service-item.bg-primary:hover {
    background: var(--light) !important;
}

.service-item.bg-primary p {
    color: var(--light);
    transition: .5s;
}

.service-item.bg-primary:hover p {
    color: var(--bs-secondary);
}

.service-item.bg-light:hover {
    background: var(--red) !important;
}

.service-item.bg-light p {
    color: var(--bs-secondary);
    transition: .5s;
}

.service-item.bg-light:hover p {
    color: var(--light);
}


.service-item .service-img h3 {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 12px 7px 0;
}

.service-item.bg-primary .service-img h3 {
    background: var(--red);
    color: var(--light);
    transition: .5s;
}

.service-item.bg-primary:hover .service-img h3 {
    background: var(--light);
    color: var(--dark);
}

.service-item.bg-light .service-img h3 {
    background: var(--light);
    color: var(--dark);
    transition: .5s;
}

.service-item.bg-light:hover .service-img h3 {
    background: var(--red);
    color: var(--light);
}


/*** Our Team ***/
/* .team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(255, 255, 255, .1) 50%, var(--dark));
    z-index: 1;
}

.team-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: var(--light);
    background: var(--red);
} */


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    padding: 45px 0 45px 90px;
}

.testimonial-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: calc(50% + 45px);
    height: 100%;
    background: var(--red);
    z-index: -1;
}

.testimonial-text h5 {
    position: relative;
    padding-left: 45px;
}

.testimonial-text h5::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: var(--red);
}

.testimonial-carousel .owl-dots {
    position: absolute;
    height: 17px;
    bottom: 0;
    right: 0;
    left: auto;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    width: 15px;
    height: 15px;
    background: var(--red) !important;
    border: 2px solid var(--red);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--red);
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-dots {
        left: 0;
        right: auto;
    }

    .testimonial-carousel .owl-dot {
        margin-right: 10px;
        margin-left: 0;
    }
}


/*** Newsletter ***/
/* .newsletter {
    background: url(../img/hero-bg.jpg) bottom right no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
} */


/*** Footer ***/
/* .footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255,255,255,.5);
    font-weight: normal;
    transition: .3s;
}

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

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

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

.footer .copyright a {
    color: rgba(255,255,255,.5);
}

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

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

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










/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
}

.blog .blog-page .blog-item {
    margin: 0 0 30px 0;
}

.blog .blog-img {
    position: relative;
    width: 100%;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-text {
    position: relative;
    padding: 25px 30px;
    border-right: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    border-left: 1px solid rgba(0, 0, 0, .07);
}

.blog .blog-text h2 {
    font-size: 22px;
    font-weight: 600;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #343148;
    transition: .3s;
}

.blog .blog-item a.btn i {
    margin-left: 5px;
}

.blog .blog-item a.btn:hover {
    color: #F7CAC9;
}

.blog .blog-meta {
    position: relative;
    display: flex;
    margin-bottom: 15px;
}

.blog .blog-meta p {
    margin: 0 10px 0 0;
    font-size: 13px;
}

.blog .blog-meta i {
    margin-right: 5px;
}

.blog .blog-meta p:last-child {
    margin: 0;
}

.blog .owl-nav {
    width: 150px;
    margin: 32px auto 0 auto;
    display: flex;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
    margin-left: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F7CAC9;
    background: #343148;
    font-size: 22px;
    transition: .3s;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
    color: #343148;
    background: #F7CAC9;
}

.blog .pagination .page-link {
    color: #343148;
    border-radius: 0;
    border-color: #343148;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #F7CAC9;
    background: #343148;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}

/*******************************/
/*********** related-product CSS **********/
/*******************************/
.related-product {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.related-product .related-product-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.related-product .related-product-item {
    position: relative;
    margin: 0 15px;
}

/* .related-product .related-product-page .related-product-item {
    margin: 0 0 30px 0;
} */

.related-product .related-product-img {
    position: relative;
    width: 100%;
}

.related-product .related-product-img img {
    width: 100%;
}

.related-product .related-product-text {
    position: relative;
    padding: 25px 30px;
    border-right: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    border-left: 1px solid rgba(0, 0, 0, .07);
}

.related-product .related-product-text h2 {
    font-size: 22px;
    font-weight: 600;
}

.related-product .related-product-text p {
    margin-bottom: 10px;
}

.related-product .related-product-item a.btn {
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #343148;
    transition: .3s;
}

.related-product .related-product-item a.btn i {
    margin-left: 5px;
}

.related-product .related-product-item a.btn:hover {
    color: var(--red);
}

.related-product .owl-nav {
    width: 150px;
    margin: 32px auto 0 auto;
    display: flex;
}

.related-product .owl-nav .owl-prev,
.related-product .owl-nav .owl-next {
    margin-left: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: var(--red);
    font-size: 22px;
    transition: .3s;
}

.related-product .owl-nav .owl-prev:hover,
.related-product .owl-nav .owl-next:hover {
    color: var(--red);
    background: var(--light);
}







/*** footer ***/

.footer {
    background: url(../img/banner/footer-bg.png);
  /* background-color: #1e1e1e; */
  color: #ccc;
  padding: 60px 0 30px;
  position: relative;
}

.footer h5 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}

.footer h5::after {
  content: '';
  width: 40px;
  height: 2px;
  background: red;
  position: absolute;
  left: 0;
  bottom: -8px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin: 6px 0;
}

.footer a:hover {
  color: #fff;
}

.footer a:hover i{
  color: var(--red);
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #000;
  background: #fff;
  font-size: 16px;
  padding: 10px;
}

.contact-list li {
  margin-bottom: 10px;
  list-style: none;
  color: #ccc;
  display: flex;
}

.contact-list i {
  color: red;
  margin-right: 10px;
}

.footer-bottom {
  background: linear-gradient(to right, #fa1e0e, #f54242);
  color: white;
  padding: 15px 0;
  text-align: center;
}

.footer-logo {
  font-size: 20px;
  font-weight: bold;
  text-align: start;
}


@media (max-width: 768px) {
  .footer {
    text-align: start;
  }

}




.contact-form {
    background: #f7f9fb;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px #e0e0e0;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 6px;
  }

  .submit-btn {
    background: linear-gradient(to right, #e53935, #ef5350);
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0px 4px 10px rgba(229, 57, 53, 0.3);
  }

  .accordion-button {
    background: linear-gradient(to right, #e53935, #ef5350);
    color: white;
    font-weight: bold;
    border-radius: 0 !important;
  }

  .accordion-button:not(.collapsed) {
    color: white;
    background: linear-gradient(to right, #e53935, #ef5350);
    box-shadow: none;
  }

  .accordion-button::after {
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); */
  }

  .accordion-item {
    margin-bottom: 10px;
    border: none;
  }

  .accordion-body {
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  @media (max-width: 768px) {
    .contact-form {
      margin-bottom: 30px;
    }
  }







  /* contact */
  .contact-section {
    background: url(../img/banner/footer-bg.png); 
    color: white;
    padding: 50px 0;
}
.contact-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.icon-circle {
  background: linear-gradient(45deg, #f44336, #ff5722);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: white;
}
.contact-content h6 {
  color: #ff3c3c;
  font-weight: 700;
  margin-bottom: 5px;
}
.contact-content p {
  margin: 0;
  font-size: 15px;
  color: #fff;
}



/* enquiry style start */
.pro-imagd {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    height: 100%;

}

.pro-imagd img {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.enq-content p {
    text-align: justify;
    font-size: 18px;
}

.more-enq-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.more-enq-content p {
    font-size: 18px;
    margin-bottom: 5px;
}

.more-enq-content p strong {
    font-weight: 600;
    color: var(--red);
}

.enq-btn {
    display: inline-block;
    /* margin-top: 30px; */
    border: 1px solid var(--light);
    padding: 10px 20px;
    background-color: var(--red);
    color: #fff;
    transition: 0.2s ease-in-out;

}

.enq-btn:hover {
    border: 1px solid var(--red);
    color: var(--red);
    background-color: #fff;

}


.captchasep1 {
    display: flex;
  }
  
  .contact-us .contact-form .captchasep1 .form-floating label {
    color: #fff;
  }
  
  .contact-us .contact-form .captchasep1 .form-floating .form-control {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    color: #000;
  }
  
  .captchasep1 input {
    width: 100% !important;
    height: 40px;
  }
  
  .captchasep1 .captcha-codes-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    border-radius: 5px;
    /* background: url(../img/logo/captcha-bg.jpg); */
  }
  
  .captchasep1 .captcha-codes-sec p {
    letter-spacing: 9px;
    font-style: italic;
    font-size: 32px;
    font-weight: 800;
    padding: 5px;
    height: 100%;
    color: #fff;
  }
  
  .captchasep1 .captcha-codes-sec {
    margin-bottom: 10px;
  }
  
  .captchasep1 .captcha-codes-sec button {
    font-style: italic;
    font-size: 22px;
    outline: none;
    height: 100%;
    border: none;
    background: none;
  }
  
  .captchasep1 .captcha-codes-sec button i {
    background: var(--red);
    color: #000;
    padding: 10px;
    border-radius: 5px;
  }
  
  /* responsive captcha */
  @media screen and (max-width: 767px) {
    .captchasep1 .captcha-codes-sec p {
      letter-spacing: 2px;
      font-size: 18px;
      width: 60% !important;
    }
  
    .captchasep1 .captcha-codes-sec button {
      font-size: 12px;
    }
  
    .contact-form .captchasep1 .form-floating label {
      font-size: 14px;
      padding: 5px;
    }
  
    .form-floating .form-control,
    .form-floating .form-select {
      height: 2.5rem;
      line-height: 1.25;
    }
  
  }
/* enquiry style end  */




/* blog details  */
    .blog-details-section .blog-content h2{
        font-size: 30px;
        font-weight: 700;
        text-align: justify;
    }
    .blog-details-section .blog-content h3{
        font-size: 29px;
        font-weight: 700;
        text-align: justify;
    }
    .blog-details-section .blog-content p{
        font-size: 20px;
        text-align: justify;
    }

    .blog-details-section .blog-content-2 a{
        color: #000 !important;
        margin: 0;
        padding: 0  ;
    }

    .blog-details-section .blog-content-2 h2{
        font-size: 18px;
        color: #000 !important;
        font-weight: 700;
        margin-bottom: 0;
        padding-bottom: 0;
        
    }
    .blog-details-section .blog-content-2 p{
        font-size: 16px;
        color: #000 !important; 
        white-space: nowrap;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        margin: 0;
        padding-bottom: 0;
        
    }


    /* product  */
    .table-container {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
      }
  
      table {
        width: 100%;
        border-collapse: collapse;
      }
  
      th, td {
        padding: 5px 16px;
        border-bottom: 1px solid #ddd;
        text-align: left;
      }
  
      th {
        background-color: #f0f0f0;
        font-weight: bold;
      }
  
      td:last-child {
        color: #333;
      }




    /* fixed icons */


    .whatsapp-icon{
        width: 50px;
        height: 50px;
        position: fixed;
        bottom: 200px;
        right: 40px;
        z-index: 99999;
    }
    .phone-icon{
        width: 50px;
        height: 50px;
        position: fixed;
        bottom: 140px;
        right: 40px;
        background: white;
        overflow: hidden;
        border-radius: 120px;
        z-index: 99999;
    }
    .phone-icon img{ 
        background: white;
        overflow: hidden ;
    }