/* ========================================= */
/* إعدادات عامة */
/* ========================================= */

@font-face {
  font-family: bbb;
  src: url("bbb.otf");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: bbb, Arial, sans-serif;
  background: #efefef;
  color: #111;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ========================================= */
/* الهيدر */
/* ========================================= */

.site-header {
  width: 95%;
  height: 100px;
  margin: 30px auto 50px;
  background: #0000f5;
  border-radius: 38px;
  position: relative;
  overflow: visible;
}

.header-inner {
  width: 100%;
  height: 100%;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* الجهة اليمنى */
.brand-side {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-box {
  width: 68px;
  height: 68px;

  background: transparent; /* 🔥 احذف الخلفية */
  border-radius: 0;        /* اختياري */

  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: 120%;
  height: 120%;
  object-fit: contain;
}

.brand-text h1 {
  margin: 0;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  padding-top: 10px;
}

.brand-text p {
  margin: 10px 0 0;
  color: #d1d1d1;
  font-size: 17px;
  font-weight: 300;
}

/* زر القائمة */
.menu-btn {
  width: 54px;
  height: 54px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
  z-index: 20;
}

.menu-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 10px;
  transition: 0.3s ease;
  margin-inline-start: auto;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* القائمة المنسدلة */
.overlay-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 100%;
  min-height: 280px;
  background: #0000f5;
  border-radius: 34px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: 0.35s ease;
  z-index: 15;
}

.overlay-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.overlay-menu a {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

/* ========================================= */
/* القسم الأول */
/* ========================================= */

.hero-section {
  width: 90%;
  margin: 30px auto 40px;
  text-align: center;
}

.hero-section h2 {
  margin: 0;
  color: #0000f5;
  font-size: 58px;
  line-height: 1.1;
}

.hero-section p {
  margin: 14px 0 0;
  color: #9d9d9d;
  font-size: 20px;
  font-weight: 100;
}

/* ========================================= */
/* القسم الثاني: ألبوم الصور */
/* ========================================= */


.cards-3d {
  width: 100%;
  margin: 60px auto;
  display: flex;
  justify-content: center;
}

.cards-wrap {
  width: 320px;
  height: 260px;
  position: relative;
}

/* الكرت */
.card3d {
  position: absolute;
  top: 0;
  left: 50%;

  width: 140px;
  height: 220px;

  border-radius: 16px;
  overflow: hidden;

  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  
}

/* الصورة */
.card3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* النص */
.card3d span {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  color: #777;
  font-size: 16px;
}

/* الوضع الطبيعي */
.left {
  transform: translateX(-160px) scale(0.85) rotate(-8deg);
  z-index: 1;
}

.center {
  transform: translateX(-50%) scale(1);
  z-index: 3;
}

.right {
  transform: translateX(40px) scale(0.85) rotate(8deg);
  z-index: 1;
}

/* 🔥 عند الضغط */
.card3d.active {
  transform: translateX(-50%) scale(1.15) !important;
  z-index: 10;
}



/* ========================================= */
/* القسم الثالث: كروت خدماتنا المقدمه */
/* ========================================= */



/* عنوان القسم */
.section-title {
  text-align: center;
  font-size: 42px;
  color: #0000f5;
  margin-bottom: 40px;
}

/* الشبكة */
.services-grid {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 🔥 كرتين جنب بعض */
  gap: 22px;
}

/* الكرت */
.service-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;

  min-height: 260px;

  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  transition: 0.3s ease;

  position: relative;
  overflow: hidden;

  display: block; /* 🔥 مهم */
}

/* الخط الأزرق تحت */
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: #0000f5;
}

/* الرقم */
.service-number {
  font-size: 20px;
  color: #c3c2c2;
  display: block;
  margin-bottom: 8px;
}

/* العنوان */
.service-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  color: #0000f5;
}

/* النص */
.service-card p {
  margin: 0;
  font-size: 17px;
  color: #b3b3b3;
  line-height: 1.6;
  
}

