/* ========================== Root Variables ========================== */
:root {
    --primary-black: #000000;
    --primary-orange: #EEA341;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* ========================== Reset & Base Styles ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    direction: rtl;
}




body::-webkit-scrollbar {
    width: 14px;
}

body::-webkit-scrollbar-track {
    background: #ffffff;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-orange);
    border: 1px solid #ffffff;
}



a {
    text-decoration: none !important;
}

.container {
    max-width: 1110px;
    margin: 0 auto;
}

/* ========================== Header Styles ========================== */
.site-header {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    transition: var(--transition);
    background: #000;
}

.site-header.sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
    background: #ffffff;
    color: #fff;
}

.site-header.scrolled .nav-link {
    color: #000000;
    transition: color 0.3s;
}

.site-header.scrolled .icon,
.site-header.scrolled .menu-item {
    color: #fff;
}



.site-header.scrolled .navbar-toggler {
    background-color: var(--primary-orange);
}


.main-bar {
    padding: 20px 0;
}

.main-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-header {
    background: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
}


.site-header.scrolled .logo-header {
    background: none;
    box-shadow: none;
}

@media(max-width:991px) {

    .logo-header {
        background: none;
        box-shadow: none;
    }
}

.logo-header img {
    max-height: 42px;
    width: auto;
    display: block;
}


.navbar-collapse {
    order: 2;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.extra-nav {
    order: 3;
    flex: 0 0 auto;
}

.navbar-toggler {
    order: 3;
}

/* ========================== Navigation Styles ========================== */
.navbar-nav {
    gap: 45px;
    margin: 0;
}

.navbar-nav li a {
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    transition: var(--transition);
    font-weight: 500;
    text-decoration: none;
    display: block;
}

.navbar-nav li a:hover,
.navbar-nav li.active a {
    transform: translateY(-2px);
}

/* ========================== Mobile Menu Toggle ========================== */
.navbar-toggler {
    border: none;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    z-index: 999999;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}




.site-header {
    position: relative;
    z-index: 999;
}

.main-bar {
    position: relative;
    z-index: 999;
}

/* Dropdown Menu */
.nav-item.has-dropdown {
    position: relative;
}

.has-dropdown>.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.has-dropdown>.nav-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover>.nav-link i {
    transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    z-index: 9999 !important;
}

.has-dropdown:hover .mega-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-list li:last-child {
    border-bottom: none;
}

.dropdown-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px 15px;
    color: #000000 !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-list a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-black);
    transition: width 0.3s ease;
}

.dropdown-list a:hover {
    background: rgba(238, 163, 65, 0.1);
    color: var(--primary-black);
    padding-right: 30px;
}

.dropdown-list a:hover::before {
    width: 4px;
}

.dropdown-list a i {
    font-size: 17px;
    width: 25px;
    text-align: center;
    color: var(--primary-orange);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dropdown-list a:hover i {
    color: var(--primary-black);
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
}

.dropdown-list a span {
    white-space: nowrap;
}

/* Mobile Version */
@media (max-width: 991px) {
    .mega-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        background: rgba(238, 163, 65, 0.05);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
    }

    .mega-dropdown::before {
        display: none;
    }

    .has-dropdown.open .mega-dropdown {
        max-height: 600px;
        padding: 10px 0;
        margin-top: 10px;
    }

    .has-dropdown.open>.nav-link i {
        transform: rotate(180deg);
    }

    .dropdown-list a {
        padding: 12px 20px 12px 45px;
        font-size: 14px;
    }

    .dropdown-list a:hover {
        padding-right: 45px;
    }

    .dropdown-list a i {
        font-size: 18px;
    }
}

/* ========================== Banner Section ========================== */
.banner-three {
    background: #000;
    position: relative;
    z-index: 1;
    padding: 50px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.banner-three::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-image:
        url(../img/shape-16.png),
        url(../img/pattern11.png),
        url(../img/pattern12.png);
    background-position: bottom center, top right, top left;
    background-size: contain;
    background-repeat: no-repeat;
}

