:root {
  font-size: 16px;
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    margin: 0;
    padding: 0;
    padding-top: 80px;
    overflow-x: hidden; 
  }
  
@media (max-width: 1400px) {
  :root {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  :root {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 12px;
  }
}

  #pricing {
    background: linear-gradient(
        rgba(0, 47, 135, 0.7), 
        rgba(0, 47, 135, 0.7)
      ), 
      url('path/to/your-image.jpg') no-repeat center center/cover;
    padding: 60px 0;
    color: #fff;
    text-align: center;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
header {
  background: rgba(46, 64, 51, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(46, 64, 51, 0.98);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
  }
  
header img {
  height: 50px;
  transition: height 0.3s ease;
}

header.scrolled img {
  height: 45px;
}

header nav {
  display: flex;
  align-items: center;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
gap: 30px;
margin: 0;
padding: 0;
  }
  
  header nav ul li a {
    text-decoration: none;
    color: white;
font-size: 16px;
    font-weight: 500;
padding: 8px 0;
position: relative;
transition: all 0.3s ease;
text-transform: none;
}

header nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #C6AE92;
  transition: width 0.3s ease;
  }
  
  header nav ul li a:hover {
  color: #C6AE92;
  text-decoration: none;
}

header nav ul li a:hover::after {
  width: 100%;
}

header nav ul li a.active {
  color: #C6AE92;
}

header nav ul li a.active::after {
  width: 100%;
}

#hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

#hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  background-color: white;
  border-radius: 3px;
  transform-origin: center;
  transition: all 0.3s ease;
}

#hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#hamburger.active span:nth-child(2) {
  opacity: 0;
}

#hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  header {
    padding: 12px 0;
    height: auto;
  }
  
  header.scrolled {
    padding: 8px 0;
  }
  
  header img {
    height: 40px;
  }
  
  header.scrolled img {
    height: 35px;
  }
  
  header nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: rgba(46, 64, 51, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding-top: 60px;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }
  
  header nav ul.active {
    right: 0;
  }
  
  #hamburger {
    display: flex;
    z-index: 1001;
  }
  
  header nav ul li {
    width: 80%;
    text-align: center;
  }
  
  header nav ul li a {
    font-size: 18px;
    padding: 12px 15px;
    display: block;
    width: 100%;
    border-radius: 8px;
    transition: all 0.2s ease;
  }
  
  header nav ul li a:hover, 
  header nav ul li a.active {
    background: rgba(198, 174, 146, 0.2);
    transform: none;
  }
}

@media (max-width: 480px) {
  header {
    padding: 10px 0;
  }
  
  header.scrolled {
    padding: 6px 0;
  }
  
  header img {
    height: 35px;
  }
  
  header.scrolled img {
    height: 30px;
  }
  
  header nav ul {
    width: 85%;
    gap: 20px;
    padding-top: 70px;
  }
  
  header nav ul li {
    width: 85%;
  }
  
  header nav ul li a {
    font-size: 16px;
    padding: 10px;
  }
  
  #hamburger {
    width: 35px;
    height: 35px;
    padding: 8px;
  }
  
  #hamburger span {
    height: 2px;
  }
  
  body {
    padding-top: 60px;
  }
}
  
.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(46, 64, 51, 0.98), rgba(64, 91, 73, 0.95));
  min-height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(198, 174, 146, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(198, 174, 146, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 4px);
  opacity: 1;
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(to right, rgba(0,0,0,0.2) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.2) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.2) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  padding: 0 15px;
}

  .hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInDown 1.2s ease-out forwards;
  background: linear-gradient(to left, #fff, #C6AE92);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hero h1::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #C6AE92, transparent);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  }

  .hero p {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.5s ease-out forwards;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  }

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  animation: fadeIn 1.8s ease-out forwards;
  animation-delay: 0.5s;
  margin-top: 20px;
}

  .btn-main {
  background: linear-gradient(45deg, #C6AE92, #d7c1a4);
  color: #2e4033;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
    text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(198, 174, 146, 0.4);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: none;
  z-index: 1;
  white-space: nowrap;
}

.btn-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #2e4033, #405b49);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.btn-main:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(198, 174, 146, 0.5);
}

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

.btn-main::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  pointer-events: none;
}

.btn-main:hover::after {
  transform: scale(1);
  opacity: 0.3;
}

