/********** Template CSS **********/

:root {
    --primary: #1E60AA;
    --secondary: #FF4917;
    --light: #EDF1FC;
    --dark: #17224D;
}
.tab-pane {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
.tab-pane.active.show {
  opacity: 1;
}

* {
    font-family: "Poppins", sans-serif;
}

.fw-medium {
    font-weight: 600 !important;
}

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


/*** 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: 600;
    transition: .5s;
}

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

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
    border-radius: 5px;
}

.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 ***/

.top-bar {
    padding: 12px 0;
    background: #211f20;
    color: #fff;
}


/* RESET */

.navbar-nav li {
    list-style: none;
    padding: 0;
    margin: 0 10px;
}

a {
    text-decoration: none;
}
.fa-envelope-open {
    color: #ffffff !important;
}
.fa-mobile{
	 color: #ffffff !important;
}
/* NAVBAR WRAPPER */

.navbarWrapper {
    background-color: #1c1c1c;
    border-bottom:none;
    position: sticky;
    top: 0;
    z-index: 999;
}


/* NAVBAR */

.nav-bar {
    padding: 0;
}

.navbar {
    background-color: transparent;
}


/* LOGO IMAGE */

.logoImg {
    width: 60%;
    background: #fff;
}


/* TOGGLER ICON (Mobile) */

.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 22px;
}


/* MAIN NAV LINKS */

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff;
}


/* DROPDOWN MENU (DEFAULT BOOTSTRAP + CUSTOM) */

.dropdown-menu {
    background-color: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    color: #333;
    font-size: 14px;
    padding: 10px 20px;
}

