:root {
  /* Preserved original root colors */
  --primary-color: #ccbb00;
  --secondary-color: #32c3cd;
  --text-dark: #1a1a1a;
  --text-muted: #6d6d6d;
  --sidebar-bg-color: #2c3e50;
  --navbar-bg-color: #ffffff;
  --sidebar-hover-color: #16a085;
  --transition-speed: 0.4s;
  --text-color: #f1f1f1;
  --border-radius: 15px;
  --sidebar-width: 300px;
  --primary-hover: #e54b37;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  
  /* New modern color additions */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 42px rgba(0, 0, 0, 0.12);
  --text-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --neon-glow: 0 0 15px var(--secondary-color);
  --deep-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --card-shadow: 0 14px 44px rgba(0, 0, 0, 0.15);
  --accent-glow: 0 0 25px rgba(50, 205, 50, 0.3);
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 18px;
  --border-radius-sm: 12px;
}
a{
  text-decoration: none;
}
  body {
    font-family: 'Cairo','Arial', sans-serif;
    margin: 0;
    background-color: #ecf0f1;
    direction: rtl;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background-color: var(--navbar-bg-color);
    padding: 15px 30px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Light shadow for navbar */
    border-bottom: 2px solid #ddd; /* Subtle border at the bottom */
    border-radius: 0 0 20px 20px;
  }
  
  .navbar-brand img {
    max-width: 100px;
    transition: transform 0.3s ease;
  }
  
  .navbar-brand img:hover {
    transform: scale(1.1); /* Slight scale effect on hover */
  }
  
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-color);
  overflow-x: hidden;
  z-index: 10000;
  box-shadow: 8px 0 25px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-speed) cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  margin-top: 30px;
}

.sidebar a {
  position: relative;
  padding: 18px 40px;
  text-decoration: none;
  font-size: 18px;
  color: var(--text-color);
  display: block;
  width: 100%;
  text-align: right;
  transition: all 0.4s ease;
  margin: 5px 0;
  border-left: 4px solid transparent;
}