.btn-secondary {
  padding: 15px 35px;
  border: 2px solid rgba(198, 174, 146, 0.7);
  background: transparent;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary:hover {
  background: rgba(198, 174, 146, 0.2);
  border-color: #C6AE92;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary.clicked {
  animation: contactButtonPulse 0.5s ease forwards;
}

@keyframes contactButtonPulse {
  0% {
    transform: scale(1);
    background: rgba(198, 174, 146, 0.2);
  }
  50% {
    transform: scale(0.95);
    background: rgba(198, 174, 146, 0.5);
    box-shadow: 0 0 30px rgba(198, 174, 146, 0.6);
  }
  100% {
    transform: scale(1);
    background: rgba(198, 174, 146, 0.2);
  }
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  opacity: 0;
  transition: opacity 0.8s ease, transform 1.5s ease;
}

.shape-1 {
  width: 350px;
  height: 350px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(198, 174, 146, 0.15) 0%, rgba(198, 174, 146, 0.05) 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: float 15s infinite alternate ease-in-out;
}

.shape-2 {
  width: 250px;
  height: 250px;
  bottom: -50px;
  left: -50px;
  background: radial-gradient(circle, rgba(64, 91, 73, 0.15) 0%, rgba(64, 91, 73, 0.05) 70%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: float 12s infinite alternate-reverse ease-in-out;
}

.shape-3 {
  width: 180px;
  height: 180px;
  top: 40%;
  right: 10%;
  background: linear-gradient(135deg, rgba(198, 174, 146, 0.1) 0%, rgba(64, 91, 73, 0.1) 100%);
  border-radius: 50% 50% 50% 70% / 50% 50% 70% 60%;
  animation: float 10s infinite alternate ease-in-out;
  animation-delay: 2s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 10%;
  background: linear-gradient(135deg, rgba(64, 91, 73, 0.1) 0%, rgba(198, 174, 146, 0.1) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: float 8s infinite alternate-reverse ease-in-out;
  animation-delay: 3s;
}

.hero-tech-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.tech-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(198, 174, 146, 0.2);
  animation: rotate 120s linear infinite;
}

.tech-circle-1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tech-circle-2 {
  width: 700px;
  height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-direction: reverse;
}

.tech-circle-3 {
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tech-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgba(198, 174, 146, 0.5);
  border-radius: 50%;
  z-index: 3;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-25px) rotate(8deg) scale(1.05);
  }
  100% {
    transform: translateY(25px) rotate(-8deg) scale(0.95);
  }
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  }
  
  @keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
      opacity: 0;
    transform: translateY(-70px);
    }
    to {
      opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(70px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .shape-1 {
    width: 280px;
    height: 280px;
  }
  
  .shape-2 {
    width: 200px;
    height: 200px;
  }
  
  .shape-3 {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn-main, .btn-secondary {
    padding: 12px 28px;
    font-size: 1rem;
    width: 100%;
    max-width: 250px;
  }
  
  .shape-1 {
    width: 200px;
    height: 200px;
  }
  
  .shape-2 {
    width: 150px;
    height: 150px;
  }
  
  .shape-3 {
    width: 100px;
    height: 100px;
  }
  
  .shape-4 {
    width: 80px;
    height: 80px;
  }
  
  .tech-circle-1 {
    width: 300px;
    height: 300px;
  }
  
  .tech-circle-2 {
    width: 450px;
    height: 450px;
  }
  
  .tech-circle-3 {
    width: 600px;
    height: 600px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 85vh;
  }
  
  .hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .btn-main, .btn-secondary {
    padding: 10px 25px;
    font-size: 0.95rem;
    max-width: 220px;
  }
  
  .hero .container {
    max-width: 100%;
  }
  
  .shape-1, .shape-2 {
    opacity: 0.7;
  }
}
  
.about-us {
  padding: 120px 0 100px;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-us::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 174, 146, 0.07) 0%, rgba(198, 174, 146, 0.01) 70%);
  border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
  top: -150px;
  left: -150px;
  z-index: -1;
  animation: float-slow 20s infinite alternate ease-in-out;
}

.about-us::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(46, 64, 51, 0.07) 0%, rgba(46, 64, 51, 0.01) 70%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: -100px;
  right: -100px;
  z-index: -1;
  animation: float-slow 15s infinite alternate-reverse ease-in-out;
}

@keyframes float-slow {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(30px) rotate(5deg);
  }
}

.about-us .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #2e4033;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #C6AE92, transparent);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.about-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}

.about-item {
  display: flex;
  align-items: stretch;
  gap: 50px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  min-height: 300px;
  transform: translateY(0);
}

.about-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.about-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #2e4033, #C6AE92);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-item:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.about-item.reverse {
  flex-direction: row-reverse;
}

.about-text {
  padding: 50px;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.about-text h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2e4033;
  margin-bottom: 25px;
  position: relative;
}

.about-text h3::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #C6AE92;
  bottom: -12px;
  right: 0;
  border-radius: 2px;
}

.about-item.reverse .about-text h3::before {
  right: auto;
  left: 0;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #666;
  margin-bottom: 30px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: normal;
  max-width: 100%;
  box-sizing: border-box;
}

.about-image {
  width: 50%;
  height: auto;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(46, 64, 51, 0.4));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-item:hover .about-image::before {
    opacity: 1;
  }

