/* Main header css start  */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth
}
@font-face {
  font-family:OpenSans-Regular;
  src: url(../font/OpenSans-Regular.ttf) format('truetype');
}
@font-face {
  font-family:OpenSans-SemiBold;
  src: url(../font/OpenSans-SemiBold.ttf) format('truetype');
}
body {
  overflow-x: hidden;  
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: OpenSans-SemiBold;
    font-weight: 600;
    letter-spacing: .3px;
    line-height: 1.2;
}
tr,
td,
th{
    font-family: OpenSans-Regular;
}
a,
li,
p,
span {
    font-family: OpenSans-Regular;
    text-decoration: none;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  transition:
    transform 0.6s cubic-bezier(0.22, 1.61, 0.36, 1),
    box-shadow 0.3s ease;
  box-shadow: none;
  /* transform: translateY(0); */
}

.header.scrolled {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-7px); /* bigger bounce */
}

.main-header .navbar-nav{
    margin-left: auto;
}
.main-header .navbar-brand{
  z-index: 1001;
}
.main-header .dropdown{
    position: static;
}
.main-header .dropdown-menu{
  border: none;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.main-header .dropdown-menu.show{
    display: flex;
    width: 100%;
    animation: fadeInUp 0.4s ease forwards;
}
.main-header .sub-menu-txt h5{
  font-size: 18px;
}
.main-header .sub-menu-txt p{
  font-size: 14px;
}
.main-header .sub-menu-txt a{
    padding: 5px 10px 5px 10px;
    background-color: #e6000a;
    color: #fff !important;
    border-radius: 4px;
    font-size: 13px;
    transition-duration: 0.3s;
}
.main-header .sub-menu-txt a:hover{
    background-color: #282828;
    transition: all ease-in-out 0.3s;
}
.main-header .sub-menu-resource .row{
  justify-content: space-between;
  margin-bottom: 25px;
}
.main-header .dropdown-menu[data-bs-popper]{
  top: 95%;
}
.nav-head .sub-menu h6{
    text-align: center;
    margin-bottom: 15px;
    font-size: 15px;
}
/* .sub-menu-container{
    width: 95% !important;
} */
 .dropdown-menu .container-fluid{
  width: 95%;
 }
.main-header .nav-item{
  font-size: 15px;
  margin-left: 12px;
}
.main-header .nav-link{
  color: #212121;
}
.main-header .nav-link:hover{
  color: #e6000a;
}
.main-header .sub-menu-container .sub-menu{
  margin-top: 2.3rem;
}
.main-header .sub-menu-container .sub-menu a{
  color: #282828;
  transition-duration: 0.3s;
}
.main-header .sub-menu-container .sub-menu a:hover{
  color: #e6000a;
  transition: all ease-in-out 0.3s;
}
.main-header .sub-menu-container .sub-menu li{
  font-size: 14px;
  margin-bottom: 10px;
  list-style-type: disc;
}
.main-header .viewdemo-header-btn {
  padding: 0px 12px 0px 12px;
}
.nav-item.dropdown:hover > .nav-link,
.dropdown-menu:hover ~ .nav-link {
    color: #e6000a;
}
.viewdemo-header-btn{
  background-color: #e6000a;
  border-radius: 6px;
  transition-duration: 0.3s;
}
.viewdemo-header-btn a{
  color: #fff !important;
}
.viewdemo-header-btn:hover{
  background-color: #282828;
  transition: all ease-in-out 0.3s;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px); /* Starts 20px lower */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* Ends in original position */
    }
}

.main-header .nav-link:focus,
.main-header .show > .nav-link {
    color: #e6000a !important; /* Sets text to Red when menu is open/clicked */
    box-shadow: none !important; /* Removes the default focus ring/glow */
    outline: none !important; /* Ensures no outline appears */
}


  
  .slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
  }

  /* main header css end  */

  /* Mobile header css start  */
  .mobile-head{
    border-bottom: 0.5px solid #dadada;
    z-index: 1000;
  }
  .mobile-head.navbar-light .navbar-toggler{
    color: #e6000a;
  }
  .mobile-head .dropdown-menu {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
    padding: 0px;
}

.mobile-head .dropdown-menu.show {
    max-height: 1000px;  /* Sufficient value to fit content */
    opacity: 1;
    transform: translateY(0);
}

.mobile-head .dropdown-submenu {
    position: relative;
}

.mobile-head .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -5px;
    max-height: 0;
    transform: translateX(-10px); /* Start off-screen */
    opacity: 0; /* Start as invisible */
    overflow: hidden;
}

.mobile-head .dropdown-submenu .dropdown-menu.show {
    max-height: 1000px;  /* Make sure this value is sufficient for your submenu */
    opacity: 1; /* Fade in */
    transform: translateX(0); /* Slide in */
}
.mobile-head .dropdown-item:active{
  background-color :#e6000a
}
.mobile-head .navbar-light .navbar-nav .nav-link{
  color: #282828;
  font-size: 15px;
}
.mobile-head .nav-item.dropdown:hover > .nav-link,
.dropdown-menu:hover ~ .nav-link {
    color: #e6000a;
}
.dropdown-menu .show .dropdown-item{
  margin-left: 10px;
}

