:root {
    --primary: #174478;
    --secondary: #fec524;
    --light: #F7F7F7;
    --grey: grey;
    --hint: #989898;
    --grey300: #E0E0E0;
    --greyShade1: #8E8E93;
    --greyShade2: #AEAEB2;
    --greyShade3: #C7C7CC;
    --greyShade4: #D1D1D6;
    --greyShade5: #E5E5EA;
    --greyShade6: #F2F2F7;
    --text-theme-colored: #174478;
    --text-theme-colored2: #0081a1;
    --border-theme-colored: #bdebef;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
    font-family: 'Droid Arabic Kufi', sans-serif;
    font-size: 13px;
}
        body {
            background-color: #f5f7fa;
        }

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.color-hint {
    color: var(--hint);
}

.text-color-grey {
    color: var(--grey);
}

.bg-secondary-color {
    background-color: var(--secondary) !important;
}

.bg-primary-color {
    background-color: var(--primary);
}

.bg-light-color {
    background-color: var(--light);
}

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

.fw-bold {
    font-weight: 600 !important;
}

.hover-icon-header:hover {
    color: white;
}

.text-justify {
    text-align: justify;
}

.crop-text-4 {
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.hover-icon-header:hover {
    color: white;
}


/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 11px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

.topbar .hover-icon-header:hover {
    color: var(--primary);
}

/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    /* font-size: 17px; */
    font-weight: 500;
    outline: none;
    transition: .5s;
}

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

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-white);
}

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

.navbar-light .navbar-brand img {
    max-height: 70px;
    transition: .5s;
}

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    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.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--primary);
        color: var(--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;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

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

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .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: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--secondary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -1px;
        left: 50%;
        background: var(--secondary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 2px;
        height: 12px;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
/* .header-carousel .header-carousel-item img {
    object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
        height: 700px;
}


.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 60px;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 30px;
    margin-left: 90px;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    left: 30px;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 100px 0 var(--bs-light);
    color: var(--bs-primary);
}


.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .header-carousel .owl-nav .owl-prev {
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }


    .header-carousel .owl-nav .owl-next {
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}


.header-carousel .header-carousel-item img {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
} */
/*** Carousel Hero Header End ***/

/*
.navbar-dark .navbar-nav .nav-link:after {
    margin-top: 5px;
}

.navbar-dark .navbar-nav .nav-link {
    padding: 12px 0;
    color: #000000;
    font-size: 14px;
    outline: none;
}

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

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 0px;
    }
}

@media (max-width:991.98px) {
    .navbar-collapse {
        padding-bottom: 20px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .navbar-dark .navbar-nav .nav-link:after {
        height: 0;
        background: transparent !important;
    }
} */

/* .navbar-nav .dropdown-item:hover {
    background-color: var(--primary) !important;
    color: white !important;
} */


/* .dropdown:hover>.dropdown-menu,
.dropend:hover>.dropdown-menu {
    display: block;
}

.dropdown-menu {
    left: auto;
    right: 0;

}

.custom-toggler.navbar-toggler {
    border-color: transparent;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath stroke='rgba(23, 68, 120, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24' /%3E%3C/svg%3E");

} */

.link-border-outline {
    padding: 5px 8px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    background: var(--primary);
    border-color: transparent !important;

}

.link-border-outline:hover {
    background: var(--secondary);
    color: white;
    border-radius: 5px;
}

.link-border-outline-secondary {
    padding: 5px 8px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    background: var(--secondary);

}

.link-border-outline-secondary:hover {
    background: var(--primary);
    color: white;
    border-radius: 5px;
}

/* -------------------- main-content ---------------------------- */
.main-content {
    background-color: #fff;
}

/* -------------------- section-title ---------------------------- */
.section-title {
    text-align: center;
}

.section-title h2 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: var(--primary);
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--text-theme-colored2);
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

/* --------------------carousel---------------------------- */
#header-carousel .carousel-item {
    height: 90vh;
    max-height: 90vh;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .7);
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

#header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 300px;
        height: 40vh;
        max-height: 40vh;
    }
}

.header-carousel-item-image {
    animation-name: image-zoom;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 1s;
}

@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
}

/* --------------- owl-carousel ------------- */
.owl-carousel-control-nav {
    margin-top: 15px;
    margin-bottom: 15px;
}

.wl-carousel-control-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    margin-right: 16px;
    background-color: var(--primary)
}

.wl-carousel-control-icon:last-child {
    margin-right: 0px
}

.wl-carousel-control-icon i {
    line-height: 36px;
    color: #fff;
    font-size: 18px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease
}

.wl-carousel-control-icon:hover i {
    color: var(--secondary)
}

/* -------------course-item -------------------*/
.course-item:hover {
    background: #f7feff;
}

.course-item:hover .register-now {
    background-color: var(--secondary);
}

.course-image-height {
    width: 100%;
    height: 500px;
}

@media (max-width: 768px) {
    .course-image-height {
        height: 300px;
    }
}

.card-side-details-course {
    box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
    border-radius: 10px;
    border: solid 1px #bdebef;
}

/* -------------teachers-------------------*/
#teacherSection .teacher-item {
    box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
    padding: 20px 20px;
    border-radius: 10px;
    border: solid 1px #bdebef;
}

#teacherSection .custom-bottom-border {
    border-bottom-color: var(--border-theme-colored);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    width: 100%;
    margin: 10px 0px;
}

#teacherSection .teacher-image {
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 10px;
}

#teacherSection .teacher-image img {
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

#teacherSection .teacher-item:hover img {
    -webkit-transform: scale(1.19);
    -ms-transform: scale(1.19);
    transform: scale(1.19);
}