.feature-list {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.feature-item {
  display: inline-flex;
  align-items: center;
  background: rgba(198, 174, 146, 0.1);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: #2e4033;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.feature-item:hover {
  background: #fff;
  color: #2e4033;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: rgba(198, 174, 146, 0.3);
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(198, 174, 146, 0.15), rgba(46, 64, 51, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-item:hover::before {
  opacity: 1;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.about-number {
  position: absolute;
  font-size: 14rem;
  font-weight: 800;
  opacity: 0.04;
  color: #2e4033;
  bottom: -40px;
  left: 20px;
  z-index: 0;
  line-height: 1;
  pointer-events: none;
  transition: all 0.5s ease;
  }
  
.about-item:hover .about-number {
  opacity: 0.07;
  transform: translateY(-10px) rotate(-5deg);
}

.about-item.reverse .about-number {
  left: auto;
  right: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: #C6AE92;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  margin-top: auto;
  position: relative;
  padding: 8px 0;
  }
  
.read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #C6AE92;
  transform: scaleX(0.3);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.read-more:hover {
  color: #2e4033;
}

.read-more:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  background-color: #2e4033;
}

.read-more span {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-right: 5px;
}

.read-more:hover span {
  transform: translateX(-8px);
}

.about-decoration {
  position: absolute;
  z-index: -1;
  opacity: 0.4;
}

.about-decoration-1 {
  top: 50px;
  left: 50px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(198, 174, 146, 0.15) 0%, transparent 70%);
  animation: rotate 60s linear infinite;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.about-decoration-2 {
  bottom: 100px;
  right: 100px;
  width: 300px;
  height: 300px;
  background-image: radial-gradient(circle, rgba(46, 64, 51, 0.1) 0%, transparent 70%);
  animation: rotate 80s linear infinite reverse;
  border-radius: 50% 50% 30% 70% / 50% 30% 70% 60%;
}

@media (max-width: 992px) {
  .about-us {
    padding: 100px 0 80px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .about-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .about-item {
    min-height: auto;
  }
  
  .about-text {
    padding: 40px 30px;
    }
  
  .about-text p {
    font-size: 1rem;
  }
  
  .about-number {
    font-size: 10rem;
    }
  }
  
@media (max-width: 768px) {
  .about-us {
    padding: 80px 0 60px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .about-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .about-item {
    flex-direction: column;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .about-item.reverse {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    width: 100%;
  }
  
  .about-text {
    box-sizing: border-box;
    padding: 35px 20px;
  }
  
  .about-image {
    height: 250px;
    order: -1;
  }

  .about-item.reverse .about-image {
    order: -1;
  }
  
  .about-number {
    font-size: 8rem;
    bottom: auto;
    top: 170px;
  }
  
  .about-text h3::before {
    right: auto;
    left: 0;
  }
  
  .about-content {
    gap: 50px;
  }
  
  .about-text p {
    font-size: 0.95rem;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
    padding: 0 5px;
    text-align: justify;
    white-space: normal;
    line-height: 1.7;
  }
  
  .about-subtitle {
    overflow-wrap: anywhere;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
    padding: 0 15px;
    font-size: 0.9rem;
  }
  
  .about-decoration-1 {
    top: 20px;
    left: 20px;
    width: 150px;
    height: 150px;
  }
  
  .about-decoration-2 {
    bottom: 50px;
    right: 50px;
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .about-us {
    padding: 70px 0 50px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .about-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .about-item {
    border-radius: 15px;
  }
  
  .about-image {
    height: 200px;
  }
  
  .about-text {
    padding: 30px 20px;
  }
  
  .about-text h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .about-text p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .feature-item {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
  
  .about-number {
    font-size: 6rem;
    top: 130px;
  }
  
  .about-content {
    gap: 40px;
  }
  
  .about-decoration-1, .about-decoration-2 {
    opacity: 0.2;
  }
}

.services {
  padding: 100px 0;
  background: linear-gradient(to bottom, #f9f9f9, #f4f4f4);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(rgba(46, 64, 51, 0.03), transparent 70%);
  top: -200px;
  right: -200px;
}

.services::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(rgba(198, 174, 146, 0.03), transparent 70%);
  bottom: -150px;
  left: -150px;
  }
  
  .services .container {
  position: relative;
  z-index: 2;
    text-align: center;
  }
  
.services .section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #2e4033;
  position: relative;
  display: inline-block;
}

.services .section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: #C6AE92;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.services-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
  }
  
  .services-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .service {
    background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transform: translateY(0);
}

.service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, rgba(46, 64, 51, 0.95), rgba(46, 64, 51, 0.9));
  z-index: -1;
  transition: height 0.5s ease;
  border-radius: 15px;
  }
  
  .service:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service:hover::before {
  height: 100%;
}

.service-header {
  padding: 25px 25px 15px;
  position: relative;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgba(198, 174, 146, 0.1);
  border-radius: 50%;
  margin-bottom: 15px;
  position: relative;
  transition: all 0.4s ease;
}

.service:hover .service-icon {
    background-color: #C6AE92; 
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(198, 174, 146, 0.3);
  }
  
.service-icon img {
  width: 40px;
  height: 40px;
  transition: all 0.4s ease;
  }
  
.service:hover .service-icon img {
  filter: brightness(0) invert(1);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(198, 174, 146, 0.1);
  color: #2e4033;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.service:hover .service-badge {
  background: #C6AE92;
  color: #fff;
  }
  
  .service h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2e4033;
  margin: 0 0 15px;
  transition: all 0.3s ease;
}

.service:hover h3 {
  color: #fff;
}

.service-content {
  padding: 0 25px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  }
  
  .service p {
  font-size: 0.95rem;
  color: #666;
    line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  transition: all 0.3s ease;
}

.service:hover p {
  color: rgba(255, 255, 255, 0.8);
}

.service-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
  transition: all 0.3s ease;
  }
  
.service:hover .service-footer {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: #C6AE92;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
}

.service:hover .service-link {
      opacity: 1;
  transform: translateX(0);
}

.service-link span {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-right: 5px;
}

.service:hover .service-link:hover span {
  transform: translateX(5px);
}

.service-tags {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
  transition: all 0.3s ease;
  opacity: 0.7;
}
  
.service-tag {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #C6AE92;
  transition: transform 0.3s ease;
}

.service-tag:nth-child(2) {
  background-color: #2e4033;
}
  
.service-tag:nth-child(3) {
  background-color: #8a98a5;
}

.active-service, .service:focus {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  outline: none;
}
  
.active-service::before {
  height: 100%;
}
  
.active-service h3, 
.active-service p {
  color: #fff;
}
  
.active-service .service-icon {
  background-color: #C6AE92;
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(198, 174, 146, 0.3);
}

.active-service .service-icon img {
  filter: brightness(0) invert(1);
}
  
.active-service .service-link {
      opacity: 1;
  transform: translateX(0);
    }
  
.active-service .service-badge {
  background: #C6AE92;
  color: #fff;
  }
  
@media (max-width: 1200px) {
    .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .service {
    min-height: 300px;
  }
  
  .service h3 {
    font-size: 1.3rem;
    }
  }
  
@media (max-width: 1024px) {
    .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .service {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0 50px;
  }
  
  .services .section-title {
    font-size: 2.2rem;
  }
  
  .services-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 60px 0 40px;
  }
  
  .services .section-title {
    font-size: 2rem;
  }
  
  .services-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .services-grid {
    gap: 20px;
  }
  
  .service {
    border-radius: 10px;
  }
  
  .service-header {
    padding: 20px 20px 10px;
  }
  
  .service-content {
    padding: 0 20px 20px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
  }
  
  .service-icon img {
    width: 35px;
    height: 35px;
  }
  
  .service h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  
  .service p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .service-badge {
    top: 15px;
    right: 15px;
    font-size: 0.75rem;
    padding: 4px 12px;
  }
}

  
  .social-media {
    margin-top: 40px;
  }
  
  .social-media h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .social-icons li {
    display: inline-block;
  }
  
  .social-icon {
    text-decoration: none;
    padding: 10px;
    font-size: 1.2rem;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease;
  }
  .social-icon:hover {
    background-color: #333;
  }
  
  @media (max-width: 768px) {
    .contact-form {
      padding: 20px;
    }
  
    .social-icons {
      flex-direction: column;
      gap: 10px;
    }
  }

 

@media (max-width: 768px) {
    header .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    nav ul {
      display: none; 
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
      width: 100%;
    }
  
    #hamburger {
      display: block;
      cursor: pointer;
      padding: 10px;
    }
  
    #hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: white;
      margin: 5px 0;
    }
  
    nav.active ul {
      display: flex;
    }
  
    .hero h1 {
      font-size: 28px;
    }
  
    .hero p {
      font-size: 10px;
    }
  
    .service-grid {
      flex-direction: column;
      align-items: center;
    }
  
    .service-box {
      width: 100%;
      max-width: 90%;
    }
  
    .contact form {
      width: 100%;
    }
  }


