body {
    color: #fff;
    font-family: "Cairo", sans-serif;
}

.navbar {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1),
            rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)) !important;
    border-bottom: 1px solid #eba76caa;
    height: 80px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;

    transition: all 0.4s ease-in-out;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 1) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar-collapse.show {
    background: rgba(0, 0, 0, 1);
    padding: 1rem;
}


.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    pointer-events: none;
}


.navbar-toggler {
    color: #d0823e;
    border: 1px solid #d0823e;
}

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

.nav-link {
    color: #fff !important;
    font-size: 18px;
    font-weight: 500;
    text-align: center !important;

}

.nav-link:hover,
.nav-link.active {
    color: #eba86c !important;
    font-weight: 600;
}

.social-icons i {
    color: #eba86c;
    font-size: 20px;
    cursor: pointer;
}

.hero {
    padding-bottom: 60px;
    background: url("https://demo.awaikenthemes.com/artistics/it-company/wp-content/uploads/2025/01/video-image.jpg") no-repeat center/cover;
    position: relative;
        overflow: hidden;

}


.hero .container {
    position: relative;
    z-index: 10;
}

.hero .row {
    padding-top: 100px;
    min-height: 100vh;

}

.welcome {
        background: linear-gradient(179deg, #6b204b, #de8e47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    font-weight: 700;
}

.main-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.main-title span {
     background: linear-gradient(180deg, #6b204a, #eba86c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 18px;
    color: #bfbfbf;
}

.btn-start {
    background: #eba86c;
    color: #000;
    padding: 12px 32px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    transition: 0.3s;
    transition: all 0.5s ease-in-out;
}

.btn-start:hover {
    background: #d0823e;
    transform: translateY(-5px);
}

.rating span {
    color: #d0823e;
    opacity: 0.9;
}


.image-wrapper {
    position: relative;
    display: flex;
    gap: 50px;
    align-items: center;
    margin-top: 75px;
}

.hero-img {
    width: 300px;
    height: 420px;
    object-fit: cover;
    border-radius: 140px;
    border: 2px solid #eba86c;
}

.second {
    margin-left: -40px;
    margin-top: -140px;
}


@keyframes float-up {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-down {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

@keyframes float-x {

    0%,
    100% {
        transform: translatex(0);
    }

    25% {
        transform: translatex(10px);
    }

    75% {
        transform: translatex(-10px);
    }

}


.floating-1 {
    animation: float-up 5s ease-in-out infinite;
    will-change: transform;
}

.floating-2 {
    animation: float-down 5s ease-in-out infinite;
    will-change: transform;
}



.floating-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #eba86c;
    color: #000;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}


.floating-btn:hover {
    background-color: rgb(235, 168, 108);
    transform: scale(1.01);
    transition: transform 0.3s, background-color 0.3s;
}

main {
    background: #000;
}

.about-section {
    background-image: url(../images/Bg-overlay.png);
    background-position: 0% 0%;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-section::after {
    content: "";
    position: absolute;
    background-image: url("../images/icon-2.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    left: -10px;
    bottom: 130px;
    animation: marketingAppear 1.4s ease-out forwards,
        marketingFloat 8s ease-in-out infinite 1.4s;
    opacity: 0;
    z-index: 2;
}


@keyframes marketingAppear {
    0% {
        transform: scale(0.6) translate(20px, 20px) rotate(8deg);
        opacity: 0;
        filter: blur(8px);
    }

    60% {
        opacity: 1;
        filter: blur(0px);
    }

    100% {
        transform: scale(1) translate(0, 0) rotate(0deg);
        opacity: 1;
    }
}

@keyframes marketingFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-12px, -18px) rotate(3deg);
    }

    50% {
        transform: translate(0px, -30px) rotate(-3deg);
    }

    75% {
        transform: translate(14px, -12px) rotate(2deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}


.about-section::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle at center,
            rgba(248, 176, 114, 0.3) 0%,
            rgba(16, 52, 0, 0.1) 50%,
            rgba(7, 7, 7, 0) 70%);
    top: -300px;
    left: 0%;
    transform: translateX(-50%);
    filter: blur(80px);
    z-index: -1;
    opacity: 0.8;
}


.about-section .glow-bottom-right {
    position: absolute;
    width: 800px;
    height: 800px;
    bottom: -280px;
    right: -300px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(248, 176, 114, 0.4) 0%,
            rgba(16, 52, 0, 0.1) 50%,
            rgba(7, 7, 7, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    opacity: 0.8;
    z-index: -1;
}

.about-section .glow-bottom-left {
    position: absolute;
    width: 220px;
    height: 220px;
    right: -20px;
    bottom: -20px;
    animation: marketingAppear 1.4s ease-out forwards,
        marketingFloat 8s ease-in-out infinite 1.4s;
    opacity: 0;
    z-index: 2;
}

.about-section .glow-bottom-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/icon-3.png);
    background-size: contain;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    /* ← FLIP */
}

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

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

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


.first-img {
    width: 80%;
    border-radius: 20px;
    border: 4px solid #d0823e;
}

.hook-wrapper {
    position: absolute;
    bottom: -120px;
    right: 0px;
    max-width: 55%;
    overflow: hidden;
}

.hook-wrapper .hook-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid #943d45;
}

.hook-wrapper::after {
    content: "";
    position: absolute;
    width: 300%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

.hook-wrapper:hover::after {
    height: 250%;
    background-color: transparent;
}


.stats-badge {
    position: absolute;
    bottom: 50px;
    left: 100px;
    background: #d0823e;
    padding: 12px 20px;
    color: #000;
    animation: pulse 5s linear infinite;
    text-align: center;
}



@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(255, 95, 109, .18), 0 0 0 0 rgba(255, 95, 109, .12);
        transform: translateY(0);
    }

    50% {
        box-shadow: 0 10px 30px rgba(255, 95, 109, .20), 0 0 0 10px rgba(255, 195, 113, .06);
        transform: translateY(-3px);
    }

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

@keyframes pulse-2 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }

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

