/********** Template CSS **********/
:root {
    /* --primary: #355EFC; */
    --primary: #6C4786;
    --color-primary: #6C4786;
    --secondary:  #DFE4FD ; /*#2DB9DD */
    --tertiary: #555555;
    --light: #6C4786;
    --dark: #011A41;
    --footer: #001e6a;
    --color-midnight: #001e6a;
    --color-text: #001e6a;
    /* --color-new-blue: #0b4baa; */
    --color-new-blue: #6C4786;
    --color-admiral: #002a94;
    --color-admiral-50: rgba(0, 42, 148, 0.5019607843);
    --color-electric: #0536b4;
    /* --color-sky: #b9d9ef; */
    /* --color-sky: #2db9de; */
    --color-sky: #1675A8;
    --color-sky-light: #e8f5fe;
    /* --color-aqua: #056fa1; */
    --color-aqua: #6C4786;
    --color-aqua-light: #c8fbff;
    --color-65-admiral-blue: #596d9e;
    --color-80-admiral-blue: #334b88;
    --color-tangerine: #ef6100;
    --color-pencil: #fdd53a;
    --color-80-pencil: rgba(253, 213, 58, 0.8);
    --color-success: #007d21;
    --color-error: #db3725;
    --color-cta: #ef6100;
    --color-cta-yellow: #ffb600;
    --color-cta-hover: #dd4e09;
    --color-white: #ffffff;
    --color-hint: #fafafa;
    --color-light: #6C4786;
    --color-medium: #d2d2d2;
    --color-dark: #a4a4a4;
    --color-x-dark: #767676;
    --color-xx-dark: #5c5c5c;
    --color-black: #1c1c1f;
    --color-clear: rgba(255, 255, 255, 0);
    --color-medium-blue: #0060d0;
    --Bright-Cyan2: #1AC0DE;
    /* --Bright-Cyan: #2db9de; */
    --Bright-Cyan: #6C4786;
}

:root {
    --font-family-display: "Cairo", Helvetica, arial, sans-serif;
    --font-family-heading: "Cairo", Helvetica, arial, sans-serif;
    --font-family-body: "Cairo", helvetica, arial, sans-serif;
    --font-family-lead: "Cairo", helvetica, arial, sans-serif;
    --font-family-capitilized: "Cairo", helvetica, arial, sans-serif;
    --font-family-tiny: "Cairo", helvetica, arial, sans-serif;
    --font-family-numbers: "Cairo", helvetica, arial, sans-serif;
}


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

.platform_login{
    position: fixed;
    display: block;
    right: 30px;
    bottom: 90px;
    z-index: 99;
    padding: 5px;
}

.platform_login img {
    width: 90%;
}

.platform_whatsapp {
    bottom: 125px;
}


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

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

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

/** Bg color   **/ 
.bg-color-sky {
    /* background-color: var(--color-sky); */
    color: #ffff;
    background: linear-gradient(rgb(35 154 197), rgb(18 112 166 / 61%));
}

.bg-color-purple {
    background-color: var(--Bright-Cyan);
    color: var(--secondary);
}

.bg-color-sky-light {
    background-color: #e8f5fe;
}

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

/** Bg  color End **/

/** text color  **/
.text-dark-blue{color: var(--color-admiral);} 
.text-aqua{color: var(--primary);} 
.text-light{color: var(--color-light);} 
.text-BrightCyan{color: var(--Bright-Cyan);} 
.text-primary{ color: var(--color-primary) !important;}
.border-primary { border-color: var(--primary) !important; }
/* .card {
    background-color: var(--Bright-Cyan);
    color: var(--secondary);
} */
/** text color End **/ 


/*** 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;
}


/*** Button ***/



a {
    color: var(--color-new-blue);
    /* text-decoration: dashed; */
    text-decoration: none;
}

a:hover {
    color: #6C4786;
    text-decoration: underline ;
}

a.btn-terciary, div.btn-terciary, button.btn-terciary {
    display: inline-flex;
    justify-content: center;
    font-family: var(--font-family-body);
    color: #6C4786;
    background-color: #fff;
    border-radius: 4rem;
    border: 2px solid #6C4786;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: -0.02em;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border .2s ease-in-out;
    cursor: pointer;
}

.btn-terciary._btn-inverse {
    background-color: var(--color-new-blue) !important;
    color: #fff !important;
}
a.btn-terciary:not(:has(>a)), div.btn-terciary:not(:has(>a)), button.btn-terciary:not(:has(>a)) {
    display: inline-block;
    padding: .938rem 2rem;
}


