
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&family=Inter:wght@100;300;400;500;700;800;900&family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

/* Style the main browser scrollbar */
::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* Color of the track */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scroll handle */
    border-radius: 6px; /* Rounded corners */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker color on hover */
}

:root {

    /* Color Styles */
    --primary: #0044A0;
    --primary-light: #0c66d9;
    --dark-brown: #272D4E;
    --gray-1: #798092;
    --gray-2: #E6E6ED;
    --white: #FFFFFF;

    /* Font Size Desktop */
    --header-1: 64px;
    --header-2: 48px;
    --header-3: 42px;
    --header-4: 32px;

    --text-medium: 18px;
    --text-regular: 16px;
    --text-light: 13px;

    /* Font Weight */
    --font-weight-bold: 700;
    --font-weight-semi-bold: 600;
    --font-weight-medium: 500;
    --font-weight-regular: 400;
    --font-weight-light: 300;
}


.btn {
    padding: 15px 25px;
    border-radius: 6px;
    font-weight: var(--font-weight-medium);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
}

.btn-primary:focus {
    background-color: var(--primary-light);
}

.btn-primary:hover {
    background-color: var(--primary-light);
}


.nav-primary-txt{
    color: var(--primary);
}



#MainNavBar {
    z-index: 1000!important;
}

.header-sections {
    background-color: var(--primary);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Navbar Links */
.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: #ffffff !important;
    font-size: 0.9em;
}

/* Navbar Button */
.navbar-nav .btn-primary {
    margin-left: 15px;
}


.navbar {
    padding-top: 20px;

}

.navbar_right_item div{
    padding: 0px 25px;

}

.navbar_right_item i{
    font-size: 1.6em;
}




a.nav-link {

    font-size: var(--text-regular);
    font-weight: var(--font-weight-regular);
    color: var(--dark-brown) !important;
    padding-top: 17px!important;
    padding-bottom: 17px!important;
    padding-left: 19.5px!important;
    padding-right: 19.5px!important;
}

#MainNavBar a.nav-link:hover {
    background-color: var(--primary-light) !important;
}

.navbar .nav-item .active{
    background-color: var(--primary-light) !important;
}


.social_media_badge {
    width: 40px;
    height: 40px;
    background: var(--primary) !important;
    font-size: 0.8em;
    color: #ffffff !important;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
}

.social_media_badge:hover {
    background: var(--primary-light) !important;
}

#SideNavBar {
    background: rgba(15, 23, 60, 0.78) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
}



#SideNavBar a.nav-link {

    font-size: var(--text-regular);
    font-weight: var(--font-weight-regular);
    color: #FFFFFF!important;
}

/* MOBILE VERSION ONLY */

@media (max-width: 576px) {

    /* NAVBAR */

    .navbar {
        padding-top: 0px;
    }

    a.nav-link {
        margin-right: 7px;
    }

    .navbar-collapse {
        background: var(--primary) !important;
    }

    .hero-section .hero_content{
        line-height: 2em;
    }

    .hero-section .hero_content p{
        margin-top: 20px;
    }

}



@media (max-width: 991px) {

    #SideNavBar {
        display: flex;
    }

}





/* Positioning for the dropdown */
.dropdown-with-arrow {
    position: relative;
    padding-top: 10px; /* Space for the arrow */
}

/* Arrow styling */
.dropdown-arrow {
    position: absolute;
    top: -8px; /* Position above the dropdown */
    left: 20px; /* Adjust to align under the toggle */
    width: 16px;
    height: 16px;
    background: white; /* Match the dropdown background */
    transform: rotate(45deg); /* Create a triangle with rotation */
    border-left: 1px solid #ccc; /* Add borders to match dropdown */
    border-top: 1px solid #ccc;
    z-index: 1;
}

.dropdown-with-arrow .dropdown-item {
    margin-top: 5px;
    padding-top: 7px;
    padding-bottom: 7px;
}








