/* global styles start */
:root{
    --white-color: #fff;
    --orange-color: #FF640A;
    --black-color: #000;
    --gray-color: #575757;
    --blur-color: #FFFFFF21;
    --orange-gradient: linear-gradient(360deg, #A50114 -25%, var(--orange-color) 110%);
    --main-transition: 0.3s;
    --main-line-height: 1.8;
    --arabic-font-family: "Almarai", sans-serif;
    --english-font-family: "Poppins", sans-serif;
}
body{
    font-family: var(--arabic-font-family);
    color: var(--white-color);
    background: #091325;
        overflow-x: hidden;
}
html {
        overflow-x: hidden;
    }

@media (max-width: 1200px) {
    html {
        font-size: 90%;
    }
    }
    @media (max-width: 500px) {
    html {
        font-size: 80%;
    }
    }
    @media (max-width: 400px) {
    html {
        font-size: 70%;
    }
    }
    @media (max-width: 300px) {
    html {
        font-size: 54%;
    }
}
a{
    text-decoration: none;
    color: inherit;
}
p, a, h6{
    font-size: 18px;
    line-height: var(--main-line-height);
}
.form-control,
.form-control:focus,
.form-select,
.form-select:focus{
    caret-color: var(--white-color);
    border: none;
    outline: none;
    box-shadow: none;
    background-color: var(--blur-color);
    backdrop-filter: blur(50px);
    color: var(--white-color);
}
.form-control::placeholder,
.form-select::placeholder{
    color: var(--white-color);
}
.form-control[type="email"]{
    direction: ltr;
}
.form-check-input{
    background-color: var(--blur-color);
    backdrop-filter: blur(50px);
    width: 1.5rem;
    height: 1.5rem;
}
.form-check-input,
.form-check-input:focus{
    border: none;
    outline: none;
    box-shadow: none;
}
.form-check-input:checked{
    background-color: var(--orange-color);
}

.padding-section{
    padding: 4rem 0;
}
.bg-blur{
    background-color: var(--blur-color);
    backdrop-filter: blur(50px);
}
.w-fit{
    width: fit-content;
}
.text-content p{
    font-size: 1.3rem;
    line-height: 2rem;
}
.text-content li{
    font-size: 1.1rem;
    line-height: 1.8rem;
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}
.text-content li::before{
    content: '\F590';
    font-family: bootstrap-icons !important;
    color: var(--orange-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.text-justify{
    text-align: justify;
}
.text-xs{
    font-size: 12px;
    font-weight: 400;
}
.text-sm{
    font-size: 14px;
    font-weight: 400;
}
.text-orange{
    color: var(--orange-color);
}
.border-before-text{
    border-color: var(--orange-color) !important;
}
.bg-orange{
    background: var(--orange-gradient);
}
.bg-dots{
    animation: dots 3s ease-in-out infinite;
}

.mouse-effect{
    position: relative;
    overflow: hidden;
}
.mouse-effect::after {
    content: "";
    position: absolute;
    top: var(--y, 50%);
    left: var(--x, 50%);
    transform: translate(-50%, -50%);
    width: 400px;
    height: 350px;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.15), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.mouse-effect:hover::after {
    opacity: 1;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.fade-right{
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}
.fade-right.in-view {
    opacity: 1;
    transform: translateY(0);
}

.fade-left{
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}
.fade-left.in-view {
    opacity: 1;
    transform: translateY(0);
}

.img-animate {
    opacity: 0;
    transform: scale(0.95) translateX(-40px);
    transition: all 0.7s ease;
}
.img-animate.in-view {
    opacity: 1;
    transform: scale(1) translateX(0);
}
/* global styles end */

/* icons start */
.bi-arrow-left::before{
    content: "\F138";
}
/* icons end */

/* common elemnts start */
.main-btn{
    color: var(--white-color);
    background: var(--orange-gradient);
    border-radius: 9px;
    padding: 1rem 5rem;
    font-weight: 600;
    transition: var(--main-transition);
}
.main-btn:hover{
    background: linear-gradient(-360deg, var(--orange-color) -25%, #fff 110%);
    color: #333;
}

.secondary-btn{
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 9px;
    padding: 1rem 5rem;
    font-weight: 600;
    transition: var(--main-transition);
}
.secondary-btn:hover{
    background: var(--orange-gradient);
}

@media (max-width:768px) {
    .main-btn,.secondary-btn{
        padding: 0.75rem 3.5rem;
    }
}

.main-swiper .swiper-slide .swiper-card {
    transition: background-color var(--main-transition), backdrop-filter var(--main-transition);
}

.main-swiper .swiper-slide .swiper-card:hover{
    background-color: var(--blur-color);
    backdrop-filter: blur(50px);
}
.main-swiper .swiper-slide .cover-img{
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.main-swiper-buttons .swiper-button-prev::after,
.main-swiper-buttons .swiper-button-next::after{
    font-family: bootstrap-icons !important;
    color: var(--white-color);
    background-color: var(--blur-color);
    backdrop-filter: blur(50px);
    border-radius: 50%;
    font-size: 1.2rem;
    padding: 0.5rem;
    transition: var(--main-transition);
}
@media (max-width:992px) {
    .main-swiper-buttons{
        display: flex;
        justify-content: center;
        flex-direction: row-reverse;
        gap: 4rem;
        margin-top: 2rem;
    }
    .main-swiper-buttons .swiper-button-prev,
    .main-swiper-buttons .swiper-button-next{
        position: relative;
    }
}
.main-swiper-buttons .swiper-button-prev::after{
    content: "\F12F";
}
.main-swiper-buttons .swiper-button-next::after{
    content: "\F138";
}
.main-swiper-buttons .swiper-button-prev:hover::after,
.main-swiper-buttons .swiper-button-next:hover::after{
    background: var(--orange-gradient);
}

.main-title h2,
.main-title h1{
    line-height: var(--main-line-height);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.main-title h1{
    font-size: 4.5rem;
}
.main-title h2{
    font-size: 2.75rem;
}
.main-title.title-center{
    text-align: center;
    margin-bottom: 5rem;
}
.main-title.title-center p{
    margin: 0 auto;
}

.before-title{
    position: relative;
}
.before-title::before,
.before-title::after{
    content: "";
    position: absolute;
    top: 50%;
    background: linear-gradient(-90deg, var(--white-color) 0%, rgba(3, 28, 50, 0) 100%);
    width: 40%;
    height: 1px;
}
.before-title::before{
    left: 0;
}
.before-title::after{
    right: 0;
    transform: rotate(-180deg);
}

@media (max-width:992px) {
    .before-title::before,
    .before-title::after{
        width: 33%;
    }
}

.title-box{
    transition: var(--main-transition);
}
.title-box:hover{
    color: var(--orange-color);
}

.main-categories{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 1.5rem;
}
.main-categories li:not(:first-child){
    padding-left: 1.5rem;
    border-left: 1px solid var(--gray-color);
}
.main-categories li a.active{
    color: var(--orange-color);
}

.main-search-form i,
.main-search-form button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.main-search-form i{
    left: 0;
    font-size: 1.3rem;
    margin-left: 1rem;
}
.main-search-form button{
    right: 0;
    margin-right: 1rem;
    padding: 0.7rem 4rem;
}

.arrow-btn{
    transition: var(--main-transition);
    display: flex;
    align-items: center;
}
.arrow-btn:hover{
    color: var(--orange-color);
    transition: var(--main-transition);
}
.arrow-btn i {
    display: inline-block;
}
@keyframes pulse-left {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(5px); }
    50%  { transform: translateX(0); }
    75%  { transform: translateX(3px); }
    100% { transform: translateX(0); }
}
.arrow-btn:hover i {
    animation: pulse-left 2s infinite;
}

.video-play-btn img {
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 2;
}
.video-play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(165, 1, 20, 0.5);
    border-radius: 50%;
    transform: translate(50%, -50%);
    animation: pulse-glow 1.5s infinite ease-in-out;
    z-index: 0;
}
@keyframes pulse-glow {
    0% {
        transform: translate(50%, -50%) scale(1);
        opacity: 0.8;
    }
    70% {
        transform: translate(50%, -50%) scale(1.8);
        opacity: 0;
    }
    100% {
        transform: translate(50%, -50%) scale(2);
        opacity: 0;
    }
}

.main-nav-pils.nav-pills .nav-item .nav-link{
    color: var(--white-color);
}
.main-nav-pils.nav-pills .nav-item .nav-link.active{
    background: var(--orange-gradient);
}
/* common elemnts end */

/* header start */
header{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}
.logo-light {
    display: none;
}
.navbar-nav .nav-link, .nav-link.active, .navbar-nav .nav-link.show{
    color: var(--white-color) !important;
    font-size: 18px;
}
@media (max-width: 992px) {
    .navbar-nav .links{
        width: 100%;
    }
}
.navbar-nav .nav-item{
    margin-right: 1rem;
    text-align: center;
}
.navbar .navbar-brand img{
    width: 12rem;
}
.navbar .navbar-toggler{
    color: var(--white-color);
}
.offcanvas.show{
    background-color: var(--blur-color);
    backdrop-filter: blur(50px);
}
header .dropdown-menu{
    background-color: var(--blur-color);
    backdrop-filter: blur(50px);
    padding: 0;
    min-width: 12rem;
}
header .dropdown-menu .dropdown-item{
    color: var(--white-color);
    padding: 0.6rem;
}
header .dropdown-menu .dropdown-item:hover{
    color: var(--orange-color);
}
#toggle-theme-1,
#toggle-theme-2{
    color: var(--white-color);
}
#toggle-theme-1:hover,
#toggle-theme-2:hover{
    color: var(--orange-color);
}
#toggle-theme-1:focus,
#toggle-theme-2:focus{
    outline: none;
    border: none;
}
.offcanvas-header button{
    color: var(--white-color);
}
.offcanvas-header button:hover{
    color: var(--orange-color);
}
/* header end */

/* footer start */
footer{
    background-image: url('../images/noise-pattern-bg.jpg');
    background-size: cover;
}
footer::before{
    content: "";
    background-color: #0d0d0dfa;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
footer .logo{
    width: 20rem;
}
footer form{
    max-width: 20rem;
}
footer form input.form-control{
    padding-right: 6rem !important;
}
footer form input.form-control::placeholder{
    font-size: 12px;
}
footer .social{
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 0;
}
footer .social li a{
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--orange-gradient);
    padding: 0.8rem;
}
/* footer end */

/* hero section start */
.hero-section{
    padding-top: 50px;
    min-height: 100vh;
}
.hero-section::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(-118deg, rgba(6, 19, 42, 0.20) 4.36%, rgba(0, 151, 255, 0.20) 14.06%, rgba(0, 147, 255, 0.20) 29.55%, rgba(5, 20, 44, 0.20) 43.7%), linear-gradient(-230deg, #080C27 8.53%, #0097FF 19.68%, #080D27 29.33%);
    background: linear-gradient(-118deg, color(display-p3 0.0353 0.0745 0.1569 / 0.20) 4.36%, color(display-p3 0 0.58 1 / 0.20) 14.06%, color(display-p3 0 0.5672 0.9779 / 0.20) 29.55%, color(display-p3 0.0314 0.0784 0.1647 / 0.20) 43.7%), linear-gradient(-230deg, color(display-p3 0.0353 0.0471 0.1451) 8.53%, color(display-p3 0 0.5804 1) 19.68%, color(display-p3 0.0353 0.051 0.1451) 29.33%);
    filter: blur(100px);
    transform: rotateY(180deg);
    z-index: -1;
}
.hero-section .title{
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}
.hero-section .dynamic-part {
    height: 4rem;
    overflow: hidden;
    position: relative;
}
.hero-section .dynamic-part .sub-title{
    font-weight: 700;
    font-size: 3rem;
    color: var(--orange-color);
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    margin: 0;
}
.hero-section .dynamic-part .sub-title.active {
    transform: translateY(0);
    opacity: 1;
}
.hero-section .desc{
    margin: 2rem 0 5rem;
}
.hero-section .banner{
    transform: scaleX(-1);
}
.hero-section .box-absolute{
    position: absolute;
    border-bottom-left-radius: 0% !important;
    min-width: 10rem;
}
.hero-section .box-absolute img{
    width: 1.5rem;
    filter: brightness(0) invert(1);
}
.hero-section .box-absolute-1{
    top: 30%;
    right: 0;
}
.hero-section .box-absolute-2{
    bottom: 10%;
    right: 45%;
}
.hero-section .box-absolute-3{
    top: 23%;
    left: 5%;
}
/* hero section end */

/* about section start */
.about-section::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(-298deg, #080C27 27.26%, rgba(0, 151, 255, 0.20) 31.11%, #080D27 41.62%);
    background: linear-gradient(-298deg, color(display-p3 0.0353 0.0471 0.1451) 27.26%, color(display-p3 0 0.5804 1 / 0.20) 31.11%, color(display-p3 0.0353 0.051 0.1451) 41.62%);
    filter: blur(50px);
    transform: rotateY(180deg);
    z-index: -1;
}
.about-section .founder-img{
    width: 50px;
    height: 50px;
}
.about-section .arrow-draw {
    position: absolute;
    left: -2%;
    top: -10%;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-width: 2px 0px 0px 2px;
    border-style: solid;
    border-color: #FD7032;
    border-radius: 0.5rem;
    clip-path: inset(0 0 100% 0);
    animation: drawArrowTopToBottom 3s ease-in-out infinite;
}
@keyframes drawArrowTopToBottom {
    0% {
        clip-path: inset(0 0 100% 0);
    }
    50% {
        clip-path: inset(0 0 0% 0);
    }
    100% {
        clip-path: inset(0 0 100% 0);
    }
}
.about-section .bg-dots{
    margin-top: -10rem;
    margin-left: -4rem;
}
@media (max-width:992px) {
    .about-section .bg-dots{
        margin-top: 0;
    }
}
@media (max-width:768px) {
    .about-section .about-cover{
        height: 100% !important;
    }
}
@keyframes dots {
    0% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
    100% { opacity: 0.4; transform: translateY(0); }
}

/* about section end */

/* start programs section */
.programs-section::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(-139deg, rgba(8, 12, 39, 0.50) 25.36%, rgba(0, 151, 255, 0.15) 43.24%, rgba(8, 13, 39, 0.50) 65.77%);
    background: linear-gradient(-139deg, color(display-p3 0.0353 0.0471 0.1451 / 0.50) 25.36%, color(display-p3 0 0.5804 1 / 0.15) 43.24%, color(display-p3 0.0353 0.051 0.1451 / 0.50) 65.77%);
    filter: blur(50px);
    transform: rotateY(180deg);
    z-index: -1;
}
@media (max-width: 1200px) {
    .programs-section .nav-pills,
    .programs-section .nav-pills .nav-link{
        border-radius: 1rem !important;
    }
}
.programs-section .tab-pane h4{
    color: var(--orange-color);
}
.programs-section .tab-pane p{
    font-size: 20px;
}
.programs-section .tab-1 .img-absolute-1,
.programs-section .tab-4 .img-absolute-1,
.programs-section .tab-5 .img-absolute-1,
.programs-section .tab-7 .img-absolute-1{
    top: 2px;
    width: 50%;
    right: 0;
}
.programs-section .tab-1 .img-absolute-2,
.programs-section .tab-4 .img-absolute-2,
.programs-section .tab-5 .img-absolute-2,
.programs-section .tab-7 .img-absolute-2{
    bottom: 2px;
    width: 50%;
    left: 13%;
}
.programs-section .tab-1 .img-absolute-1 img.translate-middle,
.programs-section .tab-4 .img-absolute-1 img.translate-middle,
.programs-section .tab-5 .img-absolute-1 img.translate-middle,
.programs-section .tab-7 .img-absolute-1 img.translate-middle,
.programs-section .tab-1 .img-absolute-2 img.translate-middle,
.programs-section .tab-4 .img-absolute-2 img.translate-middle,
.programs-section .tab-5 .img-absolute-2 img.translate-middle,
.programs-section .tab-7 .img-absolute-2 img.translate-middle{
    transform: translate(-50%, -50%) scaleX(-1) !important;
}
@media (max-width:768px) {
    .programs-section .tab-1 .img-absolute-1,
.programs-section .tab-4 .img-absolute-1,
.programs-section .tab-5 .img-absolute-1,
.programs-section .tab-7 .img-absolute-1{
    width: 75%;
}
.programs-section .tab-1 .img-absolute-2,
.programs-section .tab-4 .img-absolute-2,
.programs-section .tab-5 .img-absolute-2,
.programs-section .tab-7 .img-absolute-2{
    bottom: 22px;
    width: 75%;
    left: 0%;
}
}
.programs-section .tab-2 .img-absolute-1{
    top: 0;
    right: 65%;
    animation: floatTriangle 3s ease-in-out infinite;
}
.programs-section .tab-2 .img-absolute-2{
    bottom: -23%;
    left: 20%;
    animation: floatCircle 3.5s ease-in-out infinite;
}
.programs-section .tab-2 .cover{
    animation: floatDevice 2s ease-in-out infinite;
}

@keyframes floatTriangle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(-6deg);
    }
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.08);
    }
}