.whatsapp-icon {
    position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  filter: drop-shadow(0px 5px 15px rgba(37, 211, 102, 0.3));
  }
  
  .whatsapp-icon a {
  position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #1ea552);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.whatsapp-icon a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  opacity: 0.8;
  z-index: 1;
  }
  
  .whatsapp-icon img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.1));
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover a {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
}

.whatsapp-icon:hover img {
  transform: scale(1.1);
}

.whatsapp-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #25D366;
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}


.whatsapp-icon a::after {
  content: 'تواصل معنا';
  position: absolute;
  top: -45px;
  right: 50%;
  transform: translateX(50%) scale(0);
  background-color: #2e4033;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-icon a:hover::after {
  opacity: 1;
  transform: translateX(50%) scale(1);
}


@media (max-width: 768px) {
  .whatsapp-icon {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-icon a {
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-icon img {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .whatsapp-icon {
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-icon a {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon img {
    width: 25px;
    height: 25px;
  }
  }
  
  .statistics {
  padding: 120px 0 100px;
  background: linear-gradient(165deg, rgba(248, 248, 248, 0.97), rgba(255, 255, 255, 0.97)), 
              url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiMyRTQwMzMiIGZpbGwtb3BhY2l0eT0iLjAzIj48cGF0aCBkPSJNMzYgMzRjMC0yLjIgMS44LTQgNC00czQgMS44IDQgNC0xLjggNC00IDQtNC0xLjgtNC00bTAtMTZjMC0yLjIgMS44LTQgNC00czQgMS44IDQgNC0xLjggNC00IDQtNC0xLjgtNC00bTE2IDE2YzAtMi4yIDEuOC00IDQtNHM0IDEuOCA0IDQtMS44IDQtNCA0LTQtMS44LTQtNG0tMTYgMTZjMC0yLjIgMS44LTQgNC00czQgMS44IDQgNC0xLjggNC00IDQtNC0xLjgtNC00bTE2IDBjMC0yLjIgMS44LTQgNC00czQgMS44IDQgNC0xLjggNC00IDQtNC0xLjgtNC00bTAtMTZjMC0yLjIgMS44LTQgNC00czQgMS44IDQgNC0xLjggNC00IDQtNC0xLjgtNC00bTE2IDE2YzAtMi4yIDEuOC00IDQtNHM0IDEuOCA0IDQtMS44IDQtNCA0LTQtMS44LTQtNG0wLTE2YzAtMi4yIDEuOC00IDQtNHM0IDEuOCA0IDQtMS44IDQtNCA0LTQtMS44LTQtNCIvPjwvZz48L2c+PC9zdmc+');
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.statistics::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 174, 146, 0.07) 0%, rgba(198, 174, 146, 0.01) 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: -1;
  animation: float-slow 20s infinite alternate ease-in-out;
}

.statistics::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(46, 64, 51, 0.05) 0%, rgba(46, 64, 51, 0.01) 70%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: -1;
  animation: float-slow 15s infinite alternate-reverse ease-in-out;
}

.statistics .container {
  position: relative;
  z-index: 2;
}

.statistics .section-title {
  text-align: center;
  margin-bottom: 60px;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  padding: 40px 30px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(0);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 64, 51, 0.8), rgba(64, 91, 73, 0.8));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
  color: #fff;
}

.stat-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(198, 174, 146, 0.1);
  border-radius: 50%;
  margin-bottom: 25px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
}

.stat-icon::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px dashed rgba(198, 174, 146, 0.3);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
  z-index: -1;
}

.stat-card:hover .stat-icon {
  background: rgba(198, 174, 146, 0.8);
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(198, 174, 146, 0.3);
}

.stat-card:hover .stat-icon::after {
  opacity: 0.7;
  transform: scale(1.1) rotate(15deg);
  animation: rotate 10s linear infinite;
}

.stat-icon svg {
  width: 36px;
  height: 36px;
  stroke: #2e4033;
  transition: all 0.3s ease;
}
  
.stat-card:hover .stat-icon svg {
  stroke: #fff;
  transform: scale(1.1);
}

.stat-info {
  width: 100%;
    text-align: center;
  position: relative;
}

.stat-info::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #C6AE92;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) scaleX(0.5);
  border-radius: 2px;
  transition: all 0.4s ease;
  opacity: 0.7;
}

.stat-card:hover .stat-info::before {
  transform: translateX(-50%) scaleX(1);
  background: rgba(255, 255, 255, 0.8);
  }
  
  .stat-number {
  font-size: 4rem;
  font-weight: 800;
  color: #2e4033;
    margin-bottom: 10px;
  position: relative;
  display: inline-block;
  line-height: 1;
  background: linear-gradient(to right, #2e4033, #405b49);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, #fff, #f0f0f0);
  -webkit-background-clip: text;
  background-clip: text;
}

.stat-progress {
  height: 8px;
  width: 80%;
  background: rgba(198, 174, 146, 0.2);
  border-radius: 10px;
  margin: 15px auto 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05) inset;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #C6AE92, #d7c1a4);
  border-radius: 10px;
  transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.stat-card:hover .progress-fill {
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.7));
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #444;
  margin-top: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.stat-card:hover .stat-label {
  transform: scale(1.05);
}

.stat-card.highlight {
  transform: translateY(-10px);
}

.stat-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.stat-decoration {
  position: absolute;
  opacity: 0.4;
  z-index: -1;
}

.stat-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #C6AE92;
  border-radius: 50%;
  opacity: 0.3;
}

@media (max-width: 1200px) {
  .statistics {
    padding: 100px 0 80px;
  }
  
  .stats-container {
    gap: 20px;
  }
  
  .stat-card {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 3.5rem;
  }
  
  .stat-icon {
    width: 70px;
    height: 70px;
  }
  
  .stat-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .stat-label {
    font-size: 1.1rem;
  }
}

@media (max-width: 1024px) {
  .statistics {
    padding: 90px 0 70px;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 700px;
  }
  
  .stat-card {
    padding: 35px 25px;
  }
  
  .stat-icon {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .statistics {
    padding: 80px 0 60px;
  }
  
  .statistics .section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 30px;
  }
  
  .stat-card {
    padding: 35px 25px;
  }
  
  .stat-number {
    font-size: 3.2rem;
  }
  
  .stat-progress {
    width: 70%;
    margin: 15px auto 20px;
  }
}

