body{
    line-height: 1.6;
    color: #777777;
    font-size: 15px;
    font-family: var(--font-family-base);
    
}

:root {
  /* Colors */
  --primary: #ffcc00; /*Red #f42223*/
  --secondary: #075bf8;
  --primary-hover: #faf278;
  --primary-dark: #770606;
  --title: #302f2f;
 

  /* RGBA Shades of Primary */
  --rgba-primary-1: rgba(244, 34, 35, 0.1);
  --rgba-primary-2: rgba(244, 34, 35, 0.2);
  --rgba-primary-3: rgba(244, 34, 35, 0.3);
  --rgba-primary-4: rgba(244, 34, 35, 0.4);
  --rgba-primary-5: rgba(244, 34, 35, 0.5);
  --rgba-primary-6: rgba(244, 34, 35, 0.6);
  --rgba-primary-7: rgba(244, 34, 35, 0.7);
  --rgba-primary-8: rgba(244, 34, 35, 0.8);
  --rgba-primary-9: rgba(244, 34, 35, 0.9);
  --bg-1: #1e1d23 !important;/*grey*/
  --bg-2: #030e46 !important; /*blue*/

  /* Border Radius (logical order: sm < base < lg) */
  --border-radius-sm: 2px;
  --border-radius-base: 4px;
  --border-radius-lg: 30px;

  /* Fonts */
  --font-family-base: 'Roboto', sans-serif;
  --font-family-title: 'Rubik', sans-serif;
}
/*li {list-style: none;}*/
a{text-decoration:none;}
h1{
  font-family: var(--font-family-title);  
}
h2{
    font-family: var(--font-family-title);
    line-height: 1.1;
}
h3, h4, h5
{
    font-family: var(--font-family-base);
    font-weight: 700;
    color: var(--title);
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: justify;
}
/* Start Top Bar CSS*/
#top-bar {
    margin: 3px 0px;
}
.topLeft {
    background-color: #e6e6e5;
}
.topLeft > p {
    text-align: center;
    padding-top: 12px;
    font-size: 16px;
    color: #000;
    line-height: 16px;
}
.topRightf {
    position: relative;
    border-right: 1px solid #fff;
}
.topRightf {
    background-color: var(--primary);
}
.topRights {
    background-color: var(--bg-2);
}
.topRightf::before {
    position: absolute;
    content: "";
    width: 38px;
    height: 100%;
    top: 0;
    left: -19px;
    background-color: var(--primary);
    transform: skew(39deg);
}
.topRightf > p {
    text-align: right;
}
.topRightf > p, .topRights > p {
    padding-top: 12px;
    font-size: 16px;
    color: #fff;
    line-height: 16px;
}

.banner-slide{top:43px;}
/*Float left*/
.fltlft{float:left;}

.header{
    
    -webkit-box-shadow: 1px 4px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 1px 4px 5px 0px rgba(0,0,0,0.75);
box-shadow: 1px 4px 5px 0px rgba(0,0,0,0.75);
}



/* End Top Bar CSS*/


/* Start navBar CSS*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*{
    /*margin:0;
    padding:0;*/
    box-sizing:border-box;
}
.navbar-search button {
    color: #fff;
}
.bgPriClr {
    background-color: #195190;
}
.navbar-search button {
        background-color: var(--primary);
        color: #195190;
    }


.header{
    position:absolute;
    top:50px;
    left:0;
    width:100%;
    border-bottom:2px solid hsla(216, 75%, 14%, 0.8);
    z-index:10;
    background-color: hsl(0, 0%, 100%);
}


.header > .row > div.logo{
    margin-top:12px;
}

.header .row{
    display:flex;
    align-items:start;
}
.header .logo img{
    vertical-align:middle;
    width:300px;
    
    
}
.head .logo img{
    width:180px;
    
}
.header .menu .head{
    display:none;
}
.header .menu ul{
    list-style:none;
}

.header .menu > ul > li{
    display:inline-block;
}

.header .menu > ul > li:not(:last-child){
    margin-right:3px;
}
.header .menu .dropdown{
    position:relative;
}
.header .menu a{
    text-decoration:none;
    text-transform:capitalize;
    font-size:12px;
    font-weight:bold;
    color:#000;
    line-height:1.5;
    display:block;
    
}

.header .menu > ul > li >a{
    padding:30px 0px 16px 0px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    transition: all 0.2s linear;
    
}
.header .menu >ul > .dropdown > a{
    padding-right:15px;
}
.header .menu  i{
    font-size:10px;
    pointer-events:none;
    user-select:none;
    position:absolute;
    color:hsl(0, 0%, 0%);
    top:calc(57% - 5px);
}
.header .menu > ul > li > i{
    right:0px;
}

