html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Tajawal", serif;
}

:root {
    --primary-color: #3855a2;
    --secondary-color: #a3222e;
    --third-color: #f9d746;
    --red-color: 255, 0, 0;
    /* red */
    --blue-color: 0, 0, 255;
    /* blue */
    --gradient-background: linear-gradient(rgba(var(--blue-color), 0.2) 30%,
            rgba(var(--red-color), 0.3) 100%);
}

::selection {
    color: white;
    background: var(--primary-color);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 12px;
}

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

.title {
    font-size: 19px;
    font-weight: 400;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 20px;
    display: block;
    width: fit-content;
}

p {
    font-size: 24px;
    font-weight: 400;
}

h1 {
    color: white;
    font-weight: 700;
    font-size: 56px;
}

h2 {
    font-size: 36px;
    font-weight: 600;
}

@media(max-width:767px) {
    h1 {
        font-size: 36px;
    }

    .hero .btn {
        font-size: 16px;
        width: 145px;
    }

    p {
        font-size: 18px;
        font-weight: 400;
    }

    h2 {
        font-size: 28px;
    }
}

.lidtitle {
    display: inline-block;
    padding: 10px 20px;
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-color);
    background: transparent;
    border: 2px solid rgba(56, 85, 162, 0.6);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    width: fit-content;
    text-align: left;
    z-index: 1;
}