/* Add Font Awesome icons using pseudo-elements */
.sidebar a[href="#home"]::before {
  content: "\f015"; /* home icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.sidebar a[href="#services"]::before {
  content: "\f0c0"; /* services icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.sidebar a[href="#maintenance"]::before {
  content: "\f7d9"; /* tools icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.sidebar a[href="#about"]::before {
  content: "\f05a"; /* info icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.sidebar a[href="#contact"]::before {
  content: "\f0e0"; /* envelope icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.sidebar a:hover {
  background: rgba(15, 52, 96, 0.3);
  transform: translateX(8px);
  color: var(--secondary-color);
  border-left: 4px solid var(--secondary-color);
}

.sidebar a:hover::before {
  color: var(--secondary-color);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

/* Modern Close Button */
.sidebar .closebtn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.sidebar .closebtn:hover {
  background: var(--secondary-color);
  color: white;
  transform: rotate(90deg);
}

/* Modern Open Button */
.open-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 24px;
  color: var(--text-color);
  background: var(--primary-color);
  border: none;
  cursor: pointer;
  z-index: 1001;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.open-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

/* Modern Copyright Message */
.copyright-message {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  background: rgba(15, 52, 96, 0.3);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

/* Add overlay effect when sidebar is open */
body.sidebar-open::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.sidebar-open::after {
  opacity: 1;
  pointer-events: auto;
}

/* Smooth content shifting */
.main-content {
  margin-top: 80px;
  padding: 20px;
  transition: all var(--transition-speed) cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.main-content.open {
  margin-left: var(--sidebar-width);
  transform: scale(0.98);
}

/* Animation for links when sidebar opens */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sidebar.open .sidebar-links a {
  animation: slideIn 0.4s ease forwards;
}

.sidebar.open .sidebar-links a:nth-child(1) { animation-delay: 0.1s; }
.sidebar.open .sidebar-links a:nth-child(2) { animation-delay: 0.2s; }
.sidebar.open .sidebar-links a:nth-child(3) { animation-delay: 0.3s; }
.sidebar.open .sidebar-links a:nth-child(4) { animation-delay: 0.4s; }
.sidebar.open .sidebar-links a:nth-child(5) { animation-delay: 0.5s; }
.hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)), 
                url('../imgs/Cover.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-color);
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
    isolation: isolate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(199, 15, 45, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    z-index: 3;
    max-width: 800px;
    padding: 40px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-color {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.logo-color::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-title:hover .logo-color::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    margin: 25px 0;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Modern CTA Button with SVG Arrow */
.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    margin-top: 30px;
}

.cta-button svg {
    width: 13px;
    height: 10px;
}

.cta-button svg path {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(199, 15, 45, 0.3);
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Enhanced Wave Animation */
.wave-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.wave-section .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url('../imgs/wave.png');
    background-size: 1000px 150px;
}

.wave-section .wave1 {
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    bottom: 0;
}

.wave-section .wave2 {
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation-delay: -5s;
}

.wave-section .wave3 {
    animation: animate 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    bottom: 15px;
    animation-delay: -2s;
}

.wave-section .wave4 {
    animation: animate2 15s linear infinite;
    z-index: 997;
    opacity: 0.7;
    bottom: 20px;
    animation-delay: -5s;
}

@keyframes animate {
    0% { background-position-x: 0; }
    100% { background-position-x: 1000px; }
}

@keyframes animate2 {
    0% { background-position-x: 0; }
    100% { background-position-x: -1000px; }
}

/* Particles.js Container */
.particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .wave-section, 
    .wave-section .wave {
        height: 100px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        backdrop-filter: blur(5px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
}


/* Cards Section */
:root {
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 14px 28px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.1);
    --gradient-primary: linear-gradient(135deg, #C70F2D 0%, #e63946 100%);
}

/* Section Styles */
.cards-section {
    position: relative;
    padding: 100px 30px;
    text-align: center;
    background-color: var(--bg-light);
    overflow: hidden;
    isolation: isolate;
}

.section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.section-title p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Individual Card - 3D Effect with Hover */
.service-card {
    position: relative;
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    z-index: -1;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Card Icon - Animated */
.card-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(199, 15, 45, 0.1);
    z-index: -1;
    transition: var(--transition);
}

/* Card Content */
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.service-card p {
    font-size: 1.1rem;
    color:black;
    line-height: 1.6;
    margin-bottom: 25px;
    transition: var(--transition);
}

/* Hover Content */
.card-hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--card-bg);
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

/* Hover Effects */
.service-card:hover {
    transform: perspective(1000px) translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    clip-path: circle(100% at 50% 50%);
}

.service-card:hover .card-bg {
    opacity: 1;
}

.service-card:hover .card-icon {
    color: var(--text-white);
    transform: scale(1.1) rotate(15deg);
}

.service-card:hover .card-icon::after {
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.2);
}

.service-card:hover h3 {
    color: var(--text-white);
}

.service-card:hover h3::after {
    width: 80px;
    background: var(--text-white);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .card-hover-content {
    bottom: 30px;
    opacity: 1;
}

.card-cta:hover {
    background: var(--text-white);
    color: var(--primary-hover);
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

/* Animations */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-section {
        padding: 80px 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        max-width: 100%;
    }
} 
  /* Section Styling */
  .services-section {
    padding: 60px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
  }
  
  .section-title p {
    font-size: 1.2rem;
    color: #777;
    margin-bottom: 40px;
  }
  
  /* Circular Cards Container */
  .circular-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  /* Circular Card Styling */
  .circular-card {
    background-color: #fff;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
  }
  
  .circular-card:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background-color: #ff6347;
  }
  
  /* Card Icon */
  .card-icon i {
    font-size: 50px;
    color: #ff6347;
    margin-bottom: 20px;
    transition: color 0.3s ease;
  }
  
  .circular-card:hover .card-icon i {
    color: white;
  }
  
  /* Card Heading */
  .circular-card h3 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.3s ease;
  }
  
  .circular-card:hover h3 {
    color: #fff;
  }
  
  /* Card Description */
  .circular-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    transition: color 0.3s ease;
  }
  
  .circular-card:hover p {
    color: #fff;
  }
  
  /* Contact Button */
  .contact-btn {
    background-color: #fff;
    color: #ff6347;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .contact-btn:hover {
    background-color: #ff6347;
    color: #fff;
  }
  
  /* Animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .circular-cards-container {
      flex-direction: column;
      align-items: center;
    }
  
    .circular-card {
      width: 200px;
      height: 200px;
    }
  }
  
  @media (max-width: 480px) {
    .circular-card {
      width: 180px;
      height: 180px;
    }
    .circular-card h3 {
      font-size: 1.3rem;
    }
    .circular-card p {
      font-size: 1rem;
    }
  }
/* Modern Glassmorphism Effects */
.luxury-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.78)),
    url('/imgs/Stove-maintenance.jpeg') no-repeat center center/cover fixed;
  overflow: hidden;
  padding: 100px 0;
  isolation: isolate;
}

.luxury-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 30%, rgba(199, 15, 45, 0.25), transparent 50%),
    radial-gradient(circle at 90% 70%, rgba(50, 205, 50, 0.15), transparent 50%);
  z-index: -1;
  backdrop-filter: blur(1px);
}

.luxury-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