/* ========================== Banner Content ========================== */
.banner-content {
    padding-left: 40px;
}

.banner-content h1 {
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--white);
}

.banner-content h1 span:first-child {
    display: block;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-content h1 span {
    color: var(--primary-orange);
    display: inline-block;
}

.banner-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin-bottom: 40px;
}

/* ========================== Buttons ========================== */
.btn {
    padding: 14px 35px;
    font-size: 16px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(238, 163, 65, 0.4);
    background: #d89335;
}

.btn-white {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-white:hover {
    background: var(--white);
    color: var(--primary-black);
    border-color: var(--white);
}

/* ========================== Banner Media ========================== */
.banner-media {
    position: relative;
    z-index: 1;
    text-align: center;
}

.banner-media::after {
    position: absolute;
    z-index: -1;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.2);
    height: 100%;
    width: 100%;
    background-image: url(./assets/img/pattern13.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.banner-media img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ========================== Social Icons ========================== */
.dz-social-icon ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
}

.dz-social-icon ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.dz-social-icon ul li a:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* ========================== Responsive Styles ========================== */
@media (max-width: 991px) {
    .banner-three {
        padding: 120px 0 60px;
    }

    .banner-content {
        padding-right: 15px;
        padding-left: 15px;
        text-align: center;
        margin-bottom: 40px;
    }

    .banner-content p {
        max-width: 100%;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 1));
        padding: 80px 30px 30px;
        margin: 0;
        z-index: 99999;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-collapse.collapsing {
        right: -100%;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .navbar-nav {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }

    .navbar-nav li {
        width: 100%;
    }

    .navbar-nav li a {
        width: 100%;
        text-align: right;
        padding: 15px 20px;
        font-size: 18px;
        border-radius: 12px;
    }

    .main-bar .container {
        flex-wrap: wrap;
    }

    .logo-header {
        flex: 1 1 auto;
    }

    /* Close button for mobile menu */
    .navbar-collapse::before {
        content: "✕";
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 30px;
        color: var(--white);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transition: var(--transition);
    }

    .navbar-collapse::before:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    /* Overlay for mobile menu */
    .navbar-collapse.show::after {
        content: "";
        position: fixed;
        top: 0;
        right: 300px;
        width: calc(100vw - 300px);
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: -1;
    }

    .dz-social-icon {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dz-social-icon ul {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 32px;
    }

    .banner-content p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
        margin-bottom: 10px;
    }

    .main-bar {
        padding: 15px 0;
    }
}

/* ========================== Loading Animation ========================== */
.wow {
    visibility: hidden;
}

/* ========================== Download Button ========================== */
.extra-cell .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ========================== Smooth Scroll ========================== */
html {
    scroll-behavior: smooth;
}

/* ========================== Dynamic Text Animation ========================== */
.dynamic-text-wrapper {
    display: block;
    position: relative;
    margin-top: 10px;
    overflow: visible;
}

.dynamic-text {
    color: var(--primary-orange);
    font-weight: 800;
    position: relative;
    display: inline-block;
    min-width: 320px;
    height: 70px;
    line-height: 70px;
    text-align: right;
    background: linear-gradient(135deg, rgba(238, 163, 65, 0.1), rgba(238, 163, 65, 0.05));
    padding: 0 30px;
    border-radius: 50px;
    border: 2px solid rgba(238, 163, 65, 0.3);
    overflow: hidden;
    width: max-content;
}

.dynamic-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.dynamic-text .text-slide {
    display: inline-block;
    position: relative;
    z-index: 1;
    width: max-content;
    text-shadow: 0 4px 20px rgba(238, 163, 65, 0.4);
    font-size: clamp(28px, 4vw, 48px);
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }

    50%, 100% {
        opacity: 0;
    }
}

