@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Cairo+Play:wght@200..1000&family=Noto+Kufi+Arabic:wght@100..900&display=swap');

:root {
  --first-color: hsl(38, 92%, 58%);
  --first-color-light: hsl(38, 100%, 78%);
  --second-color: hsl(195, 75%, 52%);
  --dark-color: hsl(212, 40%, 12%);
  --white-color: hsl(212, 4%, 95%);
  --body-color: hsl(212, 42%, 15%);
  --container-color: rgba(255, 255, 255, 0.1);
  --h2-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --transition: 0.3s ease;
}



.card__content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.card__article {
  width: 100%; /* يبدأ بحجم البطاقة يناسب الهواتف */
  max-width: 180px; /* تقليل حجم البطاقة */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 1rem;
  background-color: #ffffff;
  overflow: hidden;
  height: 250px; /* تقليل ارتفاع البطاقة */
  transition: transform 0.2s ease-in-out; /* تخفيف الحركة */
}

.card__article:hover {
  transform: scale(1.02); /* تكبير بسيط للغاية */
}


.card__image {
  width: 170px; 
  height: 170px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;

  object-fit: cover; /* يضمن تغطية الصورة للحاوية */
}

.card__data {
  padding: 0.2rem; /* تقليل padding */
  text-align: center;
}

.card__name {
  font-size: 1rem; /* تقليل حجم الخط */
  margin-bottom: 0.2rem;
}

.card__button {
  display: inline-block;
  width: 99px; /* تقليل عرض الزر */
  background-image: linear-gradient(-45deg, #d3d2d2 0%, #f7dafaf2 100%);
  color: #000;
  padding-left: 10PX; 
  padding-right: 10PX; 
  box-shadow: 0 10px 36px rgba(0, 0, 0, .15);
  font-weight: var(--font-semi);
  border-radius: .5rem;
  transition: background-color var(--transition);
}

.card__button:hover {
  background-image: linear-gradient(-45deg, #e586e4 0%, #ed989890 100%);
  color: rgb(230, 230, 0);

}

@media screen and (max-width: 668px) {
  .card__article {
      width: 45%; /* عرض 2 جنبًا إلى جنب */
  }

  .card__image img {
      width: 150px; /* تقليل عرض الصورة */
      height: 175px; /* تقليل ارتفاع الصورة */
      border-radius: 10px;
      object-fit: cover;
  }
}

@media screen and (min-width: 769px) and (max-width: 1120px) {
  .card__article {
      width: 30%; /* عرض 3 جنبًا إلى جنب */
  }
}











/* Modal Container */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Image */
.modal-content {
margin: auto;
display: block;

width: 80%;
max-width: 700px;
margin-top: 170px;
}

/* Close Button */
.close {

position: absolute;
top: 40px;
right: 35px;
color: rgb(255, 255, 255);
font-size: 30px;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
}
/* Close Button */
.close2 {
position: absolute;
top: 20px;
right: 35px;
color: rgb(255, 255, 255);
font-size: 15px;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
}

.close:hover,
.close:focus {
color: #f10606;
text-decoration: none;
cursor: pointer;
}

/* Animation for the Modal */
.modal-content {
animation-name: zoom;
animation-duration: 0.6s;
}

@keyframes zoom {
from {
    transform: scale(0);
}
to {
    transform: scale(1);
}
}


#fullImage {
width: 230px;
height: 350px;

}

:root{
  --header-height: 3rem;
  --font-semi: 600;
}
main {
  background-color: var(--first-color);
}

/*===== Colores =====*/
:root{
  /*===== Colors =====*/
  /* --first-color: #FCA4A6; */
  --first-color: #fae3ee;
  --second-color: #000;
  --first-color-darken: #A83E51;
}

/*===== Fuente y tipografia =====*/
:root{
  --body-font: "Cairo Play", serif;
  --big-font-size: 2.5rem;
  --h2-font-size: 1.25rem;
  --normal-font-size: 0.938rem;
}
@media screen and (min-width: 768px){
  :root{
    --big-font-size: 3.5rem;
    --h2-font-size: 2rem;
    --normal-font-size: 1rem;
  }
}
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  overflow: hidden;
  background: url('/prodects/22.jpg') center/cover no-repeat; /* صورة احتياطية */
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}


