/* General CSS */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap'); */

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
}

:root {

    /* Background Color */
    --bg-white: #fff;
    --bg-dark-color: #000000;


    /* Text Colors */
    --primary-text: #061738;
    --secondary-color: #061738;
    --light-color: #dbdbdb;
    --dark-color: #0f0f0f;
    --text-white: #fff;
    --text-gray: #d5d5d5;
    --anchor-color: #007aff;

    /* font family */
    --primary-font: "Lato", sans-serif;
    --secondary-font: "Lato", sans-serif;
}

body,
html {
    color: var(--primary-text);
    font-size: 16px;
    font-weight: 400;
    font-family: var(--primary-font);
    scroll-behavior: smooth;
    line-height: 1.5;
    overflow-x: hidden;
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0%;
}

h1 {
    color: var(--bg-white);
    font-size: 5vw;
    margin: 1vw 0;
    font-weight: 600;
}

h2 {
    color: var(--primary-text);
    font-size: 4.80vh;
    margin: 1vw 0;
    font-weight: 600;
}

h3 {
    color: var(--light-white);
    /* font-size: 16px; */
    font-weight: 600;
}

p {
    color: var(--dark-color);
    font-size: 16px;
}
/* span{
    font-size: 12px;
} */
iframe,
img,
object {
    max-width: 100%;
}

ul {
    margin: 0%;
    padding: 0%;
    list-style: none;
}

li a {
    color: var(--text-white);
}

a:hover,
button:hover {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}



/* banner */

.hero-banner {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 90vh; /* Banner height */
    overflow: hidden;
}

/* Video */
.hero-banner .bannerplay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Optional Overlay */
.hero-banner::before {
    content: "";
    position: absolute;
    /*inset: 0;*/
    background: rgba(0, 0, 0,0.3);
    z-index: 2;
}

/* Banner Content */
.hero-banner .banner-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 80%;
    max-width: 900px;
}

.hero-banner .banner-info h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-banner .banner-info p {
    font-size: 15px; 
    color: rgb(216, 216, 216);
    line-height: 1.6;
}

.hero-banner .banner-info button {
    padding: 10px 25px;
    margin-bottom: 20px;
    border: none;
    background: var(--primary-text);
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
}


/* .blackfont {
color: black !important;
}

.whitefont {
color: #000 !important;
} */

/* 
.swiper-button-prev {
    left: 0 !important;
    margin-left: 0 !important;
    background: var(--secondary-color) !important;
}

.swiper-button-next {
    right: 0 !important;
    margin-right: 0 !important;
    background: var(--secondary-color) !important;
} */

@media (max-width: 991px) {
    .hero-slider {
        height: 420px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 420px;
    }
    nav.navbar.navbar-expand-lg.header .nav-company {
        color: #000;
    }
    .nav-company {
        font-size: 5vw;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 420px;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 420px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    /* background: transparent; */
    width: 40px;
    height: 40px;
    line-height: 24px;
    /* // margin-top: -30px; */
    text-align: center;
    border: 2px solid #d4d3d3;
    border-radius: 28px;
    padding: 20px;
    opacity: 0;
    visibility:hidden;
    transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    padding: 10px;
    background-color: var(--secondary-color);
}

@media (max-width: 767px) {

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: 25px;
    transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
    /* content: "\f060"; */
    font-size: 15px;
    color: #d4d3d3;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
}

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
    /* content: "\f061"; */
    font-size: 15px;
    color: #d4d3d3;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: #fff;
    transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (min-width: 992px) {


    .swiper-pagination {
        text-align: left;
    }

    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 50px;
        max-width: 1200px;
        padding: 0 15px;
        display: table;
        margin: 0 auto;
        left: 50%;
        top: 90%;
        transform: translateX(-50%);
    }
}

@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 30px;

    }
}

/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
    height: 420px;
    transition: all .4s ease;
}

@media (max-width: 991px) {
    .hero-style {
        height: 420px;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 420px;
    }
}

@media screen and (min-width: 992px) {
    /* .hero-style .container {
        padding-top: 95px;
    } */
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
    max-width: 690px;
}

