@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

p {
    font-size: 18px;
}

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a,
a:active,
a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
    color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}

body {
    font-family: "Roboto", sans-serif;
    color: #6e777d;
    /* background-color: #222; */
    padding: 0 !important;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    user-select: none; /* Disable text selection */
    -webkit-user-select: none; 
    -moz-user-select: none;
    -ms-user-select: none;
}


img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* @media (min-width: 1200px) {
    .container {
        max-width: 1250px;
    }
} */

/* Sticky Navigation */
.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 20px 0;
}

/* Navigation after scrolling */
.navigation.scrolled {
    background: white;
    padding: 10px 0 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}


.navigation .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navigation .inside {
    background-color: #fff;
}

.brand a {
    display: block;
    max-width: 120px;
    transition: max-width 0.3s ease-in-out;
    /* Smooth transition */
}

/* Adjust logo size when scrolled */
.navigation.scrolled .brand a {
    max-width: 75px;
}

.header-info {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
    margin-bottom: 30px;
}

.header-info .text {
    color: #2b2b2b;
    font-weight: 400;
}

.header-info .text a {
    color: #2b2b2b;
    font-weight: 500;
}

/* Navigation List (Desktop) */
.nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-list li {
    position: relative;
}

.nav-list li.active {}

.nav-list a {
    text-decoration: none;
    color: #2b2b2b;
    font-weight: 500;
    padding: 10px 10px;
    transition: color 0.3s ease;
}

.nav-list a.active {
    border-bottom: 2px solid #d2a86c;
}

.nav-list a:hover {
    color: #d2a86c;
}


.btn-product {
    color: #2b2b2b !important;
    background-color: #d2a86c;
    border-radius: 15px;
    padding: 8px 18px !important;
    border: 1px solid #f4f0e4;
}

/* Dropdown arrow icon */
.has-dropdown .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.has-dropdown.open>a .arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu (Desktop) */
.nav-dropdown {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background: #fff;
    min-width: 180px;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.has-dropdown:hover .nav-dropdown {
    display: block;
}

.nav-dropdown li {
    padding: 0;
}

.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #2b2b2b;
    font-weight: 400;
}

.nav-dropdown a:hover {

    color: #d2a86c;
}


/* Mobile styles */
.nav-mobile {
    display: none;
    cursor: pointer;
}

.nav-mobile span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px auto;
    background: #2b2b2b;
    transition: all 0.3s ease-in-out;
}

nav.open .nav-mobile span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #fff;
}

nav.open .nav-mobile span:nth-child(2) {
    opacity: 0;
}

nav.open .nav-mobile span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #fff;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-mobile {
        display: block;
        position: absolute;
        right: 20px;
        z-index: 1;
        top: 22px;
        z-index: 9999;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #2b2b2b;
        width: 250px;
        height: 100%;
        padding: 70px 20px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    nav.open .nav-list {
        display: flex;
    }

    .nav-list li {
        margin-bottom: 10px;
    }

    .nav-list li a {
        color: #fff;
    }

    .nav-dropdown {

        box-shadow: none;
        background: none;
        padding-left: 15px;
        display: none !important;
        text-align: center;
    }

    .has-dropdown.open .nav-dropdown {
        display: block !important;
    }

    .nav-dropdown a {
        padding: 8px 0;
    }

    .header-info {
        display: none;
    }
}

.main_heading h1 {
    color: #2b2b2b;
    font-size: 20px;
    position: relative;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.main_heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #d2a86c;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.main_heading h2.black {
    color: #2b2b2b;
}

.padding-60 {
    padding: 60px 0;
}

.full-height {
    position: relative;
    width: 100%;
    height: 100%;
}



.banner-text {
    position: absolute;
    z-index: 2;
    margin: auto;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    transform: translateY(-50%);
    padding: 0 100px;
    text-align: left;
}

.banner-text h1 {
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    color: #2b2b2b;
    margin-bottom: 8px;
}

.banner-text p {
    font-size: 35px;
    color: #2b2b2b;
    /* text-transform: uppercase; */
    margin-bottom: 35px;
    font-weight: normal;
    max-width: 600px;
}

.banner-text p span{font-weight: 700;}

.fancy-button {
    font-size: 14px;
    color: #fff !important;
    padding: 12px 32px !important;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid #2b2b2b;
    background: #2b2b2b;
    display: inline-block;
    line-height: normal !important;
    width: auto !important;
    height: auto !important;
    border-radius: 15px;
}
.light-btn{   border: 1px solid #d2a86c;
    background: #d2a86c;}
/* why JK intenational */
.intro-points {

    margin-left: 30px;
    margin-bottom: 50px;

}

.intro-points li {
    margin-bottom: 12px;
    font-size: 18px;
    list-style-image: url('../images/check.png');
    padding-left: 10px;
}

/* about us */
.main-about_content {
    margin-left: 20px;
}

.about-two {
    padding: 80px 80px;
}


.title-area {
    position: relative;
    z-index: 2;
}

.sub-title {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #af9146;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 24px;
    position: relative;
}

.element-wrap {
    display: flex;
    gap: 15px;
}

.element-wrap .element-icon {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    padding: 13px;
    border-radius: 50%;
    background-color: #d2a86c;
}

.element-wrap .element-cont .title {
    font-size: 24px;
    color: #2b2b2b;
    font-weight: 600;
    margin-bottom: 1px;
}

.element-wrap .element-cont .desc {
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.why-tin-about .element-wrap .element-cont .desc {
    display: initial;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
    text-overflow: initial;
}

/* services */


.product-wrap-sec {
    position: relative;
}

.product-wrap-sec::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 400px;
    background-color: #ca9447;
    z-index: -1;
}



.product-div {

    width: 50%;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.link {
    font-size: 20px;
    color: #2b2b2b;
    font-weight: 500;
    text-decoration: underline;
}


.product-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.product-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.product-wrap:hover img {
    /* transform: scale(1.1); Zoom effect on hover */
}

.product-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding: 20px;
}

.product-wrap:hover .overlay {
    opacity: 1;
}

.product-wrap .overlay h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ca9447;
}