.btn-terciary._btn-inverse:hover {
    background-color: #fff !important;
    color: var(--color-new-blue) !important;
}
a.btn-terciary:hover, div.btn-terciary:hover, button.btn-terciary:hover {
    color: #fff;
    background-color: #6C4786;
    border: 2px solid #6C4786;
    text-decoration: none;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border .2s ease-in-out;
}

body {
    text-transform: capitalize !important;
}

.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary{
    color: var(--color-aqua-light) !important;
    background-color: var(--color-new-blue) !important;
    border-color: var(--color-aqua-light) !important;
}

/* .btn-primary:hover */

.btn-primary:hover,
.btn-outline-primary:hover {
    color: var(--color-new-blue) !important;
    background-color: var(--color-aqua-light) !important;
    border-color: var(--color-new-blue) !important;
}

.btn-check:focus+.btn-primary, .btn-primary:focus{
    border-color: var(--color-new-blue) !important;

}

.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;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    /* color: var(--light); */
    color: var(--light);
    font-weight: 500;
    outline: none;
}

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

div#header-carousel {
    margin-top: 98px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .display-1 {
        font-size: 1.5rem !important;
        margin: 0 45px;
    }

    .carousel-caption a.btn-terciary, div.btn-terciary, button.btn-terciary{
        font-size: 0.9rem;
        line-height: 0.5;
    } 

    .carousel-control-prev, .carousel-control-next {
        width: 2rem;
    }

    .carousel-control-prev-icon, .carousel-control-next-icon {
        width: 2rem  !important;
        height: 2rem !important;
        background-color: var(--primary);
        border: 3px solid var(--primary);
    }

    div#header-carousel {
        margin-top: 109px;
    }
}

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

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-brand {
        margin-top: 8px;
    }
}


/*** Header ***/

.carousel {
    user-select: none;       /* For non-IE browsers */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
}

/* Disable dragging images */
.carousel img {
    pointer-events: none;    /* Prevents image dragging */
    max-height: 1070px !important;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
    /* background-color: #0000007d; */
    /* background: linear-gradient(to bottom, rgb(0 0 0 / 81%), #00000040); */
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    /* background: linear-gradient(to bottom, rgba(209, 211, 255, 0.61), #000000c9); */
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/header.jpg) top left no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}


/*** Facts ***/
.facts {
    background: linear-gradient(rgba(108, 71, 134), rgba(108, 71, 134, 0.438)), url(../img/bg.png);
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    /* background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png); */
    background: linear-gradient(rgb(108, 71, 134), rgba(108, 71, 134, 0.438)), url(../img/bg.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--Bright-Cyan) !important;
    background: var(--Bright-Cyan);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}



.team-item .team-text h4 , .team-item .team-text div {
    transition: .5s;
}

.team-item:hover .team-text h4, .team-item:hover .team-text div {
    color: #FFFFFF;
}

.team-title {
    font-size: 1.2rem;
}

.team-item .team-text div {
    font-size: 1.1rem;
    font-weight: 600;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/* Team inner Start */

.team-inner {
    position: relative;
    overflow: hidden;
}

.team-inner::before,
.team-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.team-inner::after {
    left: auto;
    right: 0;
}

.team-inner:hover::before,
.team-inner:hover::after {
    width: 50%;
}



.team-inner .team-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

html[dir="ltr"] .team-inner .team-text {
    left: 0;
}

html[dir="rtl"] .team-inner .team-text {
    right: 0;
}


.team-item:hover .team-inner .team-text {
    transition-delay: .3s !important;
    opacity: 1 !important;
    background: rgba(108, 71, 134, 0.5);
}

.team-inner .team-text .btn {
    background: var(--light) !important; 
    color: var(--color-aqua-light) !important;
}

.team-item .team-inner .team-text .btn:hover {
    background: var(--Bright-Cyan2) !important;
    color: var(--light) !important;
}


/* .team-item:hover .team-text {
    background: rgba(108, 71, 134, 0.5);
    border-color: var(--primary);
} */

/* Team inner End */

/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

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

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

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


/*** Footer ***/
.footer.bg-dark{
    background-color:   var(--color-black) !important;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

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

.copyright {
    color: var(--light);
    /* background:  var(--footer) */
    background:  var(--color-black)
    /* //#000B1C; */
}

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

.copyright a:hover {
    color: var(--primary);
}


.container-fluid.bg-white .navbar-light .navbar-nav .nav-link,
.other  .navbar-nav .nav-link
{
    color: var(--color-light);
}


.bg-white .navbar-light .navbar-nav .nav-link.active,
.bg-white .navbar-light .navbar-nav .nav-link:hover
.other.bg-white .navbar-light .navbar-nav .nav-link.active,
.other.bg-white .navbar-light .navbar-nav .nav-link:hover
{
    color: var(--dark);
}


.bg-purple{
  background: var(--Bright-Cyan) !important;
  color: #FFFF !important;  
}



/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--color-aqua-light);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--Bright-Cyan2);
    color: var(--light);
}