@media (max-width: 480px) {
  .statistics {
    padding: 70px 0 50px;
  }
  
  .statistics .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .stats-container {
    gap: 25px;
  }
  
  .stat-card {
    padding: 30px 20px;
    border-radius: 15px;
  }
  
  .stat-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }
  
  .stat-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .stat-progress {
    height: 6px;
    margin: 12px auto 18px;
  }
}
  
.clients {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(to bottom, #f4f4f4, #ffffff);
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(rgba(198, 174, 146, 0.03), transparent 70%);
  top: -250px;
  right: -250px;
  z-index: 0;
}

.clients::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(rgba(46, 64, 51, 0.03), transparent 70%);
  bottom: -200px;
  left: -200px;
  z-index: 0;
}

.clients .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.clients .section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #2e4033;
  position: relative;
  display: inline-block;
}

.clients .section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: #C6AE92;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.clients-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
}

.clients-wrapper {
  position: relative;
  z-index: 1;
}

.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 auto;
  max-width: 1000px;
}

.client-logo {
  width: 220px;
  height: 160px;
  position: relative;
  overflow: hidden;
}

.client-logo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  transform: translateY(0);
}

.client-logo:hover .client-logo-inner {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-logo-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 64, 51, 0.03) 0%, transparent 100%);
  z-index: 0;
}

.client-logo-inner img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
  z-index: 1;
  position: relative;
}

.client-logo:hover .client-logo-inner img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.client-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(46, 64, 51, 0.9);
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.client-logo:hover .client-overlay {
  transform: translateY(0);
}

.client-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.client-category {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 5px;
}

.clients-navigation {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}

