/************************************************Navbar Start*************************************/
.colorTheme{
  color: #ffffff;
  background: #3ba8a6;
  background: #73a008;
  border-color: #73a008;
}
.nav_d_flex_end{
   display: flex;
    justify-content: end;
    align-items: center; 
}

.nav_d_flex_center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav_d_flex_start{
    display: flex;
    justify-content: start;
/*    align-items: center;*/
    flex-direction: row;
}
.nav_d_flex_start_col{
    display: flex;
    justify-content: start;
/*    align-items: center;*/
    flex-direction: column;
}
/*    signin signout dropdown */
.custom-account-dropdown {
  position: relative;
  display: inline-block;
  font-family: 'Segoe UI', sans-serif;
  padding: 0 12px;
  cursor: pointer;
}

.account-toggle {
  cursor: pointer;
  padding: 8px 15px;
  background: #f1f1f1;
  color: #444;
  font-weight: 600;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background-color 0.3s;
}

.account-toggle:hover {
  background-color: #e0e0e0;
}

.account-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  list-style: none;
  padding: 8px 0;
  margin: 5px 0 0 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  z-index: 999;
  min-width: 180px;
}

.account-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s;
}

.account-menu li a:hover {
  background-color: #f5f5f5;
}

.account-menu .divider {
  border-top: 1px solid #ddd;
  margin: 6px 0;
}


/*    signin signout dropdown */
/*    navbar */
.nav_element a {
/*      display: inline-block;*/
/*      padding: 9px 20px;*/
/*      background-color: #007bff;*/
      color: white;
      text-decoration: none;
      font-weight: 500;
      border-radius: 35px;
/*      transition: background-color 0.3s ease, transform 0.2s ease;*/
/*      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
    }

    /*.nav_element a:hover {
      background-color: #0056b3;
      transform: translateY(-1px);
    }*/
    .nav_element {
      padding: 0 12px;
      cursor: pointer;
    }
.menu-toggle {
  padding: 0 16px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.9);
  padding: 16px;
  position: absolute;
  width: 100%;
  top: 80px;
  left: 0;
  z-index: 1050;
}

.mobile-nav .nav_element {
  padding: 10px 0;
  border-bottom: 1px solid #444;
  color: white;
}

/* Optional: make dropdowns expand/collapse in mobile */
.mobile-nav .dropdown-menu {
  position: relative;
  box-shadow: none;
  border: none;
  background: transparent;
  padding-left: 20px;
}

/*    dropdown */
/* Overall Dropdown Style */
.nav_element_dropdown {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  cursor: pointer;
}

/* Main Dropdown Button Style */
.dropdown {
  position: relative;
  padding: 10px 12px;
  cursor: pointer;
}

/* Down Arrow for Main Dropdown */
.dropdown::after {
  font-family: 'remixicon';
  content: "\ea4e"; /* Down arrow */
  margin-left: 8px;
  font-size: 14px;
  vertical-align: middle;
}

/* Dropdown Menu Style */
.dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0;
  border-radius: 0;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid #ddd;
  min-width: 200px;
  z-index: 10;
}

/* Show Main Dropdown Menu on Hover */
.nav_element_dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown Item Style */
.dropdown-item {
  position: relative;
  padding: 10px 16px;
  cursor: pointer;
  white-space: nowrap;
  border-top: 1px solid #f1f1f1;
}

/* Right Arrow only for Items with Submenus */
.dropdown-item.has-sub::after {
  font-family: 'remixicon';
  content: "\ea4e"; /* Down arrow rotated to right */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 14px;
  color: #333;
}

/* No arrow for regular items */
.dropdown-item::after {
  content: none;
}

/* Hover Effect on Dropdown Items */
.dropdown-item:hover {
  background: #f5f5f5;
}

/* Sub-menu Styles for Nested Dropdowns */
.dropdown-item.has-sub .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
/*  border: 1px solid #ddd;*/
  min-width: 180px;
  z-index: 10;
}

/* Show Sub-menu on Hover */
.dropdown-item.has-sub:hover > .sub-menu {
  display: block;
}

/* Sub-menu Item Styles */
.sub-menu .dropdown-item {
  padding: 10px 16px;
  cursor: pointer;
  border-top: 1px solid #f1f1f1;
}

/* Hover Effect for Sub-menu Items */
.sub-menu .dropdown-item:hover {
  background-color: #f0f0f0;
}





/* dropdown end */