.img-details {
    max-height: 499px;
    /* width: 100%; */
}


.bg-breadcrumb {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/breadcrumb-bg1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

/* Project End  */




/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--Bright-Cyan);
    background: var(--bs-light);
    z-index: 9;
    min-width: 80%;
}

.min-height {
    min-height: 95px;
}

.min-height-title {
    min-height: 65px;
}


.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, .5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--Bright-Cyan2);
    /* background: var(--color-aqua); */
    color: var(--color-light);
    transition: 0.5s;
    min-height: 235px;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    /* background: var(--color-admiral) !important; */
    background: var(--primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/


.min-height {
    min-height: 95px;
}


.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(2, 15, 146)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  }

.custom-toggler.navbar-toggler {
    border-color: rgb(2, 15, 146) !important;
  } 


  .bg-dark {
    /* background-color: #212529 !important; */
    background-color: #011A41 !important;
}

.more-hight{
    min-height: 250px;
    height: 250px;
}


.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    /* background-color: var(--Bright-Cyan);
    color: var(--color-aqua-light); */
    background-color: var(--color-aqua);
    color: var(--bs-light);
}

.nav-link, .nav-link:focus, .nav-link:hover{
    color: var(--light);
}

/* 
 div.footer-lets-talk {
    display: flex;
    padding: .5em 1em;
    background-color: var(--color-white);
    white-space: nowrap;
    gap: .75em;
    border-radius: 2em;
    position: fixed;
    bottom: 58%;
    right: 2em;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, .1333333333);
    cursor: pointer;
    align-items: center;
    z-index: 99;
}


 div.footer-lets-talk-content {
    background-color: var(--color-white);
    border-radius: .5em;
    position: fixed;
    right: 2em;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, .1333333333);
    color: var(--c-black) !important;
    width: 180px;
    z-index: 9999;
}

div.footer-lets-talk-content .footer-lets-talk-close {
    position: absolute;
    right: -7px;
    top: -7px;
    cursor: pointer;
}

div.footer-lets-talk-content .footer-lets-talk-content-top {
    padding: 1em 1.5em;
    background-color: var(--color-white);
    border-radius: .5em .5em 0 0;
}

div.footer-lets-talk-content.hidden {
    display: none;
} */

