:root {
    --main: #4EA8FF;
    --sec: #EDF6FF;
    --text: #5A5A5A;
    --white: #fff;
    --black: #000;
}

/* Font Face */
@font-face {
    font-family: 'SomarSans';
    src: url('../../webfonts/Standard/SomarSans-Black.otf') format('opentype');
    font-weight: 900;
}

@font-face {
    font-family: 'SomarSans';
    src: url('../../webfonts/Standard/SomarSans-Bold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'SomarSans';
    src: url('../../webfonts/Standard/SomarSans-Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'SomarSans';
    src: url('../../webfonts/Standard/SomarSans-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'SomarSans';
    src: url('../../webfonts/Standard/SomarSans-Light.otf') format('opentype');
    font-weight: 300;
}

/* Global Styles */
body,
* {
    direction: rtl;
    font-family: 'SomarSans';
}

body {
    background-image: url('../../images/bg.webp');
    background-position: center;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

main {
    overflow: hidden;
    position: relative;
}

p {
    font-weight: 400;
    color: var(--text);
    line-height: 1.5;
    text-align: justify;
}

p.head {
    font-weight: 700;
    color: var(--black);
}

p .main {
    color: var(--main);
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    transform: translateY(-10px);
    transition: all 0.6s ease;
    z-index: 1;
}

.navbar.scrolled {
    background: var(--white);
    backdrop-filter: blur(50px);
    z-index: 10;
    transform: translateY(0);
    box-shadow: var(--bs-box-shadow-sm);
}

@media screen and (max-width: 1100px) {
    .navbar {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        background: white;
        transform: translateY(-10px);
        transition: all 0.6s ease;
        z-index: 3;
    }
}


/* Navbar Links */
nav .navbar-nav .nav-link {
    position: relative;
    font-weight: 400;
    color: var(--black);
    border-bottom: 1px solid transparent;
    transition: 0.5s;
}

nav .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--main);
    bottom: 0;
    right: 0;
    transition: 0.5s;
}

nav .navbar-nav .nav-link:hover::after,
nav .navbar-nav .nav-link.active::after {
    width: 100%;
}

nav .navbar-nav .nav-link.active {
    color: var(--main);
}

/* Language Switch */
nav .navbar-nav .nav-item.lang .nav-link {
    background-color: var(--sec);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: 0.5s;
}
.icon_products{
    color: #50a6ff;
    font-size: 15px;
}

nav .navbar-nav .nav-item.lang .nav-link:hover {
    background-color: var(--main);
    color: var(--white);
}

/* Floating Background Shape */
main::before {
    content: '';
    position: absolute;
    background-color: var(--sec);
    width: 300px;
    height: 300px;
    top: 0;
    left: 0;
    border-radius: 50%;
    transform: translate(-10%, -50%);
    z-index: -1;
    animation: move-nav-shape 5s infinite ease-in-out;
}

@keyframes move-nav-shape {

    0%,
    100% {
        transform: translate(-10%, -50%) scale(1);
    }

    50% {
        transform: translate(-40%, -40%) scale(1.1);
    }
}

/* Button Animation */
.animated-button {
    background-color: var(--main);
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    border: none;
    font-size: 16px;
    border-radius: 100px;
    font-weight: 600;
    box-shadow: 0 0 0 2px #ffffff20;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    color: var(--white);
}

.animated-button span:first-child {
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.animated-button span:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: var(--sec);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.animated-button:hover {
    box-shadow: 0 0 0 5px #2195f360;
    color: var(--text);
}

.animated-button:hover span:last-child {
    width: 150px;
    height: 150px;
    opacity: 1;
}

.animated-button:active {
    scale: 0.95;
}

/* end main button */

/* start breadcrumb */
.section-breadcrumb {
    position: relative;
    background-color: #1B3B59;
    overflow: hidden;
}

.section-breadcrumb .container {
    position: relative;
    /* z-index: 1; */
}

.breadcrumb-item,
.breadcrumb-item a {
    color: #e3e3e3;
}

.section-breadcrumb p,
.breadcrumb-item.active {
    color: var(--white);
}

.section-breadcrumb::after {
    content: '';
    position: absolute;
    background: url('../../images/blog- BG.webp') no-repeat left center;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(1);
    animation: bg-moving 10s infinite ease-in-out;
    z-index: 0;
}

@keyframes bg-moving {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.text-shadow {
    font-size: 50px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%, 10%);
    z-index: 1;
    background: transparent;
}

.accordion-button::after {
    margin-left: 0;
    margin-right: auto;
}

.owl-carousel .owl-stage-outer{
    direction: ltr;
}

.owl-carousel .card * {
    direction: rtl
}

footer {
    background-color: var(--main);
    position: relative;
}

footer::after {
    position: absolute;
    content: '';
    background-image: url('../../images/footer-bg.webp');
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer p,
footer ul li a {
    color: var(--white) !important;
    text-align: justify;
}

footer ul {
    color: white;
}



footer ul li a {
    color: white;
    transition: opacity 0.6s, transform 0.6s, color 0.6s;
    font-weight: 300;
}

.sec-footer {
    background-color: #1B3B59;
}

.icon-socail .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: white;
    border: 1px solid white;
    border-radius: 4px;
    box-shadow: -1px 1px #f8f9fa;
}

/* end footer */

@media screen and (max-width: 768px) {
    .text-shadow {
        font-size: unset;
    }

}
.footer-font{
    font-size: 13px;
}


.main-menu-main-links .down-arrow {
    margin-left: 5px;
    transition: 0.3s;
}

.main-menu-li:hover .down-arrow {
    rotate: -180deg;
}

.dropdown-mega-menu {
    position: absolute;
    top: 70%;
    left: 0;
    width: 100%;
    background-color: #EDF6FF;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: none;
    transition: 0.3s;
    z-index: 1000;
    max-height: 65vh;
    overflow: auto;
}
    @media (min-width: 968px) { 
         .main-menu-li:hover .dropdown-mega-menu {
        display: block;
         }
    }
.dropdown-col {
    display: flex;
    flex-direction: column;
}

.head-icon h4 {
    font-size: 18px;
    text-transform: capitalize;
    margin: 0;
}

.head-icon img {
    width: 100px;
    border-radius: 5px;
    height: 140px;
    object-fit: contain;
}

.content a {
    text-decoration: none;
    color: #212529;
    display: flex;
    align-items: center;
    font-size: 16px;
    margin: 5px 0;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

.content a i {
    margin-left: auto;
    opacity: 0;
    transition: 0.3s;
}

.content a:hover i {
    opacity: 1;
    margin-left: 10px;
    color: #64c8ff;
}


@media screen and (max-width: 768px) {
    .dropdown-mega-menu {
        position: unset;
        width: 100%;
        background-color: #EDF6FF;
        border-radius: 5px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        padding: 15px;
        display: none;
        transition: 0.3s;
        z-index: 1000;
    }

    .dropdown-col h4{
        font-size: 15px;
    }
}
.owl-theme .owl-nav {
    display: none;
}
.dropdown-mega-menu {
    display: none;
}

.dropdown-mega-menu.active {
    display: block;
}
.our-services .img-card,
.our-blogs .img-card {
    width: 100%;
    height: 230px;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}
.customers figure,
.customers .logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    aspect-ratio: 1 / 1;

}

.customers figure {
    position: relative;
    background-color: #EDF6FF;
    border-radius: 50%;
}

.customers figure::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(1.1);
    background-color: var(--sec);
    border-radius: 50%;
    animation: move-nave-shep 5s infinite ease-in;
    z-index: -1;
}

.des{
    -webkit-line-clamp: 2;
    display: -webkit-box;
    overflow-y: clip;
    -webkit-box-orient: vertical;
}


.accordion-button {
    background-color: #cfe2ff !important;
}

.accordion-button::after {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.phone-direction{
    direction: ltr;
}

.icon-products {
    font-size: 6px;
    color: black;
}