.header .menu .sub-menu{
    position:absolute;
    top:100%;
    left:0;
    width:230px;
    padding:15px 0;
    background-color:hsl(0, 05%, 98%);
    box-shadow:0 0 5px hsla(0, 0%, 0%, 0.5);
    z-index:1;
    transform-origin:top;
    transform:scaleY(0);
    visibility:hidden;
    opacity:0;
}

.header .menu .sub-menu-right{
    left:100%;
    top:0;
}
.header .menu .sub-menu-left{
    top:0;
    left:auto;
    right:100%;
}
.header .menu li:hover > .sub-menu{
    opacity:1;
    transform:none;
    visibility:visible;
    transition:all 0.5s ease;
}

.header .menu .sub-menu a{
    padding:6px 24px;
    font-size:13px;
}
.header .menu .sub-menu .dropdown > a{
    padding-right:34px;
}
.header .menu .sub-menu span{
    /*background-image:linear-gradient(hsl(196, 95%, 44%), hsl(196, 95%, 44%));*/
    background-image:linear-gradient(hsl(48, 100%, 50%), hsl(48, 100%, 50%));
    background-size:0 1px;
    background-repeat:no-repeat;
    background-position:0 100%;
    transition:background-size 0.5s ease;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    
    
    display: block;
    font-size: 13px;
    
    
}
.header .menu .sub-menu li:hover > a > span{
    background-size:100% 1px;
}
.header .menu .sub-menu i{
    transform:rotate(-90deg);
    right:24px;
}
.primary-ul{margin-left:50px}
.header-right{
    display:flex;
} 
.header-right > *{
    margin-left:25px;
}
.header-right  .icon-btn{
    background-color:transparent;
    cursor:pointer;
    color:hsl(0, 0%, 100%);
    font-size:16px;
    
}

.header-right .open-menu-btn{
    display:none;
}

.navbar-search{
    margin-top:20px;
    padding-left:10px;
}
.navbar-search button{
    color:#fff;
}
.navbar-search button:hover{
    background-color:var(--bg-2);
    color:#fff;
}

/*Start Auto PopUp Modal*/

  #customModal {
      
    display: none;
    position: fixed;
    z-index: 999999999;
    left: 0;
    top: -110px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
  }

  .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 550px;
    text-align: center;
    position: relative;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
  }
  
  #popUpSendBtn{
      background-color:var(--bg-2);
  }
/*End Auto PopUp Modal*/




.hero{
    min-height:100vh;
    background-image:url("https://www.bharatsurgical.co/assets/img/laproscopy-instruments5.jpg");
    background-size:cover;
    background-position:center;
}
/* end navBar CSS*/

/*Start Slider*/
#carouselExampleCaptions{
    margin-top:40px;
}
 

.slider-prev, .slider-next  {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 170px;
    width: 50px;
    line-height: 170px;
    background-color: rgba(230, 230, 230, 0.5);
    z-index: 99;
    cursor: pointer;
    transition: .3s ease-out;
    font-size: 22px;
    color: #192437;
}


.carousel-caption p {
    font-size: 20px;
    line-height: 34px;
    color: #000;
    padding-right: 200px;
    text-align: left;
    padding-bottom: 20px;
    margin-top: -30px;
    text-shadow: 1px -1px 0px #fff;
}


.carousel-caption a {
    box-shadow: 0 20px 20px 0 rgba(0, 0, 0, .04);
    padding: 25px 60px 25px 85px;
    z-index: 5;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 2.5px;
    text-shadow: 2px 2px black;
    margin-left: 500px;
}
.slider-btn {
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #113bff;
    font-size: 14px;
    line-height: 75px;
    border-radius: 0;
    cursor: pointer;
    transition: .4s ease-out;
    background-color: var(--bg-2);
    position: relative;
}
/*About Home page*/

.sub-title{
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 55px;
    
    color: var(--bg-2);
    
}
.prodRngHd> .sub-title{
    text-align:left;
}
.sub-title:before{
    width: 12px;
    left: 0;
}
.sub-title:after {
    width: 27px;
    left: 16px;
}
.sub-title:before, .sub-title:after {
    content: "";
    display: inline-block;
    height: 3px;
    background: var(--primary);
    position: absolute;
}
.aboutSec p {
    font-size: 15px;
    line-height: 1.5;
}