.client-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(198, 174, 146, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.client-nav-dot.active,
.client-nav-dot:hover {
  background-color: #C6AE92;
  transform: scale(1.3);
}

.clients-testimonial {
  max-width: 800px;
  margin: 60px auto 0;
  padding: 30px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-quote {
  font-size: 1.2rem;
  color: #555;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 5rem;
  color: rgba(198, 174, 146, 0.1);
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info {
  text-align: left;
}

.testimonial-author-name {
  font-weight: 600;
  color: #2e4033;
  margin: 0;
}

.testimonial-author-role {
  font-size: 0.9rem;
  color: #888;
  margin: 0;
}

@media (max-width: 1200px) {
  .client-logos {
    max-width: 900px;
    gap: 30px;
  }
  
  .client-logo {
    width: 200px;
    height: 150px;
  }
  
  .clients-testimonial {
    max-width: 750px;
  }
}

@media (max-width: 992px) {
  .clients {
    padding: 80px 0;
  }
  
  .clients .section-title {
    font-size: 2.5rem;
  }
  
  .clients-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  
  .client-logos {
    gap: 25px;
  }
  
  .client-logo {
    width: 180px;
    height: 140px;
  }
  
  .clients-testimonial {
    max-width: 700px;
    margin-top: 50px;
  }
  
  .testimonial-quote {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .clients {
    padding: 70px 0 50px;
  }
  
  .clients .section-title {
    font-size: 2.2rem;
  }
  
  .clients-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  
  .client-logos {
    gap: 20px;
    justify-content: center;
  }
  
  .client-logo {
    width: 160px;
    height: 120px;
  }
  
  .clients-testimonial {
    max-width: 90%;
    padding: 25px 20px;
    margin-top: 40px;
  }
  
  .testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .testimonial-author-img {
    width: 40px;
    height: 40px;
  }
  
  .client-nav-dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .clients {
    padding: 60px 0 40px;
  }
  
  .clients .section-title {
    font-size: 2rem;
  }
  
  .clients-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .client-logos {
  gap: 15px;
    max-width: 100%;
}

  .client-logo {
    width: 130px;
    height: 100px;
  }
  
  .client-logo-inner {
    padding: 15px;
  }
  
  .client-overlay {
  padding: 10px;
  }
  
  .client-name {
    font-size: 0.9rem;
  }
  
  .client-category {
    font-size: 0.75rem;
  }
  
  .clients-testimonial {
    padding: 20px 15px;
    margin-top: 30px;
    border-radius: 10px;
  }
  
  .testimonial-quote {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .testimonial-quote::before {
    font-size: 4rem;
    top: -30px;
    left: -15px;
  }
  
  .testimonial-author-name {
    font-size: 0.9rem;
  }
  
  .testimonial-author-role {
    font-size: 0.8rem;
  }
  
  .clients-navigation {
    margin-top: 30px;
  }
}

@media (max-width: 380px) {
  .client-logo {
    width: 120px;
    height: 90px;
  }
  
  .client-logo-inner {
    padding: 12px;
  }
  
  .client-overlay {
    padding: 8px;
  }
}

.contact-us {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, rgba(245, 245, 245, 0.95), rgba(255, 255, 255, 0.95)),
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiMyRTQwMzMiIGZpbGwtb3BhY2l0eT0iLjAzIj48cGF0aCBkPSJNMzYgMzRjMC0yLjIgMS44LTQgNC00czQgMS44IDQgNC0xLjggNC00IDQtNC0xLjgtNC00bTAtMTZjMC0yLjIgMS44LTQgNC00czQgMS44IDQgNC0xLjggNC00IDQtNC0xLjgtNC00bTE2IDE2YzAtMi4yIDEuOC00IDQtNHM0IDEuOCA0IDQtMS44IDQtNCA0LTQtMS44LTQtNG0tMTYgMTZjMC0yLjIgMS44LTQgNC00czQgMS44IDQgNC0xLjggNC00IDQtNC0xLjgtNC00bTE2IDBjMC0yLjIgMS44LTQgNC00czQgMS44IDQgNC0xLjggNC00IDQtNC0xLjgtNC00bTAtMTZjMC0yLjIgMS44LTQgNC00czQgMS44IDQgNC0xLjggNC00IDQtNC0xLjgtNC00bTE2IDE2YzAtMi4yIDEuOC00IDQtNHM0IDEuOCA0IDQtMS44IDQtNCA0LTQtMS44LTQtNG0wLTE2YzAtMi4yIDEuOC00IDQtNHM0IDEuOCA0IDQtMS44IDQtNCA0LTQtMS44LTQtNCIvPjwvZz48L2c+PC9zdmc+');
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-us::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198, 174, 146, 0.07) 0%, rgba(198, 174, 146, 0.01) 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: -1;
  animation: float-slow 20s infinite alternate ease-in-out;
}

.contact-us::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(46, 64, 51, 0.05) 0%, rgba(46, 64, 51, 0.01) 70%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: -1;
  animation: float-slow 15s infinite alternate-reverse ease-in-out;
}

.contact-us .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-us .section-title {
  margin-bottom: 15px;
  background: linear-gradient(135deg, #2e4033, #405b49);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, #C6AE92, transparent);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  text-align: right;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(46, 64, 51, 0.9), rgba(64, 91, 73, 0.9));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  border-radius: 20px;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-icon {
  width: 65px;
  height: 65px;
  background: rgba(198, 174, 146, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  stroke: #2e4033;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: #C6AE92;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 20px rgba(198, 174, 146, 0.3);
}

.contact-card:hover .contact-icon svg {
  stroke: #fff;
  transform: scale(1.1);
}

.contact-card h3 {
  font-size: 1.3rem;
  color: #2e4033;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.contact-card p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.contact-card:hover h3,
.contact-card:hover p {
  color: #fff;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  color: #C6AE92;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link span {
  display: inline-block;
  margin-right: 5px;
  transition: transform 0.3s ease;
}

.contact-link:hover {
  color: #fff;
}

.contact-link:hover span {
  transform: translateX(-5px);
}

.contact-social {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social h3 {
  font-size: 1.3rem;
  color: #2e4033;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.contact-social h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #C6AE92;
  bottom: -10px;
  right: 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.social-icons-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(198, 174, 146, 0.1);
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.social-icons-contact a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2e4033, #405b49);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.social-icons-contact svg {
  width: 24px;
  height: 24px;
  stroke: #2e4033;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.social-icons-contact a[aria-label="واتساب"] svg {
  stroke: none;
  fill: #2e4033;
  width: 22px;
  height: 22px;
}

.social-icons-contact a[aria-label="واتساب"]:hover svg {
  stroke: none;
  fill: #fff;
}

.social-icons-contact a:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 25px rgba(46, 64, 51, 0.2);
}

.social-icons-contact a:hover::before {
  opacity: 1;
}

.social-icons-contact a:hover svg {
  stroke: #fff;
}

.social-icons-contact a[aria-label="واتساب"]:hover svg {
  stroke: none;
  fill: #fff;
}

.contact-form {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(198, 174, 146, 0.1), transparent 70%);
  top: -75px;
  right: -75px;
  border-radius: 50%;
  z-index: -1;
}

.contact-form::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(46, 64, 51, 0.1), transparent 70%);
  bottom: -60px;
  left: -60px;
  border-radius: 50%;
  z-index: -1;
}

.contact-form h3 {
  font-size: 1.5rem;
  color: #2e4033;
  margin-bottom: 30px;
  text-align: right;
  position: relative;
  display: inline-block;
}

.contact-form h3::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #C6AE92;
  bottom: -10px;
  right: 0;
  border-radius: 2px;
}

.form-floating {
  position: relative;
  margin-bottom: 25px;
  width: 100%;
}

.form-floating input,
.form-floating select,
.form-floating textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 20px;
  border: 2px solid rgba(46, 64, 51, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  margin: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.form-floating input:focus,
.form-floating select:focus,
.form-floating textarea:focus {
  border-color: #C6AE92;
  box-shadow: 0 10px 20px rgba(198, 174, 146, 0.15);
  outline: none;
  background: rgba(255, 255, 255, 0.9);
}

.form-floating label {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #999;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-floating input:focus ~ label,
.form-floating textarea:focus ~ label,
.form-floating select:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label,
.form-floating textarea:not(:placeholder-shown) ~ label,
.form-floating select:not([value=""]):not([value="undefined"]) ~ label {
  top: -12px;
  right: 15px;
  padding: 0 5px;
  font-size: 0.8rem;
  color: #C6AE92;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-floating textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background: linear-gradient(135deg, #2e4033, #405b49);
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 20px rgba(46, 64, 51, 0.2);
  width: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.submit-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(46, 64, 51, 0.3);
}

.btn-text {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.btn-icon {
  position: absolute;
  left: -30px;
  opacity: 0;
  display: inline-flex;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.submit-btn:hover .btn-text {
  transform: translateX(-10px);
}

.submit-btn:hover .btn-icon {
  opacity: 1;
  left: calc(50% + 50px);
}

.submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #C6AE92, #d6be9d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}

.submit-btn:hover::after {
  transform: scaleX(1);
}

.contact-decoration {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.contact-decoration-circle {
  position: absolute;
  background: rgba(198, 174, 146, 0.05);
  border-radius: 50%;
}

.contact-decoration-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  opacity: 0.5;
  animation: float-slow 25s infinite alternate ease-in-out;
}

.contact-decoration-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 8%;
  opacity: 0.4;
  animation: float-slow 20s infinite alternate-reverse ease-in-out;
}

.contact-decoration-dots {
  position: absolute;
  width: 200px;
  height: 200px;
}

.contact-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(198, 174, 146, 0.3);
}


.site-footer {
  position: relative;
  background: #2e4033;
  color: #fff;
  overflow: hidden;
  font-family: 'Cairo', sans-serif;
}

.footer-waves {
  position: absolute;
  top: -120px;
  width: 100%;
  left: 0;
  line-height: 0;
}

.footer-waves svg {
  width: 100%;
  height: 120px;
}

.footer-content {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.footer-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(rgba(198, 174, 146, 0.05) 2px, transparent 2px), 
    radial-gradient(rgba(198, 174, 146, 0.05) 2px, transparent 2px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  z-index: -1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-about p {
  margin-top: 20px;
  line-height: 1.7;
  opacity: 0.8;
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  height: 60px;
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(198, 174, 146, 0.3);
  color: #C6AE92;
  background: rgba(198, 174, 146, 0.05);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

.footer-social a[aria-label="واتساب"] svg {
  stroke: none;
  fill: currentColor;
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  background: #C6AE92;
  color: #2e4033;
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.footer-links h3,
.footer-services h3,
.footer-newsletter h3 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 10px;
  color: #C6AE92;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-newsletter h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(to left, #C6AE92, rgba(198, 174, 146, 0.2));
}

.footer-links ul,
.footer-services ul {
  padding: 0;
  list-style: none;
}

.footer-links ul li,
.footer-services ul li {
  margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  opacity: 0.8;
}

.footer-links ul li a::before,
.footer-services ul li a::before {
  content: '←';
  opacity: 0;
  position: absolute;
  right: -20px;
  transition: all 0.3s ease;
  transform: translateX(10px);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
  color: #C6AE92;
  opacity: 1;
  transform: translateX(-5px);
}

.footer-links ul li a:hover::before,
.footer-services ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-newsletter p {
  margin-bottom: 20px;
  line-height: 1.7;
  opacity: 0.8;
}

.newsletter-form .form-group {
  position: relative;
  display: flex;
  margin-bottom: 25px;
}

.success-message {
  color: #C6AE92;
  background: rgba(198, 174, 146, 0.1);
  padding: 10px 15px;
  border-radius: 25px;
  text-align: center;
  width: 100%;
  border: 1px solid rgba(198, 174, 146, 0.3);
  animation: fadeIn 0.5s ease-in-out;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 50px;
  border-radius: 25px;
  padding: 0 20px;
  width: 100%;
  color: #fff;
  font-size: 14px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(198, 174, 146, 0.5);
  box-shadow: 0 0 0 3px rgba(198, 174, 146, 0.15);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
  position: absolute;
  left: 5px;
  top: 5px;
  height: 40px;
  width: 40px;
  border: none;
  background: #C6AE92;
  color: #2e4033;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.newsletter-btn:hover {
  background: #d7c1a4;
  transform: scale(1.05);
}

.newsletter-btn:hover svg {
  transform: translateX(2px) translateY(-2px);
}

.footer-contact-info {
  margin-top: 25px;
}

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

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  margin-left: 10px;
  color: #C6AE92;
}

.footer-contact-item span {
  font-size: 14px;
  opacity: 0.8;
}

.footer-bottom {
  background: rgba(24, 34, 28, 0.8);
  padding: 20px 0;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  margin: 0;
  font-size: 14px;
  opacity: 0.7;
}

.designer {
  margin: 0;
  font-size: 14px;
  opacity: 0.7;
}

.designer a {
  color: #C6AE92;
  text-decoration: none;
  transition: color 0.3s ease;
}

.designer a:hover {
  color: #d7c1a4;
  text-decoration: underline;
}

#scroll-to-top {
  background: rgba(198, 174, 146, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C6AE92;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
}

#scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-to-top svg {
  width: 20px;
  height: 20px;
}

#scroll-to-top:hover {
  background: #C6AE92;
  color: #2e4033;
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
  .footer-grid {
    gap: 30px;
  }
  
  .footer-waves {
    top: -100px;
  }
  
  .footer-waves svg {
    height: 100px;
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-about, .footer-newsletter {
    grid-column: span 2;
  }
  
  .footer-links, .footer-services {
    margin-top: 20px;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-logo {
    display: block;
    text-align: center;
  }
  
  .footer-about p {
    text-align: center;
  }
  
  .footer-waves {
    top: -80px;
  }
  
  .footer-waves svg {
    height: 80px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    margin-top: 40px;
  }
  
  .footer-content {
    padding: 50px 0 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-about, .footer-newsletter, .footer-links, .footer-services {
    grid-column: span 1;
  }
  
  .footer-links, .footer-services {
    margin-top: 0;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .copyright, .designer {
    margin: 0 auto;
  }
  
  #scroll-to-top {
    margin: 15px auto 0;
  }
  
  .footer-waves {
    top: -60px;
    height: 60px;
  }
  
  .footer-waves svg {
    height: 60px;
  }
  
  .footer-links h3::after,
  .footer-services h3::after,
  .footer-newsletter h3::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .footer-links h3,
  .footer-services h3,
  .footer-newsletter h3 {
    text-align: center;
  }
  
  .footer-links ul,
  .footer-services ul {
    text-align: center;
  }
  
  .footer-links ul li a::before,
  .footer-services ul li a::before {
    display: none;
  }
  
  .footer-newsletter p {
    text-align: center;
  }
  
  .footer-contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    margin-top: 30px;
  }
  
  .footer-content {
    padding: 40px 0 25px;
  }
  
  .footer-grid {
    gap: 30px;
  }
  
  .footer-logo img {
    height: 50px;
  }
  
  .footer-about p {
    font-size: 0.9rem;
  }
  
  .footer-links h3,
  .footer-services h3,
  .footer-newsletter h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .footer-links ul li,
  .footer-services ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a,
  .footer-services ul li a {
    font-size: 0.9rem;
  }
  
  .footer-newsletter p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
}
 
.contact-card p,
.footer-contact-item span {
  direction: ltr;
  display: inline-block;
  text-align: right;
}
 
header nav ul li a.nav-clicked {
  animation: pulse 0.5s ease-in-out;
  color: #C6AE92;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

html {
  scroll-behavior: smooth;
}

.service-icon {
  position: relative;
  z-index: 2;
}

.hexagon-particles-container {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service:hover .hexagon-particles-container {
  opacity: 1;
}

.hexagon-particle {
  position: absolute;
  width: 10px;
  height: 6px;
  background-color: rgba(198, 174, 146, 0.5);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transform-origin: center center;
  opacity: 0;
}

.service-icon::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px dashed rgba(198, 174, 146, 0.3);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease;
  z-index: -1;
}

.service:hover .service-icon::after {
  opacity: 1;
  transform: scale(1.1);
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg) scale(1.1);
  }
  to {
    transform: rotate(360deg) scale(1.1);
  }
}

@keyframes float-hexagon {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) scale(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-5px) rotate(30deg) scale(1);
  }
  80% {
    opacity: 1;
    transform: translateY(-15px) rotate(60deg) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translateY(-25px) rotate(90deg) scale(0.8);
  }
}
  
 

html {
  scroll-behavior: smooth;
}

.client-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.client-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.client-modal {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 600px;
  position: relative;
  overflow: hidden;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.client-modal-overlay.active .client-modal {
  transform: translateY(0);
}

.client-modal-header {
  position: relative;
  padding-top: 60%;
  background-color: #f5f5f5;
}

.client-modal-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(46, 64, 51, 0.3), rgba(46, 64, 51, 0.8));
  z-index: 1;
}

.client-modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
}