/* Ultra-Modern Typography */
.luxury-heading {
  position: relative;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text-gradient {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  display: inline-block;
  position: relative;
  padding: 0 20px;
  color: var(--text-light);
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.highlight-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--neon-glow);
  animation: pulse 2s infinite;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modern Glass Card */
.cta-box {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--deep-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  z-index: -1;
}

/* Holographic Button Effects */
.btn-luxury {
  position: relative;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  color: white;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  background-size: 200% 200%;
  z-index: -2;
  animation: gradientShift 4s ease infinite;
}

.btn-luxury::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: var(--gradient);
  border-radius: 50px;
  z-index: -1;
  transition: var(--transition);
}

.btn-luxury:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-luxury:hover::after {
  opacity: 0.9;
}

/* Modern Text Effects */
.luxury-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  padding: 0 20px;
  color: var(--text-muted);
  font-weight: 300;
}

.highlight-text {
  color: var(--secondary-color);
  font-weight: 600;
  position: relative;
}

/* Advanced Animations */
@keyframes pulse {
  0% { 
    transform: translateX(-50%) scale(1);
  }
  50% { 
    transform: translateX(-50%) scale(1.05);
  }
  100% { 
    transform: translateX(-50%) scale(1);
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Micro-interactions */
.phone-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--secondary-color);
  transition: var(--transition);
  padding: 10px 20px;
  border-radius: var(--border-radius);
}

.phone-number:hover {
  text-shadow: var(--neon-glow);
  transform: scale(1.05);
}

/* Ultra-thin scroll indicator */
.scrolling-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scrolling-indicator span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 3px;
  animation: scrollIndicator 2s infinite ease-in-out;
  box-shadow: var(--neon-glow);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .luxury-section {
    padding: 60px 0;
  }
  
  .luxury-content {
    padding: 30px 20px;
    backdrop-filter: blur(6px);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-luxury {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .text-gradient {
    font-size: 2.2rem;
  }
  
  .highlight-badge {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
  
  .cta-box {
    padding: 25px 15px;
  }
}
/* تصميم القسم الرئيسي */
.about-us-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 140px 5%;
  background: 
    linear-gradient(145deg, 
      rgba(255, 255, 255, 0.98) 0%, 
      rgba(248, 249, 250, 0.96) 100%),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(199, 15, 45, 0.03)" d="M0,0 L100,0 L100,100 L0,100 Z"/></svg>');
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.about-us-section::before,
.about-us-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.15;
}

.about-us-section::before {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: -100px;
  left: -100px;
  animation: float 12s ease-in-out infinite alternate;
}

.about-us-section::after {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  bottom: -80px;
  right: -80px;
  animation: float 8s ease-in-out 2s infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
  100% { transform: translate(-20px, -20px); }
}

/* Futuristic Content Styling */
.about-content {
  width: 55%;
  position: relative;
  perspective: 1200px;
}

.about-title {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.15;
  position: relative;
  display: inline-block;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
  transform-style: preserve-3d;
  transform: translateZ(20px);
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.about-content:hover .about-title::after {
  transform: scaleX(1);
}

.about-description {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: black;
  margin: 2.5rem 0;
  line-height: 1.9;
  font-weight: 400;
  max-width: 90%;
  position: relative;
  transform-style: preserve-3d;
  transform: translateZ(10px);
}

/* Holographic Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 4rem;
}

.service-box {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform-style: preserve-3d;
  transform: translateZ(0);
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0.1) 100%
  );
  z-index: -1;
  transition: var(--transition);
}

.service-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.service-box:hover {
  transform: translateY(-12px) translateZ(10px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.2),
    var(--accent-glow);
}

.service-box:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.service-box i {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
  display: inline-block;
  transform-style: preserve-3d;
}

.service-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
  transform-style: preserve-3d;
}

.service-box p {
  font-size: 1rem;
  color: black;
  line-height: 1.7;
  font-weight: 400;
  transform-style: preserve-3d;
}

/* 3D Image Effect */
.about-image {
  width: 40%;
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(199, 15, 45, 0.1), rgba(50, 205, 50, 0.1));
  border-radius: var(--border-radius);
  transform: translateZ(-20px);
}

.about-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.4);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.about-image:hover img {
  transform: 
    rotateY(0) 
    rotateX(0) 
    translateZ(30px) 
    scale(1.03);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.25),
    var(--accent-glow);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

/* Micro-interactions */
.service-box:hover i {
  transform: scale(1.25) translateZ(10px);
  color: var(--secondary-color);
  text-shadow: var(--accent-glow);
}

