
@font-face {
    font-family: 'F37 Lineca';   /* ये नाम आप इस्तेमाल करोगे */
    src: url('../fonts/F37LinecaTest-Regular.woff2') format('truetype');
    src: url('../fonts/F37LinecaTest-Light.woff2') format('truetype');
    src: url('../fonts/F37LinecaTest-ExtraLight.woff2') format('truetype');
    
    font-weight: 100;
   font-style: italic;
   font-style: light;
}

        :root {
            --primary-color: #2a2a2a;
            --accent-color: #53555E;
            --light-color: #f8f9fa;
            --text-color: #333;
            --transition: all 0.3s ease;
        }
        
        body {
            font-family: 'F37 Lineca' !important;
            color: var(--text-color);
            overflow-x: hidden;
            font-size:16px ;
            font-style: italic;
   font-style: light;
        }
        p{

        }
        h1, h2, h3, h4, h5 {
            font-family: 'F37 Lineca', serif;
            font-weight: 400;
            font-style: "Regular";
            text-transform: uppercase;
        }
        
        /* Header Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 15px 0;
            -webkit-transition: var(--transition);
            -o-transition: var(--transition);
            transition: var(--transition);
            -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .cutom-header.navbar>.container{display: block;}
 

/* Slide down animation */
@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
}
  
    /* Default header */
.cutom-header {
    -webkit-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    background: transparent;
    padding: 12px 0;
}

/* When scrolled */
nav.navbar.navbar-expand-lg.fixed-top.cutom-header.header_active {
    background: rgba(255, 255, 255, 0.9) !important;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;

    -webkit-animation: slideDown 0.8s ease forwards;

            animation: slideDown 0.8s ease forwards;
}
.navbar-brand img, .navbar-brand{ 
    -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;}


nav.navbar.navbar-expand-lg.fixed-top.cutom-header.header_active .navbar-brand img{ height:50px; -webkit-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s; }

nav.navbar.navbar-expand-lg.fixed-top.cutom-header.header_active .head-mxed .navbar-collapse {
    border: 0;
    height: auto;
}

.head-mxed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding: 0 !important;

}
.hero-content {
    padding: 11%;
}
.hero-section .container-fuild {
    padding: 0 !important;
}
.hero-banner-images img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
 .cutom-header.navbar ul.navbar-nav {
    margin-right: 100px;
}
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            color: var(--primary-color);
            -webkit-transition: var(--transition);
            -o-transition: var(--transition);
            transition: var(--transition);
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .header-icons a {
            color: var(--primary-color);
            margin-left: 15px;
            font-size: 1.2rem;
            -webkit-transition: var(--transition);
            -o-transition: var(--transition);
            transition: var(--transition);
            cursor: pointer;
        }
        
        /*.header-icons a:hover {
            color: var(--accent-color);
        }*/
            .header-icons a:hover {
    color: #000000;  /* hover black */
}
/* When header_active is added (scrolled) */
.cutom-header.header_active .header-icons a {
    color: #000000;  /* normal black */
}

/* Hover when scrolled */
.cutom-header.header_active .header-icons a:hover {
    color: var(--accent-color); /* hover accent */
}
        /* Search Overlay */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.4s ease;
            -o-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }
        
        .search-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .search-container {
            width: 80%;
            max-width: 700px;
            text-align: center;
            -webkit-transform: translateY(50px);
                -ms-transform: translateY(50px);
                    transform: translateY(50px);
            -webkit-transition: -webkit-transform 0.5s ease;
            transition: -webkit-transform 0.5s ease;
            -o-transition: transform 0.5s ease;
            transition: transform 0.5s ease;
            transition: transform 0.5s ease, -webkit-transform 0.5s ease;
        }
        
        .search-overlay.active .search-container {
            -webkit-transform: translateY(0);
                -ms-transform: translateY(0);
                    transform: translateY(0);
        }
        
        .search-input {
            width: 100%;
            padding: 20px;
            font-size: 1.5rem;
            background: transparent;
            border: none;
            border-bottom: 2px solid var(--accent-color);
            color: white;
            text-align: center;
            outline: none;
        }
        
        .search-input::-webkit-input-placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-input::-moz-placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-input:-ms-input-placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-input::-ms-input-placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .close-search {
            position: absolute;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            -webkit-transition: var(--transition);
            -o-transition: var(--transition);
            transition: var(--transition);
        }
        
        .close-search:hover {
            color: var(--accent-color);
            -webkit-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                    transform: rotate(90deg);
        }
        
     

        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
                font-size: 60px;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
    -webkit-animation: fadeInUp 1s forwards 0.5s;
            animation: fadeInUp 1s forwards 0.5s;
    text-transform: uppercase;
}

  .slider_col_padding{
            padding: 0 !important;
        }