.client-modal-img {
  position: absolute;
  bottom: -50px;
  left: 30px;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  border: 6px solid #fff;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

.client-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.client-modal-content {
  padding: 70px 40px 40px;
}

.client-modal-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 5px;
  color: #2e4033;
}

.client-modal-role {
  font-size: 1rem;
  color: #666;
  margin: 0 0 20px;
}

.client-modal-quote {
  margin: 2rem 0;
  line-height: 1.8;
  color: #333;
  font-size: 1rem;
  position: relative;
  padding: 0 2rem;
}

.client-modal-website-btn {
  display: inline-block;
  background-color: #2e4033;
  color: #fff !important;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
  transition: all 0.3s ease;
  text-align: center;
  width: auto;
  cursor: pointer;
}

.client-modal-website-btn:hover {
  background-color: #3a5141;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #fff !important;
}


@media (max-width: 992px) {
  .client-modal {
    max-width: 500px;
  }
  
  .client-modal-content {
    padding: 60px 30px 30px;
  }
}

@media (max-width: 768px) {
  .client-modal {
    width: 90%;
    max-width: 450px;
  }
  
  .client-modal-header {
    padding-top: 65%;
  }
  
  .client-modal-img {
    width: 90px;
    height: 90px;
    bottom: -45px;
    left: 25px;
    border-width: 5px;
  }
  
  .client-modal-content {
    padding: 55px 25px 30px;
  }
  
  .client-modal-name {
    font-size: 1.3rem;
  }
  
  .client-modal-role {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .client-modal-quote {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .client-modal-website-btn {
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .client-modal {
    width: 95%;
    max-width: 350px;
    border-radius: 8px;
  }
  
  .client-modal-header {
    padding-top: 70%;
  }
  
  .client-modal-img {
    width: 80px;
    height: 80px;
    bottom: -40px;
    left: 20px;
    border-width: 4px;
  }
  
  .client-modal-content {
    padding: 50px 20px 25px;
  }
  
  .client-modal-name {
    font-size: 1.2rem;
  }
  
  .client-modal-role {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .client-modal-quote {
    font-size: 0.9rem;
    padding: 0 1rem;
    line-height: 1.6;
  }
  
  .client-modal-website-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    margin-top: 0.8rem;
    width: 100%;
    border-radius: 4px;
  }
  
  .client-modal-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 375px) {
  .client-modal {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }
}

/* Media queries for contact section */
@media (max-width: 992px) {
  .contact-us {
    padding: 100px 0 80px;
  }
  
  .contact-container {
    gap: 30px;
  }
  
  .contact-card {
    padding: 25px;
  }
  
  .contact-form {
    padding: 35px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 768px) {
  .contact-us {
    padding: 80px 0 60px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info {
    order: 2;
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
  }
  
  .contact-form {
    order: 1;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin: 0 auto 40px;
    padding: 0 15px;
  }
  
  .social-icons-contact {
    gap: 15px;
  }
  
  .contact-form {
    padding: 30px;
  }
  
  .form-floating input,
  .form-floating select,
  .form-floating textarea {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
  
  .contact-social h3 {
    text-align: center;
    display: block;
  }
  
  .contact-social h3::after {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 576px) {
  .contact-us {
    padding: 70px 0 50px;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-card {
    padding: 20px;
  }
  
  .contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .contact-card p {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  
  .contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .contact-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .contact-link {
    font-size: 0.9rem;
  }
  
  .contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
    display: block;
  }
  
  .contact-form h3::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .form-floating {
    margin-bottom: 20px;
  }
  
  .contact-form {
    padding: 25px 20px;
  }
  
  .contact-social {
    padding: 25px 20px;
  }
  
  .social-icons-contact a {
    width: 45px;
    height: 45px;
  }
  
  .social-icons-contact svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 375px) {
  .contact-card {
    padding: 18px;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
  }
  
  .contact-icon svg {
    width: 22px;
    height: 22px;
  }
  
  .contact-card h3 {
    font-size: 1.1rem;
  }
  
  .contact-card p {
    font-size: 0.9rem;
  }
  
  .contact-link {
    font-size: 0.85rem;
  }
  
  .form-floating input,
  .form-floating select,
  .form-floating textarea {
    padding: 12px 15px;
    font-size: 0.9rem;
    border-radius: 12px;
  }
  
  .social-icons-contact {
    gap: 10px;
  }
  
  .social-icons-contact a {
    width: 40px;
    height: 40px;
  }
  
  .social-icons-contact svg {
    width: 20px;
    height: 20px;
  }
}

/* Add button styling for better responsiveness */
#submitButton {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  background: linear-gradient(135deg, #2e4033, #405b49);
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(46, 64, 51, 0.15);
}

#submitButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(46, 64, 51, 0.25);
}

@media (max-width: 576px) {
  #submitButton {
    padding: 12px;
    font-size: 0.95rem;
    border-radius: 12px;
  }
}

@media (max-width: 375px) {
  #submitButton {
    padding: 10px;
    font-size: 0.9rem;
  }
}

/* Fix for contact decoration elements on small screens */
@media (max-width: 768px) {
  .contact-decoration-circle {
    display: none;
  }
  
  .contact-decoration-dots {
    opacity: 0.3;
  }
}

/* Media queries for contact section responsive submit button */
@media (max-width: 768px) {
  .submit-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  
  .submit-btn .btn-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 576px) {
  .submit-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    border-radius: 12px;
  }
  
  .submit-btn:hover {
    transform: translateY(-3px);
  }
  
  .submit-btn .btn-icon svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 375px) {
  .submit-btn {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
}

/* Fix for contact decoration elements on small screens */
@media (max-width: 768px) {
  .contact-decoration-circle {
    display: none;
  }
  
  .contact-decoration-dots {
    opacity: 0.3;
  }
}