/* Particles effect */
.dynamic-text-wrapper::before,
.dynamic-text-wrapper::after {
    content: '';
    position: absolute;
    color: var(--primary-orange);
    font-size: 20px;
    opacity: 0;
    animation: float-particle 3s infinite ease-in-out;
}

.dynamic-text-wrapper::before {
    top: -10px;
    right: 50px;
    animation-delay: 0.5s;
}

.dynamic-text-wrapper::after {
    bottom: -10px;
    right: 150px;
    animation-delay: 1.5s;
}

@keyframes float-particle {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1);
    }
}

/* Glow effect on hover */
.dynamic-text:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 0 30px rgba(238, 163, 65, 0.4),
        inset 0 0 20px rgba(238, 163, 65, 0.1);
}

@media (max-width: 991px) {
    .dynamic-text {
        min-width: 280px;
        height: 60px;
        line-height: 60px;
        padding: 0 25px;
    }

    .dynamic-text .text-slide {
        font-size: clamp(24px, 5vw, 36px);
    }
}

@media (max-width: 768px) {
    .dynamic-text {
        min-width: 100%;
        height: 55px;
        line-height: 55px;
        padding: 0 20px;
        margin: 0 auto;
    }

    .dynamic-text .text-slide {
        font-size: clamp(20px, 5vw, 28px);
    }

    .dynamic-text-wrapper::before,
    .dynamic-text-wrapper::after {
        display: none;
    }
}


/* ============================================== About  ============================================ */

.hero_about {
    background-image: url(../img/shape-6.png);
    background-size: auto 100%;
    background-position: right top;
    background-repeat: repeat-x;
    height: 500px;
    animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
    0% {
        background-position: 100% top;
    }

    100% {
        background-position: 0 top;
    }
}

.hero_about .experience-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    font-weight: bold;
}

.hero_about .experience-badge span {
    margin-right: 12px;
    font-size: 1.4rem;
}

.hero_about h2 {
    font-size: 35px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.5;
    color: #000;
}


.hero_about .subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 480px;
    font-weight: 600;
    text-align: justify;
}

.hero_about .btn-consult {
    display: inline-block;
    background: var(--primary-orange);
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    padding: 14px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.hero_about .btn-consult:hover {
    transform: translateY(-5px);
}

.hero_about .right-content {
    position: relative;
}

.hero_about .images-stack {
    position: relative;
    height: 480px;
}

.hero_about .main-img {
    position: absolute;
    width: 100%;
    border-radius: 20px;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.hero_about .vertical-bar {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-orange);
    color: white;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 2.8rem;
    font-weight: 900;
    padding: 40px 20px;
    border-radius: 30px;
    z-index: 3;
}

@media (max-width: 1100px) {


    .hero_about .vertical-bar {
        display: none;
    }

    .hero_about .images-stack {
        height: 500px;
    }

    .hero_about .main-img {
        max-width: 420px;
    }

    .hero_about .small-code-img {
        width: 260px;
        right: 10%;
    }
}

@media (max-width: 600px) {
    .hero_about h2 {
        font-size: 2.6rem;
    }

    .hero_about .subtitle {
        font-size: 1.2rem;
    }

    .hero_about .btn-consult {
        font-size: 1.1rem;
        padding: 15px 40px;
    }

    .left-content {
        text-align: center;
    }
}

/* ============================================== sections-area ============================================== */
.sections-area {
    text-align: center;
    margin-bottom: 20px;
    padding: 60px 0;
    background-size: auto 100%;
    background-position: right top;
    background-repeat: repeat-x;
    animation: moveBg 20s linear infinite;
    min-height: 100vh;
}


@media(max-width:991px) {
    .sections-area {
        margin-top: 240px;
    }
}



.category-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 380px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, #000 85%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    color: white;
    z-index: 2;
}

.category-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.category-icon img {
    width: 25px;
    height: 25px;
}

.category-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.category-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.progress-container {
    margin-top: 25px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.progress-label p {
    color: #fff;
}

.progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: var(--primary-orange);
    border-radius: 10px;
    transition: width 1s ease;
}