@keyframes floatDevice {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.programs-section .tab-3 [class^="step-"] {
    opacity: 0;
    animation: fadeInUp 0.7s ease-out forwards;
}
.programs-section .tab-3 .step-1{
    animation-delay: 0.2s;
}
.programs-section .tab-3 .step-2{
    top: 45%;
    left: 51%;
    animation-delay: 0.6s;
}
.programs-section .tab-3 .step-3{
    top: 162%;
    animation-delay: 1s;
}
.programs-section .tab-3 .step-4{
    top: 230%;
    animation-delay: 1.4s
}
.programs-section .tab-3 .step-5{
    top: 497%;
    right: 18%;
    animation-delay: 1.8s;
}
.programs-section .tab-3 .step-6{
    top: 505%;
    animation-delay: 2.2s;
}
.programs-section .tab-3 .step-7{
    top: 566%;
    animation-delay: 2.6s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width:992px) and (max-width:1400px) {
    .programs-section .tab-3 .step-2{
        left: 45%;
    }
    .programs-section .tab-3 .step-5{
    right: 13%;
    }
}
@media (max-width:768px) {
    .programs-section .tab-3 .step-2{
        left: 41%;
    }
    .programs-section .tab-3 .step-5{
    right: 0%;
    }
}
@media (max-width:992px) {
    .programs-section .tab-3 .content{
        margin-top: 28rem;
    }
}


.programs-section .tab-6 .absolute-content{
    left: 5%;
    top: 34%;
}
.programs-section .tab-6 .absolute-content .fav-icon{
    width: 2rem;
    filter: brightness(0) invert(1);
}
.programs-section .tab-6 .absolute-content ul li:nth-child(2) {
    margin-right: calc(1rem * 2);
}
.programs-section .tab-6 .absolute-content h2,
.programs-section .tab-6 .absolute-content ul li {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeSlideIn 0.8s ease forwards;
}
.programs-section .tab-6 .absolute-content h2 {
    animation-delay: 0.2s;
}

.programs-section .tab-6 .absolute-content ul li:nth-child(1) {
    animation-delay: 0.6s;
}

.programs-section .tab-6 .absolute-content ul li:nth-child(2) {
    animation-delay: 1s;
}
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateX(300px);
    }
    100% {
        opacity: 1;
        transform: translateX(220px);
    }
}

