/* 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: #03262c;


    /* Text Colors */
    --primary-text: #061738;
    --secondary-color: rgb(235, 117, 8);
    --light-color: #dbdbdb;
    --dark-color: #03262c;
    --text-white: #fff;
    --text-gray: #dee2e6;
    --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(--dark-color);
    font-size: 5vw;
    margin: 1vw 0;
    font-weight: 600;
}

h2 {
    color: var(--dark-white);
    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 */


/* .container {
  width:1200px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
} */

.hero-slider {
    width: 100%;
    height: 420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

/* .blackfont {
color: black !important;
}

.whitefont {
color: #ffffff !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;
    }
}

.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: 32px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: normal;
    color: #242424;
    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: #ffffff;
    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;
}

.new_product_section .produc_card {

    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* border-radius: .50vw; */
    border-top-right-radius: 2vw;
    border-bottom-left-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-right-radius: .50vw; */
        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 .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 */

.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;
}
/* 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;
  }
  .profile-wrapper {
    display: flex;
    justify-content: center;
    padding: 50px 15px;
}
.about-inde span{
    font-size: 14px;
}
.about-inde span i{
    font-size: 14px;
}
/* Card */
.profile-card {
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

/* Header */
.profile-header {
    background: linear-gradient(135deg, #fcc550, #ff6a00);
    color: #fff;
    padding: 25px;
    text-align: center;
}

.profile-header h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
}

.profile-header p {
    margin-top: 5px;
    font-size: 14px;
    opacity: 0.9;
}

/* Table */
.profile-table {
    padding: 25px;
}

.profile-table table {
    width: 100%;
    border-collapse: collapse;
}

/* Table rows */
.profile-table tr {
    border-bottom: 1px solid #eee;
    transition: 0.2s;
}

.profile-table tr:hover {
    background: #f9f9f9;
}

/* Headings */
.profile-table th {
    text-align: left;
    padding: 12px 10px;
    width: 35%;
    color: #333;
    font-weight: 600;
}

/* Data */
.profile-table td {
    padding: 12px 10px;
    color: #666;
    font-size: 14px;
}
/* about  */
/* new-footer */
ul {
    margin: 0px;
    padding: 0px;
}

.footer-section {
    background: #151414;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #ff5e14;
    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: #ff5e14;
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: #ff5e14;
}

.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: #202020;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: #ff5e14;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: #ff5e14;
}

.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: 80px;
    margin-right: 1vw;
}
.header .nav-company{
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
}
/* Add this temporarily to test */
/* .dropdown-menu.show {
    display: block !important;
} */
.dropdown-menu {
    padding: 0;
    border-radius: 10px;
 }
.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;
}
 
.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(--dark-color);
    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);
}
.container-fluid .collapse a:active::after{
    /* content: "";
    width: 30%;
    height: 2px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: -4px;
    left: 20px; */
}
/* .container-fluid .collapse .header-right .gst{
     font-size: 17px;
    font-weight: 600;
    color: var(--secondary-color);
}
.container-fluid .collapse .header-right {
     font-size: 17px;
} */


/* 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: #ff6a00;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* what do */







/* .contact */
/* 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: #071c34;
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 */

/* 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(--primary-text);
}
.banner-content.about-con ul li.active {
 color: var(--secondary-color);
}




/* 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;

    }
    h2 {
        font-size: 6.40vw;
    }
    p {
        color: var(--dark-color);
        font-size: 14px;
    }
    section {
        padding: 5vh 2vw;
    }

    .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: 3vw; }


    .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;
        }
        .card-title {
            color: #ff6a00;
            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);
}