/* Hero Section Styles */
.hero-section {
    text-align: center;
    background: radial-gradient(rgb(58, 95, 150), rgb(15, 23, 60));
    backdrop-filter: blur(10px);
    height: 100vh;
    background-image: url("/assets/images/hero_new.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section div.nav_container {
    padding-top: 20px;
}

.hero-section div.nav_container {

    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;

}



.white-button {
    background: rgba( 255, 255, 255, 0.25 )!important;
    box-shadow: 0 8px 32px 0 rgba(0, 35, 135, 0.37) !important;
    border: white 1px solid;
    border-radius: 50px;
    backdrop-filter: blur( 4px )!important;
    -webkit-backdrop-filter: blur( 4px )!important;
}

.white-button:hover {
    border: rgba(2, 17, 99, 0.45) 1px solid;
    color: #dee2e6;
}







footer {
    background-color: #191970; /* Dark blue color */
    color: #fff; /* White text color */
    padding-top: 50px; /* Adjust the top padding as needed */
}

footer h5 {
    color: #fff; /* White heading color */
}

footer a {
    color: #fff; /* White link color */
}

footer a:hover {
    color: #ccc; /* Lighter color on hover */
}




/* Floating cart icon styles */
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1; /* Reset line-height to avoid extra height */
}

.cart-item-count {
    position: absolute;
    top: 3px;
    right: 3px;
    background-color: #e83240;
    color: #fff;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: bold;
}

.notification_dot_nav {
    position: absolute;
    top: -5px;
    right: 10px;
    background-color: #e83240;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
}

.notification_item {
    background: #f6f6f6;
}
.notification_item h7 {
    font-size: 0.8em;
    color: #3e3e3e;
    margin-bottom: 10px!important;
}

.notification_item p {
    font-size: 0.8em;
}

.notification_item small {
    font-size: 0.6em;
}

.notification_item.new_notification {
    background: #ffffff;
}

.cursor-pointer {
    cursor: pointer;
}

















#process .wrapper {
    max-width: 1080px;
    margin: 50px auto;
    padding: 0 20px;
    position: relative;
}

#process .wrapper .center-line {
    position: absolute;
    height: 100%;
    width: 4px;
    background: #95a4e7;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
}

#process .wrapper .row {
    display: flex;
}

#process .wrapper .row-1 {
    justify-content: flex-start;
}

#process .wrapper .row-2 {
    justify-content: flex-end;
}

#process .wrapper .row section {
    background: #fff;
    border-radius: 5px;
    width: calc(50% - 40px);
    padding: 20px;
    position: relative;

    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.58);
    color: #e8e8e8 !important;
}

#process .wrapper .row section::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid rgba(255, 255, 255, 0.75); /* Change the color if needed */
    top: 28px;

    z-index: 1;
    transform: rotate(90deg);

}

#process .row-1 section::before {
    right: -22px;

    transform: rotate(0deg);
}

#process .row-2 section::before {
    left: -22px;
    transform: rotate(-90deg) !important;
}

#process .row section .icon,
#process .center-line .scroll-icon {
    position: absolute;
    background: #f2f2f2;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #293caa;
    font-size: 17px;
    box-shadow: 0 0 0 4px #fff, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}

#process .center-line .scroll-icon {
    bottom: 0px;
    left: 50%;
    font-size: 25px;
    transform: translateX(-50%);
}

#process .row-1 section .icon {
    top: 15px;
    right: -60px;
}

#process .row-2 section .icon {
    top: 15px;
    left: -60px;
}

#process .row section .details,
#process .row section .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#process .row section .details .title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}


#process .row section p {
    margin: 10px 0 17px 0;
    color: #e2e2e2 !important;
}


#process .row section .bottom a:hover {
    transform: scale(0.97);
}

@media (max-width: 790px) {
    #process .wrapper .center-line {
        left: 40px;
    }
    #process .wrapper .row {
        margin: 30px 0 3px 60px;
    }
    #process .wrapper .row section {
        width: 100%;
    }
    #process .row-1 section::before {
        left: -22px;
        transform: rotate(-90deg) !important;
    }
    #process .row-1 section .icon {
        left: -60px;
    }
}



.slide_close_animation {
    transition: transform 0.5s ease-in-out;
    transform: translateX(-100%) !important;

}
.slide_open_animation {
    transition: transform 0.5s ease-in-out;
    transform: translateX(0%) !important;

}

/*
@media (max-width: 440px) {
    #process .wrapper .center-line,
    #process .row section::before,
    #process .row section .icon {
        !*display: none;*!
    }
    #process .wrapper .row {
        margin: 30px 0 3px 60px;

    }
}
*/