/* end programs section */

/* start why choose us section */
.why-section .why-box {
    opacity: 0;
    transform: translateX(0);
    transition: 0.6s ease;
}

.why-section .why-box.animate-in-left {
    opacity: 1;
    transform: translateX(0);
    animation: slideLeftIn 0.8s ease forwards;
}

.why-section .why-box.animate-in-right {
    opacity: 1;
    transform: translateX(0);
    animation: slideRightIn 0.8s ease forwards;
}

@keyframes slideLeftIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRightIn {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* end why choose us section */

/* start ai section */
.ai-section::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(-334deg, #080C27 27.47%, rgba(0, 151, 255, 0.40) 53.75%, #080D27 63.13%);
    background: linear-gradient(-334deg, color(display-p3 0.0353 0.0471 0.1451 / 0.00) 27.47%, color(display-p3 0 0.5804 1 / 0.40) 53.75%, color(display-p3 0.0353 0.051 0.1451 / 0.00) 63.13%);
    filter: blur(150px);
    transform: rotateY(180deg);
    z-index: -1;
}
.ai-section .bg-dots{
    margin-left: -4rem;
}
.ai-section p{
    font-size: 20px;
}
.ai-section ul{
    padding-top: 1rem;
}
.ai-section ul li{
    list-style: none;
    color: var(--orange-color);
    font-size: 18px;
    margin-bottom: 1rem;
}
.ai-section ul li::before{
    content: "\f272";
    font-family: bootstrap-icons !important;
    color: var(--white-color);
    margin-right: 1rem;
    animation: glowCheck 1.8s ease-in-out infinite;
}
@keyframes glowCheck {
    0%, 100% {
        text-shadow: 0 0 0px transparent;
        color: var(--white-color);
    }
    50% {
        text-shadow: 0 0 10px #ffffff;
        color: var(--white-color);
    }
}
/* end ai section */

/* start domains section */
.domains-section .features li{
    list-style: none;
    font-size: 1.5rem;
}
.domains-section .features li::before{
    content: "\f272";
    font-family: bootstrap-icons !important;
    color: var(--orange-color);
    margin-right: 0.5rem;
}
.domains-section .domain-card{
    background-color: #E8E8FF;
    color: var(--black-color);
    transition: var(--main-transition);
}
.domains-section .domain-card:hover{
    background-color: var(--white-color);
}
.domains-section .domain-card span{
    color: var(--gray-color);
}
.domains-section .domain-card h4{
    font-weight: 600;
    font-size: 2.5rem;
    font-family: var(--english-font-family);
}
/* end domains section */

/* start plans section */
.plans-section .free-plan-card{
    background: var(--orange-gradient);
}
.plans-section .plan-card{
    transition: background-color var(--main-transition);
    min-height: 20rem;
}
.plans-section .plan-card:hover{
    background-color: var(--white-color);
}
.plans-section .plan-card .price{
    transition: var(--main-transition);
}
.plans-section .plan-card:hover .price{
    color: var(--black-color);
}
.plans-section .plan-card .old-price{
    transition: var(--main-transition);
}
.plans-section .plan-card:hover .old-price{
    color: var(--gray-color) !important;
}
/* end plans section */

/* start gallery section */
/* .gallery-section .projects-slider .swiper-slide img{
    height: 500px;
} */
.gallery-section .projects-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}
.gallery-section .before-title::before,
.gallery-section .before-title::after{
    width: 35%;
}
@media (max-width:992px) {
    .gallery-section .before-title::before,
    .gallery-section .before-title::after{
        width: 17%;
    }
}
/* end gallery section */

