  :root {
      --primary-color: #1a237e;
      /* أزرق داكن */
      --secondary-color: #303f9f;
      --dark-gray: #333333;
      --light-gray: #f5f5f5;
      --gold: #ffd700;
      --white: #ffffff;
      --black: #000000;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html,
  body {
      max-width: 100%;
      overflow-x: hidden;
      position: relative;
  }

  body {
      font-family: 'Changa', sans-serif;
      line-height: 1.6;
      color: var(--dark-gray);
      background-color: var(--white);
  }

  /* Hero Section */
  .hero {
      height: 100vh;
      background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
          url('https://images.unsplash.com/photo-1557683316-973673baf926?q=80&w=2029&auto=format&fit=crop');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      position: relative;
  }

  .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: var(--white);
      width: 100%;
      padding: 0 20px;
  }

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

  .tagline {
      font-size: 1.5rem;
      color: var(--gold);
      display: block;
      margin-bottom: 2rem;
  }

  /* Section Headers */
  .section-header {
      text-align: center;
      margin-bottom: 3rem;
  }

  .section-header h2 {
      color: var(--primary-color);
      font-size: 2.5rem;
      margin-bottom: 1rem;
  }

  .golden-line {
      width: 100px;
      height: 3px;
      background: var(--gold);
      margin: 0 auto;
  }

  .features{
    display: flex;
    font-size: x-large;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;

  }

  /* Services Section */
  .services {
      padding: 6rem 10%;
      background-color: var(--light-bg);
  }

  .services-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
  }

  .service-card {
      background: white;
      padding: 2.5rem;
      border-radius: 15px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

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

  .icon-wrapper {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 2rem;
      transition: transform 0.3s ease;
  }

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

  .service-card h3 {
      color: var(--primary-color);
      font-size: 1.5rem;
      margin-bottom: 1rem;
  }

  .service-card p {
      color: var(--dark-gray);
      line-height: 1.6;
  }

  /* Products Gallery */
  .products {
      overflow-x: hidden;
      width: 100%;
      padding: 4rem 0;
      background-color: var(--light-gray);
  }

  .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      padding: 20px;
      max-width: 1400px;
      margin: 0 auto;
  }

  .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      height: 300px;
      display: none;
  }

  .gallery-item.show {
      display: block;
      animation: fadeIn 0.5s ease;
  }

  .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .gallery-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .gallery-item:hover img {
      transform: scale(1.1);
  }

  .overlay {
      position: absolute;
      bottom: -100%;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(26, 35, 126, 0.95));
      color: white;
      padding: 20px;
      transition: bottom 0.4s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
  }

  .gallery-item:hover .overlay {
      bottom: 0;
  }

  .overlay h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: var(--gold);
  }

  .product-details {
      margin-top: 10px;
  }

  .product-details ul {
      list-style: none;
      padding: 0;
      margin-bottom: 15px;
  }

  .product-details ul li {
      margin: 5px 0;
      font-size: 0.95rem;
      display: flex;
      align-items: center;
  }

  .product-details ul li:before {
      content: '✓';
      color: var(--gold);
      margin-left: 8px;
      font-weight: bold;
  }

  .price-tag {
      background-color: var(--gold);
      color: var(--primary-color);
      padding: 8px 16px;
      border-radius: 20px;
      font-weight: bold;
      display: inline-block;
  }

  /* Contact Section */
  .contact {
      padding: 6rem 10%;
      background-color: var(--light-gray);
  }

  .contact-card {
      background: var(--white);
      max-width: 800px;
      margin: 0 auto;
      padding: 3rem;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      margin-top: 2rem;
  }

  .info-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
  }

  .info-item i {
      color: var(--primary-color);
      font-size: 1.5rem;
  }

  /* Floating WhatsApp Button */
  .floating-whatsapp {
      position: fixed;
      bottom: 40px;
      right: 25px;
      z-index: 1000;
  }

  .floating-whatsapp a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: var(--white);
      border-radius: 50%;
      text-decoration: none;
      font-size: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      position: relative;
  }

  .floating-whatsapp a:hover {
      transform: scale(1.1);
  }

  .tooltip {
      position: absolute;
      right: 70px;
      background-color: var(--dark-gray);
      color: var(--white);
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 14px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      white-space: nowrap;
  }

  .floating-whatsapp a:hover .tooltip {
      opacity: 1;
      visibility: visible;
  }

  /* Footer */
  footer {
      background-color: var(--primary-color);
      color: var(--white);
      padding: 2rem;
      text-align: center;
  }

  .footer-logo {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--gold);
  }

  .social-icons
  