/* Styling for mobile view */
@media (max-width: 991px) {
    .mobile-head .navbar-nav .nav-item {
        width: 100%;
    }

    .mobile-head .navbar-nav .dropdown-menu {
        position: static; /* To make dropdowns align vertically */
        margin-top: 0;
        padding-left: 0;  /* Avoid excessive padding */
        padding-right: 0;
    }

    .mobile-head .navbar-nav .dropdown-item {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 14px;
    }
    .main-header{
      display: none;
    }
    
}
@media (min-width: 1024px){
  .mobile-head{
    display: none;
  }
}

  /* mobile header css end  */

  /* header animation */
/* .header .navbar {
  transition: all 0.3s ease-in-out;
} */

.sticky {
  position: fixed;
  top: -60px;
  left: 0;
  height: 90px;
  animation: goDown 0.5s ease-in-out forwards;
  width: 100%;
  z-index: 10;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  
}

.sticky .navbar {
  max-height: 100%;
 
}

@keyframes goDown {
  0%{
    top:-60px;
  }
  100% {
    transform: translateY(60px);
  }
}

section .fx-header {
  height: 100%;
}
/* header animation */

header .nav-item .nav-link.active{
  /* padding: 8px 13px; */
  color: #e6000a;
  /* background-color: #fff; */
  border-radius: 8px 0 8px 0;
}

header .dropdown-item:focus,
 header .dropdown-item:hover {
  background-color: #3e3e3e;
  color: #fff;
  font-weight: 600;
}
header .dropdown-item{
  font-size: 14px;
  margin-bottom: 10px;
}
header .dropdown-item.active  {
  color: #fff;
  background-color: #3e3e3e;
}

/* social sharing section  */

.social-sharing {
    display: block;
    right: 0;
    position: fixed;
    top: 50%;
    z-index: 12;
}

.social-sharing-list>li {
    list-style-type: none;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all .5s ease-in;
    width: 50px;
    border-radius: 50%;
}

.whatsapp-icon {
    background-color: #25D366;
}

.whatsapp-icon:hover {
    background-color: #e6000a;
    color: white;
    text-decoration: none;
    transition: all ease-in 0.2s;
}

.call-icon {
    background-color: #e6000a;
}

.call-icon:hover {
    background-color: #282828;
    color: white;
    text-decoration: none;
    transition: all ease-in 0.2s;
}

.demo-icon {
    background-color:  #282828;
}

.demo-icon:hover {
    color: white;
    background-color: #e6000a;
    text-decoration: none;
    transition: all ease-in 0.2s;
}

.sharing-icon {
    align-items: center;
    color: #fff !important;
    display: block;
    display: flex;
    justify-content: space-around;
    line-height: 1;
    padding: 12px;
    text-decoration: none;
}

.Mob-CallToaction .col-md-4 {
    padding: 0;
    width: 33.33%;
}

.Mob-MailBtn, .Mob-callBtn, .Mob-whatsapp {
    background-color: #25D366;
    padding: 3px 0;
    text-align: center;
}

.Mob-MailBtn a, .Mob-callBtn a, .Mob-whatsapp a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.Mob-callBtn {
    background-color: #e6000a;
}

.Mob-MailBtn {
    background-color: #282828;
}

.Mob-CallToaction {
    bottom: 0;
    display: none;
    position: fixed;
    z-index: 10;
}

.Mob-whatsapp span{
    font-size: 15px;
    padding-left: 7px;
}

.Mob-callBtn span{
    font-size: 15px;
    padding-left: 7px;
}

.Mob-MailBtn span{
    font-size: 15px;
    padding-left: 7px;
}

/* social sharing section  */

/* responsive header css  */

@media only screen and (min-width:1200px) and (max-width:1599px){
  .main-header .sub-menu-container ul{
    padding-left: 15px;
  }
  .main-header .sub-menu-container .sub-menu li{
    font-size: 14px;
  }
}

@media (max-width: 1199.98px) {
  .main-header .nav-item {
    font-size: 14px;
    margin-left: -1px;
  }
  .nav-head .sub-menu h6{
    font-size: 13px;
  }
  .main-header .sub-menu-container .sub-menu li{
    font-size: 12px;
  }
  .main-header .sub-menu-container ul{
    padding-left: 1rem;
  }
  
}
 @media (min-width: 576px) {
    .mobile-head .navbar-brand img {
       width: 85%;
    }
  }
  @media only screen and (min-width:768px) and (max-width:900px){
    .social-sharing{
      display: none;
    }
    .Mob-CallToaction{
      display: block;
    }
  }
  @media only screen and (min-width:576px) and (max-width:767px){
    .social-sharing{
      display: none;
    }
    .Mob-CallToaction{
      display: block;
    }
  }
  @media only screen and (min-width:420px) and (max-width:575px){
    .social-sharing{
      display: none;
    }
    .Mob-CallToaction{
      display: block;
    }
  }

  @media only screen and (min-width:100px) and (max-width:419px){
    .mobile-head .navbar-brand img {
       width: 85%;
    }
      .social-sharing{
      display: none;
    }
    .Mob-CallToaction{
      display: block;
    }
  }


