/********** Template CSS **********/
:root {
    --primary: #0088cc;
    --secondary: #ff0f10;
    --light: #f2f2f2;
    --dark: #1d2833;
}

@font-face {
    font-family: CairoSemi;
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/Cairo-SemiBold.ttf") format("truetype");
}
/* [dir="rtl"] *, html[lang="ar"] * {
    direction: rtl;
} */
body {
    direction: rtl;
    font-family: CairoSemi !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition:
        opacity 0.5s ease-out,
        visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}

/*** Button ***/
.btn {
    font-family: CairoSemi !important;
    font-weight: 500;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 8px;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    position: fixed;
    left: 20px;
    bottom: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 40px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation:
        ring 2s infinite ease-in-out,
        pulse 1.5s infinite ease-in-out;
}

.whatsapp-float:hover {
    background-color: #20b857;
    transform: scale(1.1);
    color: #fff;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
@keyframes ring {
    0% {
        transform: rotate(0);
    }
    10% {
        transform: rotate(15deg);
    }
    20% {
        transform: rotate(-15deg);
    }
    30% {
        transform: rotate(10deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(5deg);
    }
    60% {
        transform: rotate(-5deg);
    }
    70%,
    100% {
        transform: rotate(0);
    }
}
/*** Navbar ***/
.navbar {
    background-color: #ffffff;
}
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    font-family: CairoSemi !important;
    color: #272727 !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #ffffff;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #ffffff;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #dddddd;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #ffffff;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }
}

/*** Hero Header ***/
.hero-header {
    background:
        url(../img/bg-round.png), url(../img/bg-round-2.png), url(../img/bg-square.png), url(../img/bg-line.png);
    /* url(../img/bg-bottom-hero.png); */
    background-position:
        0px 40%,
        right 0 top 0,
        left 50% top 0,
        left 50% top 50%,
        center bottom -1px;
    background-repeat: no-repeat;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 11px;
    bottom: 0;
    left: 0;
    border-top: 1px solid #5a5a5a;
    border-bottom: 1px solid #5a5a5a;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 1px;
    bottom: 5px;
    left: 0;
    background: var(--primary);
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -30px;
}

.section-title.text-center::after {
    width: 120px;
    left: 50%;
    margin-left: -60px;
}

/*** Domain Search ***/
.domain {
    background: url(../img/bg-domain.png) center center no-repeat;
    background-size: contain;
}

/*** Comparison ***/
@media (min-width: 992px) {
    .comparison::after {
        position: absolute;
        content: "";
        width: 1px;
        top: 56px;
        bottom: 20px;
        left: 50%;
        background: #dddddd;
    }
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--secondary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item .position-absolute {
    background: var(--secondary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #ffffff;
}

.testimonial-carousel .owl-item.center .testimonial-item h6 {
    color: var(--dark) !important;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #dddddd;
    border-radius: 15px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: 0.5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}

/*** Footer ***/
.footer {
    /* margin-bottom: 0 !important; */
    /* padding-bottom: 0 !important; */
    background: var(--primary);
}

.footer p {
    font-size: 15px;
}

.footer .btn-social {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    transition: 0.3s;
}

.footer .btn-social:hover {
    background: #fff;
    color: var(--primary);
}

.footer a {
    font-size: 15px;
    transition: 0.3s;
    text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: CairoSemi !important;
    font-weight: 900;
    margin-right: 10px;
}

.footer a:hover {
    text-decoration: underline;
}

/*** ####### Custom ####### ***/
.secTitle::before,
.secTitle::after {
    display: none;
}

.section-gap {
    position: relative;
    padding: 40px 0;
}
.bg1 {
    background: #fbfbfb;
}
.section-header.gap-bottom {
    margin-bottom: 30px;
}
.section-header {
    position: relative;
}
.service-three {
    border: 1px solid rgba(102, 112, 147, 0.2);
    border-radius: 8px;
    padding: 24px;
    height: 100%;
    transition: all 0.4s;
}
.service-three:hover {
    border-color: transparent;
    box-shadow: 0 10px 48px rgb(0 0 0 / 15%);
}

.server-table {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
}
.server-table thead {
    background: var(--main-color);
    color: #0088cc;
}
.server-table th,
.server-table td {
    vertical-align: middle;
    text-align: center;
    padding: 14px;
}
.server-table tbody tr {
    transition: all 0.3s ease;
}
.server-table tbody tr:hover {
    background: rgba(0, 136, 204, 0.08);
    transform: scale(1.01);
}
.btn-order {
    background: var(--main-color);
    color: #0088cc;
    border-radius: 30px;
    padding: 6px 18px;
    transition: all 0.3s ease;
}
.btn-order:hover {
    background: #006699;
    color: #fff;
    transform: translateY(-2px);
}
.support {
    padding: 50px 50px;
    border-radius: 15px;
}
.section-header h2 {
    font-size: clamp(28px, 5vw, 35px);
    font-weight: 700;
    line-height: 1.4;
    display: block;
    color: #081131;
}
.section-header p {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}
.support ul {
    list-style: none;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 50px;
}
@media (max-width: 575px) {
    .support ul {
        flex-direction: column;
    align-items: flex-start;
        gap: 20px;
    }
}
.support i {
    font-size: 40px;
    color: #0088cc;
    margin-bottom: 10px;
}
.support .imgicon img {
    max-width: 100%;
    height: auto;
}
.partner-section .logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}

.partner-section .item {
    border: 1px solid hsl(0deg 0% 95.28%);
    /* border-radius: 12px; */
    position: relative;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
}
.partner-section .item::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 3px;
    background-color: transparent;
    transition: 300ms;
}
.partner-section .item:hover::after {
    background-color: var(--primary);
}

.partner-section .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partner-section figure {
    width: 280px;
    height: 160px;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.partner-section figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