.load-more-btn {
    display: inline-block;
    padding: 10px 50px;
    background: var(--primary-orange);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 163, 65, 0.3);
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-orange);
    transition: left 0.3s ease;
    z-index: -1;
}

.load-more-btn:hover::before {
    left: 0;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(238, 163, 65, 0.4);
    background: var(--primary-orange);
    color: #fff;
}

.load-more-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(238, 163, 65, 0.3);
}

.load-more-container {
    text-align: center;
    padding: 10px 0;
}



@media (max-width: 768px) {
    .category-card {
        height: 450px;
    }

    .category-content h3 {
        font-size: 1.5rem;
    }
}




.category-card {
    position: relative;
}




.category-card:hover .category-overlay {
    opacity: 0.7;
}

.cart-icon {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    cursor: pointer;
    -webkit-border-radius: 5%;
    -moz-border-radius: 5%;
    -ms-border-radius: 5%;
    -o-border-radius: 5%;
}

.cart-icon img {
    width: 30px;
    height: 30px;
    fill: white;
}

.category-card:hover .cart-icon {
    opacity: 1;
    visibility: visible;
}

.progress-label p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================== stats-section ============================================== */


/* Stats Counter Section */
.stats-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--primary-orange);
}

.stats-section .stats-grid {
    position: relative;
    z-index: 999;
    color: #fff;
    text-align: center;
}


.stats-section .stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}


/* Stats Grid */
.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

