/********** Template CSS **********/
:root {
    --primary: #C69400;
    --secondary: #1B3F2E;
    --light: #F7F8FC;
    --dark: #111111;
}

.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: url(../img/bg-icon.png) center center repeat;
    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-primary{
    background-color: #1B3F2E !important ;
}
.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 ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

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

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: #555555;
    font-weight: 500;
    outline: none;
}

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


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

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    /* background: url(../img/carousel-1.jpg) top right no-repeat; */
    background-color: #2B2529;
    color: #fff;
    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;

}

.product-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

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

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

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


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



.h2-testimonials {
    background-attachment: fixed;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.h2-testimonials .sc-content-overlay {
    position: relative;
    overflow: hidden;
}
.h2-testimonials .sc-content-overlay:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1b4f8a;
    opacity: .51;
}

.sc-testimonials.style-02 .item {
    max-width: 620px;
    margin: 0 auto;
    padding-right: 80px;
    color: #fff;
}
.sc-testimonials.style-02 .content {
    color: #fff !important;
    display: inline-block;
    font-size: 18px;
    margin: 20px 0;
    font-weight: 300;
    font-style: italic;
    line-height: 28px;
}
.sc-testimonials.style-02 {
    margin: 150px 0;
    border: 1px solid var(--primary-color-2);
    position: relative;
    text-align: left;
    padding: 60px;
    max-width: 661px;
}

.sc-testimonials.style-02 .name {
    font-size: 15px;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
    font-weight: bold;
}
.sc-testimonials.style-02 .review {
    margin-bottom: 0;
}
.sc-testimonials.style-02 .title {
    font-family: var(--body-font-family-2);
    color: #e7ad44;
    position: relative;
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
}
.sc-testimonials.style-02 .rating-star:before {
    font-size: 12px;
    letter-spacing: 4px;
}
.sc-testimonials.style-02 .owl-dots {
    margin-top: 0!important;
    position: absolute;
    right: 0;
    top: 22px;
}
.sc-testimonials.style-02 .owl-dots .owl-dot {
    display: block;
    margin-bottom: 25px;
}
.sc-testimonials.style-02 .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    border: 2px solid #9b9b9b;
    background: 0 0;
    opacity: 1;
}
.sc-testimonials.style-02 .owl-dots .owl-dot:hover span,
.sc-testimonials.style-02 .owl-dots .owl-dot.active span {
    background: #fff;
    border-color: #fff;
}