/* Start dynamic Percentage of circle*/

    .circle-box {
      position: relative;
      width: 112px;
      height: 112px;
      border-radius: 50%;
      background: conic-gradient(#ffcc00 0%, #fff0b3 0%);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.5s;
    }

    .circle-inner {
      position: absolute;
      width: 91px;
      height: 91px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: bold;
      color: #333;
    }

    .label {
      margin-top: 15px;
      font-size: 16px;
      color: #444;
      font-weight: 600;
    }
    .circle-wrap {
    fill: var(--primary);
    text-anchor: middle;
    font-size: 18px;
    font-family: var(--font-family-title);
    font-weight: 700;
}


.AboutSecBtn
{
    padding: 18px 30px;
    display: inline-flex;
    
    border-color: var(--primary);
    background-color: var(--primary);
    font-size: 15px;
    font-weight: 400;
    position: relative;
    line-height: 1.5;
    align-items: center;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.AboutSecBtn:hover{
    background-color: #ff0000;
}
.img-cover{
    border:1px solid var(--primary);
}
/* End dynamic Percentage of circle*/

/*Start Long term Goal*/

.longGoal{
    background-color:var(--bg-1);

}
.content-inner{
    padding-top: 120px;
    padding-bottom: 90px;
    padding-left:50px;
}
.longGoal i{
    width: 80px;
    min-width: 80px;
    height: 80px;
    color: #fff;
    background: var(--primary);
    display: inline-block;
    text-align: center;
    font-size: 35px;
    line-height: 80px;
    margin-right: 20px;
    border-radius: 50%;
}

.longGoal span{
    font-size:36px; 
    color:#fff;
    font-family: var(--font-family-base);
    font-weight:bold;
}
.longGoal .media-full {
    width: 50vw;
    height: 100%;
    border-left: 5px solid var(--primary);
}
.img-cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.longGoal img {
    border-style: none;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

/*End Long term Goal*/


/* Start to Home page Product Rabge CSS */

.prodRngHd >.title {
    color: var(--primary);
}
.prodBox  a {
    text-decoration:none;
}
  .prodBox {
      position: relative;
      overflow: hidden;
    }

.prodBox .icon-bx-sm {
  position: relative;
  z-index: 1;
  background-color: transparent;
  transition: all 0.5s ease-in-out;
}

/* Sliding background effect */
.prodBox .icon-bx-sm::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #030e46; /* blue on hover */
  z-index: 1;
  border:2px solid #2d2f2f; /* grey on hover */
  transition: top 0.9s ease;
}

.prodBox:hover .icon-bx-sm::before {
  top: 0;
  background-color: #e5d500; /* yellow on hover */
  opacity:0.5;
}

/* Make title always visible */
.prodBox .prodTitle {
  position: relative;
  color: #fff; /* Red before hover */
  font-size:14px;
  background-color: transparent;
  z-index: 2; /* Ensure it stays above sliding bg */
  transition: color 0.5s ease;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  font-family: var(--font-family-title);
}

/* On hover, change only text color */
.prodBox:hover .prodTitle {
  color: #fff;
  
}
.prodBox:hover .icon-bx-wraper{
    background-color: #030e46;
    padding-bottom:0.4px;
}
/* End to Home page Product Rabge CSS */

/* Start CSS For Testimonial CSS */

.testimonial-section {
            padding: 60px 0;
            background-color:var(--bg-2);
        }
        .testimonial-card {
            background: #fff;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 15px;
            position: relative;
            overflow: hidden;
        }
        .testimonial-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), #e5d500); /*red to Yellow*/
        }
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--bg-2);
            margin: 0 auto
            
        }
        .testimonial-img> i{
            color:var(--primary);
        }
        .testimonial-text {
            font-style: italic;
            color: #555;
            margin: 15px 0;
            font-size: 1rem;
        }
        .testimonial-name {
            font-weight: bold;
            color: var(--bg-2);
        }
        .testimonial-role {
            color: var(--primary);
            font-size: 0.9rem;
        }
        .quote-icon {
            font-size: 2rem;
            color: #007bff;
            opacity: 0.2;
            position: absolute;
            top: 20px;
            right: 20px;
        }
       .testimonial-section .carousel-control-prev,
       .testimonial-section .carousel-control-next {
            width: 5%;
            background: var(--primary);
            z-index:100;
            border-radius: 10px;
            opacity: 1; /* Prevent fading */
        }
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-size: 50%;
        }
        @media (max-width: 576px) {
            .testimonial-card {
                padding: 15px;
                margin: 10px;
            }
            .testimonial-img {
                width: 60px;
                height: 60px;
            }
            .testimonial-text {
                font-size: 0.9rem;
            }
            .carousel-control-prev,
            .carousel-control-next {
                width: 8%;
            }
        }

/* End CSS For Testimonial CSS */

/*Start Hero Section*/
.hroSec{
     background-color:var(--bg-2);
}