/* start partners section */
.partners-section::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(-290deg, #080C27 58.28%, rgba(0, 151, 255, 0.30) 81.78%, #080D27 108.36%);
    background: linear-gradient(-290deg, color(display-p3 0.0353 0.0471 0.1451 / 0.00) 58.28%, color(display-p3 0 0.5804 1 / 0.30) 81.78%, color(display-p3 0.0353 0.051 0.1451 / 0.00) 108.36%);
    filter: blur(50px);
    transform: rotateY(180deg);
    z-index: -1;
}
.partners-section .partners-content ul{
    margin: 2rem 0;
}
.partners-section .partners-content ul li{
    list-style: none;
    color: var(--orange-color);
    font-size: 18px;
    margin-bottom: 1rem;
}
.partners-section .partners-content ul li::before{
    content: "\f272";
    font-family: bootstrap-icons !important;
    color: var(--white-color);
    margin-right: 1rem;
    animation: glowCheck 1.8s ease-in-out infinite;
}
.partners-section .partners-slider .swiper-slide img{
    width: 130px;
    height: 130px;
}
.partners-section .partners-slider{
    height: 500px;
    overflow: hidden;
    position: relative;
}
.partners-slider::before,
.partners-slider::after {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 60px;
    z-index: 2;
    pointer-events: none;
}
.partners-slider::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(10, 14, 30, 0.85), transparent);
}
.partners-slider::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 14, 30, 0.85), transparent);
}
.partners-section .partners-statistics-box span{
    font-size: 4.25rem;
    font-family: var(--english-font-family);
}
.partners-section .banner-box{
    transform: scaleX(-1);
}
.partners-section .banner-box .position-absolute{
    width: 11rem;
    left: 64%;
}
.partners-section .services-statistics-box{
    background-image: url('../images/circle-black-bg.png');
    background-size: cover;
}
.partners-section .services-statistics-box span{
    font-size: 3.25rem;
    font-family: var(--english-font-family);
}
.partners-section .services-statistics-box p{
    font-size: 2rem;
}
/* end partners section */