.hero-style .slide-title h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1;
    color: var(--secondary-color);
    /* margin: 0 0 20px; */
    text-transform: capitalize;
    transition: all .4s ease;
}

@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
    }
}

@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
        margin: 0 0 35px;
    }
}

@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size: 35px;
        margin: 0 0 30px;
    }
}

.hero-style .slide-text p {
    opacity: 0.8;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: normal;
    color: #000000;
    margin: 0 0 40px;
    transition: all .4s ease;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
            font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns>a:first-child {
    margin-right: 10px;
}

a.phone_no {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}
/*--------------------------------------------------------------
	#button-style
--------------------------------------------------------------*/
.theme-btn,
.theme-btn-s2 {
    background-color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #2b3b95;
    padding: 9px 32px;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    line-height: initial;
    transition: all .4s ease;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

i.fa-chevron-circle-right {
    height: 22px;
    width: 22px;
}

a:hover {
    text-decoration: none;
}

@media (max-width: 991px) {

    .theme-btn,
    .theme-btn-s2,
    .theme-btn-s3 {
        font-size: 13px;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {

    .theme-btn,
    .theme-btn-s2 {
        padding: 13px 20px;
        font-size: 13px;
    }
}

/* banner */
/* CSS */
.main-btn {
    padding: 1.60vh 2vw;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: var(--secondary-color);
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    /* margin-top: 2vh;
    margin-bottom: 1vh; */
    touch-action: manipulation;
}

.main-btn:before {
    content: "";
    background: linear-gradient(45deg, /* #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000 */ #35541c, #395c18, #7bb233, #fb8600, #047248, #fbcb08, #66952b);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.main-btn:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    color: rgb(218, 218, 218);
    left: 0;
    top: 0;
    border-radius: 10px;
}

section {
    padding: 5vh 0;
}

.section-title {
    /* font-size: 4rem; */
    font-weight: 600;
    color: var(--primary-text);
    text-transform: capitalize;
    margin-bottom: 2rem;
}

.section-subtitle {
    /* font-size: 1.6rem;
    font-weight: 400; */
    color: var(--primary-text);
    font-family: var(--secondary-font);
    /* max-width: 40%; */
    margin: auto;
    margin-bottom: 1.5rem;
}

.about .banner_section,
.product .banner_section,
.gallery .banner_section,
.contact .banner_section {
    background: url('../bnnner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 17rem;
    padding-bottom: 10rem;
    min-height: auto;
}

.footer-section .verified{
    width: 20%;
}
/* rasqd */
.new_product_section .product_heading {
    text-align: center;
    margin-bottom: 4vh;
}
.three-line-ellipsis {
    /* color: #646464; */
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;      /* Number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 3;              /* Modern browsers */
}
.Featured-Products{
    margin-top: 90vh;

}
.new_product_section .produc_card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* border-radius: .50vw; */
    border-radius: 2vw;
    /* padding: 1.60vh 1vw; */

}

.new_product_section .produc_card .prodet {
    margin-bottom: 5vh;
    padding-left: 1vw;
    padding-bottom: 2vw;

}

.new_product_section .produc_card img {
    width: 100%;
    height: 30vh;
    border-top-right-radius: 2vw;
    border-top-left-radius: 2vw;
        object-fit: cover;
}

.new_product_section .produc_card span {
    color: rgb(126, 126, 126);
}

.new_product_section .produc_card h3 {
    width: 100%;
    border-radius: .30vw;
    padding-top: .71vh;
    font-size: 1.2rem;
}
.new_product_section .produc_card .pro-info {
    color: #646464;
    font-size: 15px;
    padding: 2vh 0;
}

.new_product_section .produc_card .star {
    margin-bottom: .50vh;
    color: rgb(255, 217, 0);
}

    /* .new_product_section .produc_card p {
        color: var(--dark-color);
        font-weight: 600;
        margin-bottom: 16px;
    } */


/* rasqd */
py-5 {
    padding-top: 0rem!important;
    padding-bottom: 0rem!important;
}

/* trusted */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 30px;
}

.col-3 {
    width: 25%;
    padding: 15px;
    box-sizing: border-box;
}

.trust-buyers {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    text-align: center;
    padding: 35px 20px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    cursor: pointer;
}

.trust-buyers:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #2e7d32;
}

.trust-buyers img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.trust-buyers:hover img {
    transform: scale(1.1);
}

.trust-buyers h2 {
    font-size: 20px;
    color: #222;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .col-3 {
        width: 50%;
    }

    .trust-buyers {
        padding: 30px 15px;
    }

    .trust-buyers h2 {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .col-3 {
        width: 100%;
    }

    .row {
        margin-bottom: 0;
    }

    .trust-buyers {
        padding: 25px 15px;
    }

    .trust-buyers img {
        width: 60px;
        height: 60px;
    }

    .trust-buyers h2 {
        font-size: 17px;
    }
}
/* trusted */

.morpro{
    margin-left: 8.50vw;

}

/* product details */
/* Wrapper */
.tt-product-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
}
  /* Product Gallery Styles */
.tt-main-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f9fa;
    cursor: pointer;
}

.tt-main-img img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tt-main-img:hover img {
    transform: scale(1.02);
}

/* Thumbnail Styles */
.tt-thumb-row {
    flex-wrap: wrap;
}

.thumbnail-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.tt-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.tt-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.active-thumb {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .tt-thumb {
        width: 60px;
        height: 60px;
    }
    
    .tt-thumb-row {
        gap: 10px !important;
    }
}

/* Lightbox customization for product images */
.lightboxOverlay {
    background-color: rgba(0, 0, 0, 0.95) !important;
}

.lb-image {
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.lb-data .lb-caption {
    font-size: 1rem;
    font-weight: 500;
}
.tt-title {
    font-weight: 600;
}

.tt-price {
    color: #000;
    font-weight: bold;
    font-size: 22px;
}

/* Cart Section */
.tt-qty,
.tt-size-select {
    max-width: 150px;
    padding: 12px 16px;
width: 100%;
border-radius: 4px;
font-size: 16px;
}
.product-features {
    font-size: 18px;
}
.product-features h3 {
    font-size: 2vmax;
    margin-bottom: 10px;
}
.tt-qty {
    width: 70px;
}
.stock-info,
.spec-item {
    font-size:18px;
}
.tt-cart-btn {
    background: #198754;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
}

.tt-cart-btn:hover {
    background: #157347;
}

/* Details */
.tt-subtitle {
    font-weight: 600;
}

.tt-desc {
    color: #666;
    line-height: 1.6;
}
/* product details */

/* export/import */
.exin-banner {
    position: relative;
    height: 50vh;

    background-image: url("../images/banner-slide/exin-banner.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed !important;
}

.exin-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); 
}
.exin-info {
    position: relative;
    z-index: 2;
}
.navbar-brand img{
    width: 35%;
}
/* about  */
.about-section {
    padding: 60px 0;
    background: #fff;
  }

  .about-title {
    font-size: 36px;
    font-weight: 700;
  }

  .about-text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
  }

  .btn-custom {
    border: 2px solid #f4a300;
    color: #000;
    padding: 10px 20px;
    font-weight: 500;
    background: transparent;
  }

  .btn-custom:hover {
    background: var(--secondary-color);
    color: #fff;
  }

  .feature-box {
    text-align: left;
    margin-top: 40px;
  }

  .feature-number {
    font-size: 40px;
    font-weight: 700;
    color: #f4a300;
  }

  .feature-title {
    font-weight: 600;
    margin-bottom: 10px;
  }

  .about-img {
    max-width: 100%;
    height: auto;
  }
  .banner_section{
    background-image: url(../images/banner-slide/exin-banner.jpeg);
    background-size: cover;
background-position: center;
background-repeat: no-repeat;
position: relative;
    height: 50vh;
  }
  .banner-content.about-con {
    margin-top: 20vh;
}