.hroSec h2, .hroSec p, .hroSec a{
    text-align:center;
    font-family: var(--font-family-title);
}

 .typing-text {
      overflow: hidden;
      white-space: nowrap;
      /*border-right: 2px solid #222;*/
      font-size: 24px;
      display: inline-block;
    }

    .typed-content {
      display: inline-block;
      width: 0;
      overflow: hidden;
      animation: none;
    }

    /* Triggered when AOS runs (adds .aos-animate) */
    [data-aos].aos-animate .typed-content {
      animation: typing 3s steps(40, end) forwards, blink 0.7s step-end infinite;
    }

    @keyframes typing {
      from { width: 0; }
      to { width: 100%; }
    }

    @keyframes blink {
      0%, 100% { border-color: transparent; }
      50% { border-color: #222; }
    }




/*End Hero Section*/


/* Start Image Responsive in Box */


.prdRangeImgBox {
    width: 399px;
    height: 399px;
}



.wrapToCenterPrdRangeImg {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #d9d9d9;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 3px;
}
.wrapToCenterPrdRangeImg * {
    vertical-align: middle !important;
}
.prdRangeImg {
    max-width: 100%;
    max-height: 100%;
}

/* End Image Responsive in Box */
.section-title p{
    font-weight: 400;
    text-align: center;
    font-family: 'Barlow', sans-serif !important;
    color:#202020;
}
.prdRangeTitle{
    
    background-color:var(--bg-2);
    padding:0px;
    margin:0px;
    
    padding:5px 0px;
}
.prdRangeTitle .btn{
    background-color:var(--primary);
}
.text-theme-colored{
    
}
.prdRangeTitle .btn:hover{
    background-color:#fff;
    color:#000;
    font-weight:bold;
}
.prdRangeTitle h2{
    margin-top:0px;
    font-family: Tahoma;
    font-weight: 400;
    text-transform: capitalize;
    text-align: center;
    font-family: 'Barlow', sans-serif !important;
    font-size: 20px;
    line-height: 1.42857143;
    color: #fff;
 }


.prdRangeTitle h2 a{
    text-decoration:none;
    color:#fff;
    text-transform: capitalize;
    font-family: 'Roboto', cursive;
    letter-spacing:1px;
    font-size: 20px;
}
.prdRangeTitle> center>a{
    text-decoration:none;
    color:#fff;
    text-transform: capitalize;
    font-family: 'Be Vietnam Pro', sans-serif;
    letter-spacing:1px;
    font-size: 15px;
}
/* end Image Responsive in Box */


/* Start Product page */

/*Start CSS product Image on product.php page*/ 
 .product-box{
     background-color:#f2f2f2;
     padding:15px;
 }
 .prodTxMaintBox{
    background-color:#fff;
    border:1px solid #cccccc;
    border-radius:3px;
 }
 #prodRgtBox{
    overflow:hidden; 
    
 }
 .prodRightMainRow{
   height:448px;
  overflow:auto;
  margin:0px -20px 0px -15px;
  padding-right:0px; /* Samakan dengan besar margin negatif */
  overflow-x: hidden;
  
 }




.wrapToCenterProdImg, .prodVdoBox, .prod-img-tab, .prod-vdo-tab, .prodMdlImgBox, .prodMdlVdoBox {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    border:1px solid #d9d9d9;
    border-radius:5px;
    padding:3px;
}

.wrapToCenterProdImg * ,.prodVdoBox *, .prod-img-tab *, .prod-vdo-tab *, .prodMdlImgBox *, .prodMdlVdoBox *{
  vertical-align: middle;
}

.prodMainCtrImg, #vdoIframe, .img-tab, .vdo-img, .modalimgtab, #modalvdotab {
  max-width: 100%;
  max-height: 100%;
}
/*Main Img And Video Box*/
.wrapToCenterProdImg{
    width:570px;
    height:570px;
    background-color:#fff;
}

.prodVdoBox{
    width:570px;
    height:570px;
    background-color:#fff;
    display:none; 
}

#vdoIframe{
    margin-top:18.5%;
    height:350px;
}
/*Tab Img And Video Box*/
.prod-img-tab, .prod-vdo-tab{
   width:150px;
    height:80px;
    background-color:#fff;
    margin:5px;
}

.prodMdlImgBox{
   width:250px;
   height:200px;
   background-color:#fff;
   margin:5px;
}

.prodMdlVdoBox{
   display:none; 
   width:240px; 
   height:200px;
}

#modalvdotab{
    margin-top:8.3%;
}


.ask-price{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size:32px;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    line-height: 1.1;
    text-transform: capitalize;
   
}
.ask-price span{
    padding:5px 10px 0px 20px;
    margin-left:-15px;
    background:lightgrey;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    
}
.ask-price span > button{
    background-color:transparent;
    border:none;
    color:#000C58;
}
#ask-price a{
    color:#000;
    
}