/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
    color: #fff;
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}
.page-headers {
    background: linear-gradient(to bottom, #dad9d9 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    z-index: 1;
    margin-top: 80px;
    color: #E8B904 !important;
}

.page-headers .container {
    position: relative;
    z-index: 2;
}

.page-headers h1 {
    font-family: 'Arial', sans-serif;
    font-size: 60px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-headers::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* z-index: 1; */
}

/* Product box */
.product-item {
    margin-bottom: 50px; }
    .product-item .image {
      margin-bottom: 25px;
      position: relative; }
      .product-item .image img {
        width: 100%; }
      .product-item .image .social-style-one {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        opacity: 0;
        padding: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: rgba(29, 27, 26, 0.75); }
        .product-item .image .social-style-one a {
          width: 60px;
          height: 60px;
          line-height: 60px; }
          @media only screen and (max-width: 375px) {
            .product-item .image .social-style-one a {
              width: 40px;
              height: 40px;
              line-height: 40px; } }
          .product-item .image .social-style-one a:not(:hover) {
            background: white;
            color: var(--heading-color); }
    .product-item .content .ratting {
      font-size: 13px;
      padding-bottom: 8px; }
    .product-item:hover .social-style-one {
      opacity: 1; }
  
  /* Product Details */
  .preview-images {
    margin-bottom: 30px; }
    .preview-images img {
      width: 100%; }
  
  .thumb-images {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .thumb-images .thumb-item {
      width: calc(33.3333% - 20px); }
      .thumb-images .thumb-item img {
        width: 100%; }
  
  .product-details-content .section-title h2 {
    margin-bottom: 15px; }
    @media only screen and (min-width: 1400px) {
      .product-details-content .section-title h2 {
        font-size: 48px; } }
  
  .product-details-content .ratting-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  
  .product-details-content .price {
    font-size: 24px;
    font-weight: 500;
    display: inline-block; }
  
  .product-details-content .add-to-cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .product-details-content .add-to-cart input {
      max-width: 190px;
      font-weight: 500;
      padding: 8px 20px;
      text-align: center;
      margin: 20px 20px 0 0;
      font-family: "Roboto", sans-serif;
      border: 1px solid var(--border-color); }
    .product-details-content .add-to-cart .theme-btn {
      margin-top: 20px;
      padding-top: 9px;
      padding-bottom: 9px; }
  
  .product-details-content .category-tags li:not(:last-child) {
    margin-bottom: 8px; }
  
  .product-details-content .category-tags li b {
    min-width: 65px;
    font-weight: 500;
    display: inline-block;
    color: var(--heading-color); }
  
  .product-details-content .category-tags li span {
    margin-left: 15px;
    margin-right: 15px; }
  
  .product-details-content .category-tags li a:not(:last-child):after {
    content: ',';
    margin-right: 3px; }
  
  .product-details .tab-content h4 {
    margin-bottom: 15px; }
    @media only screen and (min-width: 1400px) {
      .product-details .tab-content h4 {
        font-size: 30px; } }
  
  .product-information-tab {
    padding: 25px 90px;
    background: var(--lighter-color); }
    @media only screen and (max-width: 767px) {
      .product-information-tab {
        padding: 15px 25px; } }
    .product-information-tab li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .product-information-tab li a {
        font-size: 24px; }
        @media only screen and (max-width: 575px) {
          .product-information-tab li a {
            font-size: 20px; } }
        @media only screen and (max-width: 375px) {
          .product-information-tab li a {
            font-size: 18px; } }
        .product-information-tab li a.active {
          font-weight: 500;
          color: var(--heading-color);
          text-decoration: underline; }
      .product-information-tab li:not(:last-child) {
        position: relative; }
        .product-information-tab li:not(:last-child):after {
          width: 7px;
          height: 7px;
          content: '';
          opacity: 0.25;
          border-radius: 50%;
          margin-left: 50px;
          margin-right: 50px;
          background: var(--heading-color); }
          @media only screen and (max-width: 575px) {
            .product-information-tab li:not(:last-child):after {
              margin-left: 15px;
              margin-right: 15px; } }
  
  .review-form .ratting b {
    font-size: 20px;
    font-weight: 400;
    margin-right: 20px; }
  
  .review-form .form-group {
    margin-bottom: 30px; }
    .review-form .form-group .nice-select,
    .review-form .form-group .form-control {
      line-height: 1.4;
      background: var(--lighter-color);
      border-color: var(--lighter-color); }
      @media only screen and (min-width: 480px) {
        .review-form .form-group .nice-select,
        .review-form .form-group .form-control {
          font-size: 20px; } }
      .review-form .form-group .nice-select::-webkit-input-placeholder,
      .review-form .form-group .form-control::-webkit-input-placeholder {
        color: var(--heading-color); }
      .review-form .form-group .nice-select:-ms-input-placeholder,
      .review-form .form-group .form-control:-ms-input-placeholder {
        color: var(--heading-color); }
      .review-form .form-group .nice-select::-ms-input-placeholder,
      .review-form .form-group .form-control::-ms-input-placeholder {
        color: var(--heading-color); }
      .review-form .form-group .nice-select::placeholder,
      .review-form .form-group .form-control::placeholder {
        color: var(--heading-color); }
      .review-form .form-group .nice-select:focus,
      .review-form .form-group .form-control:focus {
        background: transparent;
        border-color: var(--heading-color); }
      .review-form .form-group .nice-select .current,
      .review-form .form-group .form-control .current {
        font-weight: 400; }
  
  @media only screen and (min-width: 768px) {
    .review-form .theme-btn {
      padding: 14px 55px; } }


      /*******************************************************/
/******************* ## Gallery Area *******************/
/*******************************************************/
@media only screen and (min-width: 1400px) {
  .gallery-active {
    margin-left: 70px; } }

.gallery-active .gallery-item {
  margin-left: 35px;
  margin-right: 35px; }
  @media only screen and (max-width: 1399px) {
    .gallery-active .gallery-item {
      margin-left: 15px;
      margin-right: 15px; } }

.gallery-active .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.gallery-item {
  position: relative; }
  .gallery-item .image img {
    width: 100%; }
  .gallery-item .over-content {
    position: absolute;
    left: 20px;
    top: 20px;
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-align: center;
    padding: 25px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background: rgba(171, 96, 52, 0.39); }
    .gallery-item .over-content h2 {
      color: white;
      margin-bottom: 0;
      margin-top: 20px; }
      @media only screen and (max-width: 1399px) {
        .gallery-item .over-content h2 {
          font-size: 35px; } }
  .gallery-item:hover .over-content {
    opacity: 1; }
  .gallery-item.style-two {
    margin-bottom: 30px; }
    .gallery-item.style-two .over-content {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(29, 27, 26, 0.85); }
      .gallery-item.style-two .over-content h2 {
        margin-top: 0; }
        @media only screen and (max-width: 1399px) {
          .gallery-item.style-two .over-content h2 {
            font-size: 35px; } }

            .modal {
              display: flex;
              position: fixed;
              z-index: 1000;
              left: 0;
              top: 0;
              width: 100%;
              height: 100%;
              background-color: rgba(0, 0, 0, 0.9);
              align-items: center;
              justify-content: center;
              transition: 0.3s ease-in-out;
          }
          
          .modal-content {
            width: auto;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 10px;
            transition: transform 0.3s ease-in-out;
          }
          
          /* 🔺 Close Button */
          .close {
              position: absolute;
              top: 15px;
              right: 30px;
              font-size: 35px;
              font-weight: bold;
              color: white;
              cursor: pointer;
              transition: 0.3s;
          }
          
          .close:hover {
              color: #ff5757;
          }
          
          /* ⏭️ Next & Prev Buttons */
          .prev, .next {
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              font-size: 50px;
              font-weight: bold;
              color: white;
              cursor: pointer;
              transition: 0.3s;
              padding: 10px 15px;
              background: rgba(0, 0, 0, 0.6);
              border-radius: 50%;
          }
          
          .prev {
              left: 20px;
          }
          
          .next {
              right: 20px;
          }
          
          .prev:hover, .next:hover {
              background: rgba(255, 255, 255, 0.6);
              color: black;
          }
          
          /* 🎯 Eye Icon */
          .eye-icon {
              font-size: 30px;
              color: white;
              cursor: pointer;
              margin-top: 10px;
              display: inline-block;
              transition: 0.3s;
          }
          
          .eye-icon:hover {
              color: #ffda44;
          }
          
          /* 🖼️ Smooth Opening Animation */
          .modal img {
              opacity: 0;
              transform: scale(0.8);
              animation: fadeInScale 0.3s forwards;
          }
          
          @keyframes fadeInScale {
              to {
                  opacity: 1;
                  transform: scale(1);
              }
          }
          
        /* Gallery Page */
        .gallery-masonry-active .details-btn {
        color: white;
        margin-bottom: 20px;
        background: var(--primary-color); }