.about-inde span{
    font-size: 14px;
}
.about-inde span i{
    font-size: 14px;
}

.about-inde .am-img{
    width: 50%;
    height: auto;
    border-radius: 2vw;

}
.about-inde .position-relative{
    position: relative;
    overflow: visible;
}

/* Main Image */
.about-inde .main-img{
    width: 100%;
    height: 62vh;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}
.navbar h4 .gateway{
    color: #fb640c;
}

/* Small Image */
.about-inde .small-img-box{
    position: absolute;
    bottom: -40px;     /* Half image outside */
    right: -40px;      /* Right side outside */
    width: 220px;
    z-index: 10;
}

.about-inde .small-img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    border: 8px solid #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}
/* Card */
.profile-wrapper{
    width:100%;
    max-width:1100px;
    margin:80px auto;
    padding:0 15px;
}

.profile-card{
    background:linear-gradient(145deg,#ffffff,#f7fbff);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    border:1px solid rgba(30,115,190,.08);
    transition:.4s ease;
}

.profile-card:hover{
    transform:translateY(-6px);
    box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.profile-header{
    background: linear-gradient(135deg, #14345e, #061738);
    color:#fff;
    text-align:center;
    padding:45px 20px;
    position:relative;
    overflow:hidden;
}

.profile-header::before{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-120px;
    left:-80px;
}

.profile-header::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    bottom:-120px;
    right:-70px;
}

.profile-header h1{
    font-size:36px;
    font-weight:700;
    margin:0;
    position:relative;
    z-index:2;
}

.profile-header p{
    margin:12px 0 0;
    font-size:18px;
    letter-spacing:1px;
    opacity:.95;
    position:relative;
    z-index:2;
    color: #f66b1a;
}

.profile-table{
    padding:35px;
    background:#fff;
}

.profile-table table{
    width:100%;
    border-collapse:collapse;
}

.profile-table tr{
    transition:.3s;
}

.profile-table tr:nth-child(even){
    background:#f8fbfd;
}

.profile-table tr:hover{
    background:#eef8fc;
}

.profile-table th{
    width:32%;
    text-align:left;
    padding:18px 20px;
    color:var(--secondary-color);
    font-size:15px;
    font-weight:700;
    border-bottom:1px solid #e8eef3;
    vertical-align:top;
}

.profile-table td{
    padding:18px 20px;
    color:#555;
    font-size:15px;
    line-height:1.8;
    border-bottom:1px solid #e8eef3;
    word-break:break-word;
}

.profile-table tr:last-child th,
.profile-table tr:last-child td{
    border-bottom:none;
}

.shadow{
    box-shadow:none;
}

@media(max-width:768px){

    .profile-wrapper{
        margin:50px auto;
    }

    .profile-header{
        padding:35px 15px;
    }

    .profile-header h1{
        font-size:28px;
    }

    .profile-header p{
        font-size:16px;
    }

    .profile-table{
        padding:15px;
        overflow-x:auto;
    }

    .profile-table table{
        min-width:650px;
    }

    .profile-table th,
    .profile-table td{
        padding:14px;
        font-size:14px;
    }
}
/* Card */


/* about  */
/* new-footer */
ul {
    margin: 0px;
    padding: 0px;
}

.footer-section {
    background: #151414;
    position: relative;
    padding-left: 3vw;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: var(--bg-white);
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

/* .cta-text {
    padding-left: 15px;
    display: inline-block;
} */

.cta-text {
    padding-left: 50px;
    /* display: inline-block; */
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 25%;
}

.footer-text p {
    margin-bottom: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #55ACEE;
}

.google-bg {
    background: #DD4B39;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: var(--secondary-colors);
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: var(--secondary-color);
}

.footer-widget ul li a {
    color: #878787;
    text-transform: capitalize;
    font-size: 1vw;
}
.cmap{
    width: 100%;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #ffffff;
    padding-top: 25px;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: var(--secondary-color);
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: var(--secondary-colors);
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

.footmap iframe {
    height: 30vh;
}
.verife{
    text-align: center;
}
.verife img{
    height: 100vh;
    text-align: center;
    
}

/* new-footer */

/* header */

.header .navbar-brand{
    width: 215px;
    margin-right: 1vw;
}
nav.navbar.navbar-expand-lg.header .nav-company{
    color: #fdfdfd;
}
nav.navbar.navbar-expand-lg.header.scrolled .nav-company {
     color: #061738;
}
.header .nav-company{
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 700;
    /* margin-left: -8vw; */
}
/* Add this temporarily to test */
/* .dropdown-menu.show {
    display: block !important;
} */
.dropdown-menu {
    padding: 0;
    border-radius: 10px;
  
 }
 .navbar{
    z-index: 4;
 }
 .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Jab scroll ho jaaye - JS ye class add karega */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Scroll ke baad nav links dark honge (white background pe white text nahi dikhega) */
.header.scrolled .container-fluid .collapse .nav-item a {
    color: var(--dark-color, #282828);
}
.header.scrolled .container-fluid .collapse .nav-item a:hover,
.header.scrolled .container-fluid .collapse .nav-item a:active {
    color: var(--secondary-color);
}
.navbar-expand-lg .navbar-nav .dropdown-menu li{
    border-bottom: 1px solid #e8e9ea;
    border-radius: 10px;
}
.navbar-expand-lg .navbar-nav .dropdown-menu li a{
   padding: 10px;
   color: var(--primary-text);
}
 
.container-fluid{
    padding: 0 3vw;
    position: relative;
}

.container-fluid::after{
    content: "";
    position: absolute;
     pointer-events: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.3); */
}
.container-fluid .collapse li{
    position: relative;
    
}
.container-fluid .collapse .nav-item a{
    font-size: 15px;
    color: var(--bg-white);
    padding: 0 .86vw;

}
.container-fluid .collapse .nav-item .active{
    color: var(--secondary-color);
}
.container-fluid .collapse .nav-item a:hover,
.container-fluid .collapse .nav-item a:active{
    color: var(--secondary-color);
}

/* header */

/* Overlay */
.exin-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0.4;
}

/* Center content */
.exin-banner .exin-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 0 15px;
}

/* export/inport  */


/* what do */
/* .card-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.card-box:hover {
    transform: translateY(-8px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #666;
}

.card-title {
    color: var(--secondary-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
} */
.card-box {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

/* Top Gradient Line */
.card-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #fff, #061738);
}

.card-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* Icon */
.icon-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000, #061738);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 34px;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(238, 9, 121, 0.3);
}

.card-box:hover .icon-circle {
    transform: rotate(12deg) scale(1.1);
}

/* Title */
.card-title {
    color: #222;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: 0.3s;
}

.card-box:hover .card-title {
    color: #061738;
}

/* Text */
.card-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Optional Button */
.card-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    background: linear-gradient(90deg, #fff, #061738);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.card-btn:hover {
    transform: scale(1.05);
    color: #fff;
}   

/* what do */






/* .contact */
/* Contact Section */
.contact-info{
    margin-bottom: 30px;
}

.contact-info-item{
    background: #1f2937;
    border-radius: 16px;
    padding: 30px 25px;
    min-height: 260px;
    text-align: center;
    transition: all .35s ease;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.contact-info-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    border-color: #ef5a05;
}

.contact-info-icon{
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: #ef5a05;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i{
    color: #fff;
    font-size: 30px;
}

.contact-info-text h2{
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.contact-info-text h5{
    color: #ef5a05;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info-text span{
    display: block;
    color: #d1d5db;
    font-size: 15px;
    line-height: 1.8;
    word-break: break-word;
}

.contact-info-text span:not(:last-child){
    margin-bottom: 6px;
}

/* Responsive */
@media(max-width:768px){
    .contact-info-item{
        min-height: auto;
        padding: 25px 20px;
    }

    .contact-info-icon{
        width: 65px;
        height: 65px;
    }

    .contact-info-icon i{
        font-size: 26px;
    }

    .contact-info-text h2{
        font-size: 20px;
    }
}
/* section {
    padding: 60px 0;
    min-height: 100vh;
} */
/* .contact-info {
display: inline-block;
width: 100%;
text-align: center;
margin-bottom: 10px;
}
.contact-info-icon {
margin-bottom: 15px;
}
.contact-info-item {
background:var(--dark-color);
padding: 30px 0px;
} */
/* .contact-page-sec .contact-page-form h2 {
color: #071c34;
text-transform: capitalize;
font-size: 22px;
font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
padding-left: 0;
}  
.contact-page-form.contact-form input {
margin-bottom: 5px;
}  
.contact-page-form.contact-form textarea {
height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
background: #071c34;
width: 150px;
border-color: #071c34;
}
.contact-info-icon i {
font-size: 48px;
color: var(--secondary-color);
}
.contact-info-text p{margin-bottom:0px;}
.contact-info-text h2 {
color: #fff;
font-size: 22px;
text-transform: capitalize;
font-weight: 600;
margin-bottom: 10px;
}
.contact-info-text span {
color: #999999;
font-size: 16px;
display: inline-block;
width: 100%;
}

.contact-page-form textarea,
.contact-page-form input {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
margin-bottom: 20px;
padding: 12px 16px;
width: 100%;
border-radius: 4px;
font-size: 16px;
}

.contact-page-form .message-input {
display: inline-block;
width: 100%;
padding-left: 0;
}
.single-input-field textarea {
background: #f9f9f9 none repeat scroll 0 0;
border: 1px solid #f9f9f9;
width: 100%;
height: 120px;
padding: 12px 16px;
border-radius: 4px;
}
.single-input-fieldsbtn input[type="submit"] {
background: var(--secondary-color) none repeat scroll 0 0;
color: #fff;
display: inline-block;
font-weight: 600;
padding: 10px 0;
text-transform: capitalize;
width: 150px;
margin-top: 20px;
font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover{background:#071c34;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
.single-input-field  h4 {
color: #464646;
text-transform: capitalize;
font-size: 14px;
}
.contact-page-form {
display: inline-block;
width: 100%;
margin-top: 30px;
}

.contact-page-map {
margin-top: 36px;
}
.contact-page-form form {
padding: 20px 15px 0;
} */
/* Contact Form */
.contact-page-form{
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    height: 90%;
}

.contact-page-form h2{
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    position: relative;
}

.contact-page-form h2::after{
    content: "";
    width: 70px;
    height: 4px;
    background: #ef5a05;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 50px;
}

.single-input-field{
    margin-bottom: 20px;
}

.single-input-field input,
.single-input-field textarea{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    color: #333;
    background: #f8f9fa;
    transition: .3s ease;
    outline: none;
}

.single-input-field input:focus,
.single-input-field textarea:focus{
    border-color: #ef5a05;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(40,167,69,.12);
}

.single-input-field textarea{
    min-height: 170px;
    resize: none;
}

/* Button */
.single-input-fieldsbtn{
    margin-top: 10px;
}

.main-btn{
    display: inline-block;
    background: #ef5a05;
    color: #fff;
    padding: 14px 38px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: .3s ease;
    cursor: pointer;
}

.main-btn:hover{
    background: #1f7a35;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(40,167,69,.30);
}

/* Image */
.contact-page-map{
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.contact-page-map img{
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: .5s;
}

.contact-page-map:hover img{
    transform: scale(1.05);
}

/* Responsive */
@media(max-width:991px){

    .contact-page-form{
        padding: 30px;
        margin-bottom: 30px;
    }

    .contact-page-map img{
        min-height: 200px;
    }

}

@media(max-width:576px){

    .contact-page-form{
        padding: 25px 20px;
    }

    .contact-page-form h2{
        font-size: 26px;
    }

    .main-btn{
        width: 100%;
    }

}

/* .contact */

/* inner-page */
.about_section .price {
    font-size: 26px;
    color: var(--secondary-color);
    margin-bottom: 4vh;
    font-weight: 700;
}

/* inner-page */
.tt-qty {
    display: inline;
}


/* whatsapp */
.whatsapp img {
    position: fixed;
    z-index: 1000;
    bottom: 20px;
    top: 80%;
    right: 12px;
    width: 55px;
    transition: 2s ease-in-out;
    animation: shake 0.9s;
    animation-iteration-count: infinite
}

/* whatsapp */

.banner-content.about-con ul li {
     font-size: 16px;
     font-weight: 600;
 }
.banner-content.about-con ul li a {
 color: var(--dark-color);
}
.banner-content.about-con ul li.active {
 color: var(--bg-white);
}




/* Media Query 1170px */
@media (max-width: 1170px) {
    .container-fluid .collapse .nav-item a{
        font-size: 13px;
        padding: .39vh .86vw;
    
    }
    .header .container-fluid .collapse{
        padding: 3vh 2vw;
    }
    .container-fluid .collapse .text-lg-end{
        margin-top: 3vh;
    }
    /* 02 Banner Section */
}


/* Media Query 991px */
@media (max-width: 991px) {

    /* General CSS */
    .about .banner_section,
    .product .banner_section,
    .gallery .banner_section,
    .contact .banner_section {

        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    /* 01 Navbar CSS */
}

/* Media Query 767px */
@media (max-width: 767px) {

    body,
    html {
        font-size: 8px;
    }

    /* rasqd */
    .new_product_section .product_heading {
        text-align: center;
        margin-bottom: 4vh;
    }

    .new_product_section .produc_card {

        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        /* border-radius: .50vw; */
        border-top-right-radius: 9vw;
        padding: 2.6vh 2vw;
    }
    .header {      
        background: rgb(255, 255, 255);
    }
    
    nav .navbar-toggler-icon{
        text-align: center;
        
    }
    nav .navbar-toggler-icon i{
     font-size: 5vw;
     color: rgb(0, 0, 0);   
     border-radius: .02vw solid #fff;
    } 
    .container-fluid .collapse .nav-item a {
        font-size: 15px;
        color: #282828;
        padding-bottom: 2vw ;
    }
    
    h2 {
        font-size: 6.40vw;
    }
    p {
        color: var(--dark-color);
        font-size: 14px;
    }
    section {
        padding: 5vh 2vw;
    }
    .hero-banner .banner-info h1 {
        font-size: 20px;

    }
    .hero-banner .banner-info p {
        font-size: 10px;

    }
    .hero-banner .banner-info button {

        font-size: 11px;

    }

    .new_product_section .produc_card .prodet {

        padding-left: 1vw;
        padding-bottom: 2vw;

    }
    .new_product_section .produc_card{

        margin-bottom: 3vh;
    }
    .card-box {
        margin-bottom: 3vh;
    }
    .about-section {
        padding: 60px 3vw;
    }
    .new_product_section .produc_card img {
        width: 100%;
        height: 30vh;
        margin-bottom: 1vw;
        border-top-right-radius: 8vw;
        /* border-top-right-radius: .50vw; */
    }

    .new_product_section .produc_card span {
        color: rgb(126, 126, 126);
        font-size: 2.40vw
    }

    .new_product_section .produc_card h3 {
        width: 100%;
        border-radius: .30vw;
        padding-top: .71vh;
        font-size: 5vw;
    }

    .new_product_section .produc_card .star {
        margin-bottom: .50vh;
        color: rgb(255, 217, 0);
        font-size: 3vw;
    }

    .new_product_section .produc_card p {
        color: var(--dark-color);
        font-weight: 600;
    }

    .main-btn {
        padding: 1.6vh 6vw;
        border: none;
        outline: none;
        color: rgb(255, 255, 255);
        background: var(--secondary-color);
        cursor: pointer;
        position: relative;
        font-size: 13px;
        z-index: 0;
        border-radius: 10px;
        user-select: none;
        -webkit-user-select: none;
        margin-top: 2vh;
        margin-bottom: 1vh;
        touch-action: manipulation;
    }
    /* rasqd */
    .single-cta i {
        font-size: 21px;
    }
    .cta-text h4 {
        font-size: 15px;
    }
    .cta-text span {
        font-size: 11px;
    }
    .footer-widget ul li a {
        font-size: 3vw;
    }
    .profile-table th {
        font-size: 4vw; }


    .about-title {
        font-size: 28px;
      }

      .feature-box {
        text-align: center;
      }
      .contact-page-form input {
        font-size: 3vw;}


        .about-con h1 {
            z-index: 10;
        }
        .text-muted {
            font-size: 3vw;
        }
        .fw-bold {
            font-size: 4vw;
            padding-top: 12vw;
        }
        .card-title {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
        }
    
    

}

@media (min-width: 767px) {
    .exin-banner {
        height: 55vh;
        background-attachment: scroll;
        /* ⚠️ mobile me fixed work nahi karta */
    }

    /* .exin-banner h2 {
        font-size: 20px;
    } */
}

@media (max-width: 590px) {

    body,
    html {
        font-size: 7px;
    }

    .about-con {
        top: 10vh;
    }
}
/* MODAL */
.modal-header{
    background-color: var(--primary-text);
    color: var(--bg-white);
}
.btn-close{
    background-color: var(--bg-white);
}