     :root {
            --gold-color: #FFD700;
            --dark-bg: #000000;
            --dark-secondary: #1a1a1a;
            --text-light: #ffffff;
            --text-muted: #cccccc;
        }

        * {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Enhanced Navbar Styles with logo support */
        .navbar-custom {
            background: blئack;
            border-bottom: 3px solid var(--gold-color);
            padding: 0.8rem 0;
            box-shadow: 0 2px 15px rgba(255, 215, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .navbar-brand {
            color: var(--gold-color) !important;
            font-weight: bold;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.02);
            color: var(--text-light) !important;
        }

        .navbar-logo {
            height: 100px;
            
            margin-left: 5px;
            padding-right: 5px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover .navbar-logo {
            transform: rotate(5deg) scale(1.1);
        }

        .navbar-brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .navbar-brand-main {
            font-size: 1.1rem;
            font-weight: 700;
        }

        .navbar-brand-sub {
            font-size: 0.75rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .navbar-nav {
            gap: 0.5rem;
        }

        .navbar-nav .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            padding: 0.7rem 1.2rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .navbar-nav .nav-link:hover::before {
            left: 100%;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--gold-color) !important;
            background-color: rgba(255, 215, 0, 0.1);
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 2px solid var(--gold-color);
            border-radius: 8px;
            padding: 0.5rem;
            transition: all 0.3s ease;
        }

        .navbar-toggler:hover {
            background-color: rgba(255, 215, 0, 0.1);
            transform: scale(1.05);
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFD700' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 1.5em;
            height: 1.5em;
        }

        /* Responsive navbar adjustments */
        @media (max-width: 991px) {
            .navbar-brand {
                font-size: 1.1rem;
            }
            
            .navbar-logo {
                height: 100px;
            }
            
            .navbar-brand-main {
                font-size: 1rem;
            }
            
            .navbar-brand-sub {
                font-size: 0.7rem;
            }
            
            .navbar-nav {
                margin-top: 1rem;
                padding-top: 1rem;
                border-top: 1px solid rgba(255, 215, 0, 0.2);
            }
            
            .navbar-nav .nav-link {
                text-align: center;
                margin: 0.2rem 0;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand-text {
                display: none;
            }
            
            .navbar-logo {
                height: 150px;
            }
        }
/* Topbar */
.topbar {
  background: #000; /* خلفية سوداء */
  color: #fff;
  font-size: 0.9rem;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.topbar a:hover {
  color: #FFD700; /* ذهبي عند الهوفر */
}

.topbar i {
  color: #FFD700; /* أيقونات باللون الذهبي */
  font-size: 1rem;
  vertical-align: middle;
}

        /* Hero Section */
        .hero-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        /* Updated hero styles for carousel */
        .hero-carousel {
            height: 100vh;
        }

        .hero-carousel .carousel-item {
            height: 100vh;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero-carousel .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            width: 90%;
            max-width: 800px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--gold-color);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 5%;
            z-index: 3;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: var(--gold-color);
            border-radius: 50%;
            padding: 20px;
        }

        .carousel-indicators {
            z-index: 3;
        }

        .carousel-indicators button {
            background-color: var(--gold-color);
            border: 2px solid var(--gold-color);
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            color: var(--gold-color);
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: var(--gold-color);
            margin: 1rem auto;
        }

        /* About Section */
        .about-section {
            background-color: var(--dark-secondary);
        }

        /* Enhanced About section styles with image support */
        .about-image img {
            border: 3px solid var(--gold-color);
            transition: transform 0.3s ease;
        }

        .about-image img:hover {
            transform: scale(1.02);
        }

        .about-content {
            padding-right: 2rem;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
            text-align: right;
            margin-bottom: 1.5rem;
        }

        .feature-item {
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .feature-item i {
            color: var(--gold-color);
        }

        /* Responsive adjustments for About section */
        @media (max-width: 991px) {
            .about-content {
                padding-right: 0;
                margin-top: 2rem;
            }
            
            .about-text {
                text-align: center;
            }
        }

        /* Services Section */
        .service-card {
            background-color: var(--dark-secondary);
            border: 2px solid transparent;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
        }

        .service-card:hover {
            border-color: var(--gold-color);
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--gold-color);
            margin-bottom: 1rem;
        }

        .service-title {
            color: var(--gold-color);
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .service-description {
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Projects Section */
        .projects-section {
            background-color: var(--dark-secondary);
        }

        .project-card {
            background-color: var(--dark-bg);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
            height: 100%;
        }

        .project-card:hover {
            transform: scale(1.05);
        }

        .project-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-title {
            color: var(--gold-color);
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .project-description {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Added Gallery Section Styles */
        .gallery-section {
            background-color: var(--dark-bg);
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: scale(1.02);
        }

        .gallery-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-image {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.9));
            color: white;
            padding: 2rem 1.5rem 1.5rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-title {
            color: var(--gold-color);
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .gallery-details {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .gallery-modal .modal-content {
            background-color: var(--dark-secondary);
            border: 2px solid var(--gold-color);
        }

        .gallery-modal .modal-header {
            border-bottom: 1px solid var(--gold-color);
        }

        .gallery-modal .modal-title {
            color: var(--gold-color);
        }

        .gallery-modal .btn-close {
            filter: invert(1);
        }

        .gallery-modal .modal-body {
            color: var(--text-light);
        }

        /* Contact Section */
        .contact-form {
            background-color: var(--dark-secondary);
            padding: 2rem;
            border-radius: 10px;
            border: 2px solid var(--gold-color);
        }

        .form-control {
            background-color: var(--dark-bg);
            border: 1px solid #333;
            color: var(--text-light);
            padding: 12px;
        }

        .form-control:focus {
            background-color: var(--dark-bg);
            border-color: var(--gold-color);
            color: var(--text-light);
            box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
        }

        .form-label {
            color: var(--gold-color);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }

        /* Footer */
        .footer {
            background-color: var(--dark-bg);
            border-top: 2px solid var(--gold-color);
            padding: 2rem 0;
            text-align: center;
            color: var(--text-muted);
        }

        /* Added Button Styles */
        .btn-gold {
            background-color: var(--gold-color);
            color: var(--dark-bg);
            border: 2px solid var(--gold-color);
            font-weight: bold;
            padding: 12px 30px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .btn-gold:hover {
            background-color: transparent;
            color: var(--gold-color);
            border-color: var(--gold-color);
        }

        /* Added Testimonials Section Styles */
        .testimonials-section {
            background-color: var(--dark-secondary);
        }

        .testimonial-card {
            background-color: var(--dark-bg);
            border: 2px solid var(--gold-color);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
        }

        .testimonial-text {
            color: var(--text-muted);
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            color: var(--gold-color);
            font-weight: bold;
            font-size: 1.1rem;
        }

        .testimonial-position {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .testimonial-stars {
            color: var(--gold-color);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        /* Added Team Section Styles */
        .team-section {
            background-color: var(--dark-bg);
        }

        .team-card {
            background-color: var(--dark-secondary);
            border-radius: 15px;
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s ease;
            height: 100%;
        }

        .team-card:hover {
            transform: scale(1.05);
        }

        .team-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .team-content {
            padding: 1.5rem;
        }

        .team-name {
            color: var(--gold-color);
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .team-position {
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .team-description {
            color: var(--text-light);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* Added Stats Section Styles */
        .stats-section {
            background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
            padding: 60px 0;
        }

        .stat-item {
            text-align: center;
            padding: 2rem 1rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--gold-color);
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* Added Back to Top Button Styles */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--gold-color);
            color: var(--dark-bg);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--text-light);
            color: var(--gold-color);
            transform: translateY(-3px);
        }

        /* Enhanced Footer Styles */
        .footer-enhanced {
            background-color: var(--dark-bg);
            border-top: 3px solid var(--gold-color);
            padding: 3rem 0 1rem;
        }

        .footer-section h5 {
            color: var(--gold-color);
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .footer-section p,
        .footer-section li {
            color: var(--text-muted);
            line-height: 1.6;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--gold-color);
        }

        .social-links a {
            color: var(--text-muted);
            font-size: 1.5rem;
            margin-left: 1rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--gold-color);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 1rem;
            margin-top: 2rem;
            text-align: center;
            color: var(--text-muted);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .service-card {
                margin-bottom: 2rem;
            }
        }
        .social-section {
  text-align: center;
  padding: 60px 20px;
  background: url('https://www.transparenttextures.com/patterns/dark-fish-skin.png'), 
              linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.3));
}
.social-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}
.social-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  padding: 30px;
  width: 280px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
}
.card i {
  font-size: 40px;
  margin-bottom: 15px;
}
.card h3 {
  margin: 10px 0;
  font-size: 1.4rem;
}
.card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.card a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: #00bcd4;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}
.card a:hover {
  background: #0097a7;
}