.text-orange {
    color: #eba86c;
}

.stats-box {
    background: #111;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    border: 1px solid #943d45;
    width: 180px;
}

.stats-box h4 {
    border-top: 1px solid #943d45;
}

.consultation-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    margin: 0;
    top: -40px;
    right: -20px;
}

.wheel-text {
    position: absolute;
    inset: 0;
    pointer-events: none;
    font-size: 1.3rem;
    letter-spacing: -12px;
    text-transform: capitalize;
    color: #eba86c;
    display: block;
    animation: wheel-spin 14s linear infinite;
    mix-blend-mode: screen;
}

.wheel-text span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    transform: rotate(var(--angle)) translateY(-100px);
    display: inline-block;
    text-shadow:
        0 0 10px rgba(235, 168, 108, 0.8),
        0 0 25px rgba(235, 168, 108, 0.6),
        0 0 40px rgba(235, 168, 108, 0.4);
    filter: drop-shadow(0 0 12px rgba(255, 233, 190, 0.2));
}

html[dir="rtl"] .consultation-circle {

    top: -40px;
    left: -570px;
}

@keyframes wheel-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wheel-center {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.arrow-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.195);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.05em;
}

.services-section {
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-top: 1px solid #acacacb1;
    border-bottom: 1px solid #acacacb1;
}

.services-section::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    top: -280px;
    right: -300px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(248, 176, 114, 0.4) 0%,
            rgba(16, 52, 0, 0.1) 50%,
            rgba(7, 7, 7, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    opacity: 0.8;
    z-index: -1;
}

.services-section::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: 300px;
    right: 80px;
    background-image: url(../images/icon-4.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 0.7;
    animation:
        vibrate 6s linear infinite 1.4s;
}

@keyframes vibrate {
    0% {
        transform: scaleX(-1) translate(0, 0);
    }

    20% {
        transform: scaleX(-1) translate(-16px, 5px);
    }

    40% {
        transform: scaleX(-1) translate(16px, -5px);
    }

    60% {
        transform: scaleX(-1) translate(-5px, 16px);
    }

    80% {
        transform: scaleX(-1) translate(5px, -16px);
    }

    100% {
        transform: scaleX(-1) translate(0, 0);
    }
}