.service-box:hover h3 {
  color: var(--primary-color);
  transform: translateZ(10px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-us-section {
    padding: 120px 5%;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .about-us-section {
    flex-direction: column;
    text-align: center;
    padding: 100px 5%;
  }
  
  .about-content,
  .about-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .about-image {
    margin-top: 4rem;
    order: -1;
  }
  
  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .about-description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .about-us-section {
    padding: 80px 5%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-box {
    padding: 2rem 1.5rem;
  }
}

/* Special Effects */
.service-box:nth-child(odd):hover {
  transform: translateY(-12px) rotateZ(1deg) translateZ(10px);
}

.service-box:nth-child(even):hover {
  transform: translateY(-12px) rotateZ(-1deg) translateZ(10px);
}

/* Floating particles effect */
.particle {
  position: absolute;
  background: rgba(199, 15, 45, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
:root {
  /* Modern Color System */
  --footer-bg: linear-gradient(135deg, #1a2a4f 0%, #1e3a8a 100%);
  --footer-text: rgba(255, 255, 255, 0.9);
  --footer-accent: #3b82f6;
  --footer-hover: #60a5fa;
  --footer-card-bg: rgba(255, 255, 255, 0.1);
  --footer-border: rgba(255, 255, 255, 0.15);
  --footer-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  --footer-glow: 0 0 15px rgba(59, 130, 246, 0.5);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Ultra-Modern Footer Design */
.footer-container {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 5rem 8%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.footer-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
  z-index: -1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Futuristic Links Section */
.footer-links {
  position: relative;
}

.footer-links::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--footer-accent);
  border-radius: 2px;
}

.footer-links h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.footer-links li {
  position: relative;
  overflow: hidden;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  padding: 0.5rem 0;
  display: inline-block;
  position: relative;
  transition: var(--transition);
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--footer-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.footer-links a:hover {
  color: white;
  transform: translateX(10px);
}

.footer-links a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Holographic Phone Numbers Grid */
.footer-numbers {
  position: relative;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.number-box {
  background: var(--footer-card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--footer-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  transition: var(--transition);
  box-shadow: var(--footer-shadow);
  position: relative;
  overflow: hidden;
}

.number-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  z-index: -1;
}

.number-box:hover {
  transform: translateY(-8px);
  background: rgba(59, 130, 246, 0.2);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.3),
    var(--footer-glow);
}

.number-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--footer-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.number-box:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Modern Copyright Section */
.footer-copyright {
  text-align: center;
  margin-top: 5rem;
  padding-top: 2rem;
  position: relative;
}

.footer-copyright::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-copyright p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Floating Particles Effect */
.footer-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  25% { transform: translate(20px, 20px); }
  50% { transform: translate(0, 40px); }
  75% { transform: translate(-20px, 20px); }
  100% { transform: translate(0, 0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .numbers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 4rem 5%;
  }
  
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-copyright {
    margin-top: 3rem;
  }
}
:root {
  /* Floating Button Color System */
  --btn-primary: #2980b9;
  --btn-primary-hover: #3498db;
  --btn-whatsapp: #25D366;
  --btn-whatsapp-hover: #128C7E;
  --btn-text: #ffffff;
  --btn-glow: 0 0 15px rgba(41, 128, 185, 0.5);
  --btn-whatsapp-glow: 0 0 15px rgba(37, 211, 102, 0.5);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius-full: 9999px;
}

/* Floating Action Button Container */
.button-container {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 9999;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

/* Modern Floating Button Design */
.floating-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-full);
  color: var(--btn-text);
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

/* Button Color Variants */
.floating-btn-1,
.floating-btn-2 {
  background: var(--btn-primary);
}

.floating-btn-3 {
  background: var(--btn-whatsapp);
}

/* Holographic Button Effect */
.floating-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  z-index: -1;
  transition: var(--transition);
}

/* Ripple Effect */
.floating-btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 70%
  );
  transform: scale(0);
  opacity: 0;
  transition: var(--transition);
}

/* Button Hover States */
.floating-btn-1:hover,
.floating-btn-2:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.2),
    var(--btn-glow);
}

.floating-btn-3:hover {
  background: var(--btn-whatsapp-hover);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 
    0 10px 25px rgba(0, 0, 0, 0.2),
    var(--btn-whatsapp-glow);
}

.floating-btn:hover::after {
  transform: scale(1.5);
  opacity: 1;
}

/* Button Icons */
.floating-btn i {
  font-size: 1.5rem;
  transition: var(--transition);
}

.floating-btn:hover i {
  transform: scale(1.2);
}

/* Animated Button Text */
.btn-text {
  position: absolute;
  left: 100%;
  margin-left: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--btn-text);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover .btn-text {
  opacity: 1;
  transform: translateX(10px);
}

/* Micro-interaction for Click Effect */
.floating-btn:active {
  transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 768px) {
  .button-container {
    right: 20px;
    bottom: 20px;
    gap: 15px;
  }
  
  .floating-btn {
    width: 55px;
    height: 55px;
  }
  
  .btn-text {
    font-size: 1rem;
  }
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating-btn-1 {
  animation: float 3s ease-in-out infinite;
}

.floating-btn-2 {
  animation: float 3.5s ease-in-out infinite 0.5s;
}

.floating-btn-3 {
  animation: float 4s ease-in-out infinite 1s;
}