/*swiper hero slider next prev button css*/
/* Hide by default */
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%) translateX(20px);
        -ms-transform: translateY(-50%) translateX(20px);
            transform: translateY(-50%) translateX(20px);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

/* Show on hover */
.hero-section:hover .swiper-button-next,
.hero-section:hover .swiper-button-prev {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-50%) translateX(0);
        -ms-transform: translateY(-50%) translateX(0);
            transform: translateY(-50%) translateX(0);
}

/* Button Style */
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(0,0,25,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    -webkit-transition: 0.3s ease;

    -o-transition: 0.3s ease;

    transition: 0.3s ease;
}

/* Icon (arrow) color & size */
.hero-section .swiper-button-next::after,
.hero-section .swiper-button-prev::after {
    font-size: 16px;
    color: #fff;
}

/* Hover style */
.hero-section .swiper-button-next:hover,
.hero-section .swiper-button-prev:hover {
    background: rgba(0,0,0,0.4);
    border-color: #fff;
}

        
        .hero-subtitle {
            font-size: 2.5rem;
            font-weight: 400;
            margin-bottom: 2rem;
            opacity: 0;
            -webkit-transform: translateY(30px);
                -ms-transform: translateY(30px);
                    transform: translateY(30px);
            -webkit-animation: fadeInUp 1s forwards 0.8s;
                    animation: fadeInUp 1s forwards 0.8s;
            
        }
        
        .hero-tagline {
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 2rem;
            opacity: 0;
            -webkit-transform: translateY(30px);
                -ms-transform: translateY(30px);
                    transform: translateY(30px);
            -webkit-animation: fadeInUp 1s forwards 1.1s;
                    animation: fadeInUp 1s forwards 1.1s;
            
        }
        
        .hero-description {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 2.5rem;
            opacity: 0;
            -webkit-transform: translateY(30px);
                -ms-transform: translateY(30px);
                    transform: translateY(30px);
            -webkit-animation: fadeInUp 1s forwards 1.4s;
                    animation: fadeInUp 1s forwards 1.4s;
            line-height: 1.6;
        }
        
        .btn-hero {
            background-color: var(--accent-color);
            color: white;
            padding: 15px 40px;
            border-radius: 0;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border: none;
            -webkit-transition: var(--transition);
            -o-transition: var(--transition);
            transition: var(--transition);
            opacity: 0;
            -webkit-transform: translateY(30px);
                -ms-transform: translateY(30px);
                    transform: translateY(30px);
            -webkit-animation: fadeInUp 1s forwards 1.7s;
                    animation: fadeInUp 1s forwards 1.7s;
            
        }
        
        .btn-hero:hover {
            background-color: var(--accent-color);
            -webkit-transform: translateY(-5px);
                -ms-transform: translateY(-5px);
                    transform: translateY(-5px);
            -webkit-box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
                    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
            color: #fff;
        }
        
        /* Floating Elements Animation */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            -webkit-animation: float 6s ease-in-out infinite;
                    animation: float 6s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 15%;
            left: 10%;
            -webkit-animation-delay: 0s;
                    animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            width: 70px;
            height: 70px;
            top: 65%;
            right: 10%;
            -webkit-animation-delay: 2s;
                    animation-delay: 2s;
        }
        
        .floating-element:nth-child(3) {
            width: 50px;
            height: 50px;
            bottom: 15%;
            left: 20%;
            -webkit-animation-delay: 4s;
                    animation-delay: 4s;
        }
        
        .floating-element:nth-child(4) {
            width: 80px;
            height: 80px;
            top: 30%;
            right: 20%;
            -webkit-animation-delay: 1s;
                    animation-delay: 1s;
        }
        
        .floating-element:nth-child(5) {
            width: 60px;
            height: 60px;
            bottom: 25%;
            right: 15%;
            -webkit-animation-delay: 3s;
                    animation-delay: 3s;
        }
        
        /* Particle Animation */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            -webkit-animation: particleFloat 15s linear infinite;
                    animation: particleFloat 15s linear infinite;
        }
        
        /* Animations */
        @-webkit-keyframes fadeInUp {
            to {
                opacity: 1;
                -webkit-transform: translateY(0);
                        transform: translateY(0);
            }
        }
        @keyframes fadeInUp {
            to {
                opacity: 1;
                -webkit-transform: translateY(0);
                        transform: translateY(0);
            }
        }
        
        @-webkit-keyframes float {
            0%, 100% {
                -webkit-transform: translateY(0) rotate(0deg);
                        transform: translateY(0) rotate(0deg);
            }
            50% {
                -webkit-transform: translateY(-30px) rotate(10deg);
                        transform: translateY(-30px) rotate(10deg);
            }
        }
        
        @keyframes float {
            0%, 100% {
                -webkit-transform: translateY(0) rotate(0deg);
                        transform: translateY(0) rotate(0deg);
            }
            50% {
                -webkit-transform: translateY(-30px) rotate(10deg);
                        transform: translateY(-30px) rotate(10deg);
            }
        }
        
        @-webkit-keyframes particleFloat {
            0% {
                -webkit-transform: translateY(100vh) rotate(0deg);
                        transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                -webkit-transform: translateY(-100px) rotate(360deg);
                        transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        @keyframes particleFloat {
            0% {
                -webkit-transform: translateY(100vh) rotate(0deg);
                        transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                -webkit-transform: translateY(-100px) rotate(360deg);
                        transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 4rem;
            }
            
            .hero-subtitle {
                font-size: 2rem;
            }
            
            .hero-tagline {
                font-size: 1.5rem;
            }
            button#mobileMenuBtn{
                display: block !important;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.8rem;
            }
            
            .hero-tagline {
                font-size: 1.3rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .hero-tagline {
                font-size: 1.2rem;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .search-input {
                font-size: 1.2rem;
            }
        }


nav.navbar.navbar-expand-lg.fixed-top.cutom-header {
    -webkit-box-shadow: 0 0 0 0 !important;
            box-shadow: 0 0 0 0 !important;
    background: none !important;
    padding: 20px 0 10px 30px !important;
}
    
    .head-mxed .navbar-collapse {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
    width: 90%;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    -webkit-box-align: self-start;
        -ms-flex-align: self-start;
            align-items: self-start;
    border-bottom: 1px solid #E1E9F1;
    height: 70px;
    padding-right: 30px;
}
.hero-banner-images {
    position: relative;
}


        .hero-section {
   
    margin-top: 90px;
}

.product-img {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-38%, -50%);
        -ms-transform: translate(-38%, -50%);
            transform: translate(-38%, -50%);

}

    .product-img img{ -webkit-transform: translateY(30px); -ms-transform: translateY(30px); transform: translateY(30px);
          
            opacity: 0;
            transform: translateY(30px);
            -webkit-animation: fadeInUp 1s forwards 0.8s;
                    animation: fadeInUp 1s forwards 0.8s;
        }

/*.container-fuild{ padding:0 30px; }*/
.container-fuild{ padding:0 101px; }
section.value-section {
    padding: 60px 0;
    color: #fff;
    background: #53555E;
}
section.value-section p {
    font-size: 18px;
}

.main-headding{ padding-bottom:20px; }
.main-headding h1 {
    font-size: 60px;
}



/*MY CSS START FROM HERE*/
.value-box img {
    margin-bottom: 19px;
}





/*hair mechanics css start*/
.mechanics_wrapper{
    padding: 60px 0;
  
  
}
.padding_top_row{
    padding-top: 3em;
}
.heading_mechanics h2{
    font-size: 51px;
    margin-bottom: 0;
}
.heading_mechanics p{
    margin-top: 15px;
    font-size: 1.2rem;
}
.second_heading {
    padding-top:2.8rem;
}

.boxes_mechanics{
    background-color: #EDEDED;
    text-align: center;
        padding-bottom: 6rem;
}
.boxes_mechanics img{
    padding-top: 3.5em;
}
.img_content {
    padding-top: 4em;
}
.img_content p {
    font-size: 18px;
    max-width: 555px;
    text-align: center;
    display: block;
    margin: 0 auto;
}
.img_content h4 {
    font-weight: 600;
    padding-bottom: 12px;
}
.img_content button{
    background-color: var(--accent-color);
    outline: none;
    border: none;
    width: 195px;
    height: 52px;
    color: white;
    text-transform: uppercase;
    margin-top: 2em;
    letter-spacing: 3px;
}


/*your sections css start*/
.your_sectionwrapper{
padding-bottom: 42px;
}
.bold_heading {
    font-weight: 600;
}
.bold_heading strong{
    color: #637484;
}

/*your css start*/

/*Discover css start */

.discover_wrapper{
    background-color: #000;
    color: white;
    padding: 60px 0;
}
.discover_imgBox img{
    width: 100% !important;
    text-align: center;

}
.discover_imgBox {
    position: relative;
 
    overflow: hidden;

}

/* Image */
.discover_imgBox img {
    width: 100%;
    height: auto;
    display: block;
    -webkit-filter: brightness(65%);
            filter: brightness(65%); /* dark overlay jaisa effect */
}

/* White Button Center */
.discover_imgBox button {
    position: absolute;
    bottom: 20px; /* neeche distance */
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    padding:  15px 35px;
    background: #fff;
    color: #000;
    border: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;

}

/* Optional: hover effect (same style as modern templates) */
.discover_imgBox:hover img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

/*Discover css ends */



/*confidence css start*/
.confidence_wrapper{
    background-color: var(--accent-color);
    color: white;
    padding: 60px 0;
}
.padding_lefRight{
    padding: 0px 89px;
    padding-top: 2rem;
}
.confidence_imgBoxes {
    text-align: center;
}

/*costomer css start*/
.costumer_wrapper{
    padding: 60px 0;
}
.img_costomer_boxes {
    border: 1px solid #8080801f;
    padding-top: 25px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 13px;
}
.starts i{
    color: #FFA300;
}
.img_costomer_boxes p{
    padding-top: 1em;
}

.customer_card {
    padding: 25px;
    border: 1px solid #e8e8e8;
    background: #fff;
    min-height: 268px;
    height: 100%;
}

.stars i {
    color: #ffb400;
    font-size: 18px;
    margin-right: 2px;
}

.customer_card p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.6;
}

.customer_card .author {
    margin-top: 15px;
}




/*artical css start from here*/
.artical_pading{
    padding-top: 35px;
}
.articles_wrapper {
    padding-bottom:55px;
}
.artical_boxesMain {
    border: 1px solid #80808026;
    padding: 5px;
    height: 100%;
}

.article_content h4{
    font-weight: 600;
}
.article_content h4 {
    font-weight: 600;
    font-size: 31px;
}
.article_content p{
    padding-top: 21px;
    font-size: 1.2rem;
}
.flex_box_articalbutton {
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 21px;
}
.flex_box_articalbutton p{
   padding-top: 0;
    color: #343333;
    font-size: 17px;
    margin-bottom: 0;
}
.flex_box_articalbutton a{
    color: black;
    text-decoration: none;
}
.artical_img img{
    width: 100%
}
.article_content {
    padding: 25px 19px 15px 19px;
}



/*faq css start*/
.faq_wrapper{
   padding-top: 15px;
   padding-bottom: 55px;
}
.faq-section {
  max-width: 1590px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
 
}

.faq-item {
  border-bottom: 1px solid #433e3e;;
  padding-bottom: 29px;
    padding-top: 25px;
}

.faq-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.faq-question p {
  margin: 0;
  font-size: 20px;
  color: #000;
}

.faq-icon {
     font-size: 26px;
  font-weight: 600;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  padding-left: 0;
}

.faq-answer p {
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.6;
  color: #555;
}
.bottom_conete_fafq button{
    background-color: var(--accent-color);
    outline: none;
    border: none;
    width: 195px;
    height: 52px;
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 2em;
    letter-spacing: 3px;
}
.bottom_conete_fafq {
    padding-top: 38px;
}
.bottom_conete_fafq p{
    font-size: 1.2rem;
}
.bottom_para{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    padding-top: 49px;
}
.bottom_section a{
    color: black;
}
/*faq css ends*/



/*footer css start from here*/
.hm-footer {
    background: #0d0714;
    color: #fff;
    padding-top: 68px;
        padding-bottom: 23px;
}

.footer-logo {

        width:230px;
    color: white;
    -webkit-filter: invert(1);
            filter: invert(1);
    opacity: 1;
}
.footer_img_Flex{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    gap: 25px;
}
.footer-text {
  font-size: 17px;;
    line-height: 1.6;
    opacity: 0.85;
}

/* TITLES */
.footer-title {
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 600;
}

/* LINKS */
.footer-links li {
    margin-bottom: 30px;
}

.footer-links a {
    color: #fff;
    opacity: 0.8;
    font-size: 16px;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-transform: uppercase;
}
.footer-policy{
    gap: 91px !important;
}
.footer-links a:hover {
    opacity: 1;
}

/* SOCIAL ICONS */
.footer-social a {
font-size: 18px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background: white;
    color: black;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 45px;
    height: 45px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    border-radius: 50%;
}
.footer-social{
    padding-top: 35px;
}
.footer-social a:hover {
    opacity: 0.6;
}

.footer-hr {
    border-color: rgb(255 255 255);
}
.footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
        gap: 115px;
}
.footer-bottom p{
    margin-bottom: 0;
        margin-top: 7px;
        color: #fff;
}
/* BOTTOM POLICY LINKS */
.footer-policy a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    font-size: 14px;
}

