      /* ===== RESET & BASE STYLES ===== */
      * {
          margin: 0;
          padding: 0;
          box-sizing: border-box;
      }

      :root {
          --primary-color: #ffc107;
          --dark-color: #1a1a1a;
          --light-color: #f8f9fa;
      }

  
    html, body {
    font-family: 'Cairo', sans-serif;
    max-width: 100%;
    overflow-x: hidden;
}



        nav{
    background-color: #27272771;
    height: 10%;
    text-align: center;
}
           .content-section {
            padding: 60px 0;
            min-height: 100vh;
        }
        
        /* تنسيقات النافبار */
        .navbar {
            /* background-color: var(--dark-bg); */
            backdrop-filter: blur(10px);
            padding: 10px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            transition: all 0.3s ease;
            width: auto;
            min-width: 150px;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
            transition: 0.3s;
        }
        
        .logo-img {
            width: auto;
            max-width: 200px;
            min-width: 150px;
            height: auto;
            object-fit: contain;
        }

        .nav-link {
            position: relative;
            transition: all 0.3s ease;
            text-align: center;
            margin: 0 5px;
            border-radius: 5px;
            padding: 8px 15px !important;
        }

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

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

        /* تنسيقات السوشيال ميديا */
        .nav-social {
            display: flex;
            gap: 15px;
            font-size: 1.2rem;
        }

        .nav-social a {
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }

        .nav-social a:hover {
            opacity: 1;
            transform: translateY(-4px);
            background: var(--primary-color);
            color: #000 !important;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
            background: rgba(255, 255, 255, 0.1);
        }

        /* تنسيقات زر القائمة للموبايل */
        .navbar-toggler {
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 5px 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        /* تنسيقات القائمة المنسدلة للموبايل */
        .navbar-collapse {
            margin-top: 10px;
        }
        
/* ===== MEDIA QUERIES ===== */

/* شاشات كبيرة (لاب توب - أكبر من 1200px) */
@media (min-width: 1200px) {
    .navbar-brand {
        width: 20%;
    }
    .logo-img {
        max-width: 200px;
    }
    .navbar-nav {
        gap: 12px;
    }
    .nav-link {
        font-size: 1.1rem;
    }
}

/* شاشات متوسطة (تابلت أفقي - 992px إلى 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
   /* nav {
        height: 15vh;
        margin-top: -30px;
        align-items: center;
    } */
    
    .navbar-brand {
        width: 20%;
    }
    .logo-img {
        max-width: 160px;
    }
    .navbar-nav {
        gap: 8px;
    }
    .nav-link {
        font-size: 1rem;
        padding: 6px 12px !important;
    }
}

/* شاشات صغيرة (تابلت عمودي - 768px إلى 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
   nav {
        height: 15vh;
        margin-top: -30px;
        align-items: center;
    }

    .navbar-brand {
        width: 20%;
    }
    .logo-img {
        max-width: 180px;
    }
    .navbar-nav {
        gap: 5px;
    }
    .nav-link {
        font-size: 0.95rem;
        padding: 5px 10px !important;
    }
    .nav-social {
        gap: 10px;
        font-size: 1.1rem;
    }
    .nav-social a {
        width: 36px;
        height: 36px;
    }
}

/* شاشات جد صغيرة (موبايل أفقي - 576px إلى 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
    nav {
        height: 13vh;
        margin-top: -50px;
        align-items: center;
    }
    .navbar-brand {
        width: 32%;
    }
    .logo-img {
        max-width: 150px;
    }
    .navbar-collapse {
        background-color: rgba(39, 39, 39, 0.95);
        padding: 15px;
        border-radius: 10px;
        margin-top: 12px;
    }
    .navbar-nav {
        gap: 6px;
    }
    .nav-link {
        font-size: 1rem;
        padding: 8px 15px !important;
        margin: 3px 0;
    }
    .nav-social {
        justify-content: center;
        margin-top: 15px;
        gap: 14px;
    }
}

/* شاشات موبايل (أقل من 576px) */
@media (max-width: 575.98px) {
    nav {
        height: 16vh;
        margin-top: -30px;
        align-items: center;
    }
    .navbar-toggler{
                margin-top: -30px;
    
    }
    .navbar {
        padding: 8px 0;
    }
    .navbar-brand {
        width: 45%;
    }
    .logo-img {
        max-width: 180px;
        margin-top: -30px;

    }
    .navbar-collapse {
        background-color: rgba(39, 39, 39, 0.95);
        padding: 10px;
        border-radius: 8px;
        margin-top: 10px;
    }


    .navbar-nav {
        gap: 3px;
    }
    .nav-link {
        font-size: 0.95rem;
        padding: 8px 12px !important;
        margin: 3px 0;
    }
    .nav-social {
        justify-content: center;
        margin-top: 10px;
        gap: 12px;
        font-size: 1.1rem;
    }
    .nav-social a {
        width: 35px;
        height: 35px;
    }
}