/* start testimonial section */
.testimonial-section::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(-273deg, #080C27 10.94%, rgba(0, 151, 255, 0.20) 52.43%, #080D27 99.36%);
    background: linear-gradient(-273deg, color(display-p3 0.0353 0.0471 0.1451 / 0.00) 10.94%, color(display-p3 0 0.5804 1 / 0.20) 52.43%, color(display-p3 0.0353 0.051 0.1451 / 0.00) 99.36%);
    filter: blur(50px);
    transform: rotateY(180deg);
    z-index: -1;
}
.testimonial-section .before-title::before,
.testimonial-section .before-title::after{
    width: 33%;
}
@media (max-width:992px) {
    .testimonial-section .before-title::before,
    .testimonial-section .before-title::after{
        width: 15%;
    }
}
/* end testimonial section */

/* start blogs section */
.blogs-section .before-title::before,
.blogs-section .before-title::after{
    width: 33%;
}
@media (max-width:992px) {
    .blogs-section .before-title::before,
    .blogs-section .before-title::after{
        width: 15%;
    }
}
/* end blogs section */

/* start team section */
.team-section::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(-183deg, #080C27 33.66%, rgba(0, 151, 255, 0.50) 55.15%, #080D27 79.46%);
    background: linear-gradient(-183deg, color(display-p3 0.0353 0.0471 0.1451 / 0.00) 33.66%, color(display-p3 0 0.5804 1 / 0.50) 55.15%, color(display-p3 0.0353 0.051 0.1451 / 0.00) 79.46%);
    filter: blur(150px);
    transform: rotateY(180deg);
    z-index: -1;
}
.team-section .before-title::before,
.team-section .before-title::after{
    width: 38%;
}
@media (max-width:992px) {
    .team-section .before-title::before,
    .team-section .before-title::after{
        width: 25%;
    }
}
.team-section .team-slider .team-card .member-img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 50%;
    transform: translate(50%, -50%);
}
/* end team section */