.footer-policy a:hover {
    opacity: 1;
}



@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* Initially hidden */
.reveal {
  opacity: 0;
  -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

/* When in viewport */
.reveal.show {
  -webkit-animation: fadeInUp 0.8s ease-out forwards;
          animation: fadeInUp 0.8s ease-out forwards;
}


/*responsive media*/
@media only screen and (max-width: 1024px) {

    .container-fuild{
        padding: 0 27px !important;
    }
    .container-fuilds.py-4{
        padding: 0 0 !important;
    }
     #zoomOverlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
@media only screen and (max-width: 768px) {
.ppadding_left_box{
    padding-left: 0 !important;
}
.mySwiper-container{
    padding: 0 !important;
}
.swiper-prev-custom {
    left: -23px !important;
}
.swiper-next-custom {
    right: -23px !important;
}
.custom-btn{
    top: 50% !important;
}
.steps_boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
 
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
}
@media only screen and (max-width: 767px) {
.hero-section {
    margin-top: 135px;
}
   .insideImg_boxes{
    text-align: center;
   }
   .inside_content p {
    font-size: 1.2rem;
     max-width: 100% !important; 
}
.steps_boxes p{
    width: 100% !important;
}
.ppadding_left_box{
    padding-left: 0 !important;
}
}
@media only screen and (max-width: 600px) {

    .footer_img_Flex{
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }
    .footer-logo{
        width: 150px;
    }
    .footer-bottom{
       -ms-flex-wrap: wrap;
           flex-wrap: wrap;
       gap: 15px; 
    }
    .footer-policy{
        gap: 20px !important;
    }
    .img_content {
    
    padding-left: 12px;
    padding-right: 12px;
}

.list_quntity ul {
   
    padding: 0;
}
}












/*PRODCUT PAGE CSS START*/
.prodcut_wrapper{
    padding-top: 10em;
}
.flex_img{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
}

.ppadding_left_box{
    padding-left: 3em;
}
.right_contetn_box h4{
    font-weight: 700;
}
.right_contetn_box h6{
    font-size: 17px;
}
.right_contetn_box p {
    font-size: 19px;
    max-width: 480px;
}
.mrp_font{
    font-size: 12px !important;
}
.price strong {
    font-size: 24px;
    font-weight: 700;

}

.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap:20px;
}

.quantity p {
  margin: 0;
}

.qty-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #ccc;
 
  font-size: 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}