/* الهوفر */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 18px 40px rgba(0,0,0,0.12),
    0 0 20px rgba(0,0,245,0.2);
}

/* ========================================= */
/* الجوال */
/* ========================================= */

@media (max-width: 768px) {

  .section-title {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 🔥 كرتين بالجوال */
    gap: 14px;
  }

  .service-card {
    padding: 18px;
    min-height: 180px;
    border-radius: 18px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 15px;
    line-height: 1.5;
    
  }

}

/* ========================================= */
/* موبايل صغير جدًا */
/* ========================================= */

@media (max-width: 480px) {

  .services-grid {
    grid-template-columns: 1fr; /* 🔥 صف واحد لو الشاشة صغيرة */
  }

}





/* ========================================= */
/* القسم الرابع: السلايدر */
/* ========================================= */




.simple-slider {
  width: 70%;
  margin: 60px auto;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.simple-track {
  display: flex;
  transition: transform 0.5s ease;
}

.simple-track img {
  width: 100%;
  flex-shrink: 0;
  height: 300px;
  object-fit: cover;
}

/* الأزرار */
.simple-prev,
.simple-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  
  color: #0000f5;
  border: none;
  font-size: 22px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}

.simple-prev { left: 10px; }
.simple-next { right: 10px; }

/* جوال */
@media (max-width: 768px) {
  .simple-slider { width: 92%; }
  .simple-track img { height: 200px; }
}



/* ========================================= */
/* القسم الخامس: البوكس الأبيض */
/* ========================================= */

.info-section {
  width: 100%;
  margin: 0 auto 80px;
  
}

