/* Common Css */
/* In your-custom-styles.css */
@font-face {
  font-family: 'Font Awesome 6 Free'; /* Example, verify the font-family */
  font-style: normal;
  font-weight: 900;
  font-display: swap; /* Add this line */
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/webfonts/fa-brands-400.woff2") format("woff2"),
        url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/webfonts/fa-solid-900.woff2") format("woff2");
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}
ul, ol, li {
}
/* Basic button styling */
#back-to-top {
    position: fixed;
    bottom: 18px;
    right: 20px;
    display: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;  
    background-color:#ffffff;
}
#back-to-top i {
    color:#2aa278;
}
#back-to-top:hover {
    background-color:#2aa278;
}
#back-to-top:hover i {
    color:#ffffff;
}
#back-to-top.show {
    display: block;
}
/* Basic button styling */
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px; 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; 
    height: 60px; 
    border-radius: 50%;
    background-color: #25D366;
    color: #fff;
    font-size: 24px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000; 
    text-decoration: none;
    transition: background-color 0.3s;
    border:0px;
}
.color1 {
    color:#001e57
}
.color2 {
    color:#f9ad00;
}
.bg-dark-blue {
    background-color: #031331;
}
.bg-dark-blue-1 {
    background-color: #001e57;
}
.bg-yellow {
    background-color:#f9ad00;
}
.custom-btn {
    background-color:#f9ad00;
    padding: 10px 20px;
}
.custom-btn:hover {
    color:#ffffff;
    background-color:#031331;
    padding: 10px 20px;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: rgb(255 255 255 / 75%);
}

/* Header CSS */
.top-header-mail-sec {
    height: 100%;
    width: 42%;
}
.header-menu .navbar-nav a.nav-link {
    font-weight: 500;
}
.header-menu .navbar-nav .nav-link.active, .header-menu .navbar-nav .nav-link.show {
    color: #001e57;
}
.header-menu .navbar-nav .dropdown-menu {
    background-color: rgb(38, 38, 38);
    border-radius: 0;
    padding: 0;
}
.header-menu .navbar-nav .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-menu .navbar-nav .dropdown-menu li a.dropdown-item {
    position: relative;
    display: block;
    line-height: 24px;
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    text-transform: capitalize;
    padding: 11px 25px;
    transition: 500ms;
}
.header-menu .navbar-nav .dropdown-menu li a.dropdown-item:hover {
    background-color: #f9ad00;
}
.header-menu .navbar-nav .dropdown-menu li:last-child {
    border-bottom: 0;
}
.header-menu .navbar-nav a.nav-link.dropdown-toggle span {
    border: 1px solid #fff;
    padding: 5px;
    line-height: 0;
    font-size: 11px;
}

/* Footer styles */

/* index.php code */
.counter-sec {
    /* background-attachment: fixed; */
    background-image: url('../images/counter-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
#counter-section .counter {
    color: #001e57;
    font-size: 50px;
    font-weight: 500;
}
#counter-section .counter-label {
    color: #000000!important;
    font-size: 20px;
}
.expertise-bg {
    background-attachment: fixed;
    background-image: url('../images/experties-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
ul.custom-list {
  list-style: none; 
  padding-left: 0;
}
#expertise ul li {
    position: relative;
    padding-left: 30px;
}
ul.custom-list li::before {
  content: "\f061"; 
  font-family: "Font Awesome 6 Free";
  font-weight: 900; 
  color: #f9ad00;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 0;
}
.exp-item {
    background-color: #f8f9fa;
    border-bottom: 5px solid #001e57;
    transition: 
    background-color 0.4s ease-out,
    border-color 0.4s ease-out,
    box-shadow 0.4s ease-out;
  padding: 1rem;
}
.exp-item:hover {
  background-color: #ffffff;
  border-bottom-color: #f9ad00; /* new border color on hover */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* subtle shadow */
}
.number {
    font-size: 58px;
    color: #001e57;
}

@media (min-width: 992px) {
    /* Header CSS */
    .header-menu .navbar-nav .hover-dropdown:hover > .dropdown-menu {
        display: block !important;
    }
}
@media only screen and (max-width: 991px) {
    /* Header CSS */
    .header-menu .navbar-nav li.nav-item {
        background: #011f57;
        border-bottom: 1px solid #fff;
    }
    .header-menu .navbar-nav .nav-link {
        padding-left: 10px;
        padding-right: 10px;
    }
    .header-menu .navbar-nav .nav-link {
        color: #ccc;
    }
    .header-menu .navbar-nav .nav-link.active, .header-menu .navbar-nav .nav-link.show {
        color: #fff;
    }
    .header-menu .navbar-nav .dropdown-menu {
        background-color: rgb(1 31 87);
    }
    .header-menu .navbar-nav .dropdown-menu li {
        border-bottom: 1px solid rgb(255 255 255 / 38%);
    }
    .header-menu .navbar-nav a.nav-link.dropdown-toggle.show {
        border-bottom: 1px solid #fff;
    }
    .header-menu .navbar-nav a.nav-link.dropdown-toggle::after {
        display: none;
    }
    .header-menu .navbar-nav .hover-dropdown:hover > .dropdown-menu {
        display: none !important;
    }
    .header-menu .navbar-nav .hover-dropdown > .dropdown-menu {
        display: none !important;
    }
}