/* Stat Item */
.stats-section .stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.stats-section .stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stats-section .stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stats-section .stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stats-section .stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Stat Number Wrapper */
.stats-section .stat-number-wrapper {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.stats-section .stat-item:hover .stat-number-wrapper {
    transform: scale(1.1);
}

/* Stat Number */
.stats-section .stat-number {
    font-size: 80px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Plus Sign */
.stats-section .plus-sign {
    font-size: 50px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    margin-top: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Stat Label */
.stats-section .stat-label {
    font-size: 22px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Background Pattern */
.stats-section .stats-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.stats-section .stats-pattern svg {
    width: 100%;
    height: 100%;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-section .stats-grid {
        gap: 30px;
    }

    .stats-section .stat-number {
        font-size: 70px;
    }

    .stats-section .plus-sign {
        font-size: 45px;
    }

    .stats-section .stat-label {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .stats-section .stats-section {
        padding: 70px 0;
    }

    .stats-section .stat-number {
        font-size: 60px;
    }

    .stats-section .plus-sign {
        font-size: 40px;
    }

    .stats-section .stat-label {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .stats-section .stats-section {
        padding: 60px 0;
    }

    .stats-section .stat-number {
        font-size: 70px;
    }

    .stats-section .plus-sign {
        font-size: 45px;
    }

    .stats-section .stat-label {
        font-size: 20px;
    }
}


@media (max-width: 768px) {
    .stats-grid {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .stats-grid::-webkit-scrollbar {
        height: 6px;
    }

    .stats-grid::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 10px;
    }

    .stat-item {
        min-width: 220px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
}



/* latest-works */


/* Latest Works Section */
.latest-works {
    position: relative;
    padding: 50px 0;
}


/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(238, 163, 65, 0.1);
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Works Grid */
.latest-works .works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Work Item */
.latest-works .work-item {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.latest-works .work-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Work Image */
.latest-works .work-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.latest-works .work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.latest-works .work-item:hover .work-image img {
    transform: scale(1.15);
}

/* Work Overlay */
.latest-works .work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 60px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.85) 60%,
            rgba(0, 0, 0, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 35px;
    z-index: 2;
}

.latest-works .work-item:hover .work-overlay {
    opacity: 1;
}

/* Overlay Content */
.latest-works .overlay-content {
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.latest-works .work-item:hover .overlay-content {
    transform: translateY(0);
}

.latest-works .work-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.latest-works .work-overlay .work-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.latest-works .work-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Work Tech Stack */
.latest-works .work-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.latest-works .work-tech span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Work Footer */
.latest-works .work-footer {
    position: relative;
    padding: 20px 25px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
    transition: all 0.3s ease;
}

.latest-works .work-item:hover .work-footer {
    background: #f8f9fa;
}

.latest-works .work-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    transition: color 0.3s ease;
}

.latest-works .work-item:hover .work-name {
    color: var(--primary-orange);
}

.latest-works .arrow-icon {
    color: var(--primary-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.latest-works .work-item:hover .arrow-icon {
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .latest-works .works-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .latest-works .latest-works {
        padding: 60px 0;
    }

    .latest-works .section-title {
        font-size: 32px;
    }

    .latest-works .section-subtitle {
        font-size: 16px;
    }

    .latest-works .works-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .latest-works .work-image {
        height: 250px;
    }

    .latest-works .work-overlay {
        bottom: 55px;
    }

    .latest-works .overlay-content {
        padding: 0;
    }

    .latest-works .work-overlay .work-title {
        font-size: 22px;
    }

    .latest-works .work-description {
        font-size: 14px;
    }

    .latest-works .work-footer {
        padding: 16px 20px;
    }

    .latest-works .work-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .latest-works .section-title {
        font-size: 28px;
    }

    .latest-works .work-image {
        height: 300px;
    }

    .latest-works .overlay-content {
        padding: 25px;
    }
}




/* ============================================== work-process-section ============================================== */
.work-process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    padding: 40px 0;
}

/* Process Step */
.process-step {
    position: relative;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.3s;
}

.process-step:nth-child(3) {
    animation-delay: 0.5s;
}

.process-step:nth-child(4) {
    animation-delay: 0.7s;
}

/* Step Icon Wrapper */
.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

/* Step Icon */
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), #f5b96d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(238, 163, 65, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.step-icon i {
    font-size: 35px;
}

.process-step:hover .step-icon {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(238, 163, 65, 0.4);
    background: linear-gradient(135deg, #000000, #333333);
}

/* Step Number */
.step-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 4px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-orange);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    z-index: 3;
}

.process-step:hover .step-number {
    background: var(--primary-black);
    color: #ffffff;
    border-color: var(--primary-black);
    transform: scale(1.15);
}


.process-step:last-child .step-line {
    display: none;
}

/* Step Content */
.step-content {
    padding: 0 10px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.process-step:hover .step-title {
    color: var(--primary-black);
}

.step-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Background Decoration */
.process-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-orange), #000000);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #000000, var(--primary-orange));
    bottom: -80px;
    left: -80px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .step-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .work-process-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .step-icon {
        width: 100px;
        height: 100px;
    }

    .step-icon i {
        font-size: 40px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-width: 3px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 14px;
    }

    .step-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }

    .step-icon {
        width: 90px;
        height: 90px;
    }

    .step-icon i {
        font-size: 35px;
    }

    .step-content {
        padding: 0;
    }
}


.footer {
    position: relative;
    background-image: url(../img/photorealistic-sheep-farm.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(238, 163, 65, 0.084);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1;
}


.footer * {
    position: relative;
    z-index: 2;
}


/* Footer Main */
.footer-main {
    padding: 80px 0 40px;
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(238, 163, 65, 0.4) 50%,
            transparent);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Footer Column */
.footer-column {
    animation: fadeInUp 0.8s ease backwards;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}

/* Footer About */
.footer-about {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    height: 200px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--primary-orange);
    color: #ffffff;
    transform: translateY(-4px);
    border-color: var(--primary-orange);
}

/* Footer Title */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-right: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    right: 0;
    width: 6px;
    height: 6px;
    background: var(--primary-orange);
    border-radius: 50%;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-right: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-orange);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.copyright strong {
    color: #ffffff;
    font-weight: 700;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(238, 163, 65, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(238, 163, 65, 0.6);
    background: linear-gradient(135deg, #000000, #333333);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-about {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .scroll-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-logo span {
        font-size: 22px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-social {
        flex-wrap: wrap;
    }
}


.whatsapp-floating {
    position: fixed;
    bottom: 25px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.wa-icon {
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    animation: floatUpDown 2.5s ease-in-out infinite;
}


.wa-one {
    width: 55px;
    height: 55px;
    background: var(--primary-black);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    animation: floatUpDown 2.5s ease-in-out infinite;
}

.wa-two {
    animation-delay: 0.6s;
}

.wa-icon:hover {
    transform: scale(1.15);
}

/* Animation */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}


.wa-icon {
    position: relative;
}

.wa-icon::after {
    content: attr(data-city);
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: var(--primary-orange);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.wa-icon::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--primary-orange);
    opacity: 0;
    transition: 0.3s ease;
}

.wa-icon:hover::after,
.wa-icon:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}



.wa-icon::after {
    content: attr(data-city);
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-orange);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 1;
    pointer-events: none;
}

.wa-icon::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--primary-orange);
    opacity: 1;
}


