:root {
    --theme-color: #0d5ef4;
    --theme-color2: #f20f10;
    --title-color: #0f2239;
    --body-color: #4d5765;
    --smoke-color: #f3f7fb;
    --black-color: #000;
    --white-color: #fff;
    --light-color: #72849b;
    --yellow-color: #ffb539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #ecf1f9;
    --title-font: 'Jost', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --icon-font: "Font Awesome 5 Free";
    --main-container: 1380px;
    --container-gutters: 24px;
    --section-space: 70px;
    --section-space-mobile: 50px;
    --section-title-space: 30px;
    --ripple-ani-duration: 5s;
    --ripple-ani-duration: 5s;
    --font-large: 40px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
header.sticky {
    background-color: #111;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 0.5rem 2.5rem !important;
}
header .btn-gradient {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    width: 140px;
    height: 47px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(137.02deg, #ef0 1.7%, #1c84a3 86.13%);
    border: none;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}
header .btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(137.02deg, #ef0 1.7%, #1c84a3 86.13%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
header .btn-gradient:hover {
    background: transparent;
    color: #fff;
}
header .btn-gradient:hover::before {
    opacity: 1;
}
a.header-link {
    font-size: 14px;
    color: #ececec;
}
a.header-link:hover {
    background: linear-gradient(137.02deg, #ef0 1.7%, #1c84a3 86.13%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
ul.dropdown-menu.dropdown-menu-dark {
    background: #000;
}

ul.dropdown-menu.dropdown-menu-dark .dropdown-item{
font-size: 12px;
line-height: 28px;
}

header nav.custom-gap {
    gap: 3rem ;
}
.bordder-left {
    border-left: 1px solid #302b2b;
    padding: 1px;
    height: 28px;
    width: 1px;
}
img.dots-logo{
    height: 58px;
}
header .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
}

header .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background: #000 !important;
}

header .accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-size: 14px;
    padding: 0;
    box-shadow: none !important;
}

/* Remove Bootstrap ka default ::after arrow */
header .accordion-button::after {
    display: none !important;
}

/* Rotate FA icon jab open ho */
header .accordion-button .fa-chevron-down {
    transition: transform 0.3s ease;
}
header .accordion-button:not(.collapsed) .fa-chevron-down {
    transform: rotate(180deg);
}

.mobile-menu a{
    font-size: 14px !important;
    padding-bottom: 10px;

}
header .accordion-button, .accordion-button:not(.collapsed) {
    color: #fdfdfd !important;
    background-color: transparent !important;
    box-shadow: none !important;
    font-weight: 500;
    display: flex
;
    justify-content: end;
    width: 50%;
    padding-bottom: 10px;
}
header .accordion-body {
    background-color: transparent;
    padding: 10px;
}
a.aspire-header-logo img {
    height: 52px;
}