.services-section .content {
    padding: 15px;
}

.services-section .top {
    position: absolute;
    top: -700px;
    left: -200px;
    width: 1220px;
    height: 1220px;
    background-image: url(../images/shape5.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.services-section .bottom {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    bottom: -280px;
    left: -300px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(248, 176, 114, 0.4) 0%,
            rgba(16, 52, 0, 0.1) 50%,
            rgba(7, 7, 7, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    opacity: 0.8;
    z-index: -1;
}

.services-section .ball {
    content: "";
    position: absolute;
    top: 60px;
    right: 60px;
    width: 200px;
    height: 200px;
    background-image: url(../images/icon-5.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 0.01;
    animation: marketingAppear 1.4s ease-out forwards,
        marketingFloat 8s ease-in-out infinite 1.4s;
}

.services-section .content p {
    text-align: justify;
}

.service-card {
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    position: relative;
    transition: all 0.5s ease-in-out;
    padding: 10px;
}

.service-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.249);
    opacity: 0.2;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}

.service-card ul li {
    font-size: .7rem;
    margin-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-6px);
    border: 3px solid #d0823e;
}

.service-card .img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;

}

.service-card .img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card .img::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(-45deg);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.service-card:hover .img::after {
    left: 150%;
    opacity: 1;
}


.badge-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    color: #eba86c;
    background: rgba(235, 168, 108, 0.1);
    font-size: 0.95rem;
}

.text-neon {
    color: rgb(235, 168, 108);
}

.text-neon:hover {
    color: rgb(255, 198, 149);
}

.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.impact-section,
.swiper-section {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #acacacb1;
}

.impact-section::before,
.swiper-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #d0823e;
    opacity: .07;
    border-radius: 12px;
    z-index: -1;
    pointer-events: none;
}

.impact-section .bottom {
    position: absolute;
    top: 70%;
    right: 0;
    width: 230px;
    height: 230px;
    z-index: 0;
    animation: float-up 2s linear infinite;
}

.impact-section .bottom::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/icon-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    transform: scaleX(-1);
}