.rupay-icon{
    width:40px;
    height:40px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:1px solid #fff; 
    padding:3px;
     z-index:1;
}


.prodTxtBox{
    padding:15px;
}
.prodCatTitle{
    margin-top:5px;
    
}
.prodCatTitle > h1{
    color: #000;
    font-size: 14px;
    font-weight:600;
    font-family: 'Poppins', sans-serif;
    line-height: 22px;
    text-align: left;
    padding-left:5px;
}
.prodCatTitle > h1> a:hover{
    color: #2f9fd5;
}

/* Product Page*/
.prod-title{
    margin-right:24px;
    overflow-wrap: break-word;  
    word-wrap: break-word; 
    word-break: break-word;
    font-weight: normal;
    font-size: 32px;
    color: var(--bg-2);
    margin-bottom: 15px;
    font-family: 'Bebas Neue', cursive;
    font-weight: 400;
    line-height: 1.1;
}

.get-lprice{
    border:1px solid #000C58;
    background:#000C58;
    border-radius:5px;
    color:#fff;
}

.get-lprice:hover{
    background:#ff5e15;
    color:#fff;
}
.pdf-download a {
    font-size:16px;
    color:#6e6e6e;
}
.pdf-download>a img{
    width:45px;
}
.call-back{
    width:90px;
    height:75px;
    text-shadow: 1px 1px #000;
    right: 0px;
    top: 0;
    margin-top: -115px;
    position:relative;
    cursor: pointer;
    z-index:10;
    
    
}
.call-back-txt{
    background: #ff5e15;
    border:none;
    padding: 10px 6px;
    color: #fff;
    text-align:center;
    font-size:18px;
    font-family: 'Roboto Condensed',Arial,Helvetica,sans-serif;
    z-index:1000;
    margin-left:14.5px;
}
.call-back-txt strong{
    font-size:19px;
}

.call-back::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 22px;
    top: 0;
    left: -9px;
    background-color: #000;
    transform: skew(-39deg);
    z-index:-1;
    margin-left:14.5px;
}


.get-quote-btn{
    margin:5px 0px 10px 10px;
    padding:10px 35px;
    background:red;
    color:#fff;
    text-align: center;
    font-size:23px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    color:#fff;
}

.get-quote-btn:hover{
    background:var(--bg-2);
    color:#fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    
}



/*Start Popup Modal CSS*/

.prodModalbody{
    margin-top:-22px;
    padding-top:0px;
    padding-bottom:0px;
    z-index:9999999;
}
.prodModalbody > .row{
    margin-top:0px;
    margin-bottom:0px;
}

.mdlTxtVal{
    border:0px solid #0b2239;
    
}
.modal-left-content{
    margin-top:8px;
}

.modal-left-content p{
    font-size:11px;
    text-align:justify;
}

.mdlRightBox{
    margin-top:5%;
    font-size:20px;
}

.mdlRightBox >p> strong{
    color:#ff5e15;
}
.mdlRightBoxFrm> p{
    font-size:12px;
    margin-top:-10px;
    padding-top:-50px;
    padding-left:0px;
    margin-left:-10px;
    color:#ff9900;
}
.main-input-box{
    padding:5px auto;
    margin-bottom:15px;
    border:1px solid #ff5e15;
}
.main-input-box i{
    font-size:18px;
}
.main-input-box > select, .main-input-box > label{
    padding-top:4px;
    padding-bottom:4px;
    margin:4px;
    background:lightgrey;
    border:0px;
    font-size:13px;
}

.frm-inpt{
   border:0px; 
   font-size:13px;
}

#prod-mdl-btn{
    margin-top:0px;
    cursor:pointer;
}

.mdl-sbmt-btn{
    
    background:#0b2239;
    padding:8px 48px;
    color:#fff;
}

.mdl-sbmt-btn:hover{
    background:#ec1317;
    color:#fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.btnForOpenMdl{
    cursor:pointer;
}


/* Start About Us page */
.main-page-breadcrumb{height: 100px;
    background-size: cover;
    background-position: center center;
    display: table;
    width: 100%;
    position: relative;
}




.cat-title{
    font-size:22px;
    font-weight: 400;
    color: #FFF;
    background-color: #3ba6ca;
    padding: 8px 0 8px 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}
.cat-title:before {
    content: '\f0c9';
    font-family: "FontAwesome";
    color: #FFF;
    padding-right: 6px;
}
#sidebar .cat-list li {
    padding: 4px 0px;
    margin-bottom:3px;
    border-bottom: 1px solid #ededed;
}
#sidebar .cat-list li a {
    text-decoration: none;
    color: #656363;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