/* -------------how-we-work -------------------*/
.how-we-work {
    height: 300px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 10px;
    border: solid 1px var(--border-theme-colored);
    transition: box-shadow .3s;
    width: 100%;
}

.how-we-work:hover {
    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
    background: #f7feff;
}

.how-we-work h4 {
    color: var(--primary);
    padding: 8px 0 0 0px;
    text-align: center;
}

.how-we-work p {
    text-align: justify;
}

.how-we-work .numbering {
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    width: 45px;
    height: 45px;
    margin: 0px auto;
    text-align: center;
    padding: 12px 0 0 0px;
    font-weight: bold;
    font-size: 14px;
    margin-top: -20px;
}

.numbering.numbering-1 {
    background: var(--secondary);
}

.numbering.numbering-2 {
    background: #e8583e;
}

.numbering.numbering-3 {
    background: #3ac6c4;
}

.numbering.numbering-4 {
    background: #f6b13e;
}

.numbering.numbering-5 {
    background: #bc449b;
}

.numbering.numbering-6 {
    background: #2ab2d3;
}

/* ----------- border radius ---------------- */

.border-radius-5px {
    border-radius: 5px;
}

.border-radius-8px {
    border-radius: 8px;
}

.border-radius-10px {
    border-radius: 10px;
}

/*-------------------------- Frequently Asked Questions ------------------------------*/

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 15px 30px;
    background: white;
    border-radius: 7px;
    position: relative;
    box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
    border: solid 1px #efefef;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
    color: #95e2ff;
}

.faq .faq-list a.icon-help {
    position: absolute;
    right: 0;
    left: 20px;
    color: #fff;
}

.faq .faq-list .icon-help {
    font-size: 20px;
    position: absolute;
    right: 20px;
    left: 20px;
    color: var(--primary);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    position: absolute;
    left: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    color: var(--primary);
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: var(--primary);
}

.faq .faq-list a.collapsed:hover {
    color: #95e2ff;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------counter area ------------------------------*/
.counter-container {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 991.98px) {
    .counter-wrap {
        margin-bottom: 30px;
    }
}

.counter-wrap .caption {
    color: grey;
    font-weight: bold;
}

.counter-wrap .counter {
    font-size: 3rem;
}

.counter-wrap .counter span {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .counter-wrap .counter {
        font-size: 2.5rem;
    }
}

/*-------------------- top banner section -----------------------*/
.top-banner-section .banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/main-carousel1.jpg);
    min-height: 400px;
    width: 100%;
}


.top-banner-section .banner .overlay {
    background-color: rgba(0, 0, 0, 0.61);
    width: 100%;
    height: 100%;
}

.contact-us-section .banner .overlay p {
    font-size: 17px;
}

        .support-header {
            /* background: linear-gradient(135deg, var(--primary), #1a2530); */
             background-color: rgba(0, 0, 0, 0.61);
            padding: 80px 0 80px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .support-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/main-carousel1.jpg') no-repeat center center/cover;
            opacity: 0.2;
        }

/*-------------------- footer area -----------------------*/
.footer {
    background-color: var(--primary);
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .btn.btn-social:hover {
    color: var(--secondary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: start;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.section-title-footer::after {
    display: inline-block;
    content: "";
    width: 60px;
    height: 2px;
    top: 50%;
    left: -70px;
    margin-top: -1px;
    margin: 0 5px;
    background: var(--secondary);
}

.footer .timings-list {
    list-style: none;
    padding: 0;
}

.footer .timings-list li {
    padding: 10px 0;
    border-bottom: 1px dotted #6c757d;
}

.footer .closed-badge {
    border: solid 1px red;
    color: red;
    padding: 5px 10px;
    border-radius: 5px;
}

/* ----------- card ---------------- */
.card-primary {
    --lte-card-variant-bg: var(--primary);
    --lte-card-variant-bg-rgb: 13, 110, 253;
    --lte-card-variant-color: #fff;
    --lte-card-variant-color-rgb: 255, 255, 255;
}

.card[class*=card-]:not(.card-outline)>.card-header,
.card[class*=text-bg-]:not(.card-outline)>.card-header {
    color: var(--lte-card-variant-color);
    background-color: var(--lte-card-variant-bg);
}

.card[class*=card-]:not(.card-outline)>.card-header .btn-tool,
.card[class*=text-bg-]:not(.card-outline)>.card-header .btn-tool {
    --bs-btn-color: rgba(var(--lte-card-variant-color-rgb), .8);
    --bs-btn-hover-color: var(--lte-card-variant-color);
}

.card.card-outline {
    border-top: 3px solid var(--primary);
}

/* ----------- alert ---------------*/
#top-message {
    position: fixed;
    top: 10px;
    left: 5%;
    width: 100%;
    z-index: 9999;
}

/* ----------- other ---------------- */
.border-left-right {
    border-left: 1px;
    border-right: 1px;
    border-left-color: var(--grey);
    border-right-color: var(--grey);
    border-left-style: solid;
    border-right-style: solid;
}

.link-custom-hover:hover {
    color: white;
    background-color: var(--secondary);
}

.text-decoration {
    text-decoration: none !important;
}

*:focus {
    box-shadow: none !important;
}

.form-label {
    color: grey;
}

span.error {
    color: red;
    font-size: 0.875em;
}

/* ----------- btn-custom-outline-primary---------------*/
.btn-custom-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    margin-top: 10px;
}

.btn-custom-outline-primary:hover {
    border-color: var(--secondary);
    color: white;
    background-color: var(--secondary);
}

.btn-custom-outline-primary i {
    color: var(--primary);
    margin-left: 10px;
}

.btn-custom-outline-primary:hover i {
    color: white;
}
/* ----------- button download ---------------*/
.accordion .accordion-item .accordion-header .accordion-button {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

.accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