.impact-section .top {
    position: absolute;
    top: 0%;
    left: -130px;
    width: 320px;
    height: 320px;
    background-image: url(../images/why-us-icon-.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.counter-box {
    background: #1b1b1b;
    border-style: solid;
    border-width: 0px 0px 2px 0px;
    border-color: #eba86c;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    position: relative;
    transition: all 0.5s ease-in-out;
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.counter-box:hover {
    transform: translateY(-4px);
    border-style: solid;
    border-width: 0px 0px 6px 0px;
    border-color: #d0823e;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}

.counter-box .icon {
    background: linear-gradient(45deg, #6b204a, #eba86c);
    
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto;
}

@media screen and (min-width:1200px) {
    .bottom-box {
        margin-top: 60px;
    }
}

html.rtl .swiper-button-next {
    right: auto;
    left: 10px;
}

html.rtl .swiper-button-prev {
    left: auto;
    right: 10px;
}

.blog-section {
    padding: 4rem 0;
    z-index: 1;
}

.social-floating {
    position: relative;
    width: 100%;
    height: 0;
}

.social-floating .icon {
    position: absolute;
    color: #eba86c;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: floatY 3s ease-in-out infinite;
    transition: transform 1.5s ease;
}

.social-floating .icon-1 {
    top: 40px;
    left: 200px;
}

.social-floating .icon-2 {
    top: 70px;
    right: 200px;
}

.social-floating .icon-3 {
    top: 500px;
    right: 70px;
}

.social-floating .icon-4 {
    top: 570px;
    left: 680px;
}

.social-floating .icon-5 {
    top: 400px;
    left: 40px;
}

.social-floating .icon:hover {
    pointer-events: none;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

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

.bg-body-tertiary {
    background-color: #d0823e !important;
}

.btn-outline-primary {
    border-color: #d0823e;
    color: #fff;
}

.btn-outline-primary:hover {
    background-color: #d0823e;
    border-color: #d0823e;
    color: #111;
    font-weight: 700;
}

.blog-section::after,
.contact-section::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    top: -280px;
    right: -300px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(248, 176, 114, 0.4) 0%,
            rgba(16, 52, 0, 0.1) 50%,
            rgba(7, 7, 7, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    opacity: 0.8;
    z-index: -1;
}

.blog-section::before,
.contact-section::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    bottom: -280px;
    left: -300px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(248, 176, 114, 0.4) 0%,
            rgba(16, 52, 0, 0.1) 50%,
            rgba(7, 7, 7, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    opacity: 0.8;
    z-index: -1;
}

.contact-section {
    padding: 60px 0;
    border-top: 1px solid #acacacb1;
    border-bottom: 1px solid #acacacb1;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-control,
textarea.form-control {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: none;
}

.form-control:focus {
    border: 1px solid #eba86c;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
}

.form-control::placeholder {
    color: #ebebeb;
    font-weight: 500;
}
html[dir="rtl"] #phone::placeholder{
text-align: right;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-floating .form-control {
    padding-top: 1.25rem;
    padding-bottom: 0.75rem;
}


.card-right {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 18px;
    max-width: 460px;
    margin-left: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid #eba76c8d;
    overflow: hidden;
    position: relative;
}

.card-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.249);
    opacity: 0.14;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}

.card-right .content {
    padding: 28px;
}


.contact-meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.contact-meta .meta-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
}

.invalid-msg {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 6px;
    display: none;
}

.is-invalid {
    border-color: #ff6b6b !important;
    box-shadow: none !important;
}

.btn-send {
    background-color: #eba86c;
    border-color: #eba86c;
    color: #111;
    font-weight: 700;
    border-radius: 30px;
    padding: 14px 36px;
    border: none;
    width: 100%;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.12);
}

.btn-send:hover {
    background-color: #d0823e;
    border-color: #d0823e;
    color: #111;
}

html[dir="rtl"] .card-right {
    margin-left: 0;
    margin-right: auto;
}

html[dir="rtl"] .d-flex-start {
    justify-content: flex-end;
}

html[dir="rtl"] .text-start {
    text-align: right !important;
}

html[dir="rtl"] .text-end {
    text-align: left !important;
}



.rtl .contact-row {
    flex-direction: row !important;
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 20px;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    pointer-events: none;
}

.swiper-slide {
    position: relative;
}

.footer-section {
    background-image: url(../images/Bg-overlay.png);
    background-position: 0% 0%;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}



.footer-section::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle at center,
            rgba(248, 176, 114, 0.3) 0%,
            rgba(16, 52, 0, 0.1) 50%,
            rgba(7, 7, 7, 0) 70%);
    top: -300px;
    right: -30%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.8;
}

.footer-end-box {
    border-top: 1px solid #bfbfbf25;
}

.footer-title {
    font-size: 32px;
    line-height: 1.3;
}

.highlight {
    color: #eba86c;
}


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

.footer-links a {
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #eba86c;
}

.footer-card {
    background: #1b1b1b;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 25px;
    position: relative;
}

.footer-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.2;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}

.footer-card i {
    color: #eba86c;
    font-size: 1.3rem;
}

.social-btn {
    border: 1px solid #eba86c;
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    background: #eba86c;
    color: black;
}

.creative-section {
    background: #050505;
    color: white;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
}

.highlight {
    color: #d0823e;
}


.feature-desc {
    color: #cccccc;
}

.circle-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
}

.rotating-circle {
    position: absolute;
    left: 0%;
    top: 3%;
    width: 115%;
    height: 115%;
    animation: rotateCircle 16s linear infinite;
}

.main-circle {
    width: 290px;
    height: 290px;
    border-radius: 50%;
    background-color: #d0823e;
    position: absolute;
    left: 19%;
    top: 20%;
    overflow: hidden;
}