#sidebar .cat-list li a:before {
    content: "\f101";
    font-family: "FontAwesome";
    color: #656363;
    padding-right: 12px;
}

.page-main-title {
    font-size: 30px;
    color: #00173c;
    font-weight: 400;
    margin-top:10px;
}

.page-main-para {
    color: #333;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    line-height: 22px;
    text-align: justify;
    padding-top: 0px;
}

.page-main-para > a {
    color: #00aaff;
    text-decoration:underline;
}

.page-main-para > strong{
    color:#000;
}
#prodRgtBox h2 strong{
    font-size:18px;
    color:#000;
    text-align:justify;
}
#prodRgtBox h3 strong{
    font-size:16px;
    color:#000;
}
#prodRgtBox h4 strong{
    font-size:14px;
    color:#000;
}
#prodRgtBox ul{
    margin-left:30px;
}
#prodRgtBox ul li{
    
    font-size:13.5px;
    color:#000;
}
.table, table{
    width:100%;
    margin:20px 0px;
   
}
.prod-range p strong{
   
   color:#000;
}
.prod-range h2 strong{
   font-size:20px;
   color:#000;
}
.prod-range h3 strong{
  font-size:18px;
  color:var(--bg-2);
}
.prod-range h4 strong{
   font-size:16px;
   color:#0A66C2;
}
.table > table{
    margin-top:-10px;
}
.table > table > tbody > tr, th,td{
    
    padding:5px;
    border: 1px solid #e6e6e6;
}

/* End About Us page */


/* Start Product List page */
.wrapToCenterImg {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    border:1px solid #d9d9d9;
    border-radius:5px;
    padding:3px;
}

.prodCatImgBox{
    width:300px;
    height:120px;
}

.wrapToCenterImg * {
  vertical-align: middle;
}
.prodMainImg {
  max-width: 100%;
  max-height: 100%;
}

.prodCatTitle{
    margin-top:5px;
    
}
.prodCatTitle > h1{
    color: #000;
    font-size: 14px;
    font-weight:600;
    font-family: 'Poppins', sans-serif;
    line-height: 22px;
    text-align: left;
    padding-left:5px;
}
.prodCatTitle > h1> a:hover{
    color: #2f9fd5;
}

.contForm{
    background-color: #e9ecef;
    padding:16px 0px;
}

.contForm> h1{
    color: #00173c;
    text-align:center;
    padding:5px 0px;
}


/* END Product List page */




/*End Product Description/about us Description etc pages*/



/*Contact Form CSS*/
/* Start Contact Page*/
.conctPgBox> h1{
    color: #1d1e81;
    padding:5px 0px;
    text-transform: uppercase;
    font-family: "Oswald", Sans-serif;
}
.conctPgBox  a{
    color:#1d1e81;
    font-weight:bold;
}

.conctPgBox > .row > .contBox  i, .contForm i{
    color:#1d1e81;
}
.contForm{
    background-color: #e9ecef;
    padding:16px 0px;
}

.contForm> h1{
    color: #1d1e81;
    text-align:center;
    padding:5px 0px;
    text-transform: uppercase;
    font-family: "Oswald", Sans-serif;
}

#sndEmailData{
    background-color: var(--bg-2);
}







/*Start Sidebar*/
.widget {
    padding-top: 5px;
}
.cat-title {
    font-size: 15px;
    font-weight: 600;
    color: #FFF;
    background-color: var(--bg-2);
    padding: 8px 0 8px 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Oswald", Sans-serif;
    letter-spacing: 3px;
    position: relative;
}
.widget> ul {
    list-style: none;
    margin-top: 0px;
}
#sidebar .cat-list li {
    padding: 4px 0px;
    margin-bottom: 3px;
    border-bottom: 1px solid #ededed;
}
.widget li {
    font-size: 14px;
    margin-bottom: 12px;
    padding-left: 30px;
    color: #fff;
    position: relative;
    list-style-type: none;
    line-height: 26px;
}
.widget li i {
    position: absolute;
    left: 0px;
    top: 5px;
    font-size: 18px;
    color: #ff5e15;
}
#sidebar .cat-list li i {
    color: var(--primary);
    margin-top: 3px;
}
#sidebar .cat-list li a {
    margin-left: 25px;
    text-decoration: none;
    color: #1d1e81;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}
/*End Sidebar*/