/* ---------------------------------------- */


/* start about */
.about .clients-imgs img{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    opacity: 0;
    transform: translateX(20px);
    transition: all 1s ease;
}
.about .clients-imgs img.visible {
    opacity: 1;
    transform: translateX(0);
}
.about .clients-imgs img:not(:first-child){
    margin-left: -1rem;
}
.about .about-img-div{
    transform: scaleX(-1);
}
.about .years-box{
    background: var(--orange-gradient);
    left: -11%;
    bottom: 3%;
}
.about ul{
    padding-left: 1rem;
}
.about ul li{
    list-style: none;
    line-height: var(--main-line-height);
}
.about ul li::before{
    content: "\f272";
    font-family: bootstrap-icons !important;
    margin-right: 0.5rem;
    animation: glowCheck 1.8s ease-in-out infinite;
}
.about .bg-dots{
    margin-top: -2rem;
}
.about .years-box .years-num{
    transition: all 0.2s ease-in-out;
    font-size: 2.5rem;
}
.about .stroke{
    stroke: #FF640A;
    stroke-width: 2px;
    stroke: color(display-p3 0.9922 0.4392 0.1961);
    left: 10%;
    bottom: 2%;
    border-radius: 3.7rem;
}
.about .stroke path{
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: draw 3s ease forwards;
}
@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}
@media (max-width: 992px) {
    .about .stroke{
        bottom: 7%;
    }
    .about .years-box{
        left: -5%;
        bottom: 10%;
    }
}
@media (max-width: 768px) {
    .about .stroke{
        border-radius: 11.7rem;
        bottom: 3%;
    }
    .about .years-box{
        bottom: 2%;
        transform: scale(0.8);
    }
}
/* end about */

