@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&family=Tajawal:wght@400;700&display=swap');

:root {
  --primaryColor: #0A6FAE;
  --middleColor: #393E46;
  --helperColor: #053758;
  --lightHelper: #58585A;
  --hrColor: #A9B5DF;
  --transparentColor: rgba(0, 0, 0, 0.699);
  --shadow: rgba(189, 188, 188, 0.514);
  /* --------------------------------- */
  --whatsappColor: #25D366;
  --white: #ffff;
  --blue: #1877F2;
  --green: #25D366;
  --gray: #f8f8f8;
  --container-width: 1340px;
  --header-height: 90px;
  /* 👈 غيّر الرقم حسب الارتفاع اللي تحبه */

}
body::-webkit-scrollbar {
    width: 8px
}

body::-webkit-scrollbar-track {
    background-color: transparent
}

body::-webkit-scrollbar-thumb {
    background-color: var(--lightHelper);
    background-image: linear-gradient(0deg, var(--lightHelper) 0%, var(--helperColor) 100%);
    border-radius: 5px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.5s;

}

ul {
    list-style: none;
}
:root {
  --text: #1a1f2e;
}

.may-contact{
  background-color: var(--lightHelper);
  background-image: url("../img/contact.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin: 60px auto;
  color: var(--white);
  padding: 60px 20px;
}
.may-contact .contact-title{
  text-align: center;
  margin-bottom: 60px;
}
.may-contact .contact-title h2,.may-contact .contact-title h1 {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}
.may-contact .contact-title h2::after,.may-contact .contact-title h1::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border: var(--white) ;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}
.contact-flow {
  display: flex;
  justify-content: space-between;
 
}

.flow-item {
  flex: 1;
  text-align: center;
  z-index: 1;
  position: relative;
}
.flow-item::after{
  content: "";
  position: absolute;
  right: -30%;
  top: 20%;
  width: 60%;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}
.flow-item:nth-child(1)::after{
  display: none;
}

/* دائرة الأيقونة */

.icon-contact {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--white);
  color:var(--helperColor);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* العناوين */
.flow-item h3 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--white);
}

/* قائمة الأرقام/الروابط */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-list a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  direction: ltr;
}
.contact-list a:nth-last-child(1){
  direction: rtl;
}
 /* ---------------- map section --------------------------------- */

 .address-container{
  margin:  auto;
  width: 90%;
  border-top: 1px solid var(--gray);
  transition: transform 0.4s ease-in;
}
.address-container:hover{
  transform: scale(1.1);
}

.address-title{
  text-align: center;
  align-content: center;
  margin: 40px auto;
  width: fit-content;
  margin:0px auto 30px auto;
  border-bottom: 4px solid var(--middleColor);
  

}

.address-title h1{
  font-size: 2.5rem;
  color: var(--primaryColor);
  
}
.address-title p{
 
  font-size: 1.5rem;
  color: var(--middleColor) ;
}

/* موبايل */
@media (max-width: 768px) {
  .contact-flow {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .flow-item::after{
    display: none;
  }
  .contact-list a {
    font-size: 18px;
    font-weight: 600;
  }
  /* العناوين */
.flow-item h3 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--white);
}
.may-contact{
  background-position: -1530px;
}
}