.qty-input {
  width: 35px;
  height: 22px;
  text-align: center;
  border: none;
  font-size: 16px;
  border-radius: 6px;
}

.addtocartbtn{
    background: black;
    width: 100%;
    border: none;
    outline: none;
    height: 50px;
    color: white;
    margin: 15px 0;
}
.list_quntity {
        padding: 32px;
    background: #f4f4f4;
}
.list_quntity ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
        gap: 11px;
        font-size: 16px;
}



/*clinicary css start from here*/
.clinicallry_wrapper{
    padding: 60px 0;
}
.padding_clicni{
    padding-top: 3em;
}
.clinicy_boexs {
    background: black;
    color: white;
    padding: 16px 0px 2px 26px;
    height: 100%;
}
.clinicy_boexs strong {
    font-size: 33px;
}
.clinicy_boexs p{
    font-size: 1.2rem;
}
/*clinicary css ends from here*/



/*inside prodcuts css start from here*/

.inside_content strong{
    font-size: 33px;
}
.inside_content p{
    font-size: 1.2rem;
    max-width: 270px;
}

.inside_content {
    margin-top: 1.5em;
}
/*inside products css ends from here*/


/*step css start from here*/
.steps_boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    
}
.steps_boxes strong{
        font-size: 28px;
    width: 110px;
    text-transform: uppercase;
}
.steps_boxes p {
    font-size: 1.2rem;
    width: 228px;
}
.steps_padding{
    padding: 45px 0;
}
.mb_para .mb-0{
    font-weight:600 !important;
}
/*step css ends from here*/