{
    text-align: center;
    gap: 20px;
   
}
.contact-info{
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}
.social-icons a {
    color: #33177e;
    margin: 100px auto;
    font-size: 40px;
    padding: 20px;
    
}






  /* Animations */
  @keyframes fadeInUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
      .gallery {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
      }
  }

  @media (max-width: 1024px) {
      .gallery {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
      }

      .gallery-item {
          height: 350px;
      }
  }

  @media (max-width: 768px) {
      .gallery {
          grid-template-columns: 1fr;
          gap: 20px;
          padding: 15px;
          width: calc(100% - 30px);
      }

      .gallery-item {
          height: 300px;
          width: 100%;
      }

      .section-header h2 {
          font-size: 2rem;
      }

      .services,
      .products,
      .contact {
          padding: 3rem 15px;
      }

      .contact-info {
          flex-direction: column;
      }

      .product-details ul li {
          font-size: 0.8rem;
      }

      .price-tag {
          font-size: 0.9rem;
      }

      .services {
          padding: 4rem 5%;
      }

      .service-card {
          padding: 2rem;
      }

      .service-card h3 {
          font-size: 1.3rem;
      }
  }

  /* Additional Animations */
  .service-card,
  .gallery-item,
  .contact-card {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s forwards;
  }

  .service-card:nth-child(2) {
      animation-delay: 0.2s;
  }

  .service-card:nth-child(3) {
      animation-delay: 0.4s;
  }

  .gallery-item:nth-child(1) {
      animation-delay: 0.1s;
  }

  .gallery-item:nth-child(2) {
      animation-delay: 0.2s;
  }

  .gallery-item:nth-child(3) {
      animation-delay: 0.3s;
  }

  .gallery-item:nth-child(4) {
      animation-delay: 0.4s;
  }

  .gallery-item:nth-child(5) {
      animation-delay: 0.5s;
  }

  .gallery-item:nth-child(6) {
      animation-delay: 0.6s;
  }

  /* إضافة الأنيميشن للشعار في ملف CSS */
  .logo-animation {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
  }

  .animated-text {
      font-size: 4.5rem;
      font-weight: 700;
      color: var(--white);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      opacity: 0;
      transform: translateY(-50px);
      animation: dropIn 0.5s forwards;
      margin: 0 5px;
  }

  /* تأخير حركة كل حرف */
  .animated-text:nth-child(1) {
      animation-delay: 0.1s;
  }

  .animated-text:nth-child(2) {
      animation-delay: 0.2s;
  }

  .animated-text:nth-child(3) {
      animation-delay: 0.3s;
  }

  .animated-text:nth-child(4) {
      animation-delay: 0.4s;
  }

  .animated-text:nth-child(5) {
      animation-delay: 0.5s;
  }

  .animated-text:nth-child(6) {
      animation-delay: 0.6s;
  }

  .animated-text:nth-child(7) {
      animation-delay: 0.7s;
  }

  .tagline {
      font-size: 1.5rem;
      color: var(--gold);
      display: block;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.5s forwards 1s;
  }

  .animated-line {
      width: 0;
      height: 3px;
      background: var(--gold);
      margin: 20px auto;
      animation: expandLine 1s forwards 1.5s;
  }

  .hero-description {
      font-size: 1.5rem;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.5s forwards 2s;
  }

  /* تأثيرات الحركة */
  @keyframes dropIn {
      0% {
          opacity: 0;
          transform: translateY(-50px) rotate(-30deg);
      }

      50% {
          transform: translateY(20px) rotate(10deg);
      }

      100% {
          opacity: 1;
          transform: translateY(0) rotate(0deg);
      }
  }

  @keyframes fadeUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes expandLine {
      to {
          width: 200px;
      }
  }

  /* تأثير التحويم على الحروف */
  .animated-text:hover {
      animation: bounce 0.5s;
      color: var(--gold);
      cursor: default;
  }

  @keyframes bounce {

      0%,
      100% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-20px);
      }
  }

  /* تحسين التجاوب مع الشاشات الصغيرة */
  @media (max-width: 768px) {
      .animated-text {
          font-size: 2.5rem;
          margin: 0 2px;
      }

      .tagline {
          font-size: 1.2rem;
      }

      .hero-description {
          font-size: 1.1rem;
      }

      .animated-line {
          width: 0;
          animation: expandLine 1s forwards 1.5s;
      }

      @keyframes expandLine {
          to {
              width: 150px;
          }
      }
  }

  /* تأثير الظل المتحرك */
  .logo-animation::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 10px;
      background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
      bottom: -20px;
      animation: shadowPulse 2s infinite;
  }

  @keyframes shadowPulse {

      0%,
      100% {
          transform: scaleX(1);
          opacity: 0.5;
      }

      50% {
          transform: scaleX(1.2);
          opacity: 0.8;
      }
  }

  /* تنسيق قسم من نحن */
  .about {
      padding: 4rem 5%;
      background-color: var(--white);
  }

  .about-content {
      max-width: 1200px;
      margin: 0 auto;
  }

  .about-flex-container {
      display: flex;
      gap: 3rem;
      align-items: flex-start;
      margin-top: 2rem;
  }

  .logo-container {
      flex: 0 0 auto;
      position: sticky;
      top: 20px;
  }

  .company-logo {
      width: 400px;
      height: auto;
      margin: 0 auto;
  }

  .about-text {
      flex: 1;
      line-height: 1.8;
      text-align: right;
  }

  .about-text p {
      margin-bottom: 1.5rem;
      font-size: 1.1rem;
      color: var(--dark-gray);
  }

  /* تجاوب مع الشاشات الصغيرة */
  @media (max-width: 992px) {
      .about-flex-container {
          flex-direction: column;
          align-items: center;
          gap: 2rem;
      }

      .logo-container {
          position: relative;
          top: 0;
      }

      .company-logo {
          width: 350px;
      }
  }

  @media (max-width: 768px) {
      .about {
          padding: 3rem 20px;
      }

      .about-text p {
          font-size: 1rem;
          margin-bottom: 1rem;
      }

      .company-logo {
          width: 300px;
      }
  }

  /* تنسيق المعرض */
  .portfolio {
      padding: 6rem 5%;
      background-color: var(--light-bg);
  }

 .filter-btn{
    display: none;
 }

  .portfolio-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      padding: 2rem 0;
  }

  .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      height: 300px;
      opacity: 0;
      transition: opacity 0.8s ease;
      display: none;
  }

  .gallery-item.show {
      display: block;
      opacity: 1;
  }

  .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .gallery-item:hover img {
      transform: scale(1.1);
  }

  .overlay {
      position: absolute;
      bottom: -100%;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
      color: white;
      padding: 2rem;
      transition: bottom 0.3s ease;
  }

  .gallery-item:hover .overlay {
      bottom: 0;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* تجاوب مع الشاشات الصغيرة */
  @media (max-width: 768px) {
      .filter-buttons {
          gap: 0.5rem;
      }

      .filter-btn {
          padding: 0.6rem 1rem;
          font-size: 0.9rem;
      }
  }

  /* تأكد من إضافة هذا الكود لإظهار العناصر عند التصفية */
  .show {
      display: block !important;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }