:root {
    --main-font: "Cairo", sans-serif;
    --tanspot-base: rgb(232, 129, 38);
    --primary-color: #1e3a8a;
    --secondary-color: #f97316;
    --accent-color: #0ea5e9;
    --tanspot-gray: #585b6b;
    --dark-color: #1f2937;
    --tanspot-black: #062f3a;
    --tanspot-white: #ffffff;
    --tanspot-primary: #F4F5F9;
    --tanspot-bdr-color: #e6e6e6;
    --tanspot-bdr-radius: 30px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--main-font) !important;
    background-color: #111111;
    color: var(--tanspot-white);
    line-height: 1.6;
    overflow-x: hidden;

}

section {
    padding: 100px 0px;
}

.navbar-brand img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 80px;
    }
}

.navbar-toggler {
    border: 1px solid var(--tanspot-base);
    color: var(--tanspot-base) !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}



.about .right-content .sub-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.about .right-content .sub-title .dot {
    width: 11px;
    height: 11px;
    background: var(--secondary-color);
    border-radius: 50%;
    flex: 0 0 auto;
    box-shadow: 0px 3px 5.52px 0.48px rgba(233, 129, 37, 0.46);
    animation: subtitleDot1kf 2s linear infinite;
}

@keyframes subtitleDot1kf {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

.about {
    position: relative;
    overflow: hidden;
    z-index: 0;
}


.about .right-content .sub-title .about-span {
    font-size: 18px;
    font-weight: 500;
}

.about .right-content .about-txt {
    color: var(--tanspot-white);
    font-weight: 700;
    line-height: 1.7;
}

.about .right-content .about-title {
    display: block;
    text-align: start;
    position: relative;
    background-size: 200% 100%;
    background-position-x: -100%;
    margin-bottom: 30px;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right,
            #fff 50%,
            rgba(104, 104, 104, 0.5) 50%);
    padding-bottom: 7px;
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.5;
    transition: background-position-x 1.2s ease;
}

.about .right-content .about-title.reveal {
    background-position-x: 0%;
}

.about .right-content p {
    margin: 0px 30px 0px 0px;
    color: #bcbcbc;
    font-size: 17px;
}

.about .right-content .about-desc {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about .right-content .about-desc::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 3px;
    background-color: var(--secondary-color);
    top: 10%;
}

.about .about-img-wrapper {
    position: relative;
    z-index: 1;
}

.about::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: -80px;
    right: -80px;
    filter: blur(160px);
    opacity: .4;
    z-index: 0;
}

.light {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -80px;
    left: -80px;
    filter: blur(160px);
    opacity: .4;
    z-index: 0;
}

.about::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/about-bg.webp);
    background-repeat: no-repeat;
    background-size: contain;
    top: 0px;
    left: 0px;
    opacity: .4;
    z-index: 0;
}

.about>* {
    position: relative;
    z-index: 1;
}

.about .about-img-wrapper {
    width: 80%;
}

@media screen and (min-width:992px) {
    .about .about-img-wrapper {
        width: 100%;
    }
}

.about .about-img-wrapper .img {
    height: 580px;
    object-fit: cover;
    z-index: 1;
    position: relative;
}

.about .about-img-wrapper .img-2 {
    display: none;
}

@media screen and (min-width:1200px) {
    .about .about-img-wrapper .img-2 {
        display: block;
    }
}

.about .about-img-wrapper .img-2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 600px;
    border-radius: 600px 0px 0px 600px;
    background-color: #f97316;
    top: -3.5%;
    right: 4%;
    z-index: -1;
    border: 100px solid #f97316;
}

.about .about-img-wrapper .img-1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 590px;
    border-radius: 600px 0px 0px 600px;
    background-color: #000;
    top: 4%;
    right: -5%;
    z-index: -1;
    border: 160px solid #000;
    transform: scaleX(-1);
}

.about .about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 600px 0px 0px 600px;

}

.about .about-img-wrapper .img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 600px 0px 0px 600px;

}

.about .about-img-wrapper .img-1 img {
    border-radius: 0px 600px 600px 0px;
    transform: translate(-5px, 25px);
}

.goal-card {
    position: relative;
    padding: 30px 40px;
    border-radius: 20px;
    text-align: center;
    background: linear-gradient(180deg, #2d2d2d 0%, #000 100%);
    z-index: 0;
    height: 100%;
}

.goal-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: var(--tanspot-base);
    opacity: 0.2;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s ease-in-out;
    z-index: -1;
}

.goal-card:hover::after {
    transform: scaleY(1);
}

.goal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(71deg, #110e0e, #f9741675, #110e0e);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;

    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;

    z-index: -2;
}

.goal-card .icon i {
    color: var(--secondary-color);
    font-size: 40px;
    margin-bottom: 20px;
}

.goal-card h2 {
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 20px;
}

.goal-card p {
    font-size: 16px;
}

.line {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 85%, rgba(255, 255, 255, 0) 100%);
    width: 90%;
    height: 1px;
    opacity: 0.15;
    margin-left: auto;
    margin-right: auto;
}

.divider span {
    display: block;
    color: var(--secondary-color);
    line-height: 1;
    font-size: 20px;
    margin-top: -12px;
    position: absolute;
    left: 50%;
    font-family: "Inter", sans-serif !important;
    transform: translate3d(0px, 0px, 0px) rotate(197.604deg);
    animation: plusFloat 6.5s linear infinite;
    will-change: transform;
}

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

    25% {
        transform: translateX(20px) rotate(90deg);
    }

    50% {
        transform: translateX(0) rotate(180deg);
    }

    75% {
        transform: translateX(-20px) rotate(270deg);
    }

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



.scroll-title {
    font-size: 60px;
    font-weight: 800;
    direction: rtl;
    letter-spacing: 0px;
    color: transparent;
    -webkit-text-stroke: 1px #4f4f4f;
    white-space: nowrap;
    font-family: var(--main-font);
}

@media screen and (max-width:768px) {
    .scroll-title {
        font-size: 40px;
    }
}

.scroll-title span {
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px #444;
    transition: color 0.25s ease, -webkit-text-stroke 0.25s ease;
}

.scroll-title span.active {
    color: var(--tanspot-base);
    -webkit-text-stroke: 0;
}

.services .service-card {
    position: relative;
    padding: 26px 32px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 80px;
    z-index: 1;
    background: #050505;
    transition: all .3s ease-in-out;
    text-align: right;
    border: 1px solid transparent;
}

.services .service-card:hover {
    border-color: var(--secondary-color);
    transform: translateX(-10px);
}

@media screen and (min-width:1100px) {
    .service-2 {
        margin-right: 160px;
    }

}

.service-card .image {
    height: 350px;
}

.services .service-card .content {
    padding: 30px;
}

.service-card .image img {
    height: 100%;
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
}

.service-card .content .sub-title {
    color: var(--tanspot-base);
    font-weight: 700;
    font-size: 18px;
}

.service-card .content .service-title {
    font-size: 40px;
    margin-top: 15px;
    font-weight: 700;
    margin-bottom: 35px;
}

.service-card .content p {
    font-size: 18px;
}

@media screen and (max-width:768px) {
    .service-card .content .service-title {
        font-size: 20px;
    }

    .service-card .content p {
        font-size: 14px;
    }
}

.service-card .content ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 10px;
    font-weight: 600;
    margin-top: 15px;
    font-size: 16px;
    padding-right: 20px;
}

.services {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.circle-jump {
    position: absolute;
    top: 30%;
    right: 2%;
    width: 100px;
    height: 100px;
    opacity: 0.55;
    z-index: -1;
    animation: jump 5s linear infinite;
}

.circle-2 {
    top: 60%;
}

.circle-3 {
    top: 90%;
}

@keyframes jump {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    50% {
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.services {
    position: relative;
    overflow: hidden;
    background-image: url(../images/bg-img.png);
    background-position: top left;
    background-repeat: repeat-y;
    background-size: 70%;
}


.services::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: -80px;
    right: -80px;
    filter: blur(160px);
    opacity: .4;
    z-index: -1;
}


.services .container {
    position: relative;
    z-index: 1;
}

@keyframes floatText {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-48%, -52%) scale(1.02);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.services::before {
    animation: floatText 20s ease-in-out infinite;
}



.hero-header {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(294deg, #71491c61 0%, #000 86%),
        url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d") center / cover no-repeat;
    color: #fff;
    border-radius: 0px;
    overflow: hidden;
}

@media screen and (max-width:1100px) {
    .hero-header {

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (min-width:768px) {
    .hero-header {
        border-radius: 30px;
        margin: 30px;
    }
}

.navbar {
    position: fixed;
    width: 100%;
    padding: 20px 0;
    transition: all 0.4s ease;
    z-index: 2000 !important;
}

.navbar .container {
    background: #171619;
    box-shadow: 1.782px 0.908px 32.2px 2.8px rgba(232, 129, 38, 0.23);
    border-radius: 50px;
    border: 1px solid rgba(232, 129, 38, 0.4);
    padding: 10px 30px;
    z-index: 2000 !important;

}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 0.5rem 2rem;
    color: var(--tanspot-white) !important;
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.navbar-nav .nav-link:hover {
    font-weight: 600;
    color: var(--tanspot-base) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background-color: var(--tanspot-base);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.navbar .dropdown-menu,
.submenu-toggle {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    min-width: 200px;
    background-color: #050505;
}

.navbar .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--tanspot-white) !important;

}

.navbar .dropdown-item:hover {
    background-color: var(--tanspot-base);
    color: var(--tanspot-white);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--tanspot-base);
    color: var(--tanspot-white);
    text-decoration: none;

}

.nav-item.dropdown>.nav-link {
    position: relative;
    padding-inline-end: 18px;
}

.nav-item.dropdown>.nav-link::before {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    position: absolute;
    inset-inline-end: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: currentColor;
}

.nav-item.dropdown.show>.nav-link::before {
    transform: translateY(-50%) rotate(180deg);
}

.navbar .dropdown-item:active {
    background-color: var(--tanspot-base);
}


@media (min-width: 1200px) {
    .navbar .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
    }

    .dropdown-submenu:hover>.dropdown-menu {
        display: block;
    }

    .dropdown-submenu {
        position: relative;

    }

    .dropdown-submenu>.dropdown-menu {
        top: 0;
        right: -100%;
        margin-top: -4px;
        text-align: right !important;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 160px;
    max-width: 650px;
}

.hero-content h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--secondary-color);
    position: relative;
}

.hero-content p {
    margin: 30px auto;
    opacity: 0.9;
    max-width: 520px;
}

.btn-primary {
    padding: 15px 70px;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 25px;
    color: #111111;
    font-weight: 700;
    transition: all 0.5s ease-in-out;

}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #111111;
    transform: translateY(-5px);

}

.hero-content .btn-secondary {
    padding: 15px 70px;
    background-color: transparent;
    border: 1px solid var(--tanspot-white);
    border-radius: 25px;
    color: var(--tanspot-white);
    font-weight: 700;
}

.hero-content .btn {
    transition: all 0.5s ease-in-out;
}

.hero-content .btn:hover {
    transform: translateY(-5px);
}


@media (max-width: 991px) {
    .hero-content {
        padding-top: 140px;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .nm-social {
        display: none;
    }
}

.nm-social {
    position: absolute;
    right: 0;
    top: 30%;
    width: 300px;
    height: 300px;
    transform: translateY(-50%);
    z-index: 2;
    overflow: visible;
}

.nm-social-border {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 3px solid #7c7c7c;
    border-radius: 50%;
    right: -204px;
    top: 100%;
    animation: roll 10s linear infinite;
}

.nm-social-border::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--secondary-color);
    border-radius: 50%;
    left: 38%;
    top: 0%;
    transform: translateY(-50%);
}

.nm-social-border::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--secondary-color);
    border-radius: 50%;
    left: 40%;
    top: 100%;
    transform: translateY(-50%);
}

@keyframes roll {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

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

.nm-social-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 37px;
    margin-right: 10px;
    transform: rotate(0deg);
    transition: all 1.5s ease-in-out;
    border: 50px solid var(--secondary-color);
    background-color: transparent;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: -60%;
}

.link-elm {
    position: absolute;
    color: #111111;
    text-decoration: none;
    transition: 0.3s;
    font-size: 30px;
}

.link-elm:nth-child(1) {
    top: -23%;
    left: 40%;
    transform: translateX(-50%);
}

.link-elm:nth-child(2) {
    top: 90%;
    left: -3%;
    transform: translateY(-50%);
}

.link-elm:nth-child(3) {
    bottom: -23%;
    left: 40%;
    transform: translateX(-50%);
}

.link-elm:nth-child(4) {
    top: 50%;
    left: -19%;
    transform: translateY(-50%);
}

.link-elm:nth-child(5) {
    top: 0%;
    left: -4%;
}

#fluid {
    display: none;
}

@media screen and (min-width:992px) {
    #fluid {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        z-index: 3;
        pointer-events: none;
        display: block;
    }
}

.counter {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 70px 0px !important;

}

.counter::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/header-bg-1.png);
    opacity: 0.02;
}