.wa-icon {
    position: relative;
}

.wa-icon::after {
    content: attr(data-city);
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: var(--primary-orange);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.wa-icon::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    border: 6px solid transparent;
    border-right-color: var(--primary-orange);
    opacity: 0;
    transition: 0.3s ease;
}

.wa-icon:hover::after,
.wa-icon:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ============================================== .contact-section ============================================== */


.contact-section {
    padding: 20px 20px;
    margin: 30px auto;
}





.contact-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-section .section-header .subtitle {
    color: var(--primary-orange);
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-section .section-header h2 {
    font-size: 2.8em;
    color: #1a1a1a;
    font-weight: 800;
}

.contact-section .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-section .contact-form-wrapper {
    background: white;
    padding: 45px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-section .contact-form-wrapper h3 {
    font-size: 2em;
    color: #1a1a1a;
    margin-bottom: 35px;
    font-weight: 700;
}

.contact-section .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact-section .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95em;
}

.contact-section .form-group label::after {
    content: '*';
    color: var(--primary-orange);
    margin-right: 4px;
}

.contact-section .form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 45px 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s;
}

.contact-section .form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #EEA341;
    box-shadow: 0 0 0 3px rgba(238, 163, 65, 0.1);
}

.contact-section .form-group i {
    position: absolute;
    left: 18px;
    top: 48px;
    color: #999;
    font-size: 1.1em;
}

.contact-section .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-section .submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #EEA341, #D98E2C);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    margin-top: 10px;
}

.contact-section .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 163, 65, 0.4);
}

.contact-section .submit-btn i {
    margin-left: 8px;
}

.contact-section .map-wrapper {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 600px;
}

.contact-section .map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    min-height: 560px;
}

