:root {
    --black: #000000;
    --gold: #D4AF37;
    --dark-gray: #222222;
    --light-gray: #333333;
    --white: #f8f9fa;
}

* {
     font-family: 'Cairo', 'Montserrat', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cairo', 'Montserrat', sans-serif;
    font-weight: 700;
}

body {
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
   
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold) !important;
    letter-spacing: 1px;
    text-decoration: none;
}

.navbar-brand img {
    height: 40px;
    margin-left: 15px;
    margin-right: 0;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--white) !important;
    font-size: 1rem;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    left: auto;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1616594039964-ae9021a400a0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero .gold-text {
    color: var(--gold);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 3rem;
    color: var(--white);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: var(--gold);
    bottom: 0;
    right: 50%;
    left: auto;
    transform: translateX(50%);
}

.section-title p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--dark-gray);
}

.about-content {
    padding: 40px;
    background: var(--light-gray);
    border-right: 4px solid var(--gold);
    border-left: none;
}

.about-content h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-left: 15px;
    margin-right: 0;
}

.about-feature span {
    font-size: 1.1rem;
    color: var(--white);
}

/* Services Section */
.services {
    background: var(--dark-gray);
}

.service-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-gray);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    height: 100%;
}

.service-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.2);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-box:hover .service-icon::before {
    opacity: 1;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 0;
}

.service-box:hover .service-img {
    transform: scale(1.1);
}

.service-box:hover .service-icon {
    transform: rotate(360deg);
}

.service-box h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.service-box p {
    color: #aaa;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--dark-gray);
}

.contact-info {
    background: var(--light-gray);
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-left: 20px;
    margin-right: 0;
}

.contact-item h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 5px;
}

.contact-item p {
    color: #aaa;
    margin: 0;
}

.contact-form {
    background: var(--light-gray);
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.form-control,
.form-select {
    background: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 15px;
    font-size: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: right;
}

.form-control:focus,
.form-select:focus {
    background: var(--black);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: none;
}

.form-control::placeholder {
    color: #666;
}

.form-label {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.btn-submit {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-submit:hover {
    background: var(--white);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--black);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-widget h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--gold);
    bottom: 0;
    right: 0;
    left: auto;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--gold);
    padding-right: 10px;
    padding-left: 0;
}

.footer-links i {
    margin-left: 10px;
    margin-right: 0;
    color: var(--gold);
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-left: 15px;
    margin-right: 0;
    color: var(--gold);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .about-content {
        margin-top: 30px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .navbar-brand img {
        height: 70px;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }
}