
html {
    scroll-behavior: smooth;
}
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

.test img{
    max-height: 50px;
}

/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 20px 20px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 15px 15px;
    color: var(--bs-dark) !important;
}


.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    /*color: var(--bs-white) !important;*/
    background: rgb(229, 149, 1);
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}
.navbar-light .navbar-brand h3 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}
.sticky-top.navbar-light .navbar-brand h3 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}


.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}
.logo-on-scroll {
    display: none;
    transition: opacity 0.3s ease-in-out;
}
.logo-visible {
    display: block !important;
    opacity: 1;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .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;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}


@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));*/
    background-size: cover;
}
.carousel-caption .top-left {
    position: absolute;
    top: 100px; /* المسافة من أعلى الصورة */
    left: 150px; /* المسافة من يسار الصورة */
    text-align: left; /* لمحاذاة النص إلى اليسار */
}
.carousel-caption .top-left1 {
    position: absolute;
    top: 230px; /* المسافة من أعلى الصورة */
    left: 480px; /* المسافة من يسار الصورة */
    text-align: left; /* لمحاذاة النص إلى اليسار */
}
.carousel-caption .top-left2 {
    position: absolute;
    top: 200px; /* المسافة من أعلى الصورة */
    left: 360px; /* المسافة من يسار الصورة */
    text-align: left; /* لمحاذاة النص إلى اليسار */
}
.carousel-caption .top-left3 {
    position: absolute;
    top: 100px; /* المسافة من أعلى الصورة */
    left: 39%; /* المسافة من يسار الصورة */
    text-align: left; /* لمحاذاة النص إلى اليسار */
}
.carousel-caption .top-right {
    position: absolute;
    top: 200px; /* المسافة من أعلى الصورة */
    right: 10%;
    text-align: center; /* لمحاذاة النص إلى اليمين */
}

.carousel-header .carousel-inner .carousel-item .logo-overlay {
    position: absolute;
    top: 115px; /* المسافة من الأعلى */
    left: 100px; /* المسافة من اليسار */
    width: 350px; /* حجم اللوغو */
    height: auto; /* الحفاظ على نسبة العرض إلى الارتفاع */
    z-index: 10; /* وضعه فوق الصورة */
}


/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb1 {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/Shared-Hosting.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb1 .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
.bg-breadcrumb2 {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/vps-hosting.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}
.bg-breadcrumb2 .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
.bg-breadcrumb3 {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/dns2.JPG);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}
.bg-breadcrumb3 .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
.bg-breadcrumb4 {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/contact-us.jpg);
    background-repeat: no-repeat;
    background-size:contain;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}
.bg-breadcrumb4 .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
.bg-breadcrumb5 {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/ssl2.avif);
    background-repeat: no-repeat;
    background-size:cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}
.bg-breadcrumb5 .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}

.bg-breadcrumb6 {
    background: url(../img/pricing-banner.jpg);
    background-repeat: no-repeat;
    background-size:cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}
.bg-breadcrumb6 .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}

.bg-breadcrumb7 {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/tld.JPG);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}
.bg-breadcrumb7 .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
.bg-breadcrumb9 {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/domain.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}
.bg-breadcrumb9 .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/

/*** Services Start ***/

.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-content h5 a,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
.service .service-content-inner1 .service-content {
    color: black;
    
}
.table-bordered,
.table-bordered th,
.table-bordered td {
    border: 1px solid black !important;
}


/* في الشاشات الصغيرة (عرض أقل من 768px) */
@media (max-width: 768px) {
    /* تقليل حجم الخط في الجدول */
    .table {
        font-size: 0.8rem; /* تصغير الخط لتناسب الشاشات الصغيرة */
        width: 100% !important; /* تأكد من أن الجدول يأخذ عرض الحاوية بالكامل */
    }

    /* إضافة بعض التباعد بين الأعمدة في الجدول */
    .table th, .table td {
        padding: 0.2rem; /* تقليل المسافة بين الخلايا لتوفير المساحة */
    }

    /* تقليل حجم الخط في النصوص داخل الحاوية */
    .service-content {
        font-size: 0.9rem; /* تقليل حجم النصوص قليلاً في الشاشات الصغيرة */
    }
    
    /* ضبط عرض الأعمدة في الجدول ليتناسب مع العرض */
    .table th, .table td {
        word-wrap: break-word; /* لتجنب تجاوز النص في الأعمدة */
    }
    .service-content-inner1 {
        padding: 0.5rem;
        
    }
    
}

/*** Service End ***/

/** Counter **/
.stats-container {
   
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-left: 50px;
    margin-right: 50px;
    padding-inline: 16px;
  }
  
  .stats-container .stat {
    padding: 24px;
    text-align: center;
    color: var(--bs-primary);
  }
  
  .stats-container .stat .odometer {
    font-size: 50px;
    font-weight: bold;
    display: inline-block;
  }
  
  .stats-container .stat .type {
    font-size: 20px;
    
  }
  
  .odometer.plus {
    position: relative;
  }
  
  .odometer.plus::after {
    content: "+";
    position: absolute;
    top: 0;
    right: -16px;
    font-size: 20px;
  }
  
  @media (max-width: 700px) {
    .stats-container {
      grid-template-columns: 1fr;
    }
  }



/*** Footer Start ***/
.footer {
    background-color: #07294d;
}
.footer .footer-item a {
    line-height: 50px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: orange;
}
.google-map {
    padding-bottom: 50%;
    position: relative;
}

.google-map iframe {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #07294d;
    /*background: #06597d;*/
}
/*** copyright end ***/

/* استعلام وسائط للشاشات الصغيرة (الهواتف المحمولة) */
@media (max-width: 767px) {

    /* تخصيص الصورة في الـ Carousel */
  
    .carousel-img {
        width: auto;
        max-height: 300px; /* تقليل ارتفاع الصور */
    }
    .carousel-caption h1 {
        font-size: 20px;
        line-height: 1.2;
        font-weight: bold;
    }
    .carousel-caption h2 {
        font-size: 30px;
        line-height: 1.2;
        font-weight: bold;
        text-align: center;
    }

    .btn-hover-bg {
        padding: 10px 20px;
    }

    /* تقليل حجم الأزرار */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        padding: 10px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        top: 50%;
        transform: translateY(-50%);
    }

    
    .top-left,
    .top-left1,
    .top-left2,
    .top-left3{
        position: absolute;
        transform: translate(-50%, -50%);  /* توسيط النص داخل الصورة */
        color: white;
        text-align: center;
        width: 100%;
        padding: 10px;
        box-sizing: border-box;        
    }
    .carousel-caption .top-left{
        top: 20%; /* المسافة من أعلى الصورة */
        left: 55%;
    }
    .carousel-caption .top-left1{
        top: 20%; /* المسافة من أعلى الصورة */
        left:70%;
    }
    .carousel-caption .top-left2{
        top: 20%; /* المسافة من أعلى الصورة */
        left: 70%;
    }
    .carousel-caption .top-left3{
        top: 20%; /* المسافة من أعلى الصورة */
        left: 70%;
    }
    .carousel-header .carousel-inner .carousel-item .logo-overlay {
        top: 300px; /* تعديل المسافة من الأعلى */
        left: 160px; /* تعديل المسافة من اليسار */
        width: 120px; /* تصغير حجم اللوغو */
    }

}