.lidtitle::before {
    content: "";
    position: absolute;
    inset: 0;
    /* shorthand for top, right, bottom, left = 0 */
    border-radius: 25px;
    border: 3px solid transparent;
    background: linear-gradient(90deg, transparent 40%, rgba(56, 85, 162, 0.8) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: led-animation 3s linear infinite;
    z-index: -1;
    /* Place it behind the text */
}

.redlidtitle {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    background: transparent;
    border: 2px solid rgba(163, 34, 46, 0.6);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    width: fit-content;
    text-align: left;
    z-index: 1;
}

.redlidtitle::before {
    content: "";
    position: absolute;
    inset: 0;
    /* shorthand for top, right, bottom, left = 0 */
    border-radius: 25px;
    border: 3px solid transparent;
    background: linear-gradient(90deg, transparent 40%, rgba(163, 34, 46, 0.8) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: led-animation 3s linear infinite;
    z-index: -1;
    /* Place it behind the text */
}

@keyframes led-animation {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

.whatsapp {
    position: fixed;
    right: 0px;
    bottom: 25px;
    transform: translateX(-50%);
    border-radius: 50%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    z-index: 11;
    animation: 1.5s ease-out infinite animate-pulse;
}

.phone-ic {
    bottom: 100px;
}

.question-ic {
    bottom: 185px;
}

/* .whatsapp::before {
    position: absolute;
    content: "";
    font-size: 16px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #E82C0C;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0px;
    right: 0px;
    color: white;

} */

.social-icon {
    font-size: 1rem;
    color: white;
    padding: 12px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon.whatsapp {
    background-color: #25D366;
    width: 60px;
    font-size: 40px;

}

.social-icon.phone-ic,
.social-icon.question-ic {
    background-color: #3a54a4;
}

.social-icon:hover {
    color: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon i {
    font-size: 20px;
    padding: 8px;
}

.navbar {
    position: fixed;
    z-index: 11;
    width: 100%;
    border-bottom: 1px solid var(--primary-color);
    background-color: white;
}

.navbar .navbar-toggler {
    font-size: 30px !important;
    color: var(--primary-color) !important;
}

.navbar .nav-link {
    color: var(--primary-color);
    font-size: 20px;

    font-size: 18px;
    /* font-style: italic; */
    font-family: system-ui;
    font-weight: 600;
}

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

.navbar .active {
    color: var(--secondary-color);
    font-weight: 600;
}

/* start hero section  */

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-image: url('../images/home-1.jpeg');
    animation: background-swipe 15s infinite, zoom-fade 10s infinite;
    z-index: 1;
}

/* Keyframes for background image swipe */
@keyframes background-swipe {
    0% {
        background-image: url('../images/home-1.jpeg');
    }

    33% {
        background-image: url('../images/home-2.jpg');
    }

    66% {
        background-image: url('../images/home-3.jpg');
    }

    100% {
        background-image: url('../images/home-1.jpeg');
    }
}

.hero-academy {
    background-image: url('../images/acad1.png');
    animation: background-swipe-academy 15s infinite, zoom-fade 10s infinite;

}

@keyframes background-swipe-academy {
    0% {
        background-image: url('../images/acad1.png');
    }

    33% {
        background-image: url('../images/acad2.png');
    }

    66% {
        background-image: url('../images/acad3.png');
    }

    100% {
        background-image: url('../images/acad4.png');
    }
}

/* Keyframes for zoom and fade effect */
@keyframes zoom-fade {
    0% {
        transform: scale(1) opacity(0);
    }

    50% {
        transform: scale(1.1) opacity(1);
    }

    100% {
        transform: scale(1) opacity(0);
    }
}

.hero .content-box {
    color: white;
    margin: 0 auto;
    text-align: center;
    line-height: 1.5;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.culture-hero::before,
.hero::before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.culture-hero span,
.hero span {
    text-shadow:
        0 0 5px #a3222e,
        0 0 10px #a3222e,
        0 0 20px #a3222e,
        0 0 40px #a3222e,
        0 0 80px #a3222e;
}

.culture-hero .btn,
.hero .btn {
    font-size: 20px;
    font-weight: bold;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 2px;
    text-decoration: none;
    transition: background-color 0.3s;
    border: 2px solid var(--primary-color);
    margin-top: 20px;
    width: 164px;
}

.culture-hero-btn,
.default-btn {
    font-size: 20px;
    font-weight: bold;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 2px;
    text-decoration: none;
    transition: background-color 0.3s;
    border: 2px solid var(--primary-color);
    margin-top: 20px;
}

.culture-hero .call-us,
.hero .call-us {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.culture-hero .btn:hover,
.hero .btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.culture-hero .call-us:hover,
.hero .call-us:hover {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

/* end hero section  */


/* General Styling for Stats Section */
.stats {
    padding-top: 20px;
    color: #333;
    text-align: center;
    cursor: pointer;
}

.stat {
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
}

/* Style for Stat Numbers */
.stat-number {
    font-size: 60px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 1s ease-in-out;
}

/* Style for the Descriptions */
.stat p {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Media Query for responsiveness */
@media (max-width: 767px) {
    .stat {
        padding: 20px;
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 50px;
    }

    .stat p {
        font-size: 18px;
    }
}


/* start services section  */

/* Services Section Styling */
.services {
    background-color: #070b3b;
    position: relative;
    z-index: 1;
    padding-block: 40px;
}

.services::before {
    content: "";
    position: absolute;
    background-image: url('../images/services-before.png');
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services-item {
    position: relative;
    margin-bottom: 90px;
    transition: transform 0.3s ease;
}

.service-image {
    width: 100%;
    max-height: 350px;
    min-height: 336px;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.services-item:hover {
    transform: translateY(-5px);
}

.services-item:hover i,
.services-item:hover h4 {
    color: var(--secondary-color);
}

.services .content-box {
    position: absolute;
    bottom: -70px;
    left: 40px;
    right: 40px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    z-index: 1;
    width: calc(100% - 80px);
    /* Content box width less than image */
    height: 190px;
}

.services .content-box .btn {
    color: white;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.services .content-box:hover .btn {
    background-color: white;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.services .icon-box {
    margin-right: 15px;
    font-size: 30px;
    color: var(--primary-color);
}

.services .text-box h4 {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin: 0;
}

.services .text-box p {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.services .section-title {
    text-align: center;
    margin-bottom: 45px;
}

.services .section-title span {
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin: auto;
    text-align: center;
}

.services .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 10px;
    color: white;
}

.services-item i {
    transition: transform 0.3s ease;

}

/* Responsive Design */
@media (max-width: 767px) {
    .services-item .content i {
        font-size: 30px;
    }

    .services-item .content span {
        font-size: 14px;
    }

    .services-item .content h3 {
        font-size: 20px;
    }

    .services-item .content p {
        font-size: 12px;
    }
}

/* start swipper section  */

.swiper-slide {
    text-align: center;
    font-size: 18px;
}

.vendors .swiper-slide {
    text-align: center;
    border-radius: 12px;
    padding-block: 5px;
}

.testimonials .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #2f2f30d1;
    border-radius: 0px 100px 0px 100px;
    padding: 30px;
    display: block;

}

.vendors .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 4/2;
    filter: grayscale();
    transition: all .3s ease;
}

.vendors .swiper-slide img:hover {
    filter: none;
}

/* start footer  */
.footer-area {
    background-color: #1a1a1a;
    color: #dcdcdc;
    padding-top: 70px;
    padding-bottom: 30px;
    background-image: url('../images/footer-bg.jpeg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    position: relative;
    z-index: 1;
}

.footer-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0e0129;
    opacity: 0.9;
    z-index: -1;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-widget h4 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-widget p {
    font-size: 16px;
    line-height: 1.8;
    color: #dcdcdc;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #dcdcdc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--secondary-color);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #dcdcdc;
}

.contact-info li i {
    font-size: 20px;
    margin-right: 10px;
    color: #3855a2;
}

.contact-info a {
    color: #dcdcdc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a i {
    font-size: 25px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.social-icons a i:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    margin-top: 30px;
    font-size: 14px;
    color: #a0a0a0;
    border-top: 1px solid #333;
    padding-top: 15px;
    text-align: center;
}




@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(119, 140, 204, .4)
    }

    5% {}

    15% {}

    70% {
        box-shadow: 0 0 0 20px rgba(119, 140, 204, 0)
    }

    100% {
        box-shadow: 0 0 0 40px rgba(119, 140, 204, 0)
    }
}


/* start services details page  */

/* start contact form area page  */

.contact-form-area {
    padding-block: 45px;
    padding-top: 130px;
}

.contact-form-area .contact-info {
    margin-bottom: 30px;
    background-color: #070b3b;
    padding: 52px 35px 22px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
}

.contact-form-area .contact-info::before {
    content: "";
    position: absolute;
    opacity: 0.1;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../imgs/contact.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.contact-info span {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 5px;
}

.contact-info h2 {
    color: #ffffff;
    font-size: 26px;
    margin-bottom: 15px;
}

.contact-info p {
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-form-area .contact-info ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info ul li .content i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: #ffffff;
    font-size: 20px;
    color: var(--primary-color);
    border-radius: 50px;
    border: 1px solid #E2E2E2;
    margin-bottom: 10px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
}

@media only screen and (max-width: 991px) {
    .contact-form-area .contact-info ul li {
        display: inline-block;
        margin-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-form-area .contact-info ul li {
        margin-bottom: 20px;
    }
}

.contact-form-area .contact-info ul li {
    display: block;
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

.contact-info ul li .content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
    display: block;
}

.contact-info ul li .content a {
    color: #ffffff;
    display: block;
    font-weight: 400;
    font-size: 15px;
}

.contact-form {
    max-width: 800px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact-form .form-group label {
    color: #252525;
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-form .form-group .form-control {
    height: 50px;
    color: #252525;
    border: 1px solid #0071dc;
    background-color: #ffffff;
    font-size: 15px;
    padding: 10px 20px;
    width: 100%;
    border-radius: 0;
    font-weight: 500;
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}


/* start services page  */

.servicedetails {
    background-color: #ededed;
    padding-top: 130px;
    padding-bottom: 40px;
}

/* General Styling for the Service Page */
.servicedetails .box {
    text-align: left;
    background-color: white;
    padding: 0;
    border-radius: 12px;
    height: 100%;
    overflow: hidden;
}

.servicedetails .box:hover {
    transform: translateY(-10px);
    transition: all .3s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.servicedetails img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.servicedetails .box .body {
    padding: 20px;
}

.servicedetails h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    /* Dark text for contrast */
    line-height: 1.3;
    margin-bottom: 15px;
}

.servicedetails p {
    font-size: 1.2rem;
    color: #555;
    /* Lighter text for secondary information */
    margin-bottom: 20px;
    line-height: 1.6;
}

.servicedetails ul {
    list-style: none;
    padding-left: 20px;
}

.servicedetails ul li {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}

.servicedetails ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .servicedetails h2 {
        font-size: 2rem;
    }

    .servicedetails p,
    .servicedetails ul li {
        font-size: 1.1rem;
    }

    .servicedetails .title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .servicedetails h2 {
        font-size: 1.8rem;
    }

    .servicedetails p,
    .servicedetails ul li {
        font-size: 1rem;
    }

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

/* start about us section  */



.about {
    padding-top: 95px;
}

.about h2 {
    font-size: 56px;
}

.about p {
    font-size: 20px;
}

@media(max-width:767px) {
    .about h2 {
        font-size: 35px;
    }

    .about p {
        font-size: 16px;
    }
}

/* start mission-vision-values  */

.mission-vision-values {
    background-image: url('../images/neom-aWHKsYkbCi8-unsplash.jpg');
    mix-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.mission-vision-values::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.mission-vision-values {
    background-color: #f8f9fa;
    /* Light background for contrast */
}

.mission-vision-values .box {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid white;
    height: 350px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-vision-values h2,
.mission-vision-values h3,
.mission-vision-values a,
.mission-vision-values div,
.mission-vision-values p,
.mission-vision-values ul,
.mission-vision-values h4 {
    color: white;
}

.mission-vision-values h4 {
    font-size: 36px;
}

.mission-vision-values i {
    font-size: 50px;
}



/* Responsive Design */
@media (max-width: 767px) {
    .mission-vision-values .box {
        height: auto;
    }
}

.mission-vision-values .box .icon-box i {
    color: white;
    font-size: 50px;
    margin-bottom: 10px;
}

.mission-vision-values .box .icon-box h2 {
    color: white;
}

.mission-vision-values .box .content p,
.mission-vision-values .box .content ul {
    color: white;
}

.mission-vision-values .box:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    background-color: white;
}

.mission-vision-values .box:hover i,
.mission-vision-values .box:hover h4,
.mission-vision-values .box:hover h2,
.mission-vision-values .box:hover ul,
.mission-vision-values .box:hover div,
.mission-vision-values .box:hover a,
.mission-vision-values .box:hover p {
    color: var(--primary-color);
}

.mission-vision-values .box:hover a.cer-btns {
    color: black !important;
}

/* start whyus  */
.whyus {
    background-color: #ededed;
    color: black;
}

.whyus .key-feature {
    color: white;
}

.whyus .key-feature i {
    font-size: 40px;
}

p {
    font-size: 18px;
}


/* start culture Curators   */
.culture-hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-image: url('../images/homeCulture.jpg');
    z-index: 1;

}


/* Responsive Design */

.mission {
    background-color: #f7f7f7;
    padding-block: 50px;
    background-position: bottom;
}

.mission .col-lg-5 img {
    height: 100%;
    object-fit: cover;
}

.mission .box {
    background-color: white;
    padding: 35px 20px;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 0 5px rgb(163, 34, 46);
}

.mission .box:hover {
    box-shadow: 0 0 15px rgb(163, 34, 46);
    transform: translateY(-10px);
    transition: all .3s ease;

}

@media (max-width: 992px) {
    .about-culture .content h2 {
        font-size: 2rem;
    }

    .about-culture .content p {
        font-size: 1rem;
    }

    .about-culture .content {
        width: 90%;
    }
}

.whyCulture {
    padding-block: 50px;
}

/* Image Styling */
.whyCulture img {
    border-radius: 30% 0% 30% 0%;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.2);
}


/* Background Shape */
/* .bg-shape {
    width: 430px;
    height: 430px;
    border-radius: 30% 0% 30% 0% ;
    background: linear-gradient( var(--primary-color) 30%, var(--secondary-color) 100%);
    box-shadow: 0 15px 38px 0 rgba(0, 0, 0, 0.2);
    opacity: 0.5;
    position: absolute;
    top: -0;
    left: -0;
    z-index: -1;
    transform: rotate(15deg);
    animation: float 3s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(15deg);
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
    }
}

@media (max-width: 1200px) {
    .bg-shape {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 991px) {
    .bg-shape {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 480px) {
    .bg-shape {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 415px) {
    .bg-shape {
        width: 320px;
        height: 320px;
    }
} */


/* Info Box */
.imginfo__box {
    background-color: var(--secondary-color);
    color: #fff;
    position: absolute;
    right: 85px;
    bottom: -30px;
    padding: 35px;
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
    text-align: center;
    transform: rotate(45deg);
}

.imginfo__info {
    transform: rotate(-45deg);
}

/* Title Styling */
.imginfo__box .imginfo__title {
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 10px;
    color: #fff;
}

/* Description Styling */
.imginfo__box p {
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {

    .imginfo__box {
        padding: 30px;
        min-width: 150px;
        min-height: 150px;
    }

    .imginfo__box .imginfo__title {
        font-size: 35px;
        line-height: 35px;
    }

    .imginfo__box p {
        font-size: 20px;
        line-height: 26px;
    }
}

@media (max-width: 415px) {

    .imginfo__box {
        padding: 20px;
        min-width: 100px;
        min-height: 100px;
        right: 45px;
    }

    .imginfo__box .imginfo__title {
        font-size: 30px;
    }
}

/* Right Column Styling */
.box {
    padding: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
}

.features-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 8px;
}


/* start core  */

.culture-stats .row {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    transform: translateY(-50%);
    position: relative;
    z-index: 1;
}

.culture-stats .stat-number {
    color: var(--secondary-color);
}

@media(max-width:767px) {
    .culture-stats .row {
        transform: translate(0);
        box-shadow: none;
    }
}




/* Language Switcher Styles */
#language-switcher {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
}

.language-switcher-toggle {
    background-color: #fff;
    color: #333;
    padding: 10px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: bold;
    border: 1px solid #3a54a4;
    font-size: 14px;


    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #3a54a4;
    animation: 1.5s ease-out infinite animate-pulse;
}

.language-switcher-toggle:hover {
    background-color: #425388;
}

.language-switcher-toggle .current-lang {
    margin: 4px;
    color: white;
}

.language-switcher-toggle .arrow {
    margin-left: 8px;
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.language-switcher-toggle .fa-globe {
    color: white;
    font-size: 18px;
}

.language-menu {
    display: none;
    background-color: #fff;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 120px;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 8px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.language-option:hover {
    background-color: #ddd;
}

.language-option .flag-icon {
    width: 20px;
    height: auto;
    margin: 4px;
}

/* Arrow rotation when the menu is open */
.language-switcher-toggle.open .arrow {
    transform: rotate(-135deg);
}


/* start experiences page  */
.experiences {
    padding-bottom: 30px;
}

.experiences-banner {
    padding-top: 130px;
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.experiences-banner p {
    font-size: 20px;
    font-weight: 500;
}

.experiences .box {
    border-radius: 12px;
    padding: 10px;
    border: 1px solid #1a1a1a;
    object-fit: contain;
    aspect-ratio: 4/2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experiences .box img {
    max-height: 90px;
    object-fit: cover;
}




/* Styles for the popup */
.popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black with opacity */
    z-index: 9999;
    /* Make sure it appears above other content */
}

/* Popup content */
.popup-content {
    background-color: var(--primary-color);
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    /* Adjust the width as needed */
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Close button */
.close-btn {
    font-size: 24px;
    color: var(--primary-color);
    background-color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
}

.popup-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: white;
}

.popup-content p {
    font-size: 18px;
    color: white;
}

/* OK button */
.ok-btn {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 20px;
}

.ok-btn:hover,
.ok-btn:focus {
    background-color: white;
    color: var(--secondary-color);
}



/* // feedback section */

.feedback-modal {
    background-color: white;
    border-radius: 20px;
    /* padding: 70px; */
}

.feedback-modal h2 {
    font-size: 2rem;
    font-weight: 600;
}

.feedback-modal p {
    font-size: 16px;
    margin-bottom: 20px;
    /* max-width: 421px; */
    width: 100%;
}

.feedback-modal .rating-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    box-shadow: none;
    transform: scale(1);
    color: #60699a;
}

.feedback-modal .rating-options .border {
    text-align: center;
    cursor: pointer;
    border: 2px solid #e5edff;
    padding: 20px;
    border-radius: 5px;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 18%;
    min-width: 90px;
    box-sizing: border-box;
}

.feedback-modal .rating-options .border input {
    display: none;
}

.feedback-modal .rating-options .border .emoji {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
    color: #60699a;
}

.feedback-modal textarea {
    width: 100%;
    padding: 8px;
    margin-top: 8px;
    margin-bottom: 16px;
    border-radius: 5px;
    border: 2px solid #a3b8e8;
    resize: none;
    font-size: 1rem;
    height: 80px;
    outline: none;
}

.feedback-modal .options {
    text-align: left;
    margin-bottom: 16px;
}

.feedback-modal .options .checkbox {
    display: block;
    margin-top: 8px;
}

.feedback-modal .options .checkbox input {
    margin-right: 8px;
    width: 21px;
    height: 21px;
    accent-color: #3a54a4;
    cursor: pointer;
    vertical-align: middle;
}

.feedback-modal .options .checkbox a,
.feedback-modal .options .checkbox a:visited {
    color: #3a54a4;
    text-decoration: none;
}

.feedback-modal .actions {
    display: flex;
    justify-content: end;
    gap: 20px;
    /* margin-top: 40px; */
}

.feedback-modal .actions button,
a.contact-btn {
    padding: 7px 40px;
    border-radius: 6px;
    border: none;
    font-size: 17px;
    cursor: pointer;
}

.feedback-modal .actions button#submit,
a.contact-btn {
    background-color: #3a54a4;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

a.contact-btn {
    text-decoration: none;
}

.feedback-modal .actions button#cancel {
    background-color: #fff;
    color: #60699a;
}

#contact-consent-error {
    color: #3a54a4;
    font-weight: bold;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

#success-message {
    color: green;
    font-weight: bold;
    font-size: 14px;
    margin-top: 8px;
    display: none;
}

@media (max-width: 720px) {
    body {
        height: auto;
    }

    .feedback-modal,
    .reviews h2 {
        width: 90%;
        margin: 50px auto;
    }

    .rating-options {
        flex-wrap: wrap;
        gap: 10px;
        margin: 20px auto;
        justify-content: center;
    }

    .actions {
        flex-direction: column;
    }
}




.reviews .stars,
.courses .course-rate-main {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #FFA500;
}


/* Styling for each individual review box */
/* .review-box {
    padding: 30px 15px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    width: 80%;
    margin: auto;
} */

/* Styling for each individual review box */
.review-box {
    padding: 30px 15px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    width: 80%;
    margin: auto;
    transition: transform 0.3s ease;
}

/* Hover effect to make it interactive */
.review-box:hover {
    transform: scale(1.05);
}

/* Container for the reviews */
.reviews.swiper {
    padding: 40px 20px;
    /* background: #f9f9f9;
    border-radius: 12px; */
    /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05); */
}

/* Stars styling */
.stars {
    color: #f5a623;
    /* golden color */
    font-size: 1.2rem;
    margin-top: 10px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .review-box {
        width: 95%;
        padding: 20px 10px;
        font-size: 0.9rem;
    }

    .reviews.swiper {
        padding: 30px 10px;
    }
}

@media (max-width: 480px) {
    .review-box {
        width: 100%;
        padding: 15px 8px;
        font-size: 0.85rem;
    }
}

/* Courses Styling  */

.courses .tablist {
    background-color: #fff;
    border-radius: 20px !important;
    margin-bottom: 20px !important;
    text-align: center;
    padding: 19px;
    /* width: max-content; */
    margin: auto;
    border: 1px solid #c7cdd2;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    gap: 2rem;
    /* مسافة بين الروابط */
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    scrollbar-width: thin;
    /* للفايرفوكس */
}


.courses .tablist span {
    display: inline-block;
    padding: 8px 30px;
    white-space: nowrap;
    text-decoration: none;
    color: #333;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 14px;
}

.courses .tablist span.active {
    background-color: #112D63;
    color: rgb(255, 255, 255);
    border-radius: 10px;
    border: 2px solid #112D63;


}

.courses .tablist::-webkit-scrollbar {
    height: 30px !important;
}

.courses .tablist::-webkit-scrollbar-track {
    background: transparent !important;
}

.courses .tablist::-webkit-scrollbar-thumb {
    background-color: red !important;
    border-radius: 10px !important;
    border: 5px solid transparent !important;
    /* قلل الحجم */
    background-clip: content-box !important;
}



.courses .item {
    border-radius: 18px;
    box-shadow: none;
    margin: 0 14px;
    transition: transform 0.1s ease;
    transition: all 0.1s ease-in-out;
    background: #fff;
    text-align: left;
    border: 1px solid #f3f3f3;
    padding: 10px;
    width: 100%;
    transition: transform 0.3s ease;


}

.courses .item:hover {
    box-shadow: 0 0 40px -8px rgb(0 0 0 / 16%), 0 0 24px -16px rgb(0 0 0 / 16%);
    transform: scale3d(1.03, 1.03, 1.08) translate3d(0.1rem, -0.25rem, 20rem);
    -webkit-transform: 0.3s ease;
    transition: transform 0.3s ease;
    /* transition: all 0.3s ease-in-out; */
}

/* .courses .item .course-img {
    overflow: hidden;
    border-radius: 8px;
}

.courses .item .course-img img {
    border-radius: 18px;
    object-fit: cover;
    width: 100%;
    height: 100%;
} */


.courses .item .course-img {
    overflow: hidden;
    border-radius: 8px;
    height: 200px;
    /* أضفت ارتفاع ثابت */
}

.courses .item .course-img img {
    border-radius: 18px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    /* لتحسين العرض */
}

.courses .item .course-title h4 {
    margin-top: 20px;
    color: #556770;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;

}

.courses .item .course-date h6 {
    color: #8C8C8C;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 15px;
}

.courses a.cer-btns,
.course-details a.cer-btns {
    background-color: #3855a2;
    color: white;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 20px;
}

.courses a.cer-btns {
    background-color: #00B9B5 !important;
    padding: 3px 18px;
    font-size: 15px;
    border-radius: 3px;
}

.course-details a.cer-btns {
    padding: 13px 30px;
    font-size: 18px;

}

.courses .course-rate-main {
    margin-bottom: 20px;
}

/* // academy Page */
.wrapper {
    position: relative;
    /* width: 850px; */
    height: 500px;
    /* margin: 100px auto; */
    background: url('../images/acad_about1.png');
    background-position: 90% 50%;
    box-shadow: 0 5px 5px rgba(55, 55, 55, 0.4);
    background-size: cover;
    border: 4px solid #3a54a4;
    border-radius: 8px;

}

.wrapper .name {
    position: absolute;
    bottom: 10px;
    left: 20px;
    color: #fff;
    font-size: 55px;
    word-wrap: break-word;
    padding: 10px;
    font-family: 'Noto Kufi Arabic', sans-serif !important;
    transition: all 0.4s ease-in-out;
}

.wrapper .name:hover {
    cursor: default;
    transform: translateX(-20px);
}

.wrapper .name::first-letter {
    font-size: 100px;
}

.wrapper  .content {
    position: absolute;
    right: 20px;
    top: -30px;
    width: 400px;
    /* height: 100%; */
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 4px rgba(55, 55, 55, 0.3);
    border-radius: 5px;
    direction: rtl;
    font-family: 'Noto Kufi Arabic', sans-serif !important;
    border: 1px dashed #3a54a4;
}

.wrapper .content h2 {
    color: #444;
    font-size: 26px;
}

.wrapper .content h2::before, h2.acad-service-tit::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0px 4px;
    background-color: #3a54a4;
    border-radius: 50%;;
    }

.wrapper .content p {
    color: #999;
}

.wrapper .content .links {
    margin: 30px 0 50px;
}

.xh .content .links a {
    display: block;
    margin: 10px 0;
    font-size: 15px;
    text-decoration: none;
    color: white;
    background-color: #004080;
    border-color: #004080;
    width: fit-content;
}

.xh .content .links a::before {
    font-family: "FontAwesome";
    content: '\f0c1';
    font-size: 11px;
    padding-right: 10px;
}

.xh .content .links a.location::before {
    content: '\f124';
}
.xh .content .links a:hover {
    background: none;
    color: black;
}


.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.tit_st {
    position: relative;
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 20px;
    color: #163259; /* Match your site color */
    white-space: nowrap;
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #163259, transparent);
    max-width: 120px;
}