/* 
 div.footer-lets-talk{display:flex;padding:.5em 1em;background-color:var(--color-white);white-space:nowrap;gap:.75em;border-radius:2em;position:fixed;bottom:58%;right:2em;box-shadow:0px 0px 4px rgba(0,0,0,.1333333333);cursor:pointer;align-items:center;z-index:9999}@media screen and (max-width: 48em){ div.footer-lets-talk{top:unset;bottom:6em;right:0em}} div.footer-lets-talk.hidden{display:none} div.footer-lets-talk h6{color:var(--color-admiral);margin-block-start:0;margin-block-end:0;font-size:.75em;line-height:1} div.footer-letstalk-content-header{display:flex;align-items:center;gap:.5em;position:relative}@media screen and (max-width: 1048px){ div.footer-letstalk-content-header h6{margin-block-start:1em !important}}@media screen and (min-width: 1048px){ div.footer-letstalk-content-header img.hidden-desktop{display:none}} div.footer-lets-talk-content{background-color:var(--color-white);border-radius:.5em;position:fixed;right:2em;box-shadow:0px 0px 4px rgba(0,0,0,.1333333333);color:var(--c-black) !important;width:180px;z-index:9999}@media screen and (max-width: 48em){ div.footer-lets-talk-content{width:calc(100% - 10px);bottom:85px;right:5px}} div.footer-lets-talk-content a.envelope-open::before{background-image:url(21d22b6e5b09e6376837.svg);background-repeat:no-repeat;background-size:cover;content:"";display:inline-block;height:20px;vertical-align:middle;width:20px;margin-right:.5em} div.footer-lets-talk-content a.phone::before{background-image:url(f476010554116b75aa1f.svg);background-repeat:no-repeat;background-size:cover;content:"";display:inline-block;height:20px;vertical-align:middle;width:20px;margin-right:.5em} div.footer-lets-talk-content a.speech::before{background-image:url(990d0db0b437b362bab6.svg);background-repeat:no-repeat;background-size:cover;content:"";display:inline-block;height:20px;vertical-align:middle;width:20px;margin-right:.5em} div.footer-lets-talk-content a.arrow::after{background-image:url(cd56b34c3d393ad066a6.svg);background-repeat:no-repeat;background-size:cover;content:"";display:inline-block;height:7px;vertical-align:baseline;width:7px;margin-left:.5em} div.footer-lets-talk-content .footer-lets-talk-content-top{padding:1em 1.5em;background-color:var(--color-white);border-radius:.5em .5em 0 0}@media screen and (max-width: 768px){ div.footer-lets-talk-content .footer-lets-talk-content-top>div.col-sm-12:not(:first-child){margin-left:38px}}@media screen and (max-width: 768px){ div.footer-lets-talk-content .footer-lets-talk-content-bottom>div.col-sm-12{margin-left:38px}} div.footer-lets-talk-content .footer-lets-talk-content-bottom{padding:1em 1.5em;background-color:var(--color-sky-light);border-radius:0 0 .5em .5em} div.footer-lets-talk-content h5{color:var(--color-admiral);margin-block-start:0;margin-block-end:h5;font-size:.75em;line-height:1} div.footer-lets-talk-content h6{color:var(--color-admiral);margin-block-start:0;margin-block-end:1em;font-size:.75em;line-height:1} div.footer-lets-talk-content a{color:var(--color-admiral) !important} div.footer-lets-talk-content.hidden{display:none} div.footer-lets-talk-content .flex{display:flex;gap:.5em;align-items:center} div.footer-lets-talk-content .footer-lets-talk-close{position:absolute;right:-7px;top:-7px;cursor:pointer} div.footer-lets-talk-content .discover-container p{color:var(--color-midnight);font-size:.9rem}.footer-lets-talk-content-bottom .discover-container .discover{font-weight:bold;color:var(--color-tangerine) !important} div.more-info-enroll-now-always{position:fixed;bottom:0;background:#fff;width:calc(100% - 2rem);left:0;z-index:999;display:flex;justify-content:space-around;gap:1rem;padding:1rem 1rem}.expB{display:none} */




  /* Popup Styles */
  .iframe-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.iframe-popup-content {
    position: relative;
    width: 80%;
    height: 80%;
    background: white;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 8px;
}

.iframe-popup iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: none; /* Initially hidden */
}