@media (max-width: 768px) {
  .hero-video {
    object-fit: cover;
    object-position: left;       
    width: 100%;                 
    height: 110vh;               
  }
}
/*===== Margenes =====*/
:root{
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
}

/*===== z index =====*/
:root{
  --z-back: -10;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*===== BASE =====*/
*,::before,::after{
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
.kala{
  font-family: "Cairo Play", serif;
  color: 	#c53852;
  font-weight: bold;
  font-size: 31px;

}
.kala2{
  color: 	#A83E51;
  font-size: 15px;
  font-weight: bold;
  text-align: left;
  
}
.kala5{
  color: 	#A83E51;
  font-size: 19px;
  font-weight: bold;
  text-align: left;
  
}

body{
  
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--second-color);
  background-color: #fff;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}

h1,h2,p{
  margin: 0;
  
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
a{
  text-decoration: none;
}
img{
  max-width: 100%;
  height: auto;
}


/*===== CLASS CSS ===== */
.section-title{
  position: relative;
  font-size: var(--h2-font-size);
  color: #000;
  text-align: center;
}
.section-title::after{
  position: absolute;
  content: "";
  width: 64px;
  height: 0.18rem;
  left: 0;
  right: 0;
  margin: auto;
  top: 2rem;
  margin-top: 10px;
  background-color: var(--first-color-darken);
}
.section{
  padding-top: 3rem;
  padding-bottom: 1rem;
}

/*===== LAYOUT =====*/
.bd-grid{
  max-width: 1024px;
  display: grid;
  grid-template-columns: 100%;
  grid-column-gap: 2rem;
  width: calc(100% - 2rem);
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}
.l-header{
  width: 100%;
  height: 80px;
  position: fixed;
  padding-top: 15px;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: #fffffff1;
  box-shadow: 0 1px 4px rgba(146,161,176,.15);
}
.sosyalmidye{
  display: none;
}

.sosyalmidyeAll h1{
  display: none;
}

/*===== NAV =====*/
.nav{
  height: var(--header-height);
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-weight: var(--font-semi);
}
.close-btn{
  display: none;
}
@media screen and (max-width: 668px) {
  .nav__menu {
    position: fixed;
    top: -2px;
    right: -100%; 
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    background-color: var(--second-color);
    transition: right 0.5s ease; 
  }

  .nav__menu.show {
    right: 0; 
  }
  .close-btn {
    display: block;
    position: absolute;
    top: 40px;
    right: 300px;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 1000;
  }
  
  .close-btn:hover {
    color: rgb(255, 0, 0);
  }
 
  .sosyalmidye{
    display: flex;
    justify-content:center;
    align-items: center;
    flex-direction: row;
  }

  
  .sosyalmidyeAll h1{
    display: flex;
    justify-content:center;
    align-items: center;
    flex-direction: row;
    margin-top: 20px;
  }
  /* الحركة (Animation) */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* التصميم العام */
.sosyalmidye {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;

}

/* الصورة */
.sosyalmidye img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: 27px;
  transition: transform 0.3s;
}

/* تأثير عند تمرير الماوس */
.sosyalmidye img:hover {
  transform: scale(1.1) rotate(10deg);
  transition: transform 0.3s ease;
}

}
.nav__item{
  margin-bottom: 3rem;
  color: black;
}
.nav__link{
  position: relative;
  color: #ffffff;

  font-size: 22px;

}
.nav__link:hover{
  position: relative;
}
.nav__link:hover::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color-darken);
}
.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo img {
  width: 95px;
  margin-right: 10px;
  
}

.logo-txt {
  color: #8B4513;
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
}

/* لشاشات الأجهزة الصغيرة مثل الهواتف */
@media (max-width: 576px) {
  .logo-txt {
    font-size: 18px; /* حجم أصغر للنص */
  }
}

/* لشاشات الأجهزة المتوسطة مثل التابلت */
@media (min-width: 277px) and (max-width: 568px) {
  .logo-txt {
    font-size: 17px; /* حجم متوسط للنص */
  }
}