@media (max-width: 992px) {
    .contact-section .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-section .map-wrapper {
        min-height: 500px;
    }

    .contact-section {
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .contact-section .contact-form-wrapper {
        padding: 30px 25px;
    }

    .contact-section .section-header h2 {
        font-size: 2em;
    }
}
















/* =========================================== clients-slider ====================================== */

.clients-slider {
    margin: 30px auto;
}

.clients-slider .client-slide {
    padding: 20px;
    outline: none;
}

.clients-slider .client-card {
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}


.clients-slider .client-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.clients-slider .client-logo {
    max-width: 100%;
    max-height: 320px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s;
    animation: fadeInUp 0.6s ease forwards;
}

@media(max-width:991px) {
    .clients-slider .client-logo {
        max-height: 200px !important;
    }
}

.clients-slider .client-card:hover .client-logo {
    opacity: 1;
    transform: scale(1.1) rotate(2deg);
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}


/* ========================== clients-slider Styling ========================== */



.client-card {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.client-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 180px;
    max-height: 100px;
}

.client-card:hover .client-logo {
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 768px) {
    .clients-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .client-card {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .clients-slider {
        grid-template-columns: 1fr;
    }
}


/* ========================= Chat Widget Container ============================= */
.chat-widget {
    position: fixed;
    bottom: 95px;
    right: 30px;
    z-index: 1000;
}

/* Chat Button */
.chat-widget .chat-button {
    width: 50px;
    height: 55px;
    border-radius: 10px;
    background: #EEA341;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.chat-widget .chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.chat-widget .chat-button svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* Notification Badge */
.chat-widget .notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Chat Box */
.chat-widget .chat-box {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chat-widget .chat-box.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chat Header */
.chat-widget .chat-header {
    background: #EEA341;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-widget .chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-widget .chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
}

.chat-widget .status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #2ecc71;
    border: 2px solid white;
    border-radius: 50%;
}

.chat-widget .chat-title h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.chat-widget .chat-status {
    font-size: 13px;
    opacity: 0.9;
}

.chat-widget .close-chat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.chat-widget .close-chat:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Chat Messages */
.chat-widget .chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.chat-widget .chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-widget .chat-messages::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.chat-widget .message {
    margin-bottom: 16px;
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-widget .message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 12px;
    word-wrap: break-word;
}

.chat-widget .message.received .message-content {
    background: white;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.chat-widget .message.sent {
    justify-content: flex-end;
}

.chat-widget .message.sent .message-content {
    background: #EEA341;
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-widget .message-time {
    font-size: 11px;
    color: #999;
    margin-top: 6px;
    display: block;
}

.chat-widget .message.sent .message-time {
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
}

/* Typing Indicator */
.chat-widget .typing-indicator {
    display: none;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    width: fit-content;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.chat-widget .typing-indicator.active {
    display: block;
}

.chat-widget .typing-indicator span {
    height: 8px;
    width: 8px;
    background: #999;
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
    animation: typing 1.4s infinite;
}

.chat-widget .typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-8px);
    }
}

/* Quick Replies */
.quick-replies {
    display: flex;
    gap: 8px;
    padding: 0 20px 10px;
    flex-wrap: wrap;
}

.quick-reply {
    background: white;
    border: 1px solid #ddd;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-reply:hover {
    background: #EEA341;
    color: white;
    border-color: #EEA341;
}

/* Chat Input */
.chat-input {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 12px;
    align-items: center;
}

.chat-input input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 12px 16px;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.chat-input input:focus {
    border-color: #667eea;
}

.send-button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #EEA341;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.send-button:hover {
    transform: scale(1.05);
}

.send-button:active {
    transform: scale(0.95);
}

.send-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

/* Responsive */
@media (max-width: 480px) {
    .chat-box {
        width: calc(100vw - 40px);
        height: calc(100vh - 100px);
    }
}

/* Demo Page Styling */
.demo-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.demo-content h1 {
    color: #333;
    margin-bottom: 20px;
}

.demo-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}



/* ========================== Root Variables ========================== */
:root {
    --primary-black: #000000;
    --primary-orange: #EEA341;
    --dark-gray: #1a1a1a;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* ========================== Reset & Base Styles ========================== */



/* ========================== Animated Background ========================== */


@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* ========================== Floating Particles ========================== */


@keyframes particlesFloat {
    0% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 90% 60%, 33% 80%;
    }

    100% {
        background-position: 100% 100%, 0% 0%, 150% 150%, 180% 120%, 190% 160%, 133% 180%;
    }
}

/* ========================== Content Wrapper ========================== */
main, header, footer, section {
    position: relative;
    z-index: 1;
}

body::-webkit-scrollbar {
    width: 14px;
}

body::-webkit-scrollbar-track {
    background: #1a1a1a;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-orange);
    border: 1px solid #1a1a1a;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #d89335;
}

a {
    text-decoration: none !important;
}

.container {
    max-width: 1110px;
    margin: 0 auto;
}

/* ========================== Header Styles ========================== */

.site-header.sticky {
    position: fixed;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(238, 163, 65, 0.1);
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    color: #fff;
}

.site-header.scrolled .nav-link {
    color: #ffffff;
    transition: color 0.3s;
}

.site-header.scrolled .nav-link:hover {
    color: var(--primary-orange);
}

.site-header.scrolled .icon,
.site-header.scrolled .menu-item {
    color: #fff;
}

.site-header.scrolled .navbar-toggler {
    background-color: var(--primary-orange);
}

.main-bar {
    padding: 20px 0;
}

.main-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(238, 163, 65, 0.2);
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(238, 163, 65, 0.3);
    transition: all 0.3s ease;
}