.girl-img {
    width: 100%;
    object-fit: cover;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1400px) {
    .stats-badge {
        bottom: 150px;
        left: 70px;
    }

    .image-wrapper {

        gap: 10px;

    }

    .rotating-circle {

        left: 0%;
        top: 3%;
    }

    .main-circle {

        left: 20%;
        top: 20%;

    }
}

@media (max-width: 1200px) {
    .stats-badge {
        bottom: 350px;
        left: 50px;
    }

    .about-section::after {
        width: 180px;
        height: 180px;

    }

    .main-title {
        font-size: 30px;
    }

    .image-wrapper {

        gap: 50px;

    }

    .services-section .ball {

        top: 180px;
        left: 60px;
        width: 100px;
        height: 100px;

    }

    .rotating-circle {

        left: 0%;
        top: 3%;
    }

    .main-circle {

        left: 20%;
        top: 20%;

    }
}

@media (max-width: 992px) {
    .stats-badge {
        bottom: -50px;
        left: 80px;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .about-section .glow-bottom-left {
        width: 170px;
        height: 170px;
    }

    .consultation-circle {
        display: none;
    }

    .about-section::after {
        width: 130px;
        height: 130px;
        bottom: 690px;

    }

    .services-section .ball {

        top: 180px;
        left: 60px;
        width: 100px;
        height: 100px;

    }

    .impact-section .bottom {
        top: 80%;
        right: 0;

    }
           .social-floating .icon-1 {
    top: 0px;
    left: 20px;
}

.social-floating .icon-2 {
    top: 80px;
    right: 10px;
}

}

@media (max-width: 768px) {
    .about-section::after {
        width: 90px;
        height: 90px;
        bottom: 190px;

    }

    .main-title {
        font-size: 45px;
    }

    .services-section .ball {

        top: 220px;
        left: 60px;
        width: 100px;
        height: 100px;

    }

    .services-section::before {

        bottom: -70px;

    }

    .rotating-circle {
        top: 5%;
    }

    .main-circle {

        top: 24%;
        left: 20%;

    }

    .impact-section .bottom {
        top: 80%;
        right: 0;

    }
 

}

@media (max-width: 576px) {
    .stats-badge {
        bottom: -30px;
        left: 80px;
        padding: 8px 15px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .services-section .ball {

        top: 220px;
        left: 60px;
        width: 100px;
        height: 100px;

    }

    .services-section::before {

        bottom: -70px;

    }

    .rotating-circle {
        position: absolute;
        width: 95%;
        height: 95%;
        top: 5%;
    }

    .main-circle {
        width: 250px;
        height: 250px;
        top: 17%;
        left: 15%;

    }

    .impact-section .bottom {
        top: 90%;
        right: 0;

    }



}

@media (max-width: 499px) {
    .stats-badge {
        bottom: -30px;
        left: 10px;
    }

    .about-section .glow-bottom-left {
        width: 170px;
        height: 170px;
    }

    .about-section::after {
        width: 130px;
        height: 130px;
        top: 20px;
    }

    .main-title {
        font-size: 30px;
    }

    .services-section .ball {

        top: 220px;
        left: 60px;
        width: 100px;
        height: 100px;

    }

    .services-section::before {

        bottom: -70px;

    }

    .circle-wrapper {
        position: relative;
        width: 280px;
        height: 280px;
    }

    .rotating-circle {
        position: absolute;
        width: 95%;
        height: 95%;
        top: 5%;
    }

    .main-circle {
        width: 190px;
        height: 190px;
        top: 18%;
        left: 14%;

    }

    .impact-section .bottom {
        top: 90%;
        right: 0;

    }
}



/* The Eleven Pillars */
.eleven-structure {
    position: relative;
    display: flex;
    gap: 30px;
    height: 320px;
    align-items: flex-end;
}

.pillar {
    position: relative;
    width: 45px;
    height: 280px;
    background: linear-gradient(180deg, #eba86c 0%, #d4793a 50%, #1a1a2e 100%);
    border-radius: 25px 25px 10px 10px;
    box-shadow:
        0 0 30px rgba(235, 168, 108, 0.5),
        0 0 60px rgba(235, 168, 108, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    animation: pillar-glow 3s ease-in-out infinite;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.3) 100%);
    border-radius: inherit;
}

/* Data Stream Effect */
.pillar::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    animation: data-stream 2s ease-in-out infinite;
}

.pillar:nth-child(2)::after {
    animation-delay: 0.5s;
}

@keyframes data-stream {
    0% { top: -100%; }
    100% { top: 200%; }
}

@keyframes pillar-glow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(235, 168, 108, 0.5),
            0 0 60px rgba(235, 168, 108, 0.3);
        filter: brightness(1);
    }
    50% {
        box-shadow:
            0 0 50px rgba(235, 168, 108, 0.7),
            0 0 100px rgba(235, 168, 108, 0.5);
        filter: brightness(1.1);
    }
}