/* لشاشات الأجهزة الكبيرة مثل أجهزة الكمبيوتر */
@media (min-width: 769px) {
  .logo-txt {
    font-size: 24px; /* حجم أكبر للنص */
  }
}
.nav__toggle{
  color: black;
  font-size: 1.5rem;
  cursor: pointer;
}

/*Active menu*/
.active::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color);
}



/*===== HOME =====*/
.home{
  height: calc(100vh - 3rem);
  row-gap: 1rem;
  color: white;

}
.home__data{
  align-self: center;
}
.home__title{
  color: #ffffff;
  font-weight: bold;
  font-family: "Cairo Play", serif;
  font-size: 41px;
}
.home__title-color{
  color:  #ffffff;
  font-size: 33px;

}

.prodect-slide {
  width: 100%; 
  height: 200px;
  max-width: 900px;
  margin: 5px; 
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 10%;
  object-fit: cover; 
}

/* شاشة كبيرة الحجم (كمبيوتر مكتبي) */
@media screen and (min-width: 1024px) {
  .prodect-slide {
    height: 0px; 
    max-width: 0px;
  }
}

/* شاشة متوسطة الحجم (تابلت) */
@media screen and (max-width: 1024px) {
  .prodect-slide {
    height: 200px; /* تقليل ارتفاع السلايدر */
    max-width: 200px; /* تقليل العرض */
  }
}

/* شاشة صغيرة الحجم (موبايل) */
@media screen and (max-width: 768px) {
  .prodect-slide {
    height: 150px; /* تقليل ارتفاع السلايدر */
    max-width: 150px; /* تقليل العرض */
    
  } .section-title::after{
    width: 80px;
    top: 3rem;
  }
}

/* شاشة صغيرة جدًا (هواتف صغيرة) */
@media screen and (max-width: 480px) {
  .prodect-slide {
    height: 80px; /* تقليل الارتفاع أكثر */
    max-width: 70px; /* تقليل العرض */
  }
   .section-title::after{
    width: 80px;
    top: 3rem;
  }
  .swiper-slide img {
    border-radius: 5%; /* تقليل استدارة الصور */
  }
}





/*BUTTONS*/
.button2{
  display: inline-block;
  background-image: linear-gradient(-45deg, #f1eeeb 0%, #f1eeef 100%);
  color:#000;
  box-shadow: 0 10px 36px rgba(0,0,0,.15);
  padding: .30rem 2rem;
  font-weight: var(--font-semi);
  border-radius: .5rem;
}
.button2:hover{
  box-shadow: 0 10px 36px rgba(0,0,0,.15);
  background-color: var(--first-color-darken);
  color: #000;
}
.button {
  font-size: 18px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 0.7em 2em;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.564), 1px 1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

.button:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  border-radius: 14px;

  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #ffffff3f;
  z-index: -1;
}

.button:hover, .button:focus {
  color: rgb(0, 0, 0);
  
}

.button:hover:before, .button:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.button:active {
  transform: scale(0.9);
}
/* ===== ABOUT =====*/
.about__container{
  row-gap: 2rem;
  text-align: center;
}
.about__img img {
  width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.about__img img:hover {
  transform: scale(1.05);
}

.about__content {
  text-align: justify;
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 500;
  color: #5a5a5a;
}

.about__subtitle {
  font-size: 1rem;
  font-weight: bold;
  color: #6d4c41;
  margin-bottom: 1rem;
}

.kala2 {
  font-weight: bold;
  color: #d2691e;
  font-size: 1.2rem;
}
span {
  color: #d2691e;
}

.about__content p {
  margin-bottom: 1rem;
}

.about__content span {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}
/* ===== SKILLS ===== */
.skills__container {
  background: #3d1c01;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: #e63946;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: "Cairo Play", serif;
}

.skills__text {
  margin-bottom: var(--mb-4);
  font-weight: bold;
  color: #ffffff;
  line-height: 1.8;
  font-family: "Cairo Play", serif;
}

.skills__data,
.skills__data2{
  color: #ffffff;

  background: rgba(29, 17, 6, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-family: "Cairo Play", serif;
  transition: transform 0.3s, box-shadow 0.3s;
}

.skills__data:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.skills__data p {
  color: #ffffff;

}

.skills__data2 {
  text-align: center;
  
}

.kala2 {
  color: #e63946;
  font-weight: bold;
  font-size: 1.1rem;
}
.skills__name {
  color: #ffffff;
  font-weight: bold;
}

.kala5 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #e63946;
}

.button2 {
  background: #deb2b6;
  color: #e63946;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.button2:hover {
  background: #e2a2a2;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}


/* ===== WORK =====*/
.work__container{
  row-gap: 2rem;
}
.work__img{
  box-shadow: 0 4px 25px rgba(14,36,49,.15);
  border-radius: .5rem;
  overflow: hidden;
}
.work__img img{
  transition: 1s;
  cursor: pointer;
}
.work__img img:hover{
  transform: scale(1.1);
}




/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 768px){
  body{
    margin: 0;
  }
  .section{
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  
  .section-title::after{
    width: 80px;
    top: 3rem;
  }

  .nav{
    height: calc(var(--header-height) + 1rem);
  }
  .nav__list{
    display: flex;
    font-family: "Cairo Play", serif;
    ;
    padding-top: 0;
  }
 
  
  .nav__item{
    margin-left: var(--mb-6);
    margin-bottom: 0;
  }
  .nav__toggle{
    display: none;
  }
  .nav__link{
    color: var(--second-color);
    font-size: 22px;

  }

  .home{
    height: 100vh;
  }
  .home__data{
    align-self: flex-end;
  }
  
  .home__img img{
    width: 500px;
    bottom: 5%;
    left: 18%;
  }
  .home__title{
    font-size: 80px;
    margin-top: 10px;
  }

  .about__container {
    grid-template-columns: repeat(2,3fr);
    align-items: center;
    text-align: initial;
  }
  .about__img img{
    width: 300px;
  }
  .work__container{
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2,1fr);
    column-gap: 2rem;
  }
  .contact__form{
    width: 360px;
  }
  .contact__container{
    justify-items: center;
  }
  .skills__data {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (min-width: 1024px){
  .bd-grid{
    margin-left: auto;
    margin-right: auto;
  }
  .home__img img{
    right: 10%;
  }
}




address {
  background: #fddde7e0;

  padding: 40px 25px;
  background-size: cover;
  background-position: center;
  color: #000000;
  text-align: center; /* محاذاة النص في المنتصف */
}

address a {
  text-decoration: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
}

address a:hover {
  color: #ff9d00cd; 
}

address img {
  padding-top: 20px;
  transition: transform 0.4s ease-in-out; /* تأثير تكبير الصورة */
}

address img:hover {
  transform: scale(1.1);
}

#foneIcon, #iconeMapa, #iconeLocal {
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
}

#foneIcon:hover, #iconeMapa:hover, #iconeLocal:hover {
  transform: scale(1.1);
}

#googleMaps {
  display: block;
  border-radius: 15px;
  margin-top: 20px;
  max-width: 100%;
  width: 100%;
}

.hide-map #googleMaps {
  display: none;
}

/* عند الشاشات الصغيرة */
@media (max-width: 575px) {
  .Container {
    max-width: 100%;
  }

  .Flex6 {
    flex-direction: column;
  }

  #googleMaps {
    display:none;
  }

  #iconeLocal {
    display: none;
  }

  #iconeMapa {
    display: inline;
  }
}

/* عند الشاشات من 576px فما فوق */
@media (min-width: 576px) {
  .Container {
    max-width: 540px;
  }

  .Flex6 {
    flex-direction: row-reverse;
  }

  #iconeLocal {
    display: inline;
  }

  #googleMaps {
    display: none;
  }

  #iconeMapa {
    display: none;
  }
}

/* عند الشاشات من 768px فما فوق */
@media (min-width: 768px) {
  .Container {
    max-width: 720px;
  }

  .Flex6 {
    flex-direction: row-reverse;
  }

  #iconeLocal {
    display: inline;
    font-size: large;
    margin-bottom: 10px;
  }

  #googleMaps {
    display: none;
  }

  #iconeMapa {
    display: none;
  }
}
/* عند الشاشات من 992px فما فوق */
@media (min-width: 992px) {
  .Container {
    max-width: 1140px;
    display: flex; /* نستخدم flexbox لتنظيم العناصر بشكل أفقي */
    justify-content: space-between; /* توزيع العناصر بشكل متساوي */
  }

  .Flex6 {
    display: flex; /* استخدام flexbox */
    flex-direction: row; /* ترتيب العناصر بشكل أفقي */
    justify-content: space-between; /* توزيع المسافة بين الخريطة والمحتوى */
    width: 100%; /* تأكد من أن الحاوية تأخذ العرض الكامل */
    margin-right: 110px;
  }

  #googleMaps {
    display: block; /* إظهار الخريطة */
    width: 48%; /* جعل الخريطة تشغل نصف العرض */
    border-radius: 8px; /* إضافة حواف دائرية للخريطة */
  }

  /* تنسيق المحتوى الذي يظهر على اليمين */
  #contato {
    display: block;
  }  

  #contato a {
    margin-bottom: 10px; /* إضافة مسافة أسفل الروابط */
  }

  /* تنسيق الأيقونات لجعلها بجانب بعضها */
  #foneIcon, #iconeMapa, #iconeLocal {
    margin-right: 15px; /* إضافة مسافة بين الأيقونات */
  }

  #iconeLocal p, #foneIcon p {
    margin-top: 5px; /* إضافة مسافة بين الأيقونات والنصوص */
  }

  #iconeLocal p {
    display: inline-block;
    font-size: large;
  }

  /* ضمان أن النصوص والخريطة في صف واحد */
  #contato, #googleMaps {
    margin-bottom: 10px;
  }

}


/* عند الشاشات من 1200px فما فوق */
@media (min-width: 1200px) {
  .Container {
    max-width: 1140px;
  }

  .Flex6 {
    flex-direction: row;
    justify-content: space-between;
  }

  address {
    padding-top: 60px;
  }

  #googleMaps {
    display: inline;
  }

  #iconeMapa {
    display: none;
  }

  #iconeLocal p {
    display: inline;
    margin-bottom: 10px;
  }
}

.Container .center-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.Container .center-icon a {
  display: block;
  position: relative;
}

/* ===== FOOTER STYLE ===== */
.footer {
  background: #fddde7e0;
  color: #000000; /* النص أبيض */
  padding: 10px 20px; /* تقليل الحواف */
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* إبقاء المحتوى متباعدًا */
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}

.footer-container div {
  flex: 1 1 auto;
  min-width: 120px;
  text-align: center;
}

.footer-about,
.footer-links,
.footer-social {
  margin: 0;
  padding: 0;
}


.footer h3 {
  font-size: 14px;
  margin: 5px 0;
  border: none; 
  color: #A83E51;
}

.footer p {
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  color: #000000;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
}

.footer-links li {
  margin: 5px 0;
}

.footer-links a {
  color: #000000; /* لون مميز */
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffab40; /* لون عند التمرير */
}

.footer-social .social-icons a {
  display: inline-block;
  margin: 0 5px;
}

.footer-social .social-icons img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.footer-social .social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  margin: 0;
  font-size: 12px;
  color: #fff;
  text-align: center; /* محاذاة النص في المنتصف */
  width: 100%;
}

/* ===== MEDIA QUERY ===== */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    height: auto; /* لجعل الطول متغيرًا على الشاشات الصغيرة */
    padding: 10px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-container div {
    min-width: 100px;
  }

  .footer-bottom{
    text-align: center;
  }

  .footer-links ul {
    text-align: center;
  }

  .footer-social .social-icons img {
    width: 20px;
    height: 20px;
  }
}




/* ستايلات عامة */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


h2.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #3a3a3a;
}

/* حاوية الخدمات */
.services {
  padding: 20px;
}

.services-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