.counter .counter-card {
    position: relative;
    background: linear-gradient(180deg, #2d2d2d 0%, #000 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px 30px 42px;
    text-align: center;
    z-index: 1;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.counter-card .icon {
    font-size: 30px;
    width: 68px;
    height: 68px;
    position: absolute;
    top: -34px;
    left: calc(50% - 34px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    z-index: 9;
    border: 1px solid var(--secondary-color);
    transition: all 300ms ease;
}

@media screen and (max-width : 768px) {
    .counter-card .icon {
        top: -10%;
    }
}

.counter-card .number {
    font-size: 40px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
}

.counter-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--tanspot-base);
}

.cta .container {
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .7)), url(../images/cta.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cta .container::after {
    content: "";
    position: absolute;
    width: 550px;
    height: 350px;
    border-radius: 50%;
    background: var(--secondary-color);
    -webkit-filter: blur(75px);
    filter: blur(75px);
    opacity: 0.15;
    pointer-events: none;
    bottom: 0;
    left: 30%;
}

.steps {
    position: relative;
    direction: rtl;
}



.step {
    display: flex;
    align-items: center;

    gap: 25px;
    margin-bottom: 40px;
    position: relative;
    padding: 20px;
}

.step-indicator {
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    transition: all 0.5s ease-in-out;

}

.process-line {
    position: absolute;
    top: 0;
    inset-inline-start: 45px;
    transform: translateX(-50%);
    height: 100%;
    width: 4px;
    z-index: 1;
    pointer-events: none;
    -webkit-mask-image: url("../images/process-line-2.svg");
    -webkit-mask-repeat: repeat-y;
    -webkit-mask-position: top center;
    -webkit-mask-size: auto;
    mask-image: url("../images/process-line-2.svg");
    mask-repeat: repeat-y;
    mask-position: top center;
    mask-size: auto;
    background-color: #999996;
    opacity: 0.15;
}

.step-indicator::after {
    content: "";
    position: absolute;
    top: 45%;
    left: -45%;
    width: 26px;
    height: 3px;
    z-index: -1;
    background-color: var(--secondary-color);
}

.step.active .step-indicator,
.step .step-indicator:hover {
    background: var(--secondary-color);
}

.step-card {
    background: #0b0b0b;
    border-radius: 16px;
    padding: 28px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
    z-index: 3;
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    color: #cfcfcf;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .steps::before {
        right: 22px;
    }

    .step {
        gap: 18px;
    }

    .step-card {
        padding: 20px;
    }
}

.cta .container .content h2 {
    font-size: 42px;
    font-weight: 800;
}

.cta .container .content p {
    font-weight: 500;
}

.footer {
    background-color: #191A18;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 68px;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/footer-bg.webp);
    z-index: -1;
    mix-blend-mode: luminosity;
    opacity: 0.15;
}

.footer::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--secondary-color);
    -webkit-filter: blur(75px);
    filter: blur(75px);
    opacity: 0.15;
    pointer-events: none;
    top: auto;
    right: auto;
    left: -100px;
    bottom: -100px;
}

.footer-end {
    position: relative;
    z-index: 1;
}

.footer-end::before {
    content: "";
    position: absolute;
    top: -115px;
    right: 350px;
    left: auto;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--secondary-color);
    -webkit-filter: blur(75px);
    filter: blur(75px);
    opacity: 0.15;
    pointer-events: none;
}

.footer h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.footer h5::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -15px;
    width: 60%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 4px;
}

.footer .footer-links a {
    font-size: 18px;
    text-decoration: none;
    color: var(--tanspot-white);
}

.footer .footer-social a {
    width: 52px;
    height: 52px;
    background-color: rgb(44, 44, 44);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: .3s;
    text-decoration: none;
    color: var(--tanspot-white);
    font-size: 20px;
}

.facebook:hover {
    background-color: #0072b1 !important;
    transition-duration: .3s;
}

.instagram:hover {
    background-color: #d62976 !important;
    transition-duration: .3s;
}