/* Floating Service Icons */
.services-orbit {
    position: absolute;
    width: 450px;
    height: 450px;
    animation: orbit-rotate 25s linear infinite;
}

@keyframes orbit-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.service-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(20,20,35,0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--node-color);
    box-shadow: 0 0 20px var(--node-color);
    animation: counter-rotate 25s linear infinite;
    transition: 0.3s;
}



@keyframes counter-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.service-node i {
    font-size: 28px;
    color: var(--node-color);
    filter: drop-shadow(0 0 10px var(--node-color));
}

.service-node::before {
    content: attr(data-label);
    position: absolute;
    bottom: -25px;
    font-size: 10px;
    color: var(--node-color);
    white-space: nowrap;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Node Positions */
.node-1 { --node-color: #eba86c; top: 0; left: 50%; transform: translateX(-50%); }
.node-2 { --node-color: #4ecdc4; top: 25%; right: 0; }
.node-3 { --node-color: #ff6b6b; bottom: 25%; right: 0; }
.node-4 { --node-color: #a78bfa; bottom: 0; left: 50%; transform: translateX(-50%); }
.node-5 { --node-color: #f472b6; bottom: 25%; left: 0; }
.node-6 { --node-color: #34d399; top: 25%; left: 0; }

/* Connection Lines */
.connections {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(235, 168, 108, 0.3), transparent);
    transform-origin: left center;
    animation: line-pulse 3s ease-in-out infinite;
}

.connection-line:nth-child(1) { transform: rotate(0deg); animation-delay: 0s; }
.connection-line:nth-child(2) { transform: rotate(60deg); animation-delay: 0.5s; }
.connection-line:nth-child(3) { transform: rotate(120deg); animation-delay: 1s; }
.connection-line:nth-child(4) { transform: rotate(180deg); animation-delay: 1.5s; }
.connection-line:nth-child(5) { transform: rotate(240deg); animation-delay: 2s; }
.connection-line:nth-child(6) { transform: rotate(300deg); animation-delay: 2.5s; }

@keyframes line-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Brand Text */
.brand {
    margin-top: 30px;
    text-align: center;
    z-index: 10;
}
.brand-name {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 8px;
    background: linear-gradient(179deg, #6b204b, #de8e47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradient-shift 3s ease infinite;
}


.brand-name span {
    font-weight: 300;
    letter-spacing: 4px;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.brand-tagline {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 6px;
    color: rgba(235, 168, 108, 0.6);
    text-transform: uppercase;
}

/* Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #eba86c;
    border-radius: 50%;
    animation: float-up 4s ease-in-out infinite;
    box-shadow: 0 0 10px #eba86c;
}

.particle:nth-child(1) { left: 20%; bottom: 0; animation-delay: 0s; }
.particle:nth-child(2) { left: 40%; bottom: 0; animation-delay: 0.8s; }
.particle:nth-child(3) { left: 60%; bottom: 0; animation-delay: 1.6s; }
.particle:nth-child(4) { left: 80%; bottom: 0; animation-delay: 2.4s; }
.particle:nth-child(5) { left: 30%; bottom: 0; animation-delay: 0.4s; }
.particle:nth-child(6) { left: 70%; bottom: 0; animation-delay: 1.2s; }

@keyframes float-up {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-400px) scale(0); opacity: 0; }
}

/* Equalizer Bars */
.equalizer {
    position: absolute;
    bottom: -60px;
    display: flex;
    gap: 4px;
    align-items: flex-end;
}

.eq-bar {
    width: 6px;
    background: linear-gradient(180deg, #eba86c, #d4793a);
    border-radius: 3px;
    animation: eq-bounce var(--speed) ease-in-out infinite;
}

.eq-bar:nth-child(1) { --speed: 0.4s; height: 20px; }
.eq-bar:nth-child(2) { --speed: 0.5s; height: 35px; animation-delay: 0.1s; }
.eq-bar:nth-child(3) { --speed: 0.3s; height: 25px; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { --speed: 0.6s; height: 40px; animation-delay: 0.15s; }
.eq-bar:nth-child(5) { --speed: 0.35s; height: 30px; animation-delay: 0.25s; }
.eq-bar:nth-child(6) { --speed: 0.45s; height: 45px; animation-delay: 0.05s; }
.eq-bar:nth-child(7) { --speed: 0.5s; height: 35px; animation-delay: 0.2s; }
.eq-bar:nth-child(8) { --speed: 0.4s; height: 25px; animation-delay: 0.1s; }
.eq-bar:nth-child(9) { --speed: 0.55s; height: 38px; animation-delay: 0.15s; }
.eq-bar:nth-child(10) { --speed: 0.3s; height: 20px; animation-delay: 0.25s; }
.eq-bar:nth-child(11) { --speed: 0.45s; height: 32px; animation-delay: 0.05s; }

@keyframes eq-bounce {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

/* Reflection */
.reflection {
    position: absolute;
    bottom: -100px;
    width: 200px;
    height: 80px;
    background: linear-gradient(180deg, rgba(235, 168, 108, 0.2), transparent);
    filter: blur(20px);
    border-radius: 50%;
}

/* Glow Ring */
.glow-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(235, 168, 108, 0.2);
    border-radius: 50%;
    animation: ring-expand 4s ease-out infinite;
}

@keyframes ring-expand {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.eleven-container {
    position: relative;
    width: 420px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eleven-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-under {
    margin-top: 40px;
    text-align: center;
}

.equalizer-bottom {
    margin-top: 25px;
    position: relative;
    bottom: 0;
}



/* ============================
   MOBILE RESPONSIVE FIX
   Move animation ABOVE text
   ============================ */
@media (max-width: 768px) {

    /* نقل الأنيميشن فوق النص */
    .hero-animation-container {
        order: -1;               /* يرفع الأنيميشن لفوق */
        margin-bottom: 20px;     /* مسافة تحت الأنيميشن */
        display: flex;
        justify-content: center;
    }

    /* تصغير حجم دائرة الأوربت */
    .services-orbit {
        width: 300px !important;
        height: 300px !important;
    }

    /* تصغير حجم النودز */
    .service-node {
        width: 55px !important;
        height: 55px !important;
    }

    .service-node i {
        font-size: 22px !important;
    }

    /* تعديل توزيع النودز الستة */
    .node-1 { top: -5%; left: 50%; transform: translateX(-50%); }
    .node-2 { top: 20%; right: -5%; }
    .node-3 { bottom: 20%; right: -5%; }
    .node-4 { bottom: -5%; left: 50%; transform: translateX(-50%); }
    .node-5 { bottom: 20%; left: -5%; }
    .node-6 { top: 20%; left: -5%; }

    /* تصغير الرقم 11 */
    .eleven-structure .pillar {
        height: 220px !important;
        width: 35px !important;
    }

    /* تصغير مساحة الهيرو */
    .eleven-wrapper {
        width: 320px !important;
        height: 320px !important;
    }

    /* تصغير نص ELEVEN MEDIA */
    .brand-name {
        font-size: 26px !important;
        letter-spacing: 4px !important;
    }

    .brand-tagline {
        font-size: 10px !important;
        letter-spacing: 3px !important;
    }

    /* تصغير الإيكوالايزر */
    .equalizer-bottom {
        transform: scale(0.8);
        margin-top: 5px !important;
    }

 

}

/* ===== MOBILE BACKGROUND FIX ===== */
@media (max-width: 768px) {

    .hero {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .hero .container,
    #home {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .row {
        margin: 0 !important;
    }

    .hero * {
        overflow: visible !important;
    }
}

/* =========================================
   MOBILE GLOW ANIMATION FIX
   ========================================= */
@media (max-width: 768px) {
    
    .eleven-structure .pillar {
        height: 220px !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .eleven-structure .pillar::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%; 
        top: 0 !important; 
        transform: translateY(-100%);
        background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%) !important;
        animation: mobile-stream 1.8s ease-in-out infinite !important;
    }

    /* 3. Sync the second pillar delay (half of 1.8s) */
    .eleven-structure .pillar:nth-child(2)::after {
        animation-delay: 0.9s !important;
    }
}

@keyframes mobile-stream {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(200%); /* Ensures it travels completely out the bottom */
        opacity: 0;
    }
}


.particle { display: none; }

.radial-particle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #eba86c;
    border-radius: 50%;
    pointer-events: none; 
    box-shadow: 0 0 6px #eba86c;
    z-index: 5;
    --angle: 0deg; 
    transform-origin: center;
    will-change: transform, opacity;
    animation: shoot-out 1.5s ease-out forwards;
}

@keyframes shoot-out {
    0% {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(0) scale(1);
        opacity: 1;
    }
    100% {
        /* translateX(180px) matches the length of your connection lines */
        transform: translate(-50%, -50%) rotate(var(--angle)) translateX(180px) scale(0);
        opacity: 0;
    }
}

.sub-heading{
    background: linear-gradient(179deg, #6b204b, #de8e47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 21px;
}
.blog-details{
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid #943d467e;
    border-bottom: 1px solid #eba76c67;
}
.blog-details::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    top: -280px;
    right: -300px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(248, 176, 114, 0.4) 0%,
            rgba(16, 52, 0, 0.1) 50%,
            rgba(7, 7, 7, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    opacity: 0.8;
    z-index: -1;
}

.blog-details::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    bottom: -280px;
    left: -300px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(248, 176, 114, 0.4) 0%,
            rgba(16, 52, 0, 0.1) 50%,
            rgba(7, 7, 7, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    opacity: 0.8;
    z-index: -1;
}

.details-footer{
    border-top: 1px solid #bfbfbf2e;
    padding-top: 25px;
}
.blog-hero{
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.86)),url(../images/blog-bg.jpg);
}
.main-title {
    text-shadow: 2px 2px 8px rgba(244, 143, 43, 0.4);
}


.latest-news-card {
    background: #121212;
}

.news-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.latest-news-card h6 {
    font-weight: 600;
}

.custom-card {
    background: #121212;
}

.underline {
    height: 4px;
    width: 100%;
    background: linear-gradient(to right, #de8e47 100px, #333 100px);
    border-radius: 20px;
}
html[dir="rtl"] .underline {
    background: linear-gradient(to left, #de8e47 100px, #333 100px);
}

.category-item {
    color: #e6e6e6;
    font-size: 17px;
    cursor: pointer;
}

.category-item i {
    margin-right: 10px;
    font-size: 18px;
}

.category-item:hover {
    color: #de8e47;
    transition: 0.3s;
}

.tag-item {
    background: #000;
    padding: 10px 20px;
    border-radius: 10px;
    color: #f2f2f2;
    font-size: 15px;
    cursor: pointer;
}

.tag-item:hover {
    background: #de8e47;
    color: #000;
    transition: 0.3s;
    font-weight: 600;
}
.btn-know-more{
    background: linear-gradient(60deg, #955077, #de8e47);
    padding: 12px 36px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 700 !important;
}