/*dropdown project */
/*.nav_element_dropdown .dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 10px;
}

.nav_element_dropdown.open .dropdown-menu {
  display: flex;
}

.dropdown-item.has-sub .sub-menu {
  display: none;
  padding-left: 10px;
}

.dropdown-item.has-sub.open .sub-menu {
  display: flex;
  flex-direction: column;
}
*//*dropdown project close*/
/*navbar */

    .content_position {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .content_position_end {
      display: flex;
      justify-content: end;
      align-items: center;
    }
    .content_position_hide{
      display: flex;
      justify-content: center;
      align-items: center;

    }
    .content_pos_start {
      display: flex;
      justify-content: start;
/*      align-items: center;*/
    }

    .nav_element {
      padding: 0 12px;
      cursor: pointer;
    }

    .site_btn {
      padding: 9px 14px;
      background: #4cb79e;
      border-radius: 20px;
    }

    .navbar_fixed {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1030;
      background: rgba(0, 0, 0, 0.75);
    }


    

/************************************************Navbar End*************************************/

/************************************************Footer Start*************************************/

.section_12{
            background: #212325;
            background: linear-gradient(to right, #1d1f21 40%, #212325 40%);
            padding: 20px 110px;
        }

        .section_12 img{
            height: 60px;
            margin-right: 20px;
        }

        .section_12 h3{
        font-size: 20px;
        font-weight: 400;
        letter-spacing: 1px;
        line-height: 28px;
        color: #fff;
        text-transform: uppercase;  
        }

        .section_12 h3 strong{
        font-weight: 600;
        font-size: 30px;
        letter-spacing: 1px;  
        }

        .section_12 .sec_12_col_2 div{
            position: relative;
            border-radius: 30px;
            background: #fff;
            
            
            width: 70%;
            
            border: none;
            outline: none;
            padding: 0 20px;
            height: 70%;
        }

        .section_12 .sec_12_col_2 input{
            border-radius: 30px;
            background: #fff;
            
            
            width: 100%;
            
            border: none;
            outline: none;
            padding: 0 20px;
            height: 100%;
        }

        .section_12 .sec_12_col_2 button{

            position: absolute;
            top: 0;
            right: 0;
            height: calc(100% - 8px);
            width: 120px;
            border: none;
            border-radius: 60px;
            outline: none;
            margin: 4px;
            padding: 0 20px;
            cursor: pointer;
            background: #4cb79e;
            color: #FFFFFF;
            transition: width .35s ease-in-out, background .35s ease-in-out;

        }

        .footer{
            background: #12161a;
            padding: 20px 110px;
            color: #ffffff;
        }
        #footer_div{
          padding: 20px 110px;
        }
        /*.footer, .section_12{
      padding: 20px 110px !important;
    }*/


        .footer .logo_div a img{
            width: 80%;
            margin-left: -20px;
        }
        .footer .logo_div h6{
        color: #4cb79e;
        margin: 20px 0px;
        }

        .footer .logo_div i{
            color: #ffffff;
            font-size: 25px;
            margin-right: 10px;
        }
        .footer .logo_div div{
            margin-bottom: 20px;
        }

        .footer .useful_links h6{
        color: #4cb79e;
        margin: 20px 0px;
        }
        .footer .useful_links div{
            margin-bottom:10px;
        }
        .address_div h6{
        color: #4cb79e;
        margin: 20px 0px;
        }
        .address_div div{
            margin-bottom: 20px;
        }
        .address_div i{
            color: #ffffff;
            font-size: 20px;
            margin-right: 10px;
            margin-top: 5px;
        }
        .copy_right_div{
            padding-left: 0px;
            padding-top: 20px;
        }
        .footer_section_2 a{
            text-decoration: none;
            color: #ffffff;
            padding-left: 20px;
        }
        .footer_section_2{
            padding-right: 0px;
        }

/************************************************Footer Start*************************************/
@media (max-width: 767.98px) {
  .content_position_hide {
    display: none !important;
  }
  .content_position_end{
    justify-content: start;
  }
  .mobile-nav .site_btn {
    width: 50%;
    margin-top: 10px;
    text-align: center;
    padding: 10px 10px;
    border-radius: 30px;
    margin-left: 0px;
    }
  .menu-toggle{
    font-size: 40px;
  }
  .nav_d_flex_center{
   
    justify-content: space-between;
    }
  .footer{
    padding-left: 30px !important;
    padding-top: 30px !important;
    padding-right: 20px !important;
  }
  .footer_section_2 a{
    padding-left: 0px;
    margin-right: 10px;
  }
  /* Mobile Sub-menu style (opens below instead of side) */
  /* General sub-menu hidden by default */
/* Ensure mobile menu sub-menus appear vertically */
.mobile-nav .sub-menu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  position: static; /* No absolute/right alignment */
  background: none;
  box-shadow: none;
}

.mobile-nav .has-sub.active > .sub-menu {
  display: flex;
}

.mobile-nav .dropdown-item {
  padding: 10px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  background: #1c1717cf;
}

.mobile-nav .has-sub {
  font-weight: bold;
  cursor: pointer;
/*  padding: 10px 15px;*/
}

/* Optional: Add indicator caret for submenu items */
.mobile-nav .has-sub::after {
  content: "▼";
  float: right;
  font-size: 12px;
  margin-left: 8px;
  transform: rotate(0deg);
  transition: transform 0.3s;
}

.mobile-nav .has-sub.active::after {
  transform: rotate(180deg);
}

/* Account dropdown styles */
.custom-account-dropdown {
  padding: 10px 0px;
  cursor: pointer;
}

.custom-account-dropdown ul.account-menu {
  display: none;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
}

.custom-account-dropdown ul.account-menu li {
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.custom-account-dropdown ul.account-menu li a {
  text-decoration: none;
  color: #333;
}

.custom-account-dropdown.open ul.account-menu {
  display: flex;
}

.dropdown-item.has-sub .sub-menu{
  position: static;
  background: #1c1717cf;
}
.sub-menu .dropdown-item:hover {
    background-color: #1c1717cf;
}
.dropdown-item
{
  border:none;
}
.sub-menu .dropdown-item{
  border:none;
}

.account-toggle{
  padding: 10px 30px;
  width: 50%;
}
.mobile-nav{
  padding-top: 40px;
}


}