/* start gallery */
.gallery .card-box{
    width: 100%;
    height: 100%;
    display: block;
    box-shadow: 0px 0px 50px 0px #00000026;
}
.gallery .card-box img{
    transition: transform 0.4s ease;
}
.gallery .card-box:hover img {
    transform: scale(1.05);
}
.gallery .card-box .content {
    position: absolute;
    bottom: -100%;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-weight: bold;
    transition: bottom 0.4s ease;
}
.gallery .card-box:hover .content {
    bottom: 0;
}
/* end gallery */

/* start service details */
.service-details-content ul{
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    color: var(--orange-color);
    font-size: 1.25rem;
}
.service-details-card .number{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 1.7rem;
    background-color: var(--orange-color);
    color: var(--white-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-choose-service .service-details-content h3{
    color: var(--orange-color);
}
/* end service details */

/* start blogs */
.blogs .blog-card{
    transition: var(--main-transition);
}
.blogs .blog-card:hover{
    /* background-color: var(--white-color);
    color: var(--black-color); */
    background-color: var(--blur-color);
    backdrop-filter: blur(50px);
}
.blogs .blog-card h4,
.blogs .blog-card h3{
    font-weight: normal !important;
    line-height: 1.5;
}
.blogs .blog-card .short-desc{
    padding-left: 1rem;
    border-left: 4px solid var(--orange-color);
}
.blogs .blog-card .auth-img{
    width: 2.5rem;
    height: 2.5rem;
}
.blogs .blog-card .go-btn{
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--blur-color);
    backdrop-filter: blur(50px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--orange-color);
    font-weight: 800;
    transition: var(--main-transition);
}
.blogs .blog-card:hover .go-btn{
    background-color: var(--orange-color);
    color: var(--white-color);
}
/* end blogs */

/* start blogs-details */
.blog-details .author-box img{
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
}
.blog-details .author-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: #FD7032;
    border-top-left-radius: 1rem;
    clip-path: polygon(0 0%, 0% 100%, 100% 0%);
}
/* end blogs-details */

