* {
  box-sizing: border-box;
}

body {
  font-family: 'App-Development', sans-serif;
  margin: 0;
  padding: 0;
  color: white;
}
   
.font-bold{
  font-weight:bold;

  
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: scroll;
}
 
html::-webkit-scrollbar {
  display: none;
}


@font-face {
  font-family: 'App-Development';
  src:  url('../eot/app-development8ffc.eot');
  src:  url('../eot/app-development8ffc.eot#iefix') format('embedded-opentype'),
    url('../ttf/app-development8ffc.ttf') format('truetype'),
    url('../woff/app-development8ffc.woff') format('woff'),
    url('../svg/app-development8ffc.svg#App-Development') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* nav bar */

.hybrid_section_wrapper{
  max-width: 1569px;
  margin: auto;
}

.hybrid_section_wrapper nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5rem;
  background-color: #fff;
  position:fixed;
  top:0;
  z-index:100;
  box-shadow:0 1px 2px 0 rgb(0 0 0 / 10%);
  width:100%;
}

.hybrid_logo a{
  font-size: 20px;
  font-weight: bold;
  color:#0043b8;
  white-space: nowrap;
  text-decoration: none;
}

.hybrid_down-icon{
    font-weight: bold !important;
    font-size: 20px !important;
}

.hybrid_nav_link{
  padding: 10px 25px;
  border-radius: 5px;
  color: #000;
  cursor:pointer;
  font-size: 16px;
}

.hybrid_nav_link a{
  color: #000;
  text-decoration: none;
}


.hybrid_nav_link:hover {
  color: white !important;
  background-color: #0a39da !important;
}

.hybrid_menu {
  display: flex;
  align-items: center;
}

.hybrid_menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hybrid_dropdown {
  color: #000;
  border-radius: 6px;
  position:relative;
  cursor: pointer;
}

/* Initially hide dropdown content */
.hybrid_dropdown_menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 325px;
  padding:10px 0;
  z-index: 1000;
}

/* Show dropdown on hover */
.hybrid_dropdown:hover .hybrid_dropdown_menu {
  display: block;
}

/* Dropdown item styling */
.dropdown_item {
  display: flex;
  justify-content:start;
  align-items: center;
  gap: 10px;
  padding: 10px;
  color: #000;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s ease;
  cursor:pointer;
  margin: 5px 10px;
  border-radius: 5px;
}

/* Icon inside the link */
.dropdown_item i {
  color: #000;
  transition: color 0.3s ease;
}

/* Icon color on hover */
.dropdown_item:hover i {
  color: #4587f7;
}

/* Icon color when active */
.dropdown_item.active i {
  color: #4587f7;
}

.dropdown_item:hover,
.dropdown_item.active
{
    background-color:#e7f1fe !important;
}

.hybrid_menu a.hybrid_button {
  background-color: #ff4500;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: bold;
}

.hybrid_btn_get_price {
  background-color: #ff561e;
  color: #fff !important;
  padding: 0.7rem 1.7rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s;
  border:none;
  white-space: nowrap;
  margin-left: 32px;
  cursor:pointer;
}

.hybrid_btn_get_price:hover {
  background-color: #e65c00;
}


.hybrid_hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hybrid_hamburger div {
  width: 25px;
  height: 3px;
  background: #333;
}

@media (max-width: 991px) {

.hybrid_nav_link{
  padding:10px;
}

.hybrid_menu {
  display: none;
  flex-direction: column;
  background-color: white;
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  padding: 1rem 5rem;
  z-index:100;
}

.hybrid_menu.active {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px;
}

.hybrid_hamburger {
  display: flex;
  justify-content: end;
  align-items: end;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: black;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* X transformation when menu is open */
.hybrid_hamburger.open .top {
  transform: rotate(44deg) translate(5px, 5px);
}

.hybrid_hamburger.open .middle {
  opacity: 0;
}

.hybrid_hamburger.open .bottom {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hybrid_btn_get_price{
  width: 160px;
  margin-left: 0px;
}}

@media (max-width: 568px){
  .hybrid_section_wrapper nav,
  .hybrid_menu{
    padding: 1rem;
  }
}

/* header icon */
.item-icon{
    font-size: 23px;
}