.footer .footer-social a:hover i {
    animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

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

.course-header {
    min-height: 50vh;
}

.courses {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.courses::after {
    content: "";
    position: absolute;
    top: 0;
    right: -9%;
    width: 300px;
    height: 100%;
    background-image: url("../images/about-bg.png");
    background-repeat: repeat-y;
    background-position: top right;
    background-size: auto;
    z-index: -1;
    opacity: 0.045;
    mix-blend-mode: luminosity;
}

.courses::before {
    content: "";
    position: absolute;
    top: 0;
    left: -9%;
    width: 300px;
    height: 100%;
    background-image: url("../images/about-bg.png");
    background-repeat: repeat-y;
    background-position: top right;
    background-size: auto;
    z-index: -1;
    opacity: 0.045;
    mix-blend-mode: luminosity;
    transform: scaleX(-1);
}

.courses .course-card {
    padding: 0;
    min-height: 600px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out 0s;

}

.course-card:hover {

    transform: perspective(600px) rotateX(0deg) rotateY(0.05deg) scaleX(1.01) scaleY(1.01) !important;

}

.courses .course-1 {
    background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%), url(../images/course-1.avif);
    background-position: center;
    background-size: cover;
}

.courses .course-2 {
    background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%), url(../images/course-2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.courses .course-3 {
    background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%), url(../images/course-3.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.courses .course-4 {
    background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%), url(../images/course-4.avif);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.courses .course-5 {
    background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%), url(../images/course-5.avif);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.courses .course-6 {
    background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%), url(../images/course-6.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.courses .course-7 {
    background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%), url(../images/course-7.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.courses .course-8 {
    background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%), url(../images/course-8.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.courses .course-9 {
    background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%), url(../images/course-9.avif);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.courses .course-10 {
    background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%), url(../images/course-10.avif);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.courses .course-11 {
    background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%), url(../images/course-11.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.courses .course-12 {
    background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%), url(../images/course-12.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.courses .course-card .content {
    background-color: #050505;
    border: 1px solid #282926;
    padding: 10px 30px 23px 10px;
    width: calc(100% - 30px);
    margin: 15px;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.courses .course-card .content .category {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    background-color: #191a18;
    border: 1px solid #282926;
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    padding: 4px 10px;
    display: inline-flex;
    overflow: hidden;
    border-radius: 50px;
}

.courses .course-card .content h2 {
    font-size: 20px;
    font-weight: 700;
}

.courses .course-card .content i {
    color: var(--secondary-color);
}

.course-card .submit-btn {
    background-color: var(--secondary-color);
    color: #111111;
    font-weight: 800;
    font-style: 20px;
}

.submit-btn i {
    color: #111111 !important;
}

.Btn,
.Btn-2 {
    width: 240px;
    height: 60px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #f97316, #ffaf76, #713408, #713408, #ffaf76, #713408);
    background-size: 250%;
    background-position: left;
    color: #ffd277;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: 1s;
    overflow: hidden;
    margin: auto;
}

.Btn::before,
.Btn-2::before {
    position: absolute;
    content: "عرض جميع الدورات";
    color: var(--tanspot-white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 97%;
    height: 90%;
    border-radius: 8px;
    transition-duration: 1s;
    background-color: rgba(0, 0, 0, 0.842);
    background-size: 200%;
}

.Btn-2::before {
    content: "المدير التنفيذي";
}

.Btn:hover,
.Btn-2:hover {
    background-position: right;
    transition-duration: 1s;
}

.Btn:hover::before,
.Btn-2:hover::before {
    background-position: right;
    transition-duration: 1s;
}

.Btn:active {
    transform: scale(0.95);
}


.register-section .container-fluid {
    background-color: #110e0e;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 30px;
    border: 1px solid #ffaa6d46;
}

.register-section .container-fluid::after {
    content: "";
    position: absolute;
    inset: 0%;
    background-image: url("../images/registration-bg.png");
    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.02;
    z-index: -1;
}

.register-card,
.structure-card {
    background: linear-gradient(#1a1a1a, #232323) padding-box,
        linear-gradient(145deg, transparent 35%, #f97316, #713408) border-box;
    border: 2px solid transparent;
    padding: 40px;
    width: 100%;
    max-width: 520px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    margin: auto;
}

.structure-card {
    padding: 10px;
    max-width: 620px;
}

.form-label {
    font-weight: 600;
    margin-bottom: 10px;
}

.form-control,
.form-select {
    height: 50px;
    border-radius: 8px;
    background-color: transparent;
    color: var(--tanspot-white) !important;
}

.form-control::placeholder {
    color: var(--tanspot-white);
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
    background-color: transparent;

}

select option {
    background-color: #1a1a1a;
    color: var(--tanspot-white);
}

select option:hover {
    background-color: var(--secondary-color) !important;
    color: #111 !important;
}

.whatsapp-btn {
    background: var(--secondary-color);
    color: #111;
    height: 55px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    transition: .3s;
}

.whatsapp-btn i {
    margin-left: 8px;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    background: var(--secondary-color);
    color: #111;
}

.register-section .text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 30px;
}

.register-section .text p {
    font-size: 18px;
}

@media screen and (min-width:992px) {
    .register-section .text p {
        width: 90%;
    }
}

.about::before,
.about::after,
.services::before,
.services::after,
.courses::before,
.courses::after,
.register-section .container-fluid::after,
.footer::before,
.footer::after {
    pointer-events: none;
}

.calendar,
.certificates {
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 20px;
}

.calendar::before,
.certificates::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/bg-1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;

}

.calendar .card-adv,
.certificates .card-adv {
    background-color: #1C1C1C;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 20px;
    border: 1px solid #ffaf76;
    max-width: 400px;
    margin: auto;

}

.certificates .card-adv {
    max-width: 600px;
}

@media screen and (min-width:768px) {
    .certificates .card-adv .img {
        width: 550px;
    }
}

.calendar .card-adv img,
.certificates .card-adv img {
    border-radius: 20px;
    width: 100%;
}

.calendar .card-adv h2,
.certificates .card-adv h2 {
    font-weight: 700;
    font-size: 28px;
    margin-top: 15px;
}

.comming-courses .course {
    width: 100%;
    background-color: rgba(250, 251, 251, 0.08);
    border: 1px solid rgba(250, 251, 251, 0.08);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

.comming-courses .course:hover {
    transform: translateX(-5px);
}

.comming-courses .course h3 {
    font-size: 24px;
}

.comming-courses .course .icon {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}



@media screen and (min-width:992px) and (max-width:1200px) {
    .calendar .card-adv h2 {
        font-size: 24px;
    }
}

@media screen and (min-width:1200px) and (max-width:1400px) {
    .comming-courses .course h3 {
        font-size: 18px;
    }
}

@media screen and (max-width:768px) {
    .comming-courses .course h3 {
        font-size: 10px;
    }
}

.staff,
.projects,
.council,
.structure,
.jobs {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.structure {
    border-radius: 20px;
}

.staff::after,
.council::after {
    content: "";
    position: absolute;
    background-image: url(../images/Banner-1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    inset: 0;
    z-index: -1;
}

.projects::after,
.jobs::after {
    content: "";
    position: absolute;
    background-image: url(../images/banner-2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    inset: 0;
    z-index: -1;
    opacity: 0.5;
}

.structure::after {
    content: "";
    position: absolute;
    background-image: url(../images/structure-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    inset: 0;
    z-index: -1;
    opacity: 0.5;
}

.team-card,
.council-card,
.job-card {
    padding: 5px;
    border-radius: 20px;
    margin-top: 40px;
    transform: translateY(0);
    background: #1c1c1c;
}

.council-card,
.job-card {
    margin-top: 0px;
    border: 1px solid #ff832a62;
}

.team-card .img,
.council-card .img,
.structure .img {
    position: relative;
    z-index: 1;

}

.team-card .img {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    overflow: hidden;
    position: relative;
}


.team-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    -webkit-mask-image: url("/images/team-mask1.png");
    mask-image: url("/images/team-mask1.png");

    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;

    -webkit-mask-position: center;
    mask-position: center;

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.council-card .img img {
    mask-image: url(../images/second-img-mask.png);
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.structure .img img {
    mask-image: url(../images/about-masking.png);
    mask-size: contain;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h2 {
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}

.team-card .category {
    padding: 5px 10px;
    border: 1px solid var(--secondary-color);
    display: inline-block;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.team-card ul {
    padding-bottom: 20px;
    border-bottom: 1px dashed #e6e6e643;
}

.team-card ul li {
    background-color: #713408a2;
    padding: 5px;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    font-size: 13px;
}

.team-card .phone-btn {
    background-color: var(--secondary-color);
    color: #111;
    font-weight: 700;
}

@media screen and (min-width:992px) and (max-width:1400px) {
    .team-card h2 {
        font-size: 24px;
    }
}

.projects .project-card {
    padding: 0;
    min-height: 550px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out 0s;
    background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%), url(../images/projects.jpg);
    background-position: center;
    background-size: cover;
}

.project-card .content {
    background-color: rgba(250, 251, 251, 0.08);
    border: 1px solid rgba(250, 251, 251, 0.08);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    padding: 10px 30px 13px 10px;
    width: calc(100% - 30px);
    margin: 15px;
    border-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.fa-briefcase {
    color: #ffaf76;
    font-size: 17px;
}

.project-card .content .date {
    color: #ff832a;
    font-weight: 500;
}

.project-card .content h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.project-card .content .complete {
    color: rgb(24, 163, 22);
    font-weight: 700;
    display: inline-block;
}

.council .content {
    text-align: center;
}

.council .content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.council .content .role {
    color: var(--secondary-color);
    display: inline-block;
    margin-bottom: 10px;
}

.council .content i {
    color: var(--secondary-color);
}

.structure .Btn {
    width: 150px;
}

.structure .Btn::before {
    content: "مجلس الإدارة";
}

.secondary-card {
    padding: 30px;
    background-color: #000000;
    border: 1px solid #ffffff5a;
    border-radius: 20px;
    text-align: center;
}

.secondary-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.secondary-card p {
    color: #ffffffac;
}

.committees,
.media {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.committees::before,
.card-form::after,
.media::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    opacity: 0.45;
    z-index: -1;
    pointer-events: none;
    background-image: url(../images/bg-shape-1.webp);
}

.committees .committees-card,
.media-card {
    background: linear-gradient(0deg, #0C0C0C 0%, #1C1C1C 98.44%);
    padding: 40px 30px 30px;
    position: relative;
    z-index: 1;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    height: 100%;
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate {
    from {
        --gradient-angle: 0deg;
    }

    to {
        --gradient-angle: 360deg;
    }
}


.committees .committees-card::before,
.media-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;

    background: conic-gradient(from var(--gradient-angle),
            #000,
            var(--secondary-color),
            #000,
            var(--secondary-color),
            #000);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    padding: 2px;
    opacity: 0;
    transition: opacity 300ms ease;
    animation: rotate 5.5s linear infinite;
    z-index: -1;
}


.committees .committees-card:hover::before,
.media-card:hover::before {
    opacity: 1;
}

.committees-card .icon-number .card-number {
    font-weight: 500;
    font-size: 24px;
    color: var(--secondary-color);
}

.committees-card .content h2 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 15px;
}

.committees-card .content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.845);
}

.committees-card .content .person-num {
    color: var(--secondary-color);
    font-weight: 500;
}

@media screen and (min-width:768px) {
    .committees-card .content h2 {
        font-size: 20px;
    }
}

@media screen and (min-width:992px) {
    .committees-card .content h2 {
        font-size: 18px;
    }

    .committees-card .content p {
        font-size: 14px;
    }
}

@media screen and (min-width:992px) {
    .committees-card .content h2 {
        font-size: 18px;
    }

    .committees-card .content p {
        font-size: 14px;
    }
}

@media screen and (min-width:1200px) {
    .committees-card .content h2 {
        font-size: 24px;
    }

}


.partners,
.legal-approval,
.card-form {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.partners::after,
.contact-container::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    opacity: 0.015;
    z-index: -1;
    pointer-events: none;
    background-image: url(../images/registration-bg.png);
}

.legal-approval::after {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    opacity: 0.65;
    z-index: -1;
    pointer-events: none;
    background-image: url(../images/banner-2.png);
}

.partners .col-lg-4 {
    border: 1px solid #ffffff38;
    background: #141414;
}

.partner-card {
    padding: 40px 20px 30px;
    height: 100%;
    text-align: center;
    position: relative;
    height: 100%;
    transition: all 0.4s ease;
}

.partner-img {
    width: 250px;
    height: 250px;
    margin: 0 auto 30px;
    border-radius: 50%;
    position: relative;
    border: 1px solid var(--secondary-color);
    padding: 10px;
}

.partner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;

}

.partner-card h2 {
    color: var(--tanspot-white);
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.partner-card .partner-category {
    border: 1px solid var(--secondary-color);
    padding: 3px 20px;
    border-radius: 30px;
}

.partner-card p {
    font-size: 16px;
    margin-top: 15px;
}

.legal-card {
    background-color: rgba(250, 251, 251, 0.08);
    border: 1px solid rgba(248, 172, 137, 0.255);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    padding: 30px 30px 13px 20px;
    border-radius: 20px;
    height: 100%;
}

.legal-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.legal-card .card-date {
    padding: 7px 25px;
    background-color: var(--secondary-color);
    color: #111;
    font-weight: 700;
    border-radius: 40px;
    display: inline-block;
}

.legal-card .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #141414;
    display: flex;
    justify-content: center;
    align-items: center;
}

.legal-card .icon svg {
    stroke: var(--secondary-color);
}

.legal-card p {
    margin-top: 15px;
}

.legal-card .card-footer i {
    color: var(--secondary-color);
}

@media screen and (min-width:768px) and (max-width:1400px) {
    .legal-card h2 {
        font-size: 18px;
    }
}

.contact-container {
    background-color: #111111;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid #303030;
    border-radius: 30px;
}


.form-container {
    max-width: 700px;
    margin: 30px;
    background-color: #050505;
    padding: 40px;
    border-right: 5px solid var(--secondary-color);
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 20px),
            calc(100% - 20px) 100%,
            0 100%);
    border-radius: 10px;
    text-align: center;
}

.heading {
    display: block;
    color: var(--tanspot-white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.c2 {
    display: block;
    color: var(--tanspot-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-container .form .button-container {
    display: flex;
    justify-content: center;
}

.form-container .form .button-container .send-button {
    flex-basis: 70%;
    background: var(--secondary-color);
    padding: 10px;
    color: #111;
    text-align: center;
    font-weight: bold;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
    border-radius: 10px;
    text-decoration: none;
}

.form-container .form .button-container .send-button:hover {
    background: transparent;
    border: 1px solid #ff7a01;
    color: var(--tanspot-white);
}

.container_chat_bot {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.container_chat_bot .container-chat-options {
    position: relative;
    display: flex;
    background: linear-gradient(to bottom right,
            #7e7e7e,
            #363636,
            #363636,
            #363636,
            #363636);
    border-radius: 16px;
    padding: 1.5px;
    overflow: hidden;
    height: 100%;
}

.container_chat_bot .container-chat-options::after {
    position: absolute;
    content: "";
    top: -10px;
    left: -10px;
    background: radial-gradient(ellipse at center,
            #ffffff,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.1),
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0));
    width: 30px;
    height: 30px;
    filter: blur(1px);
}

.container_chat_bot .container-chat-options .chat {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    align-items: center;

}

.container_chat_bot .container-chat-options .chat .chat-bot {
    position: relative;
    display: flex;
    height: 100%;
}

.container_chat_bot .chat .chat-bot .content {
    background-color: transparent;
    border-radius: 16px;
    border: none;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 400;
    padding: 10px;
    z-index: 1;
}

.container_chat_bot .chat .chat-bot .content .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 10px;
}

.container_chat_bot .chat .chat-bot .content h2 {
    font-size: 22px;
    font-weight: 700;
}

.container_chat_bot .chat .chat-bot .content a {
    text-decoration: none;
    color: var(--tanspot-white);
    font-size: 17px;
}

.container_chat_bot .chat .chat-bot .content p {
    font-size: 14px;
    font-weight: 600;
}

.jobs .job-card {
    position: relative;
    overflow: hidden;
    height: 100% !important;
}

.job-card::after {
    position: absolute;
    content: "";
    top: -70px;
    left: -70px;
    background: radial-gradient(ellipse at center,
            #ffffff,
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.1),
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0));
    width: 150px;
    height: 150px;
    filter: blur(10px);
}

.job-card h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.job-card p {
    color: var(--tanspot-white);
    opacity: 0.9;
}

.job-card i {
    color: var(--secondary-color);
}

.job-card a {
    background-color: var(--secondary-color);
    font-weight: 700;
    color: #111;
    padding: 8px 16px;
}

.job-card a:hover {
    background-color: var(--secondary-color);
    color: #111;
}

.job-card a i {
    color: #111;

}

@media screen and (min-width:768px) and (max-width:1200px) {
    .job-card h2 {
        font-size: 20px;
    }

    .job-card p {
        font-size: 14px;
    }
}

.card-preview {
    background: #111;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.card-header-preview {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-color);
}

#previewName {
    margin: 0;
    font-weight: bold;
}

#previewJob {
    color: var(--secondary-color);
    font-size: 14px;
}

.btn-warning,
.btn-warning:hover {
    background-color: var(--secondary-color);
    font-weight: 700;
    border-color: var(--secondary-color);
}

.btn-outline-secondary,
.btn-outline-secondary:hover {
    border: 1px solid var(--tanspot-white);
    color: var(--tanspot-white);
    background-color: transparent;
}

.card-footer-preview {
    text-align: center;
    color: #999;
    font-size: 12px;
}

.card-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.card-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #111;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
}

.card-links a:hover {
    background: var(--secondary-color);
}

@media print {
    body * {
        visibility: hidden !important;
    }

    body.printing #printContainer,
    body.printing #printContainer * {
        visibility: visible !important;
    }

    #printContainer {
        position: fixed;
        inset: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: white;
    }

    #printContainer #cardPreview {
        max-width: 420px;
        width: 100%;
        box-shadow: none !important;
    }

    @page {
        size: A4;
        margin: 20mm;
    }
}

label {
    margin-bottom: 10px;
}

.bg-dark {
    background-color: #141412 !important;
}

.form-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-card::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: -80px;
    left: -80px;
    filter: blur(160px);
    opacity: .3;
    z-index: 0;
}

.form-card::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    top: -80px;
    right: -80px;
    filter: blur(160px);
    opacity: .3;
    z-index: 0;
}

.btn-facebook {
    background-color: #0072b1;
    padding: 8px 30px;
    color: var(--tanspot-white);
    font-weight: 700;
}

.btn-facebook:hover {
    background-color: #0072b1;
    color: var(--tanspot-white);
}

.btn-instagram {
    background-color: #d62976;
    font-weight: 700;
    color: var(--tanspot-white);
    padding: 8px 30px;
}

.btn-instagram:hover {
    background-color: #d62976;
    color: var(--tanspot-white);
}

.video-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    color: #000;
    cursor: pointer;
}

.stats span {
    margin-inline-end: 15px;
    font-size: 16px;
    color: var(--tanspot-white);
}

.stats i {
    margin-inline-end: 5px;
    color: var(--secondary-color);
}

.modal {
    z-index: 200000;
    background-color: #00000065;
}

.modal-backdrop.show {
    backdrop-filter: blur(6px);
    background-color: rgba(0, 0, 0, 0.7);
}


.video-modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.video-player {
    border-radius: 20px;
    max-height: 80vh;
    background: #000;
}

.video-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 10px;
    filter: invert(1);
    opacity: 1;
}

.video-close:hover {
    background-color: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
}

@media (max-width: 1199px) {

    .navbar-collapse {
        max-height: 100vh;
        overflow-y: auto;
    }

    .navbar .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        max-height: 300px;
        overflow-y: auto;
        margin-top: 10px;
    }

    .dropdown-submenu>.dropdown-menu {
        position: static;
        width: 100%;
        margin: 5px 0 0 0;
        padding-inline-start: 15px;
        display: none;
    }

    .dropdown-submenu.show>.dropdown-menu {
        display: block;
    }
}