.product-wrap .overlay p {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.clients-sec {
    margin-top: 60px;
}

.client-logo .slick-slide {
    margin: 0 10px;
    background-color: #fff;
}

.why-tin-sec .row {
    gap: 60px 0;
}

.why-tin-sec .content {
    margin-top: 60px;
}

.why-tin-about .row {
    gap: 60px;
}

.why-tin-about .row .col-lg-6 {
    width: calc(50% - 30px);
}

.quality-sec .quality-cont-text {
    padding: 40px 100px 40px 60px;
}

#map {
    max-width: 900px;
    height: 500px;
    margin: auto;
}

.about-sec {
    position: relative;
}

.about-sec::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 300px;
    background-color: #ca9447;
    z-index: -1;
}

.about-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-us-text {
    background-color: #fff;
    height: 100%;
    padding: 40px;
}



/* footer */

.mainfooter {
    background-color: #232323;
    padding-bottom: 0;
}

.shfooter h5 {
    color: #d3d3d3;
    margin-bottom: 20px;
    font-size: 18px;
}

.shfooter ul.list-unstyled li {
    margin-bottom: 5px;
}

.shfooter ul.list-unstyled li a,
.shfooter ul.list-unstyled li span {
    color: #8c8c8c;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    display: inline-block;
}

.shfooter ul.list-unstyled li a:hover {
    color: #ececec;
}

.shfooter .collapse {
    display: inherit;
}

.copyright-sec {
    margin-top: 2.1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgb(255 255 255 / 0.1);
    color: #8c8c8c;
}

.mailfooter img {
    width: 18px !important;
}

.mailfooter {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.get-help .mailfooter img {
    margin-top: 5px;
}

.footer-logo {
    max-width: 100px;
}


/* inside pages */

.inside_banner {
    position: relative;
    margin-top: 170px;
}

.inside-banner-text {
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
    width: 100%;
}

.inside-banner-text h1 {
    color: #d2a86c;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
}

.products-sec .table {
    background-color: #fff;
}

.products-sec .table>.thead-light {
    background: #ededed;
    vertical-align: top;
}

.contact-wrap {
    padding-right: 60px;
}

.map-wrap {
    border: 1px solid #8c8c8c;
    padding: 5px;
}

.contact-bg {
    height: 300px;
    position: relative;
}

.contact-bg::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(210, 168, 108, 0.6);
}

.contact-bg img {
    object-fit: cover;
}

.contact-banner-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    text-align: center;
}



.contact-bg .main_heading h2 {
    color: #fff;
}

.contact-form-sec {
    padding-bottom: 60px;
}

.contact-form-sec .contact-form {
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin-top: -80px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    position: relative;
    background-color: #fff;
    padding: 40px 30px;
}

.contact-form-sec .contact-form textarea,
.contact-form-sec .contact-form input {
    width: 100%;
    height: 60px;
    border: 1px solid #dee2e6;
    outline: none;
    padding-left: 20px;
    line-height: 58px;
    font-size: 14px;
}

.contact-form-sec .contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form-sec .contact-form .form-group label {
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.contact-form-sec .contact-form textarea {
    height: 180px;
}

.contact-form-sec .contact-form ::placeholder {
    color: rgb(208, 208, 208);
    opacity: 1;
    /* Firefox */
}

.contact-form-sec .contact-form ::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: rgb(208, 208, 208);
}

.send-btn {
    background-color: #d2a86c;
    border-radius: 15px;
    min-width: 150px;
}

.product-text {
    padding-left: 40px;
}

.bold-text {
    font-weight: 500;
    color: #2b2b2b;
}

.swiper {
    width: 100%;
    padding-bottom: 40px
}

.swiper-pagination-bullet-active {
    background: #d2a86c;
}

.product-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.product-tabs .product-list a {
    font-size: 18px;
    color: #2b2b2b;
    padding: 10px 0;
}

.product-tabs .product-list a:focus {
    border-bottom: 2px solid #d2a86c;
    font-weight: 500;
}

.w-phara {
    max-width: 730px;
    margin: auto;
}

.d-mobile {
    display: none;
}

.countries-wrap {
    padding: 10px;
    background-color: #fff;
    height: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.countries-wrap .icon {
    width: 50px;
    margin: 0 auto;
}

.countries-wrap .country-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-top: 10px; margin-bottom: 0;
}
.captcha-container {
    display: flex;
    align-items: center; /* Ensures vertical alignment */
    gap: 10px; /* Space between elements */
    margin-bottom: 15px;
}

/* Ensures the label aligns properly with the captcha text and button */
.captcha-container label {
    margin-bottom: 0; /* Removes extra spacing */
    line-height: 1.5; /* Adjust if needed to match button height */
}

/* Captcha text styling */
#captcha {
    font-weight: bold;
    font-size: 20px;
    background: #f5f5f5;
    padding: 2px 10px;
    border-radius: 4px;
}

/* Reload button styling */
.captcha-reload-btn {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px; /* Space between icon and text */
    height: 34px; /* Ensures consistent height with input fields */
}

.captcha-reload-btn:hover {
    background-color: #e9e9e9;
}

/* Reload icon styling */
.reload-icon {
    font-size: 16px;
}