.info-box {
  width: 70%;
  max-width: 900px;
  min-height: auto;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.info-tabs {
  width: 100%;
  background: #1515f9;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tab-btn {
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 16px;
  padding: 16px 10px;
  font-family: bbb, Arial, sans-serif;
  font-size: 21px;
  cursor: pointer;
  transition: 0.3s ease;
  height: 50px;
}

.tab-btn.active {
  background: #ffffff;
  color: #0000f5;
  
}

.tab-content {
  display: none;
  padding: 42px 36px;
  
}

.tab-content.active {
  display: block;
  
}

.tab-content h3 {
  margin: 0 0 18px;
  color: #0000f5;
  font-size: 36px;
}

.tab-content p {
  margin: 0;
  color: #7f7f7f;
  font-size: 22px;
  line-height: 2;
  font-weight: 300;
  
}



/* ========================================= */
/* القسم السادس */
/* ========================================= */

.cta-section {
  width: 90%;
  margin: 80px auto;
  background: #0000f5;
  border-radius: 30px;
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  margin: 0 0 15px;
  font-size: 35px;
}

.cta-section p {
  margin: 0 0 30px;
  font-size: 18px;
  color: #dcdcdc;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-buttons a {
  background: #fff;
  color: #0000f5;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-buttons a:hover {
  transform: scale(1.05);
}







/* ========================================= */
/* القسم السابع */
/* ========================================= */

.stats-section {
  width: 90%;
  margin: 60px auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 10px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h3 {
  margin: 0;
  color: #0000f5;
  font-size: 32px;
}

.stat-box p {
  margin: 8px 0 0;
  color: #777;
  font-size: 16px;
}





/* ========================================= */
/* القسم الثامن */
/* ========================================= */

.testimonials-section {
  width: 90%;
  margin: 80px auto;
  text-align: center;
}

.testimonials-section h2 {
  color: #0000f5;
  font-size: 40px;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card p {
  color: #777;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-card h4 {
  margin: 16px 0 4px;
  color: #0000f5;
}

.testimonial-card span {
  font-size: 14px;
  color: #aaa;
}






/* ========================================= */
/* القسم التاسع */
/* ========================================= */

.contact-section {
  width: 90%;
  margin: 80px auto;
  background: linear-gradient(135deg, #0000f5, #1a1aff);
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.contact-section h2 {
  margin: 0 0 10px;
  font-size: 38px;
}

.contact-section p {
  margin: 0 0 30px;
  color: #dcdcdc;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-actions a {
  background: #fff;
  color: #0000f5;
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-actions a:hover {
  transform: scale(1.05);
}















/* ========================================= */
/* القسم الحادي عشر */
/* ========================================= */



.clients-section {
  width: 90%;
  margin: 80px auto;
  text-align: center;
}

.clients-section h2 {
  color: #0000f5;
  font-size: 36px;
  margin-bottom: 40px;
}

/* الشبكة */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* الكرت */
.client-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* الصورة */
.client-card img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  opacity: 0.9;
  transition: 0.3s;
}

/* هوفر */
.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.1),
    0 0 15px rgba(0,0,245,0.25);
}

.client-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}






/* ========================================= */
/* القسم الثاني عشر كيف نعمل */
/* ========================================= */

.process-section {
  width: 90%;
  margin: 80px auto;
  text-align: center;
}

.process-section h2 {
  color: #0000f5;
  font-size: 38px;
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* ✅ 3 كروت */
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

/* الكرت */
.process-step {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.process-step:hover {
  transform: translateY(-6px);
}

.process-step span {
  font-size: 26px;
  color: #0000f5;
  font-weight: bold;
}

.process-step h3 {
  margin: 10px 0;
}

.process-step p {
  color: #ababab;
  font-size: 14px;
}







/* ========================================= */
/* القسم الثالث عشر */
/* ========================================= */

.before-after-section {
  width: 90%;
  margin: 80px auto;
  text-align: center;
}

.before-after-section h2 {
  color: #0000f5;
  font-size: 36px;
  margin-bottom: 30px;
}
.before-after-section h5{
  color: #a7a7a7;
  line-height: 0%;
  font-size: 9px;
}

.before-after-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  

}

.before,
.after {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.before img,
.after img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.before span,
.after span {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #0000f5;
  color: #fff;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 14px;
}






/* ========================================= */
/* القسم الخامس عشر */
/* ========================================= */

.marquee-section {
  width: 100%;
  margin: 60px 0;
  overflow: hidden;
}

.marquee {
  width: 100%;
  background: #0000f5;
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll 12s linear infinite;
}

.marquee-track span {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}









/* ========================================= */
/* القسم السادس عشر */
/* ========================================= */

.glass-section {
  width: 90%;
  margin: 80px auto;
}

.glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.glass-card {
  padding: 10px;
  border-radius: 20px;

  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.3);

  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.glass-card:hover {
  transform: translateY(-6px);
}

.glass-card h3 {
  color: #0000f5;
  padding-right: 30px;
  
}

.glass-card p {
  color: #9c9c9c;
  padding-right: 30px;
}







/* ========================================= */
/*  الباقات. القسم الثامن عشر */
/* ========================================= */



.pricing-section {
  width: 90%;
  margin: 80px auto;
  text-align: center;
}

.pricing-section h2 {
  color: #0000f5;
  font-size: 38px;
  margin-bottom: 40px;
}

/* الشبكة */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* الكرت */
.price-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 🔥 هوفر */
.price-card:hover {
  transform: scale(1.05);
  box-shadow: 
    0 12px 28px rgba(0,0,0,0.1),
    0 0 20px rgba(0,0,245,0.25);
}

/* الباقة المميزة */
.price-card.featured {
  border: 2px solid #0000f5;
}

/* العنوان */
.price-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

/* السعر */
.price {
  color: #0000f5;
  font-size: 28px;
  margin: 0 0 15px;
  font-weight: bold;
}

/* القائمة */
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-card ul li {
  margin-bottom: 8px;
  color: #777;
  font-size: 16px;
}

/* زر الطلب */
.order-btn {
  display: block;
  margin-top: 20px;
  background: #0000f5;
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: bold;
  transition: 0.3s;
}

/* هوفر الزر */
.order-btn:hover {
  background: #1111ff;
  transform: scale(1.03);
  box-shadow: 0 0 15px #0000f5;
}

/* ========================================= */
/* الجوال */
/* ========================================= */

@media (max-width: 768px) {

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 20px;
  }

  .price {
    font-size: 24px;
  }

}






/* ========================================= */
/* القسم التاسع عشر: رحلة العميل */
/* ========================================= */

.timeline-section {
  width: 90%;
  margin: 80px auto;
}

.timeline-section h2 {
  text-align: center;
  color: #0000f5;
  font-size: 38px;
  margin-bottom: 40px;
}

/* الخط */
.timeline {
  position: relative;
  padding-left: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #0000f5;
}

/* العنصر */
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

/* الدائرة */
.circle {
  position: absolute;
  left: 4px;
  top: 32px;

  width: 5px;
  height: 5px;

  background: #0000f5;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 10px;
  font-weight: bold;

  box-shadow: 0 0 1px #0000f5;
  text-align: center;
  font-size: 20px ;
  
}

/* المحتوى */
.content {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  margin-left: 40px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.3s;
}

/* هوفر */
.content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* النص */
.content h3 {
  margin: 0 0 6px;
  color: #0000f5;
}

.content p {
  margin: 0;
  color: #777;
  line-height: 1.6;
}





/* ========================================= */
/*   القسم  العشرون*/
/* ========================================= */


/* ========================================= */
/* FAQ متقدم */
/* ========================================= */

.faq-advanced {
  width: 90%;
  margin: 80px auto;
}

.faq-advanced h2 {
  text-align: center;
  color: #0000f5;
  font-size: 36px;
  margin-bottom: 30px;
}

/* الصندوق */
.faq-container {
  max-width: 700px;
  margin: auto;
}

/* العنصر */
.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 5px 14px rgba(0,0,0,0.05);
}

/* السؤال */
.faq-question {
  width: 100%;
  padding: 18px;
  border: none;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: bbb;
  font-size: 18px;
  cursor: pointer;
  color: #1d1d1d;
}

/* الأيقونة */
.faq-question i {
  font-style: normal;
  font-size: 22px;
  color: #0000f5;
  transition: 0.3s;
}

/* الإجابة */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 18px 18px;
  color: #777;
  line-height: 1.8;
}

/* حالة الفتح */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active i {
  transform: rotate(45deg);
}




/* ========================================= */
/*   القسم الحادي والعشرون زر ختامي*/
/* ========================================= */





.final-contact {
  width: 90%;
  margin: 100px auto;
  background: #ffffff; /* ✅ أبيض */
  border-radius: 30px;
  padding: 60px 20px;
  text-align: center;

  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* العنوان */
.final-contact h2 {
  margin: 0 0 10px;
  font-size: 36px;
  color: #0000f5; /* أزرق الهوية */
}

/* النص */
.final-contact p {
  margin: 0 0 30px;
  color: #777;
}

/* الأزرار */
.final-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* زر واتساب */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}

/* زر ايميل */
.btn-email {
  background: #0000f5;
  color: #fff;
  padding: 12px 24px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s;
}

/* هوفر */
.btn-whatsapp:hover,
.btn-email:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0,0,245,0.3);
}




