@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cairo';
  src: url('../fonts/Cairo-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}
html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ==== CSS VARIABLES ==== */
:root {
  --primary-color: #5e2590;
  --secondary-color: #0054bb;
  --accent-color: #0077d1;
  --light-accent: #0095d3;
  --teal-accent: #00afc6;
  --mint-accent: #00c7b2;
  --link-color: white;
  --btn-hover-color: #4a1d6e;
  --lg-heading: #ffffff;
  --text-content: #f0f0f0;
  --fixed-header-height: 4.5rem;
  --font-size-body-text: clamp(14px, 1.6vw, 16px);
  --h1-font-size: calc(var(--font-size-body-text) * 2.4);
  --h2-font-size: calc(var(--h1-font-size) - 15px);
  --h3-font-size: calc(var(var(--h2-font-size)) - 8px);
}

/* ==== RESET HTML ==== */
body {
  width: 100%;
  height: auto;
  overflow-x: hidden;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}
ul li {
  list-style-type: none;
}
a {
  text-decoration: none;
}
button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
/* ==== CONTAINER ==== */
.container {
  width: 100%;
}
@media screen and (min-width: 1040px) {
  .container {
    width: 1040px;
    margin: 0 auto;
  }
}
/* ==== HEADER ==== */
.header {
  height: var(--fixed-header-height);
  padding: 0 1.7rem;
  background-color: var(--primary-color);
  position: sticky;
  top: 0px;
  z-index: 2;
  background-color: #5e2590af;
}

/* ==== NAV ==== */
.nav {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ==== LOGO ==== */
/* ====  NAV-MENU  ==== */
.nav_menu_list {
  display: flex;
  align-items: center;
}
.nav_menu_list .nav_menu_item {
  margin: 0 2rem;
}
.nav_menu_item .nav_menu_link {
  font-size: 16.5px;
  line-height: 27px;
  color: var(--link-color);
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
.nav_menu_link:hover {
  color: var(--teal-accent);
}
.toggle_btn {
  font-size: 20px;
  font-weight: 600;
  color: var(--lg-heading);
  color: white;
  z-index: 4;
}
.nav_menu,
.close_btn {
  display: none;
}

.show {
  right: 3% !important;
}

/* ====  WRAPPER ==== */
.wrapper {
  width: 100%;
  padding-left: 1.7rem;
  padding-right: 1.7rem;
  padding-top: 5rem;
  margin-bottom: 5rem;
}

.wrapper .title {
  font-size: var(--h2-font-size);
  color: white;
}

.grid-cols-2 {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
.grid-item-1 {
  padding-top: 5rem;
  padding-left: 1.5rem;
}
.main-heading {
  font-weight: 300;
  font-size: var(--h1-font-size);
  line-height: 1.1;
  color: white;
  text-align: right;
}
.main-heading span {
 color: var(--teal-accent);
 font-weight: 900;
}
.info-text {
  margin-top: 1.5rem;
  font-size: 19px;
  line-height: 28px;
  color: var(--text-content);
  text-align: right;
}
.btn_wrapper {
  margin: .5rem 0;
  display: flex;
  width: 100%;
  justify-content:end;
}
.btn {
  width: 110px;
  height: 50px;
  background-color: var(--secondary-color);
  display: block;
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  border-radius: 7px;
  letter-spacing: 1px;
  transition: 0.4s;
  
}
.btn:hover {
  transform: translateY(-3px);
  background-color: var(--accent-color);
}
.documentation_btn {
  width: 150px;
  height: 55px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color) !important;
  letter-spacing: 0;
  background-color: white;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);

}
.documentation_btn:hover,
.documentation_btn:active {
  background-color: var(--secondary-color);
  color: white !important;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.grid-item-2 {
  width: 100%;
  height: 100%;
}
.team_img_wrapper {
  width: 500px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 440px;
}
.team_img_wrapper img {
  width: 100%;
    background-color: white;

  height: 100%;
  border-radius: 50%;
  border: 3px solid #00c7b2;
  -o-object-fit: contain;
     object-fit: contain;
}
.grid-cols-3 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem;
}


.grid-col-item {
  height: 100%;
 
}
.icon {
  width: 100%;
  line-height: 40px;
  text-align: center;
  
}
.icon svg {
  width: 30px;
  height: 30px;
  color: var(--teal-accent);
}
.featured_info {
  width: 100%;
}
.featured_info span {
  width: 100%;
  display: block;
  font-size: 21px;
  line-height: 33px;
  color: white;
}
.featured_info p {
  display: block;
  width: 100%;
  margin-top: 7px;
  font-weight: 400;
  color: var(--text-content);
  line-height: 25px;
  font-size: 15.5px;
  text-align: center;
}



/* ==== MEDIA QURIES FOR RESPONSIVE DESIGN ==== */
@media screen and (min-width: 1024px) {
  .toggle_btn {
    display: none;
  }
  .nav_menu {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    width: 100%;
  }
  .nav_menu button{
width: 120px;

font-size: 1rem;
 color:white;
  background-color: #0095d3 ; 
  padding: .3rem 1rem;
   border-radius: 1rem;
     transition: all .2s;

}
.nav_menu button:hover{
  background-color: white;
  color: #0054bb;
  transition: all .2s;
  box-sizing: 1px 1px 1px ;
  transform: translateY(-2px);
}
  header{
    width: 100vw !important;
  }
  .team_img_wrapper img{
    width: auto;

  }
  .cta_order{
    text-align: start;
  }
  nav{
justify-content: start ;
gap: 1rem;
  }
  .nav_menu_list{
    width: 100% !important;

  }
}

@media screen and (max-width: 1024px) {
  .nav_menu {
    position: fixed;
    width: 93%;
    height: 100%;
   display: block;
    top: 2.5%;
    right: -100%;
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    z-index: 50;
    transition: 0.4s;
  }
  nav .order_now_btm{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
font-size: 1.2rem;
margin-top: 1rem;
background-color: #0077d1;
color: white;
border-radius: 1rem;
    transition: all .2s;


  }
  nav .order_now_btm:hover,
    nav .order_now_btm:active{
    background-color: #4a1d6e;
    color: white;
    transform: scale(1.03);
    transition: all .2s;
  }
  .nav_menu_list {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 4rem;
  }
  .nav_menu_list .nav_menu_item {
    margin: 1rem 0;
    width: 100%;
    text-align: center;
  }
  .nav_menu_item .nav_menu_link {
    font-size: 18px;
    color: var(--primary-color);   
  }
  .close_btn {
    display: block;
    position: absolute;
    right: 10%;
    font-size: 25px;
    color: var(--primary-color);
  }
  .close_btn:hover {
    color: var(--secondary-color);
  }
  .wrapper {
    padding: 0 0.7rem;
  }
  .grid-item-1 {
    padding-left: 0rem;
  }
  .main-heading {
    font-size: var(--h1-font-size);
    line-height: 1.1;
  }
  .grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .featured_info p {
    line-height: 23px;
    font-size: 14px;
  }
  .nav_menu_item .nav_menu_link:hover{
    color: var(--teal-accent);
    transition: all .3s;
  }

}

@media screen and (max-width: 1024px) {
  .wrapper {
    padding-top: 3rem;
  }
  .grid-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
  .grid-item-1 {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0;
  }
  .main-heading {
    font-size: var(--h1-font-size);
    text-align: center;
    line-height: 1.1;
  }
  .info-text {
    font-size: 16px;
    text-align: center;
    padding: 0.7rem;
  }
  .btn_wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .grid-item-2 {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .team_img_wrapper {
    width: 350px;
    height: 350px;
  }
  .featured_info span {
    font-size: 19px;
  }



}

@media screen and (min-width:991px){
    .btn_wrapper{
display: flex;
justify-content: start;
  }
  .cta p{
    text-align: start !important;
  }
}
  

/*show menu */




/* protfolio */

.portfolio-section {

  text-align: center;
   background-color: rgba(255, 255, 255, 0.2); /* لون أبيض شفاف */
  backdrop-filter: blur(10px); /* تمويه الخلفية */
  -webkit-backdrop-filter: blur(10px); /* دعم Safari */
  border-radius: 16px;
  padding :2rem 1rem 4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3); /* حدود شفافة لإحساس الزجاج */
}
.portfolio-section h1{
  margin: 1.5rem 0;
  color: #facb1d;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  border: 1px solid #00c7b2;
  border-radius: 15px;
  overflow: hidden;
  background-color: #4a1d6e;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.portfolio-item:hover,
.portfolio-item:active{
  transform: scale(1.03);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-item h3 {
  margin: 1.3rem 0;
  color: white;
}


.view a{
  color: white;
  
}
.portfolio-item .view{
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  justify-content: center;
  background-color: black;
  width: 50%;
  border-radius: .5rem;
  margin:1rem auto ;
    transition: all .2s;


}
.view:hover{
  background-color: #333;
  transition: all .2s;
}
.view a{
  width: 100%;
}





/* لماذا نحن */
/* لماذا نحن؟ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-size: var(--font-size-body-text);
  background-color: rgba(255, 255, 255, 0.05); /* خلفية شفافة */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text-content);
}

.comparison-table thead {
  background-color: var(--primary-color);
  color: var(--text-content);
  font-size: 1rem;
  text-transform: uppercase;
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table td:first-child {
  background-color: rgba(255, 255, 255, 0.04);
  font-weight: 600;
  color: var(--light-accent);
  text-align: left;
}

.comparison-table td:last-child {
  color: #bbb;
}

.comparison-table tr:hover {
  background-color: rgba(255, 255, 255, 0.07);
  transition: background-color 0.3s ease;
}


.whyus{
  margin: 200px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  border: 1px solid #00c7b2;
  padding: 3rem 0;
  border-radius: 1rem;
   background-color: rgba(255, 255, 255, 0); /* لون أبيض شفاف */
  backdrop-filter: blur(10px); /* تمويه الخلفية */
  -webkit-backdrop-filter: blur(10px); /* دعم Safari */
  border-radius: 16px;
  padding :2rem 1rem 4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.973); /* حدود شفافة لإحساس الزجاج */

}
.whyus p{

  color: white;
}


.whyus h2{
  color: #facb1d;
  font-size: 2rem;
}

  tbody tr td:first-child{
    color: white !important;
    text-align: center !important;
  }










  /* شهادة عملاء */



/* ==== قسم شهادات العملاء ==== */
.testimonials-section {
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 1rem;
  border: 1px solid #00c7b2;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text-content);
}

.section-title {
  font-size: var(--h2-font-size);
  color: var(--lg-heading);
  margin-bottom: 2rem;
  color:#facb1d;
  font-size: 2rem;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  color: var(--text-content);
    transition: all .1s;

}

@media (min-width: 768px) {
  .testimonial-card:first-child,
    .testimonial-card:last-child {
    grid-column: span 2;
  }
}

.testimonial-header {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--mint-accent);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.stars {
  color: gold;
  font-size: 1rem;
  margin-top: 0.2rem;
}

.client-role {
  font-size: 0.8rem;
  color: var(--mint-accent);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
  text-align: start;
}
.testimonial-card:hover,
.testimonial-card:active{
  transform: translateY(-1px);
  transition: all .1s;
}







/* الباقات السعر */
.pricing-section {
  padding: 3rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  color: var(--text-content);
  padding: 2rem 0;
  border-radius: 1rem;
  border: 1px solid #00c7b2;
  margin-top: 2rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  transition: all .1s;
}


.pricing-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  color: var(--text-content);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .1s;
}
.pricing-card:hover{
  transform: scale(1.01);
  transition: all .1s;
}

.pricing-title {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem 0;
  color:greenyellow;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem 0;
  text-align: center;
  line-height: 1.8;
}

.pricing-btn {
  padding: 0.8rem 1.2rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pricing-btn:hover {
  background-color: var(--btn-hover-color);
}




/* الاسئلة الشاعئة*/

.faq-section {
  padding: 3rem 1rem;
  max-width: 800px;
  margin: auto;
  color: var(--text-content);
  text-align: center;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: right;
  padding: 1rem;
  font-size: 1rem;
  background: none;
  border: none;
  color:#00c7b2;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.faq-answer {
  display: none;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.03);
  line-height: 1.6;
  text-align: right;
}






/* CTA */
.cta-section {
  padding: 3rem 1rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-top: 1px solid #00c7b2;
  color: var(--text-content);
  border-radius: 1rem;
}

.cta-title {
  font-size: var(--h2-font-size);
  color: var(--light-accent);
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--mint-accent);
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: right;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.07);
  color: white;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.cta-form button {
  background-color: var(--primary-color);
  color: white;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-form button:hover {
  background-color: var(--btn-hover-color);
}







/*footer*/



footer {
  background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
  color: var(--text-content);
  text-align: center;
  padding: 2rem 1rem;
  font-size: var(--font-size-body-text);
  margin-top: 4rem;
}

.footer-container {
  max-width: 100vw;
  margin: 0 auto;
}

.footer-links a {
  color: #facb1d;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--mint-accent);
}

.social-icons a {
  color: var(--link-color);
  font-size: 1.2rem;
  margin: 0 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: var(--mint-accent);
}

footer img {
  width: 100px;
  margin-bottom: 1rem;
}

footer p {
  margin: 0.5rem 0;
}

footer .copyright {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #aaa;
}













/* overread */


.cta_order{
  font-size: 1.3rem;
  font-weight: 700;
color:#00c7b2;
}
.featured_info .title{
text-align: center;
}
.copyright{
  width: 100vw !important;
}

#bests{
  border-radius: 1rem;
  padding-bottom: 3rem;
   background-color: rgba(255, 255, 255, 0.2); /* لون أبيض شفاف */
  backdrop-filter: blur(10px); /* تمويه الخلفية */
  -webkit-backdrop-filter: blur(10px); /* دعم Safari */
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3); /* حدود شفافة لإحساس الزجاج */
}


.grid-col-item{
  background-color: #0054bb;
  padding: 1rem;
  border-radius: 1rem;
    transition: all .2s;

  border: 1px solid #0077d1;
}
.grid-col-item:hover,
.grid-col-item:active{
  transform: translateY(-1rem);
  transition: all .2s;
}

.cta_order{
  text-align: center !important;
}
.whyus p{
  text-align: center !important;
}

.nav_menu_list .nav_menu_item a{
  font-size: .75rem;
  font-weight: 700;
  margin: 0px;
}







.portfolio-item {
  transition: transform 0.3s ease;
}
.portfolio-item:hover {
  transform: scale(1.03) !important;
  cursor: pointer;
}


.pricing-card:hover {
  transform: scale(1.03) !important;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.testimonial-card {
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px) !important;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

body{
  overflow-x: hidden !important;
}







input::placeholder{
  color: white;

}
#phone{
  text-align: end;
}
#price_shopify,
#price_landing{
  display: none;
}