/*Need Help*/
.helpBreadCrumb{
    background-color: #f25926;
}
.helpBreadCrumb > .row > .helpLeft > h1{
    color: #fff;
    font-size:30px;
}
.helpBreadCrumb > .row > .helpLeft > button{
    background-color: #0b2239;
    color: #fff;
    float:right;
    border-radius:0px;
    padding:8px 20px;
    text-transform: uppercase;
}
.helpBreadCrumb > .row > .helpLeft > button:hover{
    background-color: #fff;
    color: #0b2239;
    font-weight:bold;
}
.helpBreadCrumb > .row > .helpRight{
    background-image: url(https://www.bharatsurgical.co/new/assets/img/need-help.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



/*Start Trending Products Machine*/
.tm-container{
    padding:30px 0px 10px 0px;
   background-color: #812990;
}

.tm-box{
    margin-top:-35px;
    margin-bottom: -35px;
    padding:7px;
    display: block;
    vertical-align: middle;
}

.tm-box .tm-hf{
    font-family: "Rubik",Arial,Helvetica,sans-serif;
    color:#f5821f;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.7px;
}

.tm-hs{
    color: #fff;
    font-family: "Rubik",Arial,Helvetica,sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 50px;
}

.tm-box p {
    font-family: "Rubik",Arial,Helvetica,sans-serif;
    font-weight: 400;
    font-size: 15px;
    margin-bottom:0px;
    line-height: 26px;
    color: #fff;
}
.tm-container .col-12{
    margin-bottom:5px;
}
.tm-container .carousel-control-prev, .tm-container .carousel-control-next{
    text-decoration:none;
}

.tm-container .carousel-control-prev{
    margin-right:100px;
}
.tm-container .fa-chevron-left, .fa-chevron-right{
    color:#fff;
    font-size:18px;
    border:1px solid #fff;
    font-weight:bold;
    padding:9px 11px ;
}
.tm-container .fa-chevron-left:hover, .tm-container .fa-chevron-right:hover{
    display:block;
    text-decoration:none;
    background-color:#f5821f;
    color:#fff;
    border:0px;
}
#recipeCarousel{
    margin:0px;
    padding:15px;
    border:0px;
    border-radius:0px;
    background-color:#f5821f;
}



/*Trending Products Machine Image Overlay */

.tm-img-box {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.tm-image {
  display: block;
  width: 100%;
  height: auto;
  transition: 0.6s ease;
}

.tm-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: #000;
}


 .tm-img-box:hover .tm-image {
  margin-top:-35px;
  overflow: hidden;
} 
.tm-img-box:hover .tm-overlay {
  opacity: 0.5;
}

.tm-overlay1{
    opacity: 0;
  transition: .3s ease;
  background-color: #000;
}
.tm-img-box:hover .tm-overlay1 {
    opacity: 1;
  height: 10%;
}

.tm-icon-box {
  color: white;
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: .3s ease;
}
.tm-img-box:hover .tm-icon-box {
  opacity: 1;
}
.tm-icon:hover {
  color:#fff;
background-color:#f5821f;
}

.tm-icon{
font-size:18px;
padding:12px 15px;
color:#000;
background-color:#fff;
}

.tm-text {
  color: #812990;
  font-size: 20px;
  position: absolute;
  top: 100%;
  left: 50%;
  width:100%;
  background-color:#fff;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}


.tm-text h2{
padding-top:10px;
margin-bottom:5px;
}
.tm-text:hover h2{
    color:#f5821f;
}


/*End Trending Products Machine*/














/*Start Footer*/
footer {
    font-size: 15px;
}
#footer {
    color: #9d9aaa;
    background-color: var(--bg-1);
    background-position: center;
    background-size: cover;
}

#footer .footer-top {
    padding: 100px 0 60px;
}




footer .widget {
    margin-bottom: 40px;
}
.widget-title {
    margin-bottom: 25px;
}
.widget-title .title {
    position: relative;
    margin-bottom: 5px;
    color: #fff;
}

.dz-separator {
    height: 8px;
    display: block;
    width: 82px;
    position: relative;
    margin: 0;
    color:var(--primary) !important;
}
.dz-separator:before {
    width: 100%;
    top: 0;
}
.dz-separator:before, .dz-separator:after {
    content: "";
    height: 1px;
    width: 80px;
    position: absolute;
    background: var(--primary);
    left: 0;
}
.dz-separator:after {
    width: 80%;
    bottom: 0;
}
.avc {
    color: #9d9aaa;
}
.widget_getintuch ul li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 52px;
    min-height: 45px;
}
.widget_getintuch ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    height: 40px;
    width: 40px;
    min-width: 40px;
    line-height: 40px;
    margin-right: 10px;
    text-align: center;
    background-color: var(--primary);
    display: block;
    color: #fff;
    font-size: 16px;
    border-radius: var(--border-radius-lg);
}
.social-list {
    display: inline-block;
}
.social-list li {
    margin-left: 2px;
    margin-right: 2px;
    display: inline-block;
}
.social-list li a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: #fff;
    display: block;
    text-align: center;
    padding: 0;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
}