.logo-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(238, 163, 65, 0.3);
}

.site-header.scrolled .logo-header {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 6px 20px rgba(238, 163, 65, 0.15);
}

@media(max-width:991px) {
    .logo-header {
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 6px 20px rgba(238, 163, 65, 0.2);
    }
}

.logo-header img {
    max-height: 42px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(238, 163, 65, 0.3));
}

.navbar-collapse {
    order: 2;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.extra-nav {
    order: 3;
    flex: 0 0 auto;
}

.navbar-toggler {
    order: 3;
}

/* ========================== Navigation Styles ========================== */
.navbar-nav {
    gap: 45px;
    margin: 0;
}

.navbar-nav li a {
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    transition: var(--transition);
    font-weight: 500;
    text-decoration: none;
    display: block;
    position: relative;
}

.navbar-nav li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
}

.navbar-nav li a:hover::before,
.navbar-nav li.active a::before {
    width: 80%;
    right: 10%;
}

.navbar-nav li a:hover,
.navbar-nav li.active a {
    transform: translateY(-2px);
    color: var(--primary-orange);
}

/* ========================== Mobile Menu Toggle ========================== */
.navbar-toggler {
    border: none;
    padding: 10px;
    background: rgba(238, 163, 65, 0.2);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    z-index: 999999;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.site-header {
    position: relative;
    z-index: 999;
}

.main-bar {
    position: relative;
    z-index: 999;
}

/* Dropdown Menu */
.nav-item.has-dropdown {
    position: relative;
}

.has-dropdown>.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.has-dropdown>.nav-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover>.nav-link i {
    transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 280px;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(238, 163, 65, 0.2);
    padding: 15px 0;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    z-index: 9999 !important;
    border: 1px solid rgba(238, 163, 65, 0.2);
}

.has-dropdown:hover .mega-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.mega-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(26, 26, 26, 0.98);
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-list li {
    border-bottom: 1px solid rgba(238, 163, 65, 0.1);
}

.dropdown-list li:last-child {
    border-bottom: none;
}

.dropdown-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px 15px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-list a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.dropdown-list a:hover {
    background: rgba(238, 163, 65, 0.1);
    color: var(--primary-orange);
    padding-right: 30px;
}

.dropdown-list a:hover::before {
    width: 4px;
}

.dropdown-list a i {
    font-size: 17px;
    width: 25px;
    text-align: center;
    color: var(--primary-orange);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dropdown-list a:hover i {
    color: var(--primary-orange);
    transform: scale(1.15);
}

.dropdown-list a span {
    white-space: nowrap;
}

/* Mobile Version */
@media (max-width: 991px) {
    .mega-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        background: rgba(238, 163, 65, 0.05);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
    }

    .mega-dropdown::before {
        display: none;
    }

    .has-dropdown.open .mega-dropdown {
        max-height: 600px;
        padding: 10px 0;
        margin-top: 10px;
    }

    .has-dropdown.open>.nav-link i {
        transform: rotate(180deg);
    }

    .dropdown-list a {
        padding: 12px 20px 12px 45px;
        font-size: 14px;
    }

    .dropdown-list a:hover {
        padding-right: 45px;
    }

    .dropdown-list a i {
        font-size: 18px;
    }
}



.banner-media {
    border-radius: 24px;
    overflow: hidden;
}

.banner-media img {
    width: 100%;
    height: auto;
    display: block;
}