/*rated css start from here*/
.reted_wrapper{
    padding-bottom: 45px;
}



 .rating-bar {
    height: 8px;
    width: 180px;
    background: #e1e1e1;
    border-radius: 6px;
    overflow: hidden;
  }
  .rating-fill {
    height: 100%;
    background: orange;
    width: var(--fill, 60%);
  }
  .user-circle {
    width: 55px;
    height: 55px;
    background: #efefef;
    border-radius: 50%;
    position: relative;
  }
  .user-circle i {
    position: absolute;
    top: 36px;
    right: 0px;
    font-size: 15px;
}
.ratting_heading{
    font-size: 1.2rem;
}
  .container-fuilds.py-4 {
    padding-right: 6em;
}
.pagination .page-link {
  border: 1px solid #d8d8d8 !important;
  color: #000;
  font-weight: 500;
  border-radius: 4px;
  margin: 0 4px;
}

/* Active page */
.pagination .page-item.active .page-link {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

/* Hover */
.pagination .page-link:hover {
  background: #f2f2f2;
  color: #000;
}

/*rated css ends from here*/


.zoom_img {
  position: relative;

  display: inline-block;

}

.main-img {
  width: 70%;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

/* Magnifier Lens */
#zoomLens {
  position: absolute;
  width: 180px;
  height: 180px;

  /* Square shape (no border-radius) */
  border-radius: 0;
 
  display: none;
  pointer-events: none;
  -webkit-box-shadow: 0 0 12px #0004;
          box-shadow: 0 0 12px #0004;

  cursor: -webkit-zoom-in;

  cursor: zoom-in;

  /* 🟦 Light Grey Background */
background-color: #c0bbbb3b;

  /* 🟩 Black Grid Lines */
  background-image:
    -webkit-gradient(linear, left bottom, left top, color-stop(24%, transparent), color-stop(25%, rgba(0,0,0,0.3)), color-stop(26%, rgba(0,0,0,0.3)), color-stop(27%, transparent), color-stop(74%, transparent), color-stop(75%, rgba(0,0,0,0.3)), color-stop(76%, rgba(0,0,0,0.3)), color-stop(77%, transparent)),
    -webkit-gradient(linear, left top, right top, color-stop(24%, transparent), color-stop(25%, rgba(0,0,0,0.3)), color-stop(26%, rgba(0,0,0,0.3)), color-stop(27%, transparent), color-stop(74%, transparent), color-stop(75%, rgba(0,0,0,0.3)), color-stop(76%, rgba(0,0,0,0.3)), color-stop(77%, transparent));
  background-image:
    -o-linear-gradient(bottom, transparent 24%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.3) 26%, transparent 27%, transparent 74%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0.3) 76%, transparent 77%),
    -o-linear-gradient(left, transparent 24%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.3) 26%, transparent 27%, transparent 74%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0.3) 76%, transparent 77%);
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.3) 26%, transparent 27%, transparent 74%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0.3) 76%, transparent 77%),
    linear-gradient(90deg, transparent 24%, rgba(0,0,0,0.3) 25%, rgba(0,0,0,0.3) 26%, transparent 27%, transparent 74%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0.3) 76%, transparent 77%);
  
  /* Grid cell size */
  background-size: 40px 40px;
}