/* تنسيق كل بوكس */
.service-box {
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  background-color: #ddafaf66;

  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* تأثيرات عند التمرير فوق البوكس */
.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* الأيقونات */
.icon {
  font-size: 2rem;

  margin-bottom: 15px;
  
}

/* النصوص */
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

p {
  font-size: 1rem;
  color: #383535;
}

/* الأنيميشن */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* التصميم المتجاوب */
@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    width: 80%;
    margin-bottom: 20px;
    background-color: #ddafaf66;
  }
}
address img{
  width: 33px;
}

.chocolate-section {
  background: #fddde7e0;
  color: #000000; /* لون فاتح يتناسب مع الشوكولا */
  text-align: center;
  padding: 50px 20px;
}
.chocolate-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}
.chocolate-section button {
  background-color: #e2b1c989; /* لون مستوحى من الكريمة */
  color: #000000;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.chocolate-section button:hover {
  background-color: #d0a79e4b;
  color: #000000;
  border: 2px solid #f3ccdf;
}

/* تنسيق الأيقونة */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.whatsapp-icon img {
  width: 40px; /* حجم الأيقونة */
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.notification {
  position: absolute;
  top: 0;
  right: 0;
  color: white;
  width: 185px;
  height: 20px;
  background-color: #3cff00;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  display: none; /* إخفاء الإشعار */
}

/* تخصيص الاستجابة للأجهزة المختلفة */
@media (max-width: 600px) {
  .whatsapp-icon img {
      width: 35px;
      height: 35px;
  }
  .notification {
      font-size: 14px;
      width: 185px;
      margin-right: 35px;
      margin-top: 8px;

      height: 20px;
  }
}

/* عند الضغط على الأيقونة */
.whatsapp-icon:hover .notification {
  display: block;
}

.modal2 {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content2 {
  background: #eacce5;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  position: relative;
}


/* Modal Button */
.modal-button {
background-image: linear-gradient(-45deg, #FFC796 0%, #FF6B95 100%);
  color: #000000;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.modal-button:hover {
  background: #e788a4e0;
  color: #ffffff;
  transform: translateY(-9px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.close3 {
  position: absolute;
  top: 0px;
  right: 20px;
  font-size: 38px;
  cursor: pointer;
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
}
.close3:hover {

  color: rgb(255, 0, 0);
}

/* Default Modal Styling for Large Screens (Laptops, Desktops) */
.modal-content2 {
  width: 60%;
  height: 100%;
  margin: auto;
  margin-top: 80px;
}

.modal2 img {
  width: 30%;
  height: 300px;
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid rgb(0, 0, 0); 
}


.modal2 h3 {
  margin: 15px 0;
  font-size: 28px;
  color: #000000;
  font-weight: bold;
}

.modal2 p {
  font-size: 18px;
  color: #2b2b2b;
  line-height: 1.6;
  font-weight: bold;

  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 8px;
}

/* Responsive Design for Smaller Screens (Phones) */
@media (max-width: 768px) {
  .modal2 {
      margin-top: 50px;

  }
  .modal-content2 {
      width: 100%;
      height: auto;
      padding: 15px;

  }

  .modal2 img {

      margin-top: 10px;
      width: 60%;
      height: 250px;
  }

  .modal2 h3 {
    font-size: 24px;
  color: #000000;
  font-weight: bold;
  }

  .modal2 p {
      font-size: 14px;
  }

  .modal-button {
      font-size: 14px;
      padding: 8px 16px;
  }
}


#copyLinkButton {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 10px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

#copyLinkButton:hover {
  background-color: #fa0000;
}

/* تخصيص شريط التمرير */
::-webkit-scrollbar {
  width: 8px; /* عرض الشريط */
  background-color: #f1f1f1; /* لون الخلفية */
}

/* لون مقبض التمرير */
::-webkit-scrollbar-thumb {
  background: #FF6B95; /* لون المقبض */
  border-radius: 4px; /* حواف ناعمة */
}

/* لون المقبض عند التمرير فوقه */
::-webkit-scrollbar-thumb:hover {
  background: #FF6B95; 
}

/* تخصيص الشريط في الاتجاه الأفقي (اختياري) */
::-webkit-scrollbar-track {
  background: #fff; /* لون الخلفية */
}