.partner-item {
    text-align: center;
}
.partner-item img {
    max-width: 100%;

    height: auto;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.partner-item img:hover {
    transform: scale(1.1);
}
.partner-item p {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}


.owl-carousel .owl-item img{
    width: 78%;
    height: 120px;
}


@media (max-width: 600px) {
    .owl-carousel .owl-item img{
        width: 100%;
        height: 120px;
    }
}

.striped-list .list-group-item:nth-child(odd) {
    background-color: #f8f9fa; /* Light Gray */
}

.striped-list .list-group-item:nth-child(even) {
    background-color: #e9ecef; /* Slightly Darker Gray */
}



/* Files placeholder */
/* Hide the original file input */
.hidden-file-input {
    display: none;
  }
  
  /* Style for the custom file label */
  .custom-file-label {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  /* When showing the placeholder text, make it red */
  .placeholder-text {
    color: red;
  }

/* Files placeholder End */


label{
    text-transform: capitalize;
}




/* Code for Contrast for color blindness */

.high-contrast * {
    background: linear-gradient(rgb(110 110 110), rgb(110 110 110)) !important;
}
.high-contrast {
    background-color: #6E6E6E !important;
    color: #FFF !important;
}

.high-contrast .bg-dark {
    background-color: #6E6E6E !important;
    color: #FFF !important;
}

.high-contrast * {
    background-color: #6E6E6E !important;
    color: #FFF !important;
    border-color: #FFF !important;
}

.high-contrast a {
    text-decoration: underline;
}

.high-contrast button, 
.high-contrast input, 
.high-contrast select, 
.high-contrast textarea {
    border: 1px solid #FFF !important;
}

.high-contrast table {
    border-collapse: collapse;
}

.high-contrast th, 
.high-contrast td {
    border: 1px solid #FFF !important;
    padding: 8px;
}

/* Code for Contrast for color blindness End */


/* Code for Scale  */
.scale-1x, 
.scale-1x button, 
.scale-1x a, 
.scale-1x li, 
.scale-1x p, 
.scale-1x span, 
.scale-1x input, 
.scale-1x select, 
.scale-1x textarea {
    font-size: 1em !important;
}

.scale-2x, 
.scale-2x button, 
.scale-2x a, 
.scale-2x li, 
.scale-2x p, 
.scale-2x span, 
.scale-2x input, 
.scale-2x select, 
.scale-2x textarea {
    font-size: 1.5em !important;
}

.scale-3x, 
.scale-3x button, 
.scale-3x a, 
.scale-3x li, 
.scale-3x p, 
.scale-3x span, 
.scale-3x input, 
.scale-3x select, 
.scale-3x textarea {
    font-size: 2em !important;
}


/* Code for Scale End */



.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.blog-img-inner {
    position: relative;
}

.blog-img-inner img {
    display: block;
    width: 100%;
    height: auto;
}

/* إظهار عند التحويم في سطح المكتب */
@media (hover: hover) {
    .blog-img:hover .blog-icon {
        display: flex;
    }
}

/* إظهار عند النقر على الجوال */
@media (hover: none) {
    .blog-img:active .blog-icon {
        display: flex;
    }
}


input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 40px;
    cursor: pointer;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
}

input[type="password"],
input[name="password"],
input[autocomplete="current-password"],
input[autocomplete="new-password"] {
    direction: ltr;
}

/* input file */



  .custom-file-wrapper {
    position: relative;
}

.custom-file-display {
    /* Use Bootstrap .form-control base styles */
    display: flex;
    align-items: center;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    cursor: pointer;
    min-height: calc(1.5em + 0.75rem + 2px);
    border-radius: .25rem;
}

.custom-file-display:hover {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.custom-file-display:focus-within {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.file-text {
    flex: 1;
    padding: .175rem .75rem;
    color: #495057;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 1rem;
}

.browse-btn {
    background-color: #e9ecef;
    border: none;
    border-left: 1px solid #ced4da;
    padding: .175rem .75rem;
    color: #495057;
    border-radius: 0 .25rem .25rem 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    transition: background-color .15s ease-in-out;
}

.browse-btn:hover {
    background-color: #dee2e6;
}

/* Drag & Drop Styles - Bootstrap Compatible */
.drag-drop-area {
    /* Use Bootstrap .form-control base styles */
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 2px dashed #ced4da;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    
    /* Custom drag-drop specific styles */
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    background-color: #f8f9fa;
}

.drag-drop-area:hover,
.drag-drop-area.drag-over {
    border-color: #0d6efd;
    background-color: #e7f3ff;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.drag-drop-content {
    pointer-events: none;
}

.drag-icon {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.drag-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.drag-subtext {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Multiple Files Styles - Bootstrap Compatible */
.multi-file-wrapper {
    /* Use Bootstrap .form-control base styles */
    display: block;
    width: 100%;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;    
    border: 1px solid #ced4da;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    
    /* Custom styles for file wrapper */
    padding: 1rem;
    background-color: #f8f9fa;
}

.file-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: .375rem .75rem;
    background-color: #0d6efd;
    color: white;
    border-radius: .25rem;
    cursor: pointer;
    transition: background-color .15s ease-in-out;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    border: none;
}

.file-upload-btn:hover {
    background-color: #0b5ed7;
}

.file-preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.file-preview-item {
    position: relative;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    overflow: hidden;
    background-color: white;
}

.file-preview-image {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.file-preview-info {
    padding: 0.5rem;
    font-size: 0.75rem;
}

.file-preview-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-preview-size {
    color: #6c757d;
}

.file-remove-btn {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    background-color: rgba(220, 53, 69, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-info {
    font-size: 0.875rem;
    color: #6c757d;
}

.file-info.success {
    color: #198754;
}

/* RTL Support for Arabic */
[dir="rtl"] .custom-file-display {
    flex-direction: row-reverse;
}

[dir="rtl"] .browse-btn {
    border-left: none;
    border-right: 1px solid #ced4da;
    border-radius: 0.375rem 0 0 0.375rem;
}


.custom-file-display {
    border: 1px solid;
    padding: 1px;
    border-radius: .25rem;
    border-color: #ced4da;
	cursor: pointer;
}

/* input file End */


.small {
    font-size: .675em;
}


/* Required Field  */

.req + label::after,
label:has(+ .req)::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

/* للـ labels التي تكون قبل الـ input */
.req ~ label::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}

/* طريقة بديلة باستخدام attribute selector */
input.req[type="text"] + label::after,
input.req[type="password"] + label::after,
input.req[type="email"] + label::after,
select.req + label::after,
textarea.req + label::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}



 .password-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }
        
        .password-wrapper input {
            width: 100%;
            padding-right: 40px;
            box-sizing: border-box;
        }
        
        .toggle-password {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            user-select: none;
            font-size: 18px;
            padding: 5px;
            z-index: 1;
        }
        
        .toggle-password:hover {
            opacity: 0.7;
        }