/* Right-Side Large Zoom Window */
#zoomOverlay {
  position: absolute;
  top: 0;
  left: 100%;        /* SIDE ME SHOW */
  width: 840px;      /* bigger size */
  height: 700px;     /* bigger size */
/*  border: 3px solid #ddd;*/
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
  -webkit-box-shadow: 0 0 4px 4px gainsboro;
          box-shadow: 0 0 4px 4px gainsboro;
  background-color: #fff;
/*  box-shadow: 0 0 30px rgba(0,0,0,0.3);*/
  z-index: 1000;
}
.smallImg.img_active {
  border: 1px solid #00bcd4;
 
  border-radius: 5px;
}
.smallImg {
  cursor: pointer;
  border:1px solid transparent;
}





/* Mobile Menu Hidden by Default */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 9999;
    box-shadow: -2px 0 15px rgba(0,0,0,0.2);
    display: none; /* Only show on mobile */
}
button#mobileMenuBtn {
    height: 40px;
    width: 50px;
    background: white;
    border: 1px solid gray;
    border-radius: 4px;
    align-items: center;
    display: flex;
    justify-content: center;
    display: none;
}
/* Show on active */
.mobile-menu.active {
    transform: translateX(0) !important;
}

/* Mobile menu header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 25px;
}

.mobile-menu-close {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 32px;
}

/* Links */
.mobile-nav-links li {
    list-style: none;
   
    padding: 15px;
    border-bottom: 1px solid gray;
}
.mobile-nav-links li:first-child {
    border-top: 1px solid gray; 
 
}
.mobile-nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

/* Hover effect */
.mobile-nav-links a:hover {
    color: var(--accent-color);
}

/* Icons */
.mobile-header-icons a {
    margin-right: 15px;
    color: #333;
    font-size: 18px;
}

/* Only show on mobile screens */
@media (max-width: 1024px) {
    .mobile-menu {
        display: block;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* Hide button on desktop */
@media (min-width: 1025px) {
    .mobile-menu-btn {
        display: none;
    }
}


.mobile-nav-links{
    padding: 0;
    margin: 0;
}