/* start contact */
.contact{
    padding-top: 3.5rem;
}
.contact .contact-box{
    transition: var(--main-transition);
}
.contact .contact-box:hover{
    background-color: var(--gray-color);
}
/* end contact */

/* start programs-details */
.program-features img{
    width:1.6rem;
    filter: brightness(0) invert(1);
}
.program-steps .step-img{
    width:2.6rem;
    filter: brightness(0) invert(1);
}
.program-steps .swiper-pagination-bullet{
    background-color: var(--gray-color);
}
.program-steps .swiper-pagination-bullet-active{
    background-color: var(--orange-color);
    transform: scale(1.3);
}
.program-faqs .before-title::before,
.program-faqs .before-title::after,
.program-steps .before-title::before,
.program-steps .before-title::after{
    width: 33%;
}
@media (max-width:992px) {
    .program-faqs .before-title::before,
    .program-faqs .before-title::after,
    .program-steps .before-title::before,
    .program-steps .before-title::after{
        width: 15%;
    }
}
.program-faqs .accordion-button:not(.collapsed),
.program-faqs .accordion-button,
.program-faqs .accordion-item{
    background-color: var(--blur-color);
    backdrop-filter: blur(50px);
    color: inherit;
    font-weight: bold;
}
.program-faqs .accordion-body{
    color: var(--white-color);
}
.program-faqs .accordion-button:focus{
    box-shadow: none;
}
.program-faqs .accordion-button::after,
.program-faqs .accordion-button:not(.collapsed)::after{
    content: '\F229';
    font-family: bootstrap-icons !important;
    background: none;
}
/* end programs-details */

/* start domains */
.domain-description ul{
    list-style: none;
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    padding-left: 0;
}
.domain-description ul li::before{
    content: "\f272";
    font-family: bootstrap-icons !important;
    color: var(--orange-color);
    margin-right: 0.5rem;
}
.domain-description .img-animate img{
    transform: scaleX(-1);
}
.domain-description .img-animate{
    bottom: 76%;
    transform: translateY(100%);
    right: 0;
    max-width: 53rem;
}
@media (max-width:1400px) {
    .domain-description .img-animate{
        bottom: 67%;
    }
}
@media (max-width:992px) {
    .domain-description .content{
        margin-bottom: 22rem;
    }
    .domain-description .img-animate{
        bottom: 45%;
    }
}
@media (max-width:768px) {
    .domain-description .content{
        margin-bottom: 17rem;
    }
    .domain-description .img-animate{
        bottom: 32%;
    }
}
@media (max-width:576px) {
    .domain-description .content{
        margin-bottom: 14rem;
    }
    .domain-description .img-animate{
        bottom: 27%;
    }
}
/* end domains */

/* start ai services */
.ai-services .ai-box{
    flex: 1;
    transition: var(--main-transition);
    height: 24rem;
    min-height: 24rem;
}
.ai-services .ai-box:hover{
    flex: 2;
}
.ai-services .ai-box > div{
    background: #00000044;
    height: 24rem;
    min-height: 24rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.ai-services .ai-box:hover > div{
    justify-content: end;
    align-items: start;
    text-align: start;
}
.ai-services .ai-box > div p,
.ai-services .ai-box > div a{
    display: none;
}
.ai-services .ai-box:hover > div p,
.ai-services .ai-box:hover > div a{
    display: block;
}
/* end ai services */

/* start partners */
.partner{
    background-image: url('../images/circle-black-bg.png');
    background-size: cover;
}
@media (max-width:992px) {
    .partner{
        padding-bottom: 0;
    }
    .partner img{
        position: relative !important;
        margin-top: 1.5rem;
    }
}
/* end partners */

/* start submited form */
.submited-form{
    background-image: url('../images/circle-black-bg.png');
    background-size: cover;
}
/* end submited form */