/* ========================================= */
/*   القسم الاخير الفوتر*/
/* ========================================= */

.site-footer {
  width: 100%;
  background: #0000f5;
  padding: 50px 0 24px;
}

.footer-grid {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.footer-col img{
  justify-content: right;
  width: 50px;
  height: 50px;
}
.footer-col h4 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 28px;
}

.footer-col p,
.footer-col a {
  display: block;
  margin: 0 0 12px;
  color: #d9d9d9;
  font-size: 18px;
  line-height: 1.8;
}

.footer-bottom {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 18px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
}



/* ========================================= */
/* تجاوب الجوال */
/* ========================================= */

@media (max-width: 768px) {
  .site-header {
    width: 90%;
    height: 120px;
    margin: 20px auto 36px;
    border-radius: 28px;
  }

  .header-inner {
    padding: 0 16px;
  }

  .brand-side {
    gap: 10px;
  }

  .logo-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .brand-text h1 {
    font-size: 22px;
  }

  .brand-text p {
    font-size: 13px;
    margin-top: 6px;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
  }

  .menu-btn span {
    width: 23px;
    height: 2.5px;
  }

  .overlay-menu {
    top: calc(100% + 10px);
    min-height: 230px;
    border-radius: 24px;
    gap: 20px;
    padding: 26px 16px;
  }

  .overlay-menu a {
    font-size: 22px;
  }

  .hero-section {
    margin: 10px auto 24px;
  }

  .hero-section h2 {
    font-size: 34px;
  }

  .hero-section p {
    font-size: 20px;
  }

  .album-section {
    margin-bottom: 40px;
  }

  .album-wrap {
    width: 90%;
    max-width: 360px;
    height: 320px;
  }

  .album-card {
    width: 100px;
    height: 240px;
    border-radius: 18px;
  }

  .album-card span {
    bottom: -26px;
    font-size: 20px;
  }

  .card-a {
    transform: translateX(-70px) rotate(-10deg) scale(0.9);
  }

  .card-b {
    transform: translateX(0) scale(1);
  }

  .card-c {
    transform: translateX(70px) rotate(10deg) scale(0.9);
  }

  .album-wrap:hover .card-a {
    transform: translateX(-80px) rotate(-10deg) scale(0.82);
  }

  .album-wrap:hover .card-b {
    transform: scale(1.08);
  }

  .album-wrap:hover .card-c {
    transform: translateX(80px) rotate(10deg) scale(0.82);
  }

  .services-grid {
    width: 90%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-card {
    min-height: 180px;
    padding: 12px;
    border-radius: 16px;
  }

  .service-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .service-content p {
    font-size: 12px;
    line-height: 1.7;
  }

  .service-bar {
    height: 42px;
    border-radius: 12px;
    padding: 0 12px;
    margin-top: 12px;
  }

  .service-bar span {
    font-size: 20px;
  }

  .slider-box {
    width: 90%;
    gap: 8px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .slide-item {
    height: 220px;
    border-radius: 18px;
  }

  .info-box {
    width: 90%;
    min-height: 560px;
    border-radius: 22px;
  }

  .info-tabs {
    padding: 12px;
    gap: 8px;
  }

  .tab-btn {
    font-size: 13px;
    border-radius: 12px;
    padding: 12px 6px;
  }

  .tab-content {
    padding: 24px 18px;
  }

  .tab-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .tab-content p {
    font-size: 15px;
    line-height: 2;
  }

  .footer-grid {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-col h4 {
    font-size: 20px;
  }

  .footer-col p,
  .footer-col a {
    font-size: 14px;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}
.info-box {
  width: 90%;
  min-height: auto; /* ✅ الحل */
  border-radius: 22px;
}



@media (max-width: 768px) {

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-section h2 {
    font-size: 26px;
  }

}

@media (max-width: 768px) {

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 768px) {

  .glass-grid {
    grid-template-columns: 1fr;
  }

  .marquee-track span {
    font-size: 16px;
  }

}

@media (max-width: 768px) {

  .timeline-section h2 {
    font-size: 26px;
  }

  .content {
    margin-left: 35px;
    padding: 16px;
  }

  .circle {
    width: 24px;
    height: 24px;
  }

}


@media (max-width: 768px) {

  .final-contact h2 {
    font-size: 26px;
  }

  .final-contact p {
    font-size: 16px;
  }

  .final-buttons {
    flex-direction: column;
  }

}


@media (max-width: 768px) {

  .process-grid {
    grid-template-columns: repeat(2, 1fr); /* صفين */
  }

  .process-step {
    padding: 20px;
  }

}