.dropdown-item:hover {
    background-color: #f2f2f2;
    color: #007bff;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    position: absolute;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}


/* Inquiry Form Container */

.inquiry-form {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 10px;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.inquiry-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
}


/* Input Fields */

.inquiry-form .form-group {
    margin-bottom: 15px;
}

.inquiry-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #444;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}


/* Submit Button */

.inquiry-form button[type="submit"] {
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.inquiry-form button[type="submit"]:hover {
    background-color: #0056b3;
}


/* MULTILEVEL DROPDOWNS */

.has-sub>a {
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    display: inline-block;
}

.has-sub>a:hover {
    color: #007bff;
}

.has-sub>ul {
    background: #f8f9fa;
    padding-left: 15px;
    display: none;
}

.has-sub:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
}

.has-sub ul li a {
    font-size: 14px;
    color: #333;
    display: block;
    padding: 8px 16px;
}

.has-sub ul li a:hover {
    background-color: #eee;
}


/* SUBMENU BUTTON ICON (if needed) */

.submenu-button::after {
    content: ' ▼';
    font-size: 12px;
    color: #ccc;
}


/* CONNECT US BUTTON */

.header-button .tj-white-btn {
    background-color: #007bff;
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    transition: 0.3s ease;
}

.header-button .tj-white-btn:hover {
    background-color: #0056b3;
}


/* MOBILE RESPONSIVENESS */

@media (max-width: 992px) {
    .navbar-collapse {
        background-color: #1c1c1c;
        padding: 15px;
    }
    .navbar-nav {
        flex-direction: column;
        text-align: left;
    }
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
    .header-button {
        margin-top: 15px;
        display: block !important;
    }
}


/*** Header ***/

.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #FFFFFF;
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

.mobilebanner {
    display: none;
}

.bannerWrapper {
    display: block;
}

@media (max-width: 768px) {
    .bannerWrapper {
        display: none;
    }
    .mobilebanner {
        display: block;
    }
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }
    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 75%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #211f20b8;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

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


/*** Facts ***/

.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.aboutWrapper {}

.aboutWrapper h2 {}

.aboutWrapper p {}

.aboutWrapper .list {}


/*** Booking ***/

.video {
    position: relative;
    padding: 8rem 0 12rem 0;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video .btn-play {
    position: relative;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    margin-bottom: 4rem;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--primary);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/

.team-item img {
    transition: .5s;
    max-width: 100%;
    max-height: 300px;
}


/* .team-item:hover img {
    transform: scale(1.1);
} */

.team-item .team-text {
    height: 90px;
    overflow: hidden;
    background-color: #7c7e833d !important;
    text-align: center;
    padding: 10px 10px;
}

.team-item .team-text .bg-light,
.team-item .team-text .bg-primary {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: .5s;
}

.team-item .team-text .bg-primary {
    flex-direction: row;
}


/* .team-item:hover .team-text .bg-light {
    margin-top: -90px;
} */

.team-item .team-text .bg-primary .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-text .bg-primary .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}

.productsWrap {
    padding: 60px 0;
    background-color: #211f20 !important;
}

.productsWrap .heading {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 15px 0;
    display: inline-block;
}

.productsWrap p {
    font-size: 18px;
    color: #bbbbbb;
}

.productsWrap .leftWrap {
    background: #211f20;
    overflow-y: auto;
    max-height: 400px;
    border-right: 5px solid #ffffff;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
}

.productsWrap .leftWrap::-webkit-scrollbar {
    display: none;
}

.nav-pills .nav-link {
    text-align: left;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    /* background-color: #f8f9fa; */
    width: 100%;
    /* border: 1px solid #dee2e6; */
    border-bottom: 1px solid #ffffff45;
    border-radius: 0;
}

.nav-pills .nav-link.active {
    background-color: #44444452;
    color: #9e9e9e;
    border-bottom: 1px solid #ffffff45;
    border-radius: 0;
}

.productcard {
    background-color: #ffffff;
    border: 10px solid #ddd;
    border-radius: 22px;
    padding: 15px;
    text-align: center;
    transition: 0.3s ease;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.productcard img {
    width: 200px !important;
    height: 200px;
    margin: 0 auto;
}

.productcard .textWrap {
    color: #ffffff !important;
    background: #d9ebff;
    padding: 20px 24px;
    font-size: 13px;
    text-align: center;
    z-index: 9;
    min-height: 106px;
    margin: 10px;
    width: 100%;
    border-radius: 20px;
}

.productcard .textWrap h6 {
    display: block;
    font-weight: 600;
    color: #211f20;
    line-height: 24px;
    font-size: 22px;
}

.productcard .textWrap p {
    color: #211f20;
    font-size: 14px;
}

.productcard:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 6px solid #282727;
}

@media (max-width: 768px) {
    .productsWrap .leftWrap {
        border-right: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

.catalogue-section {}

.catalogue-section .catalogue-info {}

.catalogue-section .catalogue-info .catalogue-inside {}

.catalogue-section .catalogue-info img {
    width: 80%;
}

.catalogue-section .catalogue-inside h2 {}

.catalogue-section .catalogue-inside p {}

.catalogue-section .catalogue-inside .btn_section {}

.catalogue-section .catalogue-inside .btn_section a {
    min-width: 150px;
    padding: 10px 25px;
    display: inline-block;
    z-index: 1;
    text-align: center;
    font-size: 13px;
    overflow: hidden;
    vertical-align: middle;
    background: #211f20;
    color: #fff;
    border-radius: 5px;
}

.bookingWrap {}

.bookingWrap .innerWrap {
    background-color: #f3f3f3 !important;
    border-radius: 10px;
}

.bookingWrap .innerWrap .heading {
    color: #211f20;
}

.bookingWrap .book-now-btn {
    background-color: #211f20 !important;
    color: #fff !important;
    border-radius: 5px;
}

.product-inner {
    position: relative;
}

.product-gallery-wrapper {
    position: relative;
    flex-shrink: 0;
}

.product-gallery {
    width: 100%;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-gallery,
.product-details {
    flex: 1 1 100%;
    padding: 20px;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide img {
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
}

.carousel-thumbnails {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.carousel-thumbnail {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    margin: 0px 2px;
    padding: 7px 7px;
    border: 1px solid #dadada;
}

.carousel-thumbnail.active,
.carousel-thumbnail:hover {
    opacity: 1;
}

.product-description {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
}

.product-price {
    font-size: 1.8em;
    color: #007f5f;
    margin-bottom: 20px;
    text-align: center;
}

.btn-add-to-cart {
    display: block;
    margin: 0 auto 30px;
    padding: 12px 24px;
    background-color: #007f5f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-add-to-cart:hover {
    background-color: #005f44;
}

.product-specs,
.product-reviews {
    margin-top: 30px;
}

.product-specs ul {
    padding-left: 20px;
    list-style-type: disc;
}

.product-reviews p {
    margin-bottom: 10px;
    font-style: italic;
}

@media (min-width: 768px) {
    .product-gallery,
    .product-details {
        flex: 1 1 50%;
    }
    .product-title,
    .product-description,
    .product-price {
        text-align: left;
    }
	h1.product-title{
		font-size: 24px;
	}
    .btn-add-to-cart {
        margin: 0;
    }
}

.image-gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnails img {
    width: 60px;
    height: 60px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.product-details h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.rating {
    display: inline-block;
    background-color: #388e3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.price {
    font-size: 28px;
    color: #d32f2f;
    margin: 15px 0 5px;
}

.mrp {
    font-size: 14px;
    color: #757575;
}

.offer {
    background-color: #fff3cd;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.features {
    margin-top: 15px;
    list-style: disc inside;
    color: #333;
}

.buttons {
    margin-top: 20px;
}

.buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
}

.add-to-cart {
    background-color: #ff9800;
}

.buy-now {
    background-color: #388e3c;
}

.delivery-info {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.image-gallery {
    position: sticky;
    top: 20px;
    align-self: start;
}

.image-gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnails img {
    width: 60px;
    height: 60px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.product-details h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.rating {
    display: inline-block;
    background-color: #388e3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.price {
    font-size: 28px;
    color: #d32f2f;
    margin: 15px 0 5px;
}

.mrp {
    font-size: 14px;
    color: #757575;
}

.offer {
    background-color: #fff3cd;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.features {
    margin-top: 15px;
    list-style: disc inside;
    color: #333;
}

.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
    width: 100%;
}

.add-to-cart {
    background-color: #ff9800;
}

.buy-now {
    background-color: #388e3c;
}

.delivery-info {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.specifications {
    max-width: 800px;
    margin: 50px auto 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.specifications h2 {
    background: #f1f3f6;
    margin: 0;
    padding: 15px;
    font-size: 20px;
    border-bottom: 1px solid #ddd;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.spec-table th {
    width: 30%;
    color: #555;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.sticky-wrapper {
    position: relative;
    height: auto;
}

.product-gallery.stopped {
    position: absolute !important;
    top: auto !important;
    bottom: 0;
}

.similar-items {}

.similar-items .your-slider {}

.similar-items .your-slider .slider-items {}

.similar-items .your-slider .slider-items .slider_inn {
    border: 1px solid #eaeaea;
    margin: 0 5px;
}

.slider-wrapper {
    position: relative;
    max-width: 100%;
}

.custom-arrow {
    position: absolute;
    top: 57%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: rgb(0 0 0 / 29%);
    color: white;
    border: none;
    height: 40px;
    width: 40px;
    font-size: 20px;
    border-radius: 15%;
    cursor: pointer;
    transition: 0.3s ease;
}

.custom-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.custom-arrow.prev {
    left: -36px;
}

.custom-arrow.next {
    right: -36px;
}

.shopnow-btn {
    background-color: #e99c2e;
    color: #fff;
    padding: 7px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 13px;
}

.productPage {
    padding: 60px 0;
    font-family: Arial, sans-serif;
}

.product-inner {
    display: flex;
    flex-wrap: wrap;
}

.gallery-section,
.details-section {
    padding: 20px;
}

.gallery-wrapper {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
}

.thumbnails {
    display: flex;
    margin-bottom: 15px;
}

.thumbnails .thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.3s;
}

.thumbnails .thumb.active {
    border-color: #007bff;
}

.carousel {
    margin-bottom: 20px;
}

.carousel-track {
    display: flex;
    overflow: hidden;
}

.carousel-track .slide {
    width: 100%;
    /* max-height: 300px; */
    object-fit: cover;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.btn {
    padding: 12px 12px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 4px;
}

.callBtn {
    background-color: #3ecb65;
    color: #fff;
    border-radius: 12px;
    padding: 2px 12px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.details-section {
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
}

.details-section::-webkit-scrollbar {
    display: none;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    margin-bottom: 10px;
}

.features strong {
    display: inline-block;
    width: 140px;
    color: #333;
}

.specifications {
    margin-top: 30px;
}

.specifications table {
    width: 100%;
    border-collapse: collapse;
}

.specifications th,
.specifications td {
    text-align: left;
    padding: 10px;
    border: 1px solid #ddd;
}

.specifications th {
    width: 160px;
    background: #f2f2f2;
}

.quote-note {
    margin-top: 20px;
    padding: 12px;
    background: #fff3cd;
    border-left: 4px solid #ffeeba;
    color: #856404;
}

.delivery-info {
    margin-top: 20px;
}

.delivery-info p {
    margin: 6px 0;
}

.new-arrivals {
    padding: 60px 0;
    background-color: #f5f7fa;
    font-family: Arial, sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    text-transform: uppercase;
    color: #2c3e50;
}

.section-header .subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.btn-wrap {
    margin-top: 15px;
}

.btn-view,
.btn-enquiry {
    display: inline-block;
    padding: 8px 14px;
    font-size: 14px;
    margin: 4px 6px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-view {
    background-color: #007bff;
    color: #fff;
}

.btn-enquiry {
    background-color: #28a745;
    color: #fff;
}

.btn-view:hover {
    background-color: #0056b3;
}

.btn-enquiry:hover {
    background-color: #1e7e34;
}

.pro_det_about {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: "Segoe UI", sans-serif;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.pro_det_about h2 {
    font-size: 28px;
    color: #004d66;
    border-left: 5px solid #0077aa;
    padding-left: 10px;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    text-align: justify;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 15px;
}

.product-table th,
.product-table td {
    border: 1px solid #ccc;
    padding: 10px 15px;
    text-align: left;
    vertical-align: top;
}

.product-table th {
    background-color: #e9f6fb;
    color: #003f5c;
    width: 30%;
}

.faqs h2 {
    font-size: 24px;
    color: #004d66;
    margin-bottom: 20px;
}

.faq h3 {
    font-size: 18px;
    margin-top: 15px;
    color: #0077aa;
}

.faq p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-left: 10px;
}
.exp_qua,
.exp_dis {
    font-size: 14px;
    color: #555;
    margin: 2px 0;
}

.exp_btn {
    margin-top: 10px;
}

.exp_btn a {
    display: inline-block;
    padding: 8px 15px;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.exp_btn a:hover {
    background-color: #0056b3;
}


/*** Footer ***/

.footer {
    background-color: #211f20 !important;
    color: #fff !important;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    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);
}


/********** Template CSS **********/

:root {
    --primary: #1E60AA;
    --secondary: #FF4917;
    --light: #EDF1FC;
    --dark: #17224D;
}

* {
    font-family: "Poppins", sans-serif;
}

.fw-medium {
    font-weight: 600 !important;
}

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


/*** 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: 600;
    transition: .5s;
}

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

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
    border-radius: 5px;
}

.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 ***/

.top-bar {
    padding: 12px 0;
    background: #211f20;
    color: #fff;
}


/* RESET */

.navbar-nav li {
    list-style: none;
    padding: 0;
    margin: 0 10px;
}

a {
    text-decoration: none;
}


/* NAVBAR WRAPPER */



/* NAVBAR */

.nav-bar {
    padding: 0;
}

.navbar {
    background-color: #ffffff;
}


/* LOGO IMAGE */

.logoImg {
    width: 60%;
    background: #fff;
}


/* TOGGLER ICON (Mobile) */

.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 22px;
}


/* MAIN NAV LINKS */

.navbar-nav .nav-link {
    color: #060606;
    font-weight: 500;
    padding: 10px 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff;
}


/* DROPDOWN MENU (DEFAULT BOOTSTRAP + CUSTOM) */

.dropdown-menu {
    background-color: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    color: #333;
    font-size: 14px;
    padding: 10px 20px;
}

.dropdown-item:hover {
    background-color: #f2f2f2;
    color: #007bff;
}


/* MULTILEVEL DROPDOWNS */

.has-sub>a {
    color: #fff;
    font-weight: 500;
    padding: 10px 15px;
    display: inline-block;
}

.has-sub>a:hover {
    color: #007bff;
}

.has-sub>ul {
    background: #f8f9fa;
    padding-left: 15px;
    display: none;
}

.has-sub:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
}

.has-sub ul li a {
    font-size: 14px;
    color: #333;
    display: block;
    padding: 8px 16px;
}

.has-sub ul li a:hover {
    background-color: #eee;
}


/* SUBMENU BUTTON ICON (if needed) */

.submenu-button::after {
    content: ' ▼';
    font-size: 12px;
    color: #ccc;
}


/* CONNECT US BUTTON */

.header-button .tj-white-btn {
    background: linear-gradient(90deg, #1e90ff, #0077ff);
    color: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Hover Zoom */
.header-button .tj-white-btn:hover {
    transform: scale(1.08);
}

/* Shine Effect */
.header-button .tj-white-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.header-button .tj-white-btn:hover::before {
    left: 150%;
}



/* MOBILE RESPONSIVENESS */

@media (max-width: 992px) {
    .navbar-collapse {
        background-color: #1c1c1c;
        padding: 15px;
    }
    .navbar-nav {
        flex-direction: column;
        text-align: left;
    }
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
    .header-button {
        margin-top: 15px;
        display: block !important;
    }
}


/*** Header ***/

.header-carousel .container,
.page-header .container {
    position: relative;
    padding: 45px 0 45px 35px;
    border-left: 15px solid #FFFFFF;
}

.header-carousel .container::before,
.header-carousel .container::after,
.page-header .container::before,
.page-header .container::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100px;
    height: 15px;
    background: #FFFFFF;
}

.header-carousel .container::after,
.page-header .container::after {
    top: 100%;
    margin-top: -15px;
}

.mobilebanner {
    display: none;
}

.bannerWrapper {
    display: block;
}

@media (max-width: 768px) {
    .bannerWrapper {
        display: none;
    }
    .mobilebanner {
        display: block;
    }
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }
    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 75%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: #211f20b8;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

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


/*** Facts ***/

.fact {
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
}

.aboutWrapper {}

.aboutWrapper h2 {}

.aboutWrapper p {}

.aboutWrapper .list {}


/*** Booking ***/

.video {
    position: relative;
    padding: 8rem 0 12rem 0;
    background: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, .4)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video .btn-play {
    position: relative;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    margin-bottom: 4rem;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--primary);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Team ***/

.team-item img {
    transition: .5s;
    max-width: 100%;
    min-height: 300px;

}

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

.productsWrap {
    padding: 60px 0;
    background-color: #211f20 !important;
}

.productsWrap .heading {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 15px 0;
    display: inline-block;
}

.productsWrap p {
    font-size: 18px;
    color: #bbbbbb;
}

.productsWrap .leftWrap {
    background: #211f20;
    overflow-y: auto;
    max-height: 400px;
    border-right: 5px solid #ffffff;
    border-top-right-radius: 22px;
    border-bottom-right-radius: 22px;
}

.productsWrap .leftWrap::-webkit-scrollbar {
    display: none;
}

.nav-pills .nav-link {
    text-align: left;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    /* background-color: #f8f9fa; */
    width: 100%;
    /* border: 1px solid #dee2e6; */
    border-bottom: 1px solid #ffffff45;
    border-radius: 0;
}

.nav-pills .nav-link.active {
    background-color: #44444452;
    color: #9e9e9e;
    border-bottom: 1px solid #ffffff45;
    border-radius: 0;
}

.productcard {
    background-color: #ffffff;
    border: 10px solid #ddd;
    border-radius: 22px;
    padding: 15px;
    text-align: center;
    transition: 0.3s ease;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.productcard img {
    width: 200px !important;
    height: 200px;
    margin: 0 auto;
}

.productcard .textWrap {
    color: #ffffff !important;
    background: #d9ebff;
    padding: 20px 24px;
    font-size: 13px;
    text-align: center;
    z-index: 9;
    min-height: 106px;
    margin: 10px;
    width: 100%;
    border-radius: 20px;
}

.productcard .textWrap h6 {
    display: block;
    font-weight: 600;
    color: #211f20;
    line-height: 24px;
    font-size: 22px;
}

.productcard .textWrap p {
    color: #211f20;
    font-size: 14px;
}

.productcard:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 6px solid #282727;
}

@media (max-width: 768px) {
    .productsWrap .leftWrap {
        border-right: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

.catalogue-section {}

.catalogue-section .catalogue-info {}

.catalogue-section .catalogue-info .catalogue-inside {}

.catalogue-section .catalogue-info img {
    width: 80%;
}

.catalogue-section .catalogue-inside h2 {}

.catalogue-section .catalogue-inside p {}

.catalogue-section .catalogue-inside .btn_section {}

.catalogue-section .catalogue-inside .btn_section a {
    min-width: 150px;
    padding: 10px 25px;
    display: inline-block;
    z-index: 1;
    text-align: center;
    font-size: 13px;
    overflow: hidden;
    vertical-align: middle;
    background: #25ca53;
    color: #fff;
    border-radius: 5px;
}

.bookingWrap {}

.bookingWrap .innerWrap {
    background-color: #f3f3f3 !important;
    border-radius: 10px;
}

.bookingWrap .innerWrap .heading {
    color: #211f20;
}

.bookingWrap .book-now-btn {
    background-color: #25ca53 !important;
    color: #fff !important;
    border-radius: 5px;
}

.product-inner {
    position: relative;
}

.product-gallery-wrapper {
    position: relative;
    flex-shrink: 0;
}

.product-gallery {
    width: 100%;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-gallery,
.product-details {
    flex: 1 1 100%;
    padding: 20px;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide img {
    width: 100%;
    border-radius: 12px;
    cursor: pointer;
}

.carousel-thumbnails {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.carousel-thumbnail {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    margin: 0px 2px;
    padding: 7px 7px;
    border: 1px solid #dadada;
}

.carousel-thumbnail.active,
.carousel-thumbnail:hover {
    opacity: 1;
}

.product-title {
    font-size: 24px;
    margin-bottom: 0;
    text-align: left;
}

.product-description {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
}

.product-price {
    font-size: 1.8em;
    color: #007f5f;
    margin-bottom: 20px;
    text-align: center;
}

.btn-add-to-cart {
    display: block;
    margin: 0 auto 30px;
    padding: 12px 24px;
    background-color: #007f5f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-add-to-cart:hover {
    background-color: #005f44;
}

.product-specs,
.product-reviews {
    margin-top: 30px;
}

.product-specs ul {
    padding-left: 20px;
    list-style-type: disc;
}

.product-reviews p {
    margin-bottom: 10px;
    font-style: italic;
}

@media (min-width: 768px) {
    .product-gallery,
    .product-details {
        flex: 1 1 50%;
    }
    .product-title,
    .product-description,
    .product-price {
        text-align: left;
    }
    .btn-add-to-cart {
        margin: 0;
    }
}

.image-gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnails img {
    width: 60px;
    height: 60px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.product-details h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.rating {
    display: inline-block;
    background-color: #388e3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.price {
    font-size: 28px;
    color: #d32f2f;
    margin: 15px 0 5px;
}

.mrp {
    font-size: 14px;
    color: #757575;
}

.offer {
    background-color: #fff3cd;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.features {
    margin-top: 15px;
    list-style: disc inside;
    color: #333;
}

.buttons {
    margin-top: 20px;
}

.buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
}

.add-to-cart {
    background-color: #ff9800;
}

.buy-now {
    background-color: #388e3c;
}

.delivery-info {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.image-gallery {
    position: sticky;
    top: 20px;
    align-self: start;
}

.image-gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnails img {
    width: 60px;
    height: 60px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.product-details h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.rating {
    display: inline-block;
    background-color: #388e3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
}

.price {
    font-size: 28px;
    color: #d32f2f;
    margin: 15px 0 5px;
}

.mrp {
    font-size: 14px;
    color: #757575;
}

.offer {
    background-color: #fff3cd;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}

.features {
    margin-top: 15px;
    list-style: disc inside;
    color: #333;
}

.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    margin-right: 10px;
    width: 100%;
}

.add-to-cart {
    background-color: #ff9800;
}

.buy-now {
    background-color: #388e3c;
}

.delivery-info {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.specifications {
    max-width: 800px;
    margin: 50px auto 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.specifications h2 {
    background: #f1f3f6;
    margin: 0;
    padding: 15px;
    font-size: 20px;
    border-bottom: 1px solid #ddd;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.spec-table th {
    width: 30%;
    color: #555;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.sticky-wrapper {
    position: relative;
    height: auto;
}

.product-gallery.stopped {
    position: absolute !important;
    top: auto !important;
    bottom: 0;
}

.similar-items {}

.similar-items .your-slider {}

.similar-items .your-slider .slider-items {}

.similar-items .your-slider .slider-items .slider_inn {
    border: 1px solid #eaeaea;
    margin: 0 5px;
}

.slider-wrapper {
    position: relative;
    max-width: 100%;
}

.custom-arrow {
    position: absolute;
    top: 57%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: rgb(0 0 0 / 29%);
    color: white;
    border: none;
    height: 40px;
    width: 40px;
    font-size: 20px;
    border-radius: 15%;
    cursor: pointer;
    transition: 0.3s ease;
}

.custom-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.custom-arrow.prev {
    left: -36px;
}

.custom-arrow.next {
    right: -36px;
}

.shopnow-btn {
    background-color: #e99c2e;
    color: #fff;
    padding: 7px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 13px;
}

.productPage {
    padding: 60px 0;
    font-family: Arial, sans-serif;
}

.product-inner {
    display: flex;
    flex-wrap: wrap;
}

.gallery-section,
.details-section {
    padding: 20px;
}

.gallery-wrapper {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
}

.thumbnails {
    display: flex;
    margin-bottom: 15px;
}

.thumbnails .thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.3s;
}

.thumbnails .thumb.active {
    border-color: #007bff;
}

.carousel {
    margin-bottom: 20px;
}

.carousel-track {
    display: flex;
    overflow: hidden;
}

.carousel-track .slide {
       width: 70%;
    max-height: 450px;
    object-fit: cover;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.btn {
    padding: 12px 12px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 4px;
}

.callBtn {
    background-color: #25ca53;
    color: #fff;
    border-radius: 12px;
    padding: 2px 12px;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.details-section {
    flex: 1;
    overflow-y: auto;
    max-height: 800px;
}

.details-section::-webkit-scrollbar {
    display: none;
}

.product-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    margin-bottom: 10px;
}

.features strong {
    display: inline-block;
    width: 140px;
    color: #333;
}

.specifications {
    margin-top: 30px;
}

.specifications table {
    width: 100%;
    border-collapse: collapse;
}

.specifications th,
.specifications td {
    text-align: left;
    padding: 10px;
    border: 1px solid #ddd;
}

.specifications th {
    width: 160px;
    background: #f2f2f2;
}

.quote-note {
    margin-top: 20px;
    padding: 12px;
    background: #fff3cd;
    border-left: 4px solid #ffeeba;
    color: #856404;
}

.delivery-info {
    margin-top: 20px;
}

.delivery-info p {
    margin: 6px 0;
}

.new-arrivals {
    padding: 60px 0;
    background-color: #f5f7fa;
    font-family: Arial, sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    text-transform: uppercase;
    color: #2c3e50;
}

.section-header .subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.btn-wrap {
    margin-top: 15px;
}

.btn-view,
.btn-enquiry {
    display: inline-block;
    padding: 8px 14px;
    font-size: 14px;
    margin: 4px 6px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-view {
    background-color: #007bff;
    color: #fff;
}

.btn-enquiry {
    background-color: #28a745;
    color: #fff;
}

.btn-view:hover {
    background-color: #0056b3;
}

.btn-enquiry:hover {
    background-color: #1e7e34;
}

.pro_det_about {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: "Segoe UI", sans-serif;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.pro_det_about h2 {
    font-size: 28px;
    color: #004d66;
    border-left: 5px solid #0077aa;
    padding-left: 10px;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    text-align: justify;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-size: 15px;
}

.product-table th,
.product-table td {
    border: 1px solid #ccc;
    padding: 10px 15px;
    text-align: left;
    vertical-align: top;
}

.product-table th {
    background-color: #e9f6fb;
    color: #003f5c;
    width: 30%;
}
.product-preview img{
	    height: 300px;
   width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;

}
.team-item{
    min-height: 400px;
	    padding: 14px;
}
.faqs h2 {
    font-size: 24px;
    color: #004d66;
    margin-bottom: 20px;
}

.faq h3 {
    font-size: 18px;
    margin-top: 15px;
    color: #0077aa;
}

.faq p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-left: 10px;
}

.expolor_div {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
	    min-height: 550px;

}

.expolor_div:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.expolor_Images img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.expo_pro {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
}

.expo_pro a {
    color: #333;
    text-decoration: none;
}

.expo_pro a:hover {
    color: #007bff;
    text-decoration: underline;
}

.exp_qua,
.exp_dis {
    font-size: 14px;
    color: #555;
    margin: 2px 0;
}

.exp_btn {
    margin-top: 10px;
}

.exp_btn a {
    display: inline-block;
    padding: 8px 15px;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.exp_btn a:hover {
    background-color: #0056b3;
}
.expolor_div p{
	font-size: 14px;
	margin: 0;
}
.wpcf7-form label{
	    display: inline-block;
    font-size: 14px;
    color: #000;

}
.wpcf7-form input.wpcf7-form-control , select ,optgroup  {
    font-size: 14px !important;
    margin-bottom: 5px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: 1px solid #ededed;
    border-radius: 4px;
    background: #fff;
    height: 40px;
    padding: 12px 12px;
    width: 100%;
}
.wpcf7-form input.wpcf7-form-control textarea {
    font-size: 14px !important;
    margin-bottom: 5px;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: 1px solid #ededed;
    border-radius: 4px;
    background: #fff;
    padding: 12px 12px;
    width: 100%;
}
.wpcf7-form input.wpcf7-submit {
    padding: 12px 12px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 4px;
    margin-top: 20px;
    background: #26b72c;
    color: #fff;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
	height: auto;
}



/*** Footer ***/

.footer {
    background-color: #211f20 !important;
    color: #fff !important;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    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);
}