* {
  box-sizing: border-box;
}

/* body {
  font-family: 'App-Development', sans-serif;
  margin: 0;
  padding: 0;
  color: white;
}

h4, h3, h2 , p{
  color: #000;
  margin: 0px;
} */

.font-bold{
  font-weight:bold;
}

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


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

/* nav bar */

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


.fixed_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background-color: transparent;
  position:fixed;
  top:0;
  z-index:100;
  width:100%;
}

.fixed_nav.scrolled{
    background-color: #fff;
    box-shadow:0 1px 2px 0 rgb(0 0 0 / 10%);
}


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

.fixed_nav.scrolled .hybrid_logo{
    color:#0043b8 !important;
}

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

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



.fixed_nav.scrolled .hybrid_menu .hybrid_nav_link{
  color: #000 !important;
}

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

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

/* .fixed_nav.scrolled .hybrid_menu .hybrid_dropdown:hover i{
   color: white !important;
} */

/* .fixed_nav.scrolled .hybrid_menu .hybrid_dropdown:hover .item-icon{
   color: #000 !important;
} */

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

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

.hybrid_dropdown {
  color: #000;
  border-radius: 6px;
  position:relative;
  cursor: pointer;
  display:flex;
  justify-content:center;
  align-items:center;
}

/* 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 !important;
}

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

.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: #fff;
}

.fixed_nav.scrolled .hybrid_hamburger div{
  background: #333;
}


@media (max-width: 1200px){
    .fixed_nav{
    padding: 1rem 4rem;
  }
}

@media (max-width: 991px) {

.hybrid_nav_link{
  padding:10px;
  width: 100%;
  justify-content: space-between;
}

.hybrid_menu {
  display: none;
  flex-direction: column;
  background-color: #08205a;
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  padding: 1rem 3.5rem;
  z-index:100;
  justify-content: space-between;
}

.hybrid_dropdown_menu{
  min-width:100%;
}

.fixed_nav.scrolled .hybrid_menu{
  background-color:white;
}

.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){
  .fixed_nav,
  .hybrid_menu{
    padding: 1rem 2rem;
  }
}

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