/* شاشات صغيرة جداً (أقل من 400px) */
@media (max-width: 399.98px) {
 nav {
        height: 17vh;
        margin-top: -20px;
        align-items: center;
    }
    .navbar-toggler{
                margin-top: -30px;
    
    }

    .navbar-brand {
        width: auto;
    }
    .logo-img {
        max-width: 140px;
    }
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 10px !important;
    }
    .nav-social {
        gap: 10px;
        font-size: 1rem;
    }
    .nav-social a {
        width: 32px;
        height: 32px;
    }
}

/* تحسينات للوضع الأفقي على الموبايل */
@media (max-height: 500px) and (orientation: landscape) {
    .navbar {
        min-height: 60px;
    }
    .navbar-brand {
        width: 25%;
    }
    .logo-img {
        max-width: 85px;
    }
    .navbar-collapse {
        padding: 8px;
    }
}




      /* ===== TRANSITION EFFECTS ===== */
      .nav-social a,
      .nav-link,
      .hover-effect,
      .service-card,
      .icon-wrapper,
      .social-btn,
      .back-to-top,
      .service-item,
      .transition-all {
          transition: all 0.3s ease;
      }

      /* ===== HOVER EFFECTS ===== */
      .nav-social a:hover {
          opacity: 1;
          transform: translateY(-4px);
      }

      .nav-link:hover,
      .service-item:hover {
          color: #ffc107 !important;
      }

      .hover-effect:hover,
      .social-btn:hover,
      .back-to-top:hover {
          transform: scale(1.05);
      }


      .contact-hero {
          background: linear-gradient(135deg, #00661f 0%, #01290c 100%);
          color: white;
      }

      .contact-card {
          transition: all 0.3s ease;
          border: none;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .contact-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      }

      .phone-link {
          text-decoration: none;
          transition: all 0.3s ease;
      }

      .phone-link:hover {
          color: #ffc107 !important;
          transform: translateX(-5px);
      }

      .whatsapp-btn {
          background: linear-gradient(135deg, #25D366, #128C7E);
          border: none;
          transition: all 0.3s ease;
      }

      .whatsapp-btn:hover {
          transform: scale(1.05);
          box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);

      }


      /* وسائل التواصل مع الهوفر */
      .social-media-item {
          transition: all 0.3s ease;
      }

      .social-media-item:hover {
          transform: translateY(-5px);
          transition: 0.3s;
      }

      /* واتساب */
      .social-media-item:nth-child(1):hover .bg-primary {
          background-color: #25D366 !important;
          transition: 0.3s;
      }

      /* فيس بوك */
      .social-media-item:nth-child(2):hover .bg-info {
          background-color: #1DA1F2 !important;
          transition: 0.3s;
      }

      /* انستغرام */
      .social-media-item:nth-child(3):hover .bg-danger {
          background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
          transition: 0.3s;
      }

      /* سناب شات */
      .social-media-item:nth-child(4):hover .bg-dark {
          background-color: #FFFC00 !important;
          transition: 0.3s;
      }

      .social-media-item:nth-child(4):hover .fa-snapchat-ghost {
          color: #000 !important;
          transition: 0.3s;
      }

      /* تأثير الهوفر على النص */
      .social-media-item:hover h6 {
          color: #ffc107 !important;
          transition: 0.3s;
      }

      /* تأثير الهوفر على الأيقونات */
      .social-media-item:hover .rounded-circle {
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
          transform: scale(1.1);
          transition: 0.3s;
      }


      .service-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
      }

      .service-card:hover .icon-wrapper {
          transform: scale(1.2);
      }

      /* hover لينكات السريعه */
      .service-item:hover {
          transform: translateX(-5px);
          color: #ffc107 !important;
      }

      .service-item:hover .transition-all {
          transform: translateX(-3px);
      }

      /* ===== HERO SECTION ===== */
      .hero-section {
          background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url('/img/WhatsApp\ Image\ 2025-10-21\ at\ 5.12.29\ PM\ \(5\).jpeg');
          background-size: cover;
          background-position: center;
          height: 100vh;
          color: white;
      }

      .navbar-scrolled {
          background-color: #1a1a1a !important;
      }

      /* ===== ANIMATION CLASSES ===== */
      .animate-on-scroll,
      .animate-fade-in-up {
          opacity: 0;
          transform: translateY(30px);
          transition: all 0.6s ease;
      }

      .animate-fade-in-left {
          opacity: 0;
          transform: translateX(-30px);
          transition: all 0.6s ease;
      }

      .animate-fade-in-right {
          opacity: 0;
          transform: translateX(30px);
          transition: all 0.6s ease;
      }

      .animate-fade-in-down {
          opacity: 0;
          transform: translateY(-30px);
          transition: all 0.6s ease;
      }

      /* Active animation states */
      .animate-on-scroll.animated,
      .animate-fade-in-up.animated,
      .animate-fade-in-left.animated,
      .animate-fade-in-right.animated,
      .animate-fade-in-down.animated {
          opacity: 1;
          transform: translate(0);
      }

      /* ===== ANIMATION DELAYS ===== */
      .delay-100 {
          transition-delay: 0.1s !important;
      }

      .delay-200 {
          transition-delay: 0.2s !important;
      }

      .delay-300 {
          transition-delay: 0.3s !important;
      }

      .delay-400 {
          transition-delay: 0.4s !important;
      }

      .delay-500 {
          transition-delay: 0.5s !important;
      }

      /* ===== SOCIAL MEDIA BUTTONS ===== */
      .social-btn {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          border-radius: 50%;
          text-decoration: none;
          position: relative;
          overflow: hidden;
      }

      .social-btn::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(255, 255, 255, 0.1);
          opacity: 0;
          transition: opacity 0.3s ease;
      }

      .social-btn:hover::before {
          opacity: 1;
      }

      .social-btn i {
          position: relative;
          z-index: 1;
          color: white;
      }

      /* Social platform specific styles */
      .social-btn.facebook {
          background: linear-gradient(135deg, #1877F2, #166FE5);
          box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
      }

      .social-btn.instagram {
          background: linear-gradient(135deg, #E4405F, #C13584, #833AB4, #5851DB, #405DE6);
          box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
      }

      .social-btn.snapchat {
          background: linear-gradient(135deg, #FFFC00, #FFF000);
          box-shadow: 0 4px 15px rgba(255, 252, 0, 0.3);
      }

      .social-btn.whatsapp {
          background: linear-gradient(135deg, #25D366, #128C7E);
          box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
      }

      .social-btn.snapchat i {
          color: #000 !important;
          text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
      }

      .social-btn:hover {
          transform: translateY(-3px) scale(1.1);
      }

      /* Hover shadow effects */
      .social-btn.facebook:hover {
          box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
      }

      .social-btn.instagram:hover {
          box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
      }

      .social-btn.snapchat:hover {
          box-shadow: 0 6px 20px rgba(255, 252, 0, 0.4);
      }

      .social-btn.whatsapp:hover {
          box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
      }

      /* ===== FOOTER & LAYOUT ===== */
      .social-links {
          display: flex;
          gap: 8px;
          flex-wrap: wrap;
      }

      .footer-about {
          border-right: 2px solid #ffc107;
          padding-right: 20px;
      }

      .back-to-top {
          position: fixed;
          bottom: 20px;
          right: 20px;
          width: 45px;
          height: 45px;
          background: #ffc107;
          border: none;
          border-radius: 50%;
          color: #000;
          font-size: 18px;
          cursor: pointer;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
          z-index: 1000;
          opacity: 0;
      }

      .back-to-top.show {
          opacity: 1;
      }

      .back-to-top:hover {
          background: #e0a800;
      }