/* --- Social Media Button Styles --- */


/* Button Base */
.social-list .social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Different Brand Colors */


/* Make icon circles colored (not background of <i>) */
.social-list .social-btn {
  background-color: rgba(255, 255, 255, 0.1);
}
.social-list .social-btn:hover {
  background-color: var(--primary);
}
.social-list .social-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Hover color per brand */
.social-list .social-btn:hover i.fa-facebook { color: #1877f2; }
.social-list .social-btn:hover i.fa-twitter { color: #1da1f2; }
.social-list .social-btn:hover i.fa-linkedin { color: #0077b5; }
.social-list .social-btn:hover i.fa-instagram { color: #e4405f; }
.social-list .social-btn:hover i.fa-youtube { color: #ff0000; }
.social-list .social-btn:hover i.fa-whatsapp { color: #25d366; }

/* Responsive alignment */
@media (max-width: 768px) {
  .social-list {
    gap: 10px;
  }
  .social-list .social-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}













.facebook {
    background-color: #3b5999;
}
.instagram {
    background-color: #ff1d7d;
}
.twitter {
    background-color: #55acef;
}
.linkedin {
    background-color: #0A66C2;
}
.youtube {
    background-color: #FF0000;
}

.widget_categories ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.widget ul.list-2, ul.list-2 {
    display: table;
}
footer .widget_categories ul li {
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}
.widget_categories ul li {
    text-align:right;
    display: table;
    width: 100%;
    padding: 0.5rem 0rem 0.5rem 1.5rem !important;
    line-height: 1.3 !important;
}
 .widget_categories ul li {
    padding-bottom: 1.125rem;
    margin-bottom: 0.8125rem;
    position: relative;
    padding: 0.5rem 0rem 0.5rem 1.5rem;
    margin-bottom: 0;
    line-height: 1.25rem;
}
 .widget_categories ul li a {
    color: inherit;
    text-transform: capitalize;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
    position: relative;
}
.widget_categories li a {
    float: left;
    text-transform: capitalize;
    text-align: left;
}
.widget_categories ul li a:before {
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    display: block;
    left: -1.5rem;
    top: 0.063rem;
    font-size: 12px;
    font-weight: 900;
    color: var(--primary);
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}


button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
    cursor: pointer;
}
.collapsible {
    background-color: #1e1d2300;
    color: #9d9aaa;
    cursor: pointer;
    padding: 6px;
    width: 95%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}
button, select {
    text-transform: none;
}
button, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
.collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
button.collapsible a {
    color: #9d9aaa;
}

/*Start Footer Bottom*/
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    background-position: center;
    background-size: cover;
    padding: 0;
}
.section-head .sub-title {
    justify-content: center;
}
.section-head .sub-title {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 55px;
}
.section-head h6 {
    font-family: var(--font-family-title);
    color: var(--primary);
}
.footer-bottom .fb-inner{
    padding-top: 20px;
}

footer .footer-bottom .copyright-text a {
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--primary);
    font-size:18px;
    font-family: var(--font-family-title);
    
    
}

/*Start Scroll to Top and Side Buttons*/
 #scrollTopBtn {
      position: fixed;
      bottom: 70px;
      right: 30px;
      z-index: 1000;
      display: none;
      background-color: var(--primary);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      text-align: center;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      transition: opacity 0.3s ease;
    }
    #scrollTopBtn:hover {
      opacity: 0.8;
    }
/* --- Sidebar Buttons --- */
.sidebar-buttons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 999999;
}

/* --- Button Style --- */
.sidebar-buttons a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 100px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* --- Text and Icon --- */
.sidebar-buttons a span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.sidebar-buttons a i {
  font-size: 20px;
}

.sidebar-buttons a:hover {
  opacity: 0.85;
  transform: translateX(-5px);
}

/* --- Individual Colors --- */
.enquiry-btn { background-color: var(--primary); }
.whatsapp-btn { background-color: #25d366; }
.call-btn { background-color: var(--bg-2); }

/* --- Mobile: Horizontal at Bottom --- */
@media (max-width: 768px) {
    
    #scrollTopBtn i{
        margin-left:14px;
    }
  .sidebar-buttons {
    top: auto;
    bottom: 10px;
    left: 10px;
    right: 30px;
    transform: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .sidebar-buttons a {
    flex-direction: row;
    width: 130px;
    height: auto;
    padding: 10px 15px;
    border-radius: 50px;
    gap: 5px; /* ✅ 5px gap between icon and text */
  }

  .sidebar-buttons a span {
    writing-mode: horizontal-tb;
    transform: none;
  }
}















    /*Footer Social Media icon Css Css */
    