* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #f4ca56;
    --main-color-tow: #4a4a4c;
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}


@font-face {
    font-family: 'CAREEM';
    src: url('../fonts/CAREEM-REGULAR.DB5F2BCA26992ED25A89.otf') format('woff2'),
        url('../fonts/CAREEM-REGULAR.DB5F2BCA26992ED25A89.otf') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

a {
    text-decoration: none;
}


/* ------Common-Css------------- */
/* 
html {
    scroll-behavior: smooth
} */


/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--main-color);
}

body {
    font-family: "CAREEM", sans-serif;
    direction: rtl;
    overflow-x: hidden;
}


/* ===== DOTS ANIMATION ===== */
@keyframes floatingDots {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(20px, -15px);
    }

    50% {
        transform: translate(-10px, -30px);
    }

    75% {
        transform: translate(-20px, -15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* ===== CONTENT ABOVE OVERLAYS ===== */
body>* {
    position: relative;
    z-index: 2;
}

.container {
    /* max-width: 1400px !important; */
}


@keyframes bgMove {
    0% {
        background-position: center bottom;
    }

    100% {
        background-position: center top;
    }
}

.logo img {
    height: 60px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* Navbar Styles */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: #fff;
    box-shadow: var(--box-shadow);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.nav-link {
    color: rgba(0, 0, 0, 0.9) !important;
    font-weight: 600;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #d4af37 !important;
    transform: translateY(-2px);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

.demo-container {
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.lang-btn-4 {
    background: white;
    border: 3px solid var(--main-color);
    padding: 4px 13px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lang-option.active {
    background: var(--main-color);
    color: white;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
}

.lang-option {
    padding: 3px 6px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    color: var(--main-color);
    border: none;
    background: #fff;
}

/* Navbar Mobile Side Menu */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--main-color);
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        overflow-y: auto;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        margin: 0 !important;
    }

    .nav-item {
        margin-bottom: 10px;
    }

    .nav-link {
        padding: 15px 20px;
        margin: 0;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        display: block;
        color: #fff !important;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(212, 175, 55, 0.2);
    }

    .demo-container {
        margin-top: 30px;
    }

    /* Close button for mobile menu */
    .navbar-toggler[aria-expanded="true"] {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 10000;
    }

    /* Overlay when menu is open */
    .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    /* Logo adjustments */
    .logo img {
        height: 40px;
    }
}

/* Close Icon Style */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") !important;
}




/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 88vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
}

.slide.active img {
    animation: zoomIn 8s ease-out forwards;
}


.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slide-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(244, 202, 86, 0.3) 3px, transparent 3px),
        radial-gradient(circle, rgba(244, 202, 86, 0.2) 2px, transparent 2px);
    background-size: 200px 200px, 150px 150px;
    background-position: 0 0, 50px 50px;
    animation: floatingDots 20s linear infinite;
}

@keyframes floatingDots {
    0%, 100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(20px, -15px);
        -webkit-transform: translate(20px, -15px);
        -moz-transform: translate(20px, -15px);
        -ms-transform: translate(20px, -15px);
        -o-transform: translate(20px, -15px);
    }

    50% {
        transform: translate(-10px, -70px);
        -webkit-transform: translate(-10px, -70px);
        -moz-transform: translate(-10px, -70px);
        -ms-transform: translate(-10px, -70px);
        -o-transform: translate(-10px, -70px);
    }

    75% {
        transform: translate(-20px, -15px);
    }
}



/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    /* مهم للـ blur */
    border: 1px solid rgba(207, 170, 89, 0.4);
    color: #cfaa59;
    width: 36px;
    height: 36px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


.slider-nav:hover {
    background: #f4ca56;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(244, 202, 86, 0.6);
    color: #fff;
}

.slider-nav.prev {
    right: 30px;
}

.slider-nav.next {
    left: 30px;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.dot.active {
    background: #f4ca56;
    width: 40px;
    border-radius: 10px;
    border-color: white;
}

/* Button Custom */
.btn-custom {
    background: var(--main-color);
    color: #ffffff !important;
    padding: 12px 35px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(244, 202, 86, 0.5);
    cursor: pointer;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(244, 202, 86, 0.7);
    background: #fff;
    color: #f4ca56 !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-slider {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav i {
        font-size: 16px;
    }

    .slider-nav.prev {
        right: 15px;
    }

    .slider-nav.next {
        left: 15px;
    }

    .slide img {
        object-fit: cover;
        object-position: center center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 300px;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.85);
    }

    .slider-nav i {
        font-size: 14px;
    }

    .slider-nav.prev {
        right: 10px;
    }

    .slider-nav.next {
        left: 10px;
    }

    .slide-overlay {
        background: linear-gradient(to bottom, 
            rgba(0, 0, 0, 0.2) 0%, 
            rgba(0, 0, 0, 0.4) 100%);
    }
}

@media (max-width: 360px) {
    .hero-slider {
        height: 250px;
    }

    .slider-nav {
        width: 30px;
        height: 30px;
    }

    .slider-nav i {
        font-size: 12px;
    }

    .slider-nav.prev {
        right: 8px;
    }

    .slider-nav.next {
        left: 8px;
    }
}

/*  */

/* About Section */
.about-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(244, 202, 86, 0.08) 2px, transparent 2px);
    background-size: 50px 50px;
    pointer-events: none;
}

.section-title {
    margin-bottom: 30px;
}

.section-title .subtitle {
    display: inline-block;
    color: var(--main-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-right: 30px;
}

.section-title .subtitle::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--main-color);
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--main-color-tow);
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-shape {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--main-color);
    border-radius: 20px;
    z-index: -1;
}

.about-content {
    padding-right: 30px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--main-color);
    font-size: 1.3rem;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-color-tow);
}

/* Responsive */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        padding-right: 0;
        margin-top: 40px;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .about-image img {
        height: 400px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-image img {
        height: 300px;
    }
}


/* circular-section  */



.circular-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.circular-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.circle-menu {
    position: relative;
    width: 750px;
    height: 750px;
}

.circular-section .circular-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 560px;
    height: 560px;
    border: 2px solid rgba(184, 156, 92, 0.3);
    border-radius: 50%;
    z-index: 1;
}

.circular-section .circular-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 1px solid rgba(184, 156, 92, 0.15);
    border-radius: 50%;
}

.circular-section .circular-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 1px solid rgba(184, 156, 92, 0.15);
    border-radius: 50%;
}

.circular-section .center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: white;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.15),
        0 0 0 12px rgba(255, 255, 255, 0.9),
        0 0 0 14px rgba(184, 156, 92, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.circular-section .center-logo::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border: 3px solid var(--main-color);
    border-radius: 50%;
    z-index: -1;
}

.circular-section .center-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.circular-section .menu-item {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: white;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12),
        0 0 0 8px rgba(255, 255, 255, 0.95),
        0 0 0 10px rgba(184, 156, 92, 0.25);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    z-index: 5;
}

.circular-section .menu-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #b89c5c;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: 1;
}

.circular-section .menu-item:hover {
    transform: scale(1.15);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.2),
        0 0 0 8px rgba(255, 255, 255, 0.95),
        0 0 0 10px rgba(184, 156, 92, 0.4);
    z-index: 6;
}

.circular-section .menu-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

.circular-section .menu-item img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.circular-section .menu-item:hover img {
    transform: scale(1.05);
}

.circular-section .menu-item::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom,
            rgba(184, 156, 92, 0.4) 0%,
            rgba(184, 156, 92, 0.2) 50%,
            transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.circular-section .menu-item.item1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) translate(280px) rotate(0deg);
}

.circular-section .menu-item.item1::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%) rotate(180deg);
    transform-origin: top center;
}

.circular-section .menu-item.item2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(51.43deg) translate(280px) rotate(-51.43deg);
}

.circular-section .menu-item.item2::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%) rotate(128.57deg);
    transform-origin: top center;
}

.circular-section .menu-item.item3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(102.86deg) translate(280px) rotate(-102.86deg);
}

.circular-section .menu-item.item3::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%) rotate(77.14deg);
    transform-origin: top center;
}

.circular-section .menu-item.item4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(154.29deg) translate(280px) rotate(-154.29deg);
}

.circular-section .menu-item.item4::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%) rotate(25.71deg);
    transform-origin: top center;
}

.circular-section .menu-item.item5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(205.72deg) translate(280px) rotate(-205.72deg);
}

.circular-section .menu-item.item5::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%) rotate(-25.72deg);
    transform-origin: top center;
}

.circular-section .menu-item.item6 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(257.15deg) translate(280px) rotate(-257.15deg);
}

.circular-section .menu-item.item6::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%) rotate(-77.15deg);
    transform-origin: top center;
}

.circular-section .menu-item.item7 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(308.58deg) translate(280px) rotate(-308.58deg);
}

.circular-section .menu-item.item7::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%) rotate(-128.58deg);
    transform-origin: top center;
}
/* Responsive - Smaller sizes */
@media (max-width: 768px) {
    .circular-section {
        padding: 20px 0;
    }

    .circular-section::before {
        width: 400px;
        height: 400px;
    }

    .circular-section .circle-menu {
        width: 350px;
        height: 350px;
    }

    .circular-section .circular-line {
        width: 280px;
        height: 280px;
    }

    .circular-section .center-logo {
        width: 120px;
        height: 120px;
        box-shadow:
            0 5px 20px rgba(0, 0, 0, 0.15),
            0 0 0 6px rgba(255, 255, 255, 0.9),
            0 0 0 8px rgba(184, 156, 92, 0.3);
    }

    .circular-section .center-logo::before {
        width: 140px;
        height: 140px;
        border: 2px solid var(--main-color);
    }

    .circular-section .center-logo img {
        padding: 10px;
    }

    .circular-section .menu-item {
        width: 70px;
        height: 70px;
        box-shadow:
            0 4px 15px rgba(0, 0, 0, 0.12),
            0 0 0 4px rgba(255, 255, 255, 0.95),
            0 0 0 6px rgba(184, 156, 92, 0.25);
    }

    .circular-section .menu-item::after {
        height: 50px;
    }

    .circular-section .menu-item:hover {
        transform: scale(1.1);
    }

    .menu-item.item1,
    .menu-item.item2,
    .menu-item.item3,
    .menu-item.item4,
    .menu-item.item5,
    .menu-item.item6,
    .menu-item.item7 {
        top: 50%;
        left: 50%;
    }

    .circular-section .menu-item.item1 {
        transform: translate(-50%, -50%) rotate(0deg) translate(140px) rotate(0deg);
    }

    .circular-section .menu-item.item2 {
        transform: translate(-50%, -50%) rotate(51.43deg) translate(140px) rotate(-51.43deg);
    }

    .circular-section .menu-item.item3 {
        transform: translate(-50%, -50%) rotate(102.86deg) translate(140px) rotate(-102.86deg);
    }

    .circular-section .menu-item.item4 {
        transform: translate(-50%, -50%) rotate(154.29deg) translate(140px) rotate(-154.29deg);
    }

    .circular-section .menu-item.item5 {
        transform: translate(-50%, -50%) rotate(205.72deg) translate(140px) rotate(-205.72deg);
    }

    .circular-section .menu-item.item6 {
        transform: translate(-50%, -50%) rotate(257.15deg) translate(140px) rotate(-257.15deg);
    }

    .circular-section .menu-item.item7 {
        transform: translate(-50%, -50%) rotate(308.58deg) translate(140px) rotate(-308.58deg);
    }
}

/* للشاشات الصغيرة جداً */
@media (max-width: 480px) {
    .circular-section .circle-menu {
        width: 280px;
        height: 280px;
    }

    .circular-section .circular-line {
        width: 220px;
        height: 220px;
    }

    .circular-section .center-logo {
        width: 90px;
        height: 90px;
        box-shadow:
            0 3px 15px rgba(0, 0, 0, 0.15),
            0 0 0 4px rgba(255, 255, 255, 0.9),
            0 0 0 6px rgba(184, 156, 92, 0.3);
    }

    .circular-section .center-logo::before {
        width: 105px;
        height: 105px;
        border: 2px solid var(--main-color);
    }

    .circular-section .center-logo img {
        padding: 8px;
    }

    .circular-section .menu-item {
        width: 55px;
        height: 55px;
        box-shadow:
            0 3px 12px rgba(0, 0, 0, 0.12),
            0 0 0 3px rgba(255, 255, 255, 0.95),
            0 0 0 5px rgba(184, 156, 92, 0.25);
    }

    .circular-section .menu-item::after {
        height: 40px;
        width: 1.5px;
    }

    .circular-section .menu-item.item1 {
        transform: translate(-50%, -50%) rotate(0deg) translate(110px) rotate(0deg);
    }

    .circular-section .menu-item.item2 {
        transform: translate(-50%, -50%) rotate(51.43deg) translate(110px) rotate(-51.43deg);
    }

    .circular-section .menu-item.item3 {
        transform: translate(-50%, -50%) rotate(102.86deg) translate(110px) rotate(-102.86deg);
    }

    .circular-section .menu-item.item4 {
        transform: translate(-50%, -50%) rotate(154.29deg) translate(110px) rotate(-154.29deg);
    }

    .circular-section .menu-item.item5 {
        transform: translate(-50%, -50%) rotate(205.72deg) translate(110px) rotate(-205.72deg);
    }

    .circular-section .menu-item.item6 {
        transform: translate(-50%, -50%) rotate(257.15deg) translate(110px) rotate(-257.15deg);
    }

    .circular-section .menu-item.item7 {
        transform: translate(-50%, -50%) rotate(308.58deg) translate(110px) rotate(-308.58deg);
    }
}
/* chairman-section */


.chairman-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f5f0 0%, #ebe9df 100%);
    direction: rtl;
    overflow: hidden;
}


.chairman-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 100px;
    align-items: center;
}

.chairman-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.diamond-wrapper {
    position: relative;
    width: 360px;
    height: 360px;
}

.diamond-frame {
    width: 100%;
    height: 100%;
    position: relative;
    transform: rotate(45deg);
    overflow: hidden;
    border-radius: 40px;
    background: linear-gradient(135deg, #8b5a2b 0%, #d4a574 50%, #8b5a2b 100%);
    padding: 3px;
}

.diamond-frame::before {
    content: '';
    position: absolute;
    inset: 15px;
    background: white;
    border-radius: 35px;
    z-index: 1;
}

.diamond-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(212, 165, 116, 0.4) 0%,
            transparent 50%,
            rgba(139, 90, 43, 0.4) 100%);
    border-radius: 40px;
    z-index: 3;
    pointer-events: none;
}

.diamond-frame img {
    position: absolute;
    width: 200%;
    height: 200%;
    object-fit: cover;
    object-position: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 2;
}

.diamond-wrapper::before {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: transparent;
    border-radius: 40px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.25),
        0 15px 40px rgba(139, 90, 43, 0.2);
    z-index: -1;
}

.chairman-text {
    text-align: right;
}

.section-subtitle {
    font-size: 19px;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 36px;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.chairman-message {
    margin-bottom: 45px;
}

.chairman-message p {
    font-size: 22px;
    line-height: 2.2;
    color: #4a4a4a;
    margin-bottom: 28px;
    text-align: justify;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

.chairman-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(139, 115, 85, 0.25);
    text-align: center;
}

.chairman-position {
    font-size: 17px;
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 10px;
}

.chairman-name {
    font-size: 24px;
    color: #2c3e50;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .chairman-content {
        gap: 60px;
    }

    .diamond-wrapper {
        width: 420px;
        height: 420px;
    }

    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 1024px) {
    .chairman-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .chairman-text {
        order: 2;
        text-align: center;
        padding-top: 50px;
    }

    .chairman-image {
        order: 1;
    }

    .chairman-message p {
        text-align: center;
    }

    .diamond-wrapper {
        width: 400px;
        height: 400px;
    }

    .section-title {
        font-size: 38px;
    }

    .chairman-message p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .chairman-section {
        padding: 60px 0;
    }

    .diamond-wrapper {
        width: 340px;
        height: 340px;
    }

    .section-title {
        font-size: 32px;
    }

    .chairman-message p {
        font-size: 16px;
        line-height: 2;
    }
}

@media (max-width: 480px) {
    .chairman-section {
        padding: 90px 0;
    }

    .diamond-wrapper {
        width: 300px;
        height: 300px;
    }

    .diamond-frame {
        border-radius: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .chairman-message p {
        font-size: 15px;
        line-height: 1.9;
    }

    .chairman-name {
        font-size: 20px;
    }

    .chairman-position {
        font-size: 15px;
    }
}


/* category */


.category-overlay_main_tow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
}

.category-card {
    position: relative;
}

.category-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 380px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    color: white;
    z-index: 2;
}

.category-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.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;
    font-size: 14px;
}

.progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: var(--main-color);
    border-radius: 10px;
    transition: width 1s ease;
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--main-color-tow);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.sections-area {
    padding: 50px 0;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    display: inline-block;
    padding: 15px 50px;
    background: var(--main-color);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--tow-main-color);
    color: white;
    transform: translateY(-3px);
}

a {
    text-decoration: none;
}


/* footer */
footer {
    background: #fff;
    color: #333;
    padding: 2rem 1rem 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

footer::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url('../img/palm-tree-svgrepo-com2.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.20;
    top: 0px;
    left: 5%;
    transform: rotate(-15deg);
    border-radius: 50%;
}

footer::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url('../img/palm-tree-svgrepo-com2.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.20;
    bottom: 0px;
    right: 5%;
    transform: rotate(15deg);
    border-radius: 50%;
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--tow-main-color);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    border-bottom: 2px solid var(--main-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
    font-size: 13px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    padding-right: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(-5px);
}

.footer-section ul li::before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    font-size: 0.8rem;
    color: var(--main-color);
}

.footer-section a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--main-color);
}

.dates-showcase {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.date-item {
    background: rgba(139, 69, 19, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.3);
    color: #333;
}

.date-item:hover {
    background: rgba(139, 69, 19, 0.2);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.3);
    color: var(--tow-main-color);
}

.social-icon:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(139, 69, 19, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: #555;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-section img {
    width: 70%;
    margin-bottom: 20px;
}