
:root {
  --primary: #007BFF; /* أزرق عند التمرير */
  --secondary: #FF5722; /* برتقالي عند التحويم */
  --dark: #333333;
  --light: #ffffff;
  --font-size-base: 16px;
  --transition-speed: 0.3s;
  --primary-light: #60a5fa;
  --white: #FFFFFF;
  --card-bg: #FFFFFF;
  --border-radius: 16px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --gradient: linear-gradient(135deg, #FF6B5A 0%, #ee9557 100%);
}
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
@font-face {
  font-family: 'LaylaArabicpro';
  src: url('../fonts/LaylaArabic-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap; /* Add for better performance */
}

@font-face {
  font-family: 'LaylaArabicpro';
  src: url('../fonts/LaylaArabic-Regular.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LaylaArabicpro';
  src: url('../fonts/LaylaArabic-Regular.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Layla Arabic - Light */
@font-face {
  font-family: 'LaylaArabic';
  src: url('../fonts/layla/LaylaArabic-Light.woff2') format('woff2'),
  url('../fonts/layla/LaylaArabic-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

/* Layla Arabic - Regular */
@font-face {
  font-family: 'LaylaArabic';
  src: url('../fonts/layla/LaylaArabic-Regular.woff2') format('woff2'),
  url('../fonts/layla/LaylaArabic-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* Layla Arabic - Medium */
@font-face {
  font-family: 'LaylaArabic';
  src: url('../fonts/layla/LaylaArabic-Medium.woff2') format('woff2'),
  url('../fonts/layla/LaylaArabic-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

/* Layla Arabic - SemiBold */
@font-face {
  font-family: 'LaylaArabic';
  src: url('../fonts/layla/LaylaArabic-SemiBold.woff2') format('woff2'),
  url('../fonts/layla/LaylaArabic-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

/* Layla Arabic - Bold */
@font-face {
  font-family: 'LaylaArabic';
  src: url('../fonts/layla/LaylaArabic-Bold.woff2') format('woff2'),
  url('../fonts/layla/LaylaArabic-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

/* Apply to .contact-btn only */
.contact-btn {
  font-family: 'LaylaArabic', sans-serif;
  font-weight: 400; /* Change to 700 for bold, etc. */
}



html,
body {
  margin: 0;
  font-family: 'LaylaArabicpro', sans-serif;  background-color: #fff;
  color: #333;
  direction: rtl;
  line-height: 1.6;

}
/* Stylish Thin Scrollbar - Modern Travel Agency Look */

/* WebKit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #fff2e9; /* Soft peach background (matches site) */
}

::-webkit-scrollbar-thumb {
  background: gray; /* Modern gradient */
  border-radius: 10px;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.5);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background:gray; /* Bolder on hover */
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color:gray; /* thumb color, track color */
}

/* Focus styles */
:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* RTL Support */
[dir="rtl"] {
  text-align: right;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}
/* Global Styles */
@font-face {
  font-family: 'LaylaArabic';
  src: url('../fonts/LaylaArabic-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* match or slightly exceed .main-header height */
}


body {
  font-family: 'layla pro arabic';
  background-color: #fff2e9;
  color: #800020;
  direction: rtl;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .main-header {
    display: none !important;
  }
  main{
    padding-top: unset!important;
  }
}
/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(255, 242, 233, 0.7); /* لون شفاف */
  backdrop-filter: blur(10px);          /* ضبابية */
  -webkit-backdrop-filter: blur(10px);  /* دعم Safari */
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
  flex-wrap: nowrap;
}



/* Main content pushed down */
main {
  padding-top: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  order: 1;
  flex-shrink: 0;
margin-right:8% ;
}

/* Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  order: 2;
}

.main-nav ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-weight: 600;
  font-family: 'LaylaArabic', sans-serif;
  font-size: 16px;
  padding: 5px 10px;
  transition: color 0.3s ease;
  color: #ff6b5a;
}

.main-nav a.active,
.main-nav a:hover {
  color: #800020;
}

/* Contact Button */
.contact-btn {
  order: 3;
  background: transparent;         /* Transparent by default */
  color: #e8a87c;                /* Burgundy text */
  border: 2px solid #e8a87c;      /* Add border for visibility */
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  margin-left: 10%;
}

.contact-btn:hover {
  background-color: #fcfbfb;
}
/* Mobile menu button hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #800020;
  cursor: pointer;
  margin-left: auto;
  padding: 10px;
}

/* Hide nav and contact button on mobile by default */


/* Logo Circle */
.logo-circle {
  width: 50px;
  height: 50px;
  border:3px solid #e8a278;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}



/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-bottom: 4%;
}

.hero-image {
  width: 80%;
  height: auto;
  display: block;
  margin-left: 10%;
  margin-right: 10%;
}

.hero-content {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  color: #800020;
}
.hero-switch-bars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}




.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
}

/* Partners Small (Red Box with QR) */
.partners-small {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 15px 20px;
  background-color: #800020;

  border-radius: 15px;
  color: white;
  font-weight: 700;
  font-size: 16px;
  font-family: 'LaylaArabic', sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  height: 70px;
  overflow: visible;
  position: relative;
  z-index: 2;
  margin: 0 auto -30px;
  max-width: 80%;
  margin-inline-start: 10%;
  margin-inline-end: 10%;
}

.partners-small img {
  height: 80px;
  width: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partners-small img:hover {
  opacity: 1;
  transform: scale(1.1);
}
.partners-small svg {
  transform: scaleX(-1);
}

.arrow-group {
  display: flex;
  gap: 0;                 /* Removes space */
  align-items: center;
}

.arrow-group svg {
  display: block;
  margin: 0;
  padding: 0;
}

.partner-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

/* Partners Section (Orange) */
/* Desktop: full width layout with wrapping */
.partners {
  height: 143px;
  max-width: 96%;
  margin-left: 2%;
  margin-right: 2%;
  border-radius: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1%;
  padding-left: 1%;
  padding-right: 1%;  background-color: #ee9557;
}

.partners img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  max-width: 10%;
  margin-top: 4vh;

}

.partners img:hover {
  transform: scale(1.05);
}




@media (max-width: 768px) {
  .partners {

    overflow-x: auto;              /* enable horizontal scroll */
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    gap: 15px;
  }

  .partners img {
    flex: 0 0 auto;                /* prevent shrinking */
    height: 50px;
    max-width: 100px;
  }
}
.partners::-webkit-scrollbar {
  display: none;
}

.partners {
  scrollbar-width: none; /* Firefox */
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .partners {
    gap: 3%;
    padding: 25px 10px;
  }

  .partners img {
    margin-top: 10px; /* <--- THIS is what "pulls up" the images */
    max-width: 60px;
  }

  .partners-small {
    flex-wrap: wrap;
    padding: 8px 10px;
    gap: 10px;
    height: auto;
  }

  .partners-small img {
    height: 35px;
    max-width: 80px;
  }

  .partner-text {
    font-size: 13px;
    margin: 0;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .partners {
    gap: 5px;
  }

  .partners img {
    height: 40px;
    max-width: 80px;
    flex: 1 1 80px;
  }
}

@media (max-width: 480px) {
  .partners {
    gap:3%;
    padding: 25px 10px;
  }

  .partners img {
    height: 30px;
    max-width: 70px;
    flex: 1 1 60px;
  }
  .hero-image {
    width: 98%;
    height: auto;
    display: block;
    margin-left: 1%;
    margin-right: 1%;

  }
}


/* خدماتنا */
.services {
  padding: 60px 20px;
  background-color: #fff2e9;
  font-family: 'LaylaArabic', sans-serif;
}

.services h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

/* Container for the grid of service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 cards per row by default */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Card */
.service-card {
  max-width: 337px;
  position: relative;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color:#FF6B5A; /* main theme color */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper svg {
  fill: white;
  width: 30px;
  height: 48px;
}

.service-card h3 {
  color: #FF6B5A;
  font-size: 20px;
  margin-bottom: 15px;
}

 p {
   font-size: 14px;
   line-height: 1.8;
   font-weight: 400;
   text-align: justify;
   margin-top: 10px;
   margin-bottom: 0;
   letter-spacing: 0.02em;
   direction: rtl;
        /* explicitly set right-to-left */
}


/* Optional: If you want to support service-box style as well */
.service-box {
  background-color: #fff2e9;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 1.5rem;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  font-family: 'LaylaArabic', sans-serif;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
}

.service-box .icon img {
  width: 100%;
  height: 100%;
}

.service-box .title {
  color: #800020;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-box .description {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr; /* 1 card per row */
  }
}
.service-card.selected {
  outline: 2px solid #ff6b5a;
  outline-offset: -2px;
}



/* About */
.about {
  padding: 2rem;

  text-align: center;
}

.about h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}


/* Contact Section */
.contact {
  padding: 50px 20px;
  background-color: #fff2e9;
  font-family: 'LaylaArabic', sans-serif;
  direction: rtl;
  text-align: center;
  color: #333;
}

.contact-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info > div {
  border-radius: 15px;
  padding: 20px 25px;
  flex: 1 1 250px; /* flexible but minimum width */
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center; /* center content inside each block */
}

.contact-info h3 {
  font-size: 20px;
  color: #ff6b5a;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-info p {
  font-size: 16px;
  color: #800020;
  line-height: 1.6;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  word-break: break-word;
  text-align: center; /* center text for better symmetry */
  margin-top: unset;
}

.contact-info p:last-child {
  margin-bottom: 0;
}
.contact-info svg path {
  fill: white; /* red color */
}


.footer-content {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 20px;
  text-align: right; /* لأن الصفحة RTL */
  direction: rtl;
  flex-wrap: wrap;
}

/* الجهة اليمنى: الشعار + العنوان + أيقونات */
.right-side {
  flex: 1 1 300px;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

.footer-logo img {
  margin-bottom: 35px;
  max-width: 160px;
  height: auto;
}

.contact-title {
  color: white;
  width: fit-content;
  height: 29px;
  margin-top: 3rem;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  text-align: justify;
  opacity: 0.7;

}
.social-icons {
  width: 9%;
  display: flex;
  justify-content: end;
  align-items: center;
}

.social-icons a {
  display: inline-block;
}
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a img {
  width: 50px;
  height: 50px;
  transition: filter 0.3s ease;
}

.social-icons a:hover img {
  filter: brightness(1.3) saturate(150%);
}

/* الجهة اليسرى: الشروط والأحكام + روابط التنقل */
.left-side {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 20%;
  gap: 30%;
}


/* العمود الأول - الشروط والأحكام */
.legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal a {
  color: #f0dede;
  font-size: 14px;
  transition: color 0.3s ease;
  font-weight: 600;
  opacity: 0.7;
}

.legal a:hover {
  color: #ff6b5a;
}

/* العمود الثاني - روابط الخدمات */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
  opacity: 0.7;
}

.footer-nav ul li a:hover {
  color: #ff6b5a;
}

/* كحقوق النشر */
.copyright {
  margin-top: 30px;
  border-top: 1px solid #68001A;
  padding-top: 15px;
  font-size: 14px;
  color: #f0dede;
  display: flex;
  justify-content: space-between;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.smartouch-logo {
  background-color: white;
  height: 40px;
}



/* --------- Responsive Footer --------- */

/* --------- Responsive Footer --------- */

@media (max-width: 900px) {
.service-card{
  max-width: unset;
}

.copyright a{
  display: none;
}
  .contact-title {
    margin-top: 0rem;
  }
  .contact-img
  {
    display: none;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .right-side, .left-side {
    flex: none;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
  }

  /* نرتب اليمين (الشعار + تواصل) عمودياً */
  .right-side {
    flex-direction: column;
    align-items: center;
  }

  /* نرتب اليسار (روابط الشروط + الخدمات) أفقي مع تباعد جيد */
  .left-side {
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
  }

  .legal, .footer-nav ul {
    flex-direction: row;
    gap: 30px;
  }

  .legal a, .footer-nav ul li a {
    font-size: 15px;
  }

  .footer-nav ul li a {
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

 /* .footer-nav ul li a:hover {
    background-color: #ff6b5a;
    color: #fff;
  }*/

  .legal a:hover {
    color: #ff6b5a;
    text-decoration: none;
  }
}

@media (max-width: 480px) {
  .copyright .smartouch-logo
  {
    display: none;
  }
  .social-icons {
    gap: 15px;
  }

  .social-icons a img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .social-icons a:hover img {
    filter: brightness(1.3) saturate(150%);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  }

  .footer-logo img {
    max-width: 130px;
    transition: transform 0.3s ease;
  }

  .footer-logo img:hover {
    transform: scale(1.05);
  }

  .contact-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .legal, .footer-nav ul {
    flex-direction: column;
  }

  .left-side {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-nav ul li a {
    font-size: 16px;
    padding: 10px 15px;
  }
}

/* تحسين ظهور الفوتر بشكل عام */
.footer-wrapper {
  background-color: #800020;
  padding-top: 40px;
  padding-bottom: 40px;
}





.smartouch-logo {
  height: 40px;
  transition: transform 0.3s ease;
}

.smartouch-logo:hover {
  transform: scale(1.1);
}


.footer-wrapper {
  position: relative;
  margin-top: 100px; /* give space from above */
  background-color: #800020;
}
/*.announcement-circle {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at center, #76d28b  40%, #1e7e34 100%);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  font-family: 'Cairo', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 10px;
  z-index: 30;
  transition: transform 0.3s ease;
  clip-path: polygon(
    50% 0%, 60% 15%, 80% 10%, 75% 30%, 95% 35%,
    80% 50%, 95% 65%, 75% 70%, 80% 90%, 60% 85%,
    50% 100%, 40% 85%, 20% 90%, 25% 70%, 5% 65%,
    20% 50%, 5% 35%, 25% 30%, 20% 10%, 40% 15%
  );
}*/

.announcement-circle {
  position: absolute;
  top:-89px;
  left: 50%;
  transform: translateX(-50%);


  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  padding: 10px;
  z-index: 30;
  transition: transform 0.3s ease;

}

.announcement-circle:hover {
  transform: translateX(-50%) scale(1.05);
  cursor: pointer;
}



h2 {
  color: #ffffff;
  background-color: #800020;
  border-radius: 55px;
  transition: background-color 0.3s ease;
  width: fit-content;
  text-align: center;
  padding: 0 30px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  font-weight: 600;
  font-family: 'Layla Arabic', sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;

}



/* Étoile (Star) Shaped Announcement */
.etoile-announcement {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.etoile-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f7b733, #e74c3c);
  clip-path: polygon(
          50% 0%,
          61% 35%,
          98% 35%,
          68% 57%,
          79% 91%,
          50% 70%,
          21% 91%,
          32% 57%,
          2% 35%,
          39% 35%
  );
  border-radius: 30%;
  box-shadow: 0 10px 25px rgba(247, 183, 51, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite alternate;
}

/* For more points (24-point star) */
.etoile-shape.super-points {
  clip-path: polygon(
          50% 0%,
          55% 15%, 60% 5%, 65% 15%, 70% 5%, 75% 15%, 80% 5%, 85% 15%, 90% 5%, 95% 15%,
          100% 5%, 95% 25%, 100% 35%, 95% 45%, 100% 55%, 95% 65%, 100% 75%, 95% 85%, 100% 95%,
          85% 95%, 75% 100%, 65% 95%, 55% 100%, 45% 95%, 35% 100%, 25% 95%, 15% 100%,
          5% 95%, 10% 85%, 5% 75%, 10% 65%, 5% 55%, 10% 45%, 5% 35%, 10% 25%,
          5% 15%, 10% 5%, 15% 15%, 20% 5%, 25% 15%, 30% 5%, 35% 15%, 40% 5%, 45% 15%
  );
  border-radius: 20%;
}

.etoile-content {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding: 20px;
  transform: rotate(-5deg);
}

/* Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Glow Effect */
.etoile-shape::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #f7b733, #e74c3c);
  border-radius: 30%;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.6;
}

/* For RTL languages */
[dir="rtl"] .etoile-content {
  font-family: 'Cairo', sans-serif;
  line-height: 1.5;
}

.quick-contact-btn {
  background-color: #f97316; /* برتقالي عصري */
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.quick-contact-btn:hover {
  background-color: #ff6b5a;
  transform: scale(1.05);
}
.contact {
  position: relative;
  padding: 4rem 2rem;
  overflow: hidden;
  z-index: 1;
}

.contact-img {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  width: 150px;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 1; /* Ensure it's visible */
}

.left-img {
  top:20%;
  width: 363px;
  height: 112PX;
  left: 80px;
  opacity: 1;
  z-index: -1;

}

.right-img {
  width: 204px;
  height: 204px;
  left: 1119px;
  opacity: 1;
z-index: -1;
  right: 0;
}


/************banner********/
.hero {
  position: relative;
  text-align: center;
}

.hero-image {
  height: auto;
  transition: opacity 0.5s ease;
}

.hero-switch-bars {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.hero-bar path {
  stroke: #d97c7c; /* اللون الافتراضي - أحمر فاتح */
  transition: stroke 0.3s, stroke-width 0.3s;
}

.hero-bar.active path {
  stroke: #800020; /* أحمر داكن */
  stroke-width: 6;
}

.hero-bar:not(.active) path {
  stroke-width: 4;
  opacity: 0.5;
}
:root {
  --swiper-pagination-bottom: -4px
}
.swiper {
  width: 100%;
  height: auto;
  position: relative;
}

.swiper-slide img {
  width: 96%;
  height: auto;
  object-fit: cover;
}

.custom-pagination {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.pagination-bar {
  height: 4px;
  width: 20px;
  background-color: #d97c7c; /* أحمر فاتح */
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.pagination-bar.active {
  width: 40px;
  background-color: #800020; /* أحمر داكن */
  opacity: 1;
}
a {
  outline: none;
}

a:focus,
a:active {
  outline: none;
  box-shadow: none;
}