@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/Manrope-Bold.ttf') format('truetype');
    font-weight: 700; /* Normal weight */
    font-style: normal;
}
@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope/Manrope-Regular.ttf') format('truetype');
    font-weight: 400; /* Normal weight */
    font-style: normal;
}
body, p, span {
    font-family: 'Manrope', sans-serif;
    font-weight:400;
    font-size: 17px;
}
h1, h2, h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700; /* Bold */
}
/* Custom font size class */
.fs-54 {
    font-size: 54px;
}
.fs-70 {
    font-size: 70px;
}
/* custom background */
.service-box{
    background-color: #F4F5F6;
}
.service-box:hover {
     background: linear-gradient(90deg, rgba(9, 74, 121, 1) 35%, rgb(25 120 189) 100%);
}
.dark-bg {
    /*background: linear-gradient(90deg, rgba(9, 74, 121, 1) 35%, rgb(24 201 237) 100%);*/
    background-color: #094a79;
}
.bg-light-blue {
   /*background-color:#f8fbff; */
   background-color: #edf5ff;
}
.color-1{
    color: #094a79;
}

.top-bar {
   background-color: #f4f5f6
}
.custom-text-color, .icon-custom-color {
    color: #2762ad!important;
}
.img-gray:hover {
    filter: grayscale(1);
}

#enqForm .form-control{
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 1px solid #3f4e5033;
    border-radius:0px;

}
#enqForm .form-control:focus {
    box-shadow: none;
}
.custom-btn {
    border-radius: 6px;
    background-color: #094a79;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 0.48px;
    line-height: 1;
    padding: 22px 29px;
    position: relative;
    align-items: center;
    display: inline-flex;
    gap: 4px;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}
.custom-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 102% 102%;
    border-radius: inherit;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    opacity: 0;
    z-index: -1;
}
.custom-btn::after {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    opacity: 0;
    transform: translate(0, 100%);
    transition: opacity 0.2s, transform 0.2s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    white-space: nowrap;
}
.custom-btn.cust-btn-white {
    background-color: #fff;
    color: #094a79;
}
.custom-btn:hover {
    color: #ffffff;
    background-color: #000000;
}
.custom-btn.cust-btn-white:hover {
    background-color: #f4f5f6;
    color: #000;
}
.custom-btn > span {
    transition: opacity 0.2s, transform 0.2s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.custom-btn > span {
    transition: opacity 0.2s, transform 0.2s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.custom-btn:hover::before {
opacity: 1;
}
.custom-btn:hover > span {
transform: translateY(-150%);
opacity: 0;
}
.custom-btn:hover::after {
transform: translate(0%, -50%);
opacity: 1;
}
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    padding: 10px 15px;
    font-size: 16px;
    text-align: center;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);*/
    z-index: 1000;
    background-color: #094a79;
    border:1px solid #ffffff;
}
#back-to-top.show {
    display: block;
}
.navbar-nav .dropdown-menu {
    width:250px;
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    z-index: 1000;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fade-down 0.45s linear; 
}
.dropdown-arrow {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}
.nav-item.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.dropdown-menu li a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    border-bottom:1px solid #ededed;
}
.dropdown-menu li a:hover {
    color: #2762ad;
}
@media (max-width: 767px) {
    .navbar-nav .dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        padding: 0 0;
    }
    .navbar-nav .dropdown.show .dropdown-menu {
        display: block;
    }
}