/* =========================================================
   Amlood landing page — stylesheet
   ========================================================= */

:root{
  --purple:        #8B6BAE;
  --purple-dark:    #6B4E94;
  --purple-light:   #C9B7DD;
  --purple-pale:    #EFE9F5;
  --ink:            #201E20;
  --ink-soft:       #2B282C;
  --paper:          #EDEDF1;
  --paper-dark:     #E1E1E6;
  --white:          #FFFFFF;
  --text:           #262427;
  --text-soft:      #55525A;

  --card-navy:      #445A95;
  --card-teal:      #6DA9A6;
  --card-red:       #D66168;
  --card-orange:    #DE965A;

  --border-pink:    #D96070;
  --border-blue:    #4A6FA5;
  --border-purple:  #8B6BAE;

  --font-ar: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;

  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-ar);
  color: var(--text);
  background: #fff;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; }
p{ margin: 0 0 1em; }

.wrap{
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ===================== HEADER ===================== */
.site-header{
  background: var(--ink);
  border-bottom: 3px solid var(--purple);
  position: relative;
  z-index: 50;
}


.hero-content{
    position:absolute;
    top:60%;
    left:9%;
    transform:translateY(-50%);
    z-index:2;
    color:#fff;
    max-width:650px;
}

.hero-content h1{
    font-size:38px;
    line-height:1.2;
    margin:0 0 15px;
    font-weight:400;
}

.hero-content p{
    font-size:26px;
    margin:0 0 20px;
    opacity:.7;
}

.hero-btn{
    display:inline-block;
    padding:10px 20px;
    color:#fff;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.7);
    background:rgba(0, 0, 0, 0.034);
    backdrop-filter:blur(6px);
    border-radius:20px;
    transition:.3s;
}

.hero-btn:hover{
    background:#fff;
    color:#000;
}


.header-inner{
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
    position: absolute;
    width: 100%;
    background: linear-gradient(to bottom, #000000 10%, rgba(0, 0, 0, 0) 100%);
}


.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-text{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-ar{
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}

.logo-en{
  font-size: .62rem;
  letter-spacing: .28em;
  color: #b9b6bd;
  font-weight: 500;
}

.logo-tagline{
  font-size: .58rem;
  color: #9c98a3;
  letter-spacing: .04em;
  margin-top: 2px;
}

.main-nav ul{
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

.main-nav a{
  font-size: 18px;
  color: #d8d6db;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s ease;
}

.main-nav a:hover{ color: var(--purple-light); }

.lang-switch{
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  border: 1px solid #4a474e;
  border-radius: 4px;
  padding: 4px 10px;
  flex-shrink: 0;
}

/* ===================== HERO SLIDER ===================== */
.hero{ position: relative; }

.hero-slider{
  position: relative;
  height: 100vh;
  min-height: 320px;
  max-height: 620px;
  overflow: hidden;
}

.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
}

.hero-slide.is-active{
  opacity: 1;
  visibility: visible;
}

.hero-slide::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(139,107,174,.72) 0%, rgba(139,107,174,.35) 45%, rgba(20,18,22,.55) 100%);
}

.hero-slide img{
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
}

.hero-arrow{
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(20,18,22,.35);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background .2s ease;
}

.hero-arrow:hover{ background: rgba(20,18,22,.6); }
.hero-arrow-prev{ right: 20px; }
.hero-arrow-next{ left: 20px; }

.hero-dots{
  position: absolute;
  bottom: 18px;
  left: 50%;
  translate: -50% 0;
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, width .2s ease;
}

.hero-dot.is-active{
  background: var(--white);
  width: 22px;
  border-radius: 5px;
}

.hero-subnav{
  background: var(--ink);
   justify-content: center;
  gap: 50px;
  padding: 14px 16px;
  flex-wrap: wrap;
}

.hero-subnav a{
  font-size: 19px;
  font-weight: 400;
  color: #eae8ec;
}

.hero-subnav a:hover{ color: var(--purple-light); }

.hero-subnav .dot{
  color: var(--purple);
  font-weight: 700;
}

/* ===================== ABOUT ===================== */
.about{
  display: grid;
  grid-template-columns: 1fr minmax(260px, 27%);
  min-height: 480px;
  background: var(--white);
}

.about-media{
  position: relative;
  background: var(--purple-dark);
  overflow: hidden;
}

.about-media::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #7c5da0, #5a4478 80%);
  mix-blend-mode: multiply;
}

.about-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  opacity: .9;
}

.about-content{
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge-heading{
  display: inline-block;
  margin-bottom: 28px;
}

.badge-heading span{
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
  padding: 10px 34px 10px 22px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 4% 100%, 0 50%);
}

.about-content p{
  text-align: right;
  color: #000;
  font-size: 22px;
  max-width: 720px;
}

/* ===================== SERVICES / FLIP CARDS ===================== */
.services{
  padding: 64px 24px 72px;
  background-color: #f2f2f2;
  background: url(img/bb.png) no-repeat left;
      background-position: left 170px;

  text-align: center;
}

.ribbon-heading{
  display: inline-flex;
  align-items: center;
  margin: 0 auto 12px;
}

.ribbon-heading span{
  position: relative;
  background: var(--purple);
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 12px 30px;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 6% 100%, 0 50%);
}

.services-hint{
  color: var(--text-soft);
  font-size: .8rem;
  margin-bottom: 32px;
}

.service-cards{
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  direction: rtl;
}

.service-card{
  background: transparent;
  border-radius: 10px;
  text-align: center;
  height: 403px;
  perspective: 1200px;
  cursor: pointer;
  outline: none;
}

.flip-card-inner{
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform .7s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(30,20,40,.08);
}

/* flip on hover for devices that support hover, and on .is-flipped for touch */
.service-card:hover .flip-card-inner,
.service-card:focus-visible .flip-card-inner,
.service-card.is-flipped .flip-card-inner{
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back{
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.flip-card-front{
  background: var(--white);
}

.flip-card-front h3{
  color: var(--white);
  font-size: .95rem;
  font-weight: 800;
  padding: 14px 10px;
  margin: 0;
}

.card-media{
  overflow: hidden;
  flex: 1;
}

.card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-navy .flip-card-front h3{ background: var(--card-navy); }
.card-teal .flip-card-front h3{ background: var(--card-teal); }
.card-red .flip-card-front h3{ background: var(--card-red); }
.card-orange .flip-card-front h3{ background: var(--card-orange); }

.flip-card-back{
  transform: rotateY(180deg);
  color: var(--white);
  padding: 26px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.card-navy .flip-card-back{ background: var(--card-navy); }
.card-teal .flip-card-back{ background: var(--card-teal); }
.card-red .flip-card-back{ background: var(--card-red); }
.card-orange .flip-card-back{ background: var(--card-orange); }

.flip-card-back h3{
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

.flip-card-back p{
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  opacity: .95;
}

.flip-back-link{
  font-size: .76rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.6);
  padding-bottom: 2px;
}

/* ===================== PERSPECTIVE ===================== */
.perspective{
  position: relative;
  padding: 70px 24px 80px;
  background: url(img/bb.png) no-repeat left #ededf1;
background-position: right -150px top 70px;

overflow: hidden;
}

.perspective-intro{
  max-width: var(--container);
  margin-inline: auto;
  text-align: right;
  margin-bottom: 40px;
}

.perspective-intro h2{
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 20px;
}

.perspective-intro h2 .line{ display: block; color: var(--ink); }
.perspective-intro h2 .accent{ color: var(--purple); }

.perspective-intro p{
  color: #000;
  max-width: 90%;
  font-size: 18px;
}

.video-cards{
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  direction: rtl;
}

.video-card{
  position: relative;
    overflow: hidden;
 }

.video-card p{
  background: #0000009c;
  color: #fff;
}

.video-card a p{
    color: #fff;

}
.video-card b{
  position: absolute;
    width: 100%;
    bottom: -8px;
    right: 0px;
    padding: 20px;
    z-index: 9;
}
.border-pink{ border-color: var(--border-pink); }
.border-blue{ border-color: var(--border-blue); }
.border-purple{ border-color: var(--border-purple); }

.border-purple b{
  background:  var(--border-purple);
  color:#fff;
}

.border-blue b{
  background:  var(--border-blue);
  color:#fff;
}


.border-pink b{
  background:  var(--border-pink);
  color:#fff;
}

.video-media{
  position: relative;
  height: 250px;
  overflow: hidden;
      width: 97%;
    z-index: 99;
    height: 97%;
}

.video-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  filter: saturate(.9);
}

.duration-badge{
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(20,18,22,.75);
  color: var(--white);
  font-size: .62rem;
  padding: 3px 8px;
  border-radius: 3px;
}

.video-card p{
  width: 100%;
      position: absolute;
    bottom: 0px;
   padding: 20px 16px;
  font-size: 18px;
   color: var(--ink);
  margin: 0;
}

/* ===================== PARTNERS CAROUSEL ===================== */
.partners{
  background: var(--purple);
 }

.partners-title{
  text-align: center;
  color: var(--white);
  font-size: 42px;
  font-weight: 800;
  padding: 34px 20px;
}
.partners-swiperx{

overflow: hidden;
}
.partners-carousel , .partners-swiper{
  background:#e6e6e6;
  border-top: 1px solid #e3e0e8;
  overflow: hidden;
  padding: 5px 0;
  margin-bottom: 50px;
   box-shadow: 1px 3px 6px #555;
}

.partners-carousel:nth-of-type(even){ background: #f4f3f6; }

.partners-track{
  display: flex;
  align-items: center;
  gap: 46px;
  width: max-content;
 }


 .partslid {
    background: #000;
    color: #fff;
    padding: 4px 23px;
    border-radius: 5px 5px 0px 0px;
    margin-right: 20px;
    font-size: 18px;
}


.track-left{  }
.track-right{   }

.partners-carousel:hover .partners-track{ }

@keyframes scroll-right{
  from{ transform: translateX(-50%); }
  to{ transform: translateX(0); }
}

@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

.partner-logo , .swiper-slide{
  font-size: .85rem;
  font-weight: 800;
  color: #6a6772;
  opacity: .85;
  padding: 6px 10px;
  white-space: nowrap;
 }

.partner-logo:hover{ filter: grayscale(0); opacity: 1; color: var(--purple-dark); }

/* ===================== JOIN US ===================== */
.join{
  display: grid;
  grid-template-columns: minmax(280px, 42%) 1fr;
  background: var(--paper);
  align-items: stretch;
}

.join-content{
  padding: 60px 48px;
  text-align: right;
}

.join-content h2{
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--purple-dark);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.q-mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  font-size: .95rem;
}

.join .rule{
  width: 60px;
  height: 3px;
  background: var(--purple);
  margin: 16px 0 22px auto;
}

.join-content p{
 color: #000;
    font-weight: 500;
    font-size: 21px;
}

.apply-line{
  font-weight: 700;
  color: var(--ink);
}

.apply-line a{
  color: var(--purple-dark);
  text-decoration: underline;
}

.join-media{ overflow: hidden; min-height: 320px; }
.join-media img{ width: 100%; height: 100%; object-fit: cover; }

/* ===================== CONTACT ===================== */
.contact{
   margin-inline: auto;
  padding: 70px 50px 90px 50px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 46%);
  gap: 48px;
  align-items: start;
}

.contact-form-wrap{
  background: #e1e1e694;
  border-radius: 12px;
  padding: 34px;
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label{
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}

.contact-form label span{ color: var(--card-red); }

.contact-form input{
  border: none;
  border-radius: 6px;
  padding: 13px 14px;
  font-family: inherit;
  font-size: .88rem;
  background: var(--white);
  text-align: right;
  box-shadow: inset 0 0 0 1px #e0dfe4;
}

.contact-form input:focus{
  outline: 2px solid var(--purple);
  outline-offset: 1px;
}

.contact-form button{
  align-self: flex-start;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 12px 40px;
  font-family: inherit;
  font-weight: 800;
  font-size: .88rem;
  cursor: pointer;
  transition: background .2s ease;
}

.contact-form button:hover{ background: var(--purple-dark); }

.contact-info{ text-align: right; padding-top: 8px; }

.contact-info h2{
  font-size: 34px;
  font-weight: 900;
  color: var(--ink);
}

.contact-info .rule{
  width: 60px;
  height: 3px;
  background: var(--purple);
  margin: 16px 0 20px auto;
}

.contact-info p{
  color: #000;
  font-size: 17px;
  max-width: 520px;
}

.info-list{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
  direction: ltr;
    text-align: right;
}

.info-list li{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  font-size: 16px;
  color: #000;
  margin-left: auto;
}

.info-list .icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
     font-size: .9rem;
}

.social-icons{
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  justify-content: flex-end;
}

.social-icons a{
  width: 40px;
  height: 40px;
   display: flex;
  align-items: center;
  justify-content: center;
 }

.social-icons a:hover{  }
 







/* â•â•â•â•â•â•â•â•â•â• FOOTER â•â•â•â•â•â•â•â•â•â• */
footer { background:#000; border-top:1px solid #f0e8f8; }
.footer-top {
  padding:50px 0 36px;
  border-bottom:1px solid #f0e8f8;
}
.footer-top .container {
  display:grid; grid-template-columns:auto 1fr 1fr auto;
  gap:20px; align-items:start;
}
.footer-contact-item {
  display:flex; align-items:flex-start; gap:14px;
  padding:10px 0;
}
 .fc-icon {
  width:40px; height:40px;
   display:flex; align-items:center; justify-content:center;
  color:var(--purple); flex-shrink:0; font-size:.9rem;
}
.fc-text { font-size:.82rem; color:#555; line-height:1.65; }
.fc-text strong { display:block; color:var(--dark); font-size:.9rem; margin-bottom:2px; }
.footer-divider { width:1px; background:#f0e8f8; align-self:stretch; margin:0 10px; }
.footer-phone-social {}
.footer-phone {
  font-size:1.2rem; font-weight:800; color:var(--dark);
  direction:ltr; text-align:right;
  margin-bottom:16px;
}
.footer-social-row { display:flex; gap:10px; justify-content:flex-end; }
.f-social {
  width:40px; height:40px;border-radius:50%;
  margin-left: auto;
  display:flex; align-items:center; justify-content:center;
  color:var(--purple); font-size:.85rem; font-weight:700;
  cursor:pointer; transition:all .25s;
}
.f-social:hover { background:#b6a3cc; color:#fff; }
.f-social-handle {
  font-size:.82rem; color:var(--gray);
  margin-bottom:10px; text-align:right;
}

.footer-bottom { padding:52px 0 20px; border-bottom: 1px solid #f2f2f238; }
.footer-bottom .container {
     max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;

  display:grid; grid-template-columns:auto 1fr 1fr 1fr 1fr;
  gap:40px; align-items:center;
}
.footer-logo { }
.footer-logo-wrap { display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.footer-logo-wrap .ar { font-size:1.5rem; font-weight:900; color:var(--dark); }
.footer-logo-wrap .en { font-size:.7rem; color:var(--gray); }
.footer-col h5 {
  font-size:1.08rem; font-weight:800; color:#876cad;
  margin-bottom:20px; letter-spacing:.01em;text-align: right;
  position: relative;
}

.footer-col h5::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0px;
    /* transform: translateX(-50%); */
    width: 40px;
    height: 3px;
    background-color: #876cad;
    border-radius: 2px;
}


.footer-col ul { display:flex; flex-direction:column; gap:5px; }
.footer-col ul li a {
  font-size:.85rem; color:#fff; transition:color .25s;
}
.footer-col ul li a:hover { color:var(--purple); }
.footer-follow { }
.footer-follow h5 { font-size:.88rem; font-weight:800; color:#fff; margin-bottom:20px; }
.footer-follow-icons { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.f-follow-icon {
  width:42px; height:42px; border-radius:50%;
 
  display:flex; align-items:center; justify-content:center;
  color:var(--purple); font-size:.9rem; font-weight:700;
  cursor:pointer; transition:all .25s;
}
.f-follow-icon:hover { background:#b3a0ca; color:#fff; }















.stats-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(152px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

.stat-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.icon{
    width:75px;
    height:75px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#886cae47;
    display:flex;
    justify-content:center;
    align-items:center;
}

.icon i{
    font-size:32px;
    color:#2b7cff;
}

.number{
    font-size:48px;
    font-weight:700;
    color:#222;
    line-height:1;
    margin-bottom:15px;
}

.number::before{
    content:"+";
    margin-left:4px;
}

.title{
  font-size: 18px;
    color: #604c7b;
    line-height: 1.7;
    font-weight: 600;
}



















/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px){
  .about{ grid-template-columns: 1fr 1fr; }
  .about-media img{ min-height: 260px; }
  .about-content{ padding: 44px 32px; }

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

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

  .join{ grid-template-columns: 1fr 1fr; }
  .join-media{ min-height: 260px; order: -1; }

  .contact{ grid-template-columns: 1fr; }
  .hero-subnav a {
    font-size: 12px;
 
}

}





 

.partners-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

@media (max-width: 720px){

.header-inner .logo img{
  max-width: 90px !important;
}

.header-inner{
      padding: 12px 10px;
}
.hero-content{
    left: 1%;
}
  .number {
    font-size: 27px;
  }

  .mnmnzoor{
    max-width: 220px !important;
    width: 70%;
  }

  .perspective-intro p{
    font-size: 16px;
  }

  .video-card p {
    width: 100%;
    position: absolute;
    bottom: 0px;
    padding: 15px 10px;
    font-size: 16px;
  }
.contact-info h2{
      font-size: 26px;
}


.footer-follow h5{
    font-size: 1.08rem !important;
    font-weight: 800;
    color: #876cad !important;
    margin-bottom: 20px;
    letter-spacing: .01em;
    text-align: right !important;
    position: relative;
}

.footer-follow h5::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 0px;
    /* transform: translateX(-50%); */
    width: 40px;
    height: 3px;
    background-color: #876cad;
    border-radius: 2px;
}

.footer-bottom .container {
  
    gap: 5px
}

.hidemob{
  display: none !important;
}

.info-list {
 
    gap: 2px;
    margin: 10px 0;

}
.contact-info p {
     font-size: 16px;
} 
  .join-media{
    max-height: 477px !important;
  }
.wdk{
  max-width: 240px !important;
      margin-top: 10px !important;
}
  .shorakaa{

      padding-top: 20px !important;
    padding-bottom: 5px !important;
}


.partners-carousel, .partners-swiper {
   margin-bottom:20px
}

  .partners-title {
    text-align: center;
    color: var(--white);
    font-size: 30px;
    font-weight: 800;
    padding: 26px 20px;

  }
  .title {
    font-size: 16px;
  }
  .footer-col ul {  text-align: right; }

.footer-bottom .container{
  grid-template-columns: auto;
}
  .hero-subnav {
 
    gap: 14px;
 
  }
    .hero-subnav a {
    font-size: 12px;
 
}

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

.lang-switch{
  display: none;
}
  .header-inner{
    /* flex-wrap: wrap; */
    justify-content: right;
    text-align: center;
  }
  .main-nav ul{ gap: 6px; justify-content: center; }
  .main-nav a{ font-size: .60rem; }
  .header-inner {
 
    gap: 30px;
  }
  .hero-content h1 {
    font-size: 15px;
    margin: 0 0 2px;
}
.hero-content {
    top: 44%;

}

.hero-content p {
    margin: 0 0 15px;
}
.hero-content p {
    font-size: 15px;
}
.hero-btn{
      font-size: 12px;
      line-height:18px;
    padding: 6px 10px;
}

  .hero-slider{ height: 40vh; min-height: 240px; }
  .hero-arrow{ width: 34px; height: 34px; font-size: 1.15rem; }
  .hero-arrow-prev{ right: 10px; }
  .hero-arrow-next{ left: 10px; }

  .about-content{ padding: 36px 22px; }
  .badge-heading span, .about-content p{ align-self: center; }
  .about-content{ align-items: center; text-align: center; }
  .about-content p{ text-align: center; font-size: 16px;}
  .menehna{
    margin-bottom: 40px !important;
  }

  .service-cards{ grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card{ height: 400px; }
  .flip-card-back{ padding: 18px 14px; }
  .flip-card-back p{ font-size: .74rem; }

  .perspective-intro{ text-align: center; }
  .perspective-intro p{ margin-inline: auto; }
  .video-cards{ grid-template-columns: 1fr; }

  .join-content{ padding: 10px 8px; text-align: center; }
  .join-content h2{ justify-content: center; }
  .join .rule{ margin: 16px auto 22px; }
  .join-content p{      margin-top: 10px !important;
        margin-inline: auto;
        font-size: 14px;
        text-align: center;
    }

  .contact{ padding: 50px 18px 60px; }
  .contact-info{ text-align: center; }
  .contact-info .rule{ margin: 16px auto 20px; }
  .contact-info p{ margin-inline: auto; }
  .info-list li{ justify-content: center; }
  .social-icons{ justify-content: center; }

  .footer-top{ flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom{ flex-direction: column; text-align: center; }
}

@media (max-width: 460px){
  .service-cards{ grid-template-columns: 1fr 1fr; }
  .service-card{ height: 250px; }
}

/* ===================== MOTION PREFERENCES ===================== */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .hero-slide{ transition: none; }
  .flip-card-inner{ transition: none; }
  .partners-track{ animation: none; }
}








    .section-titletop{
    position: relative;
    margin: 60px auto;
    width: fit-content;
}

.section-titletop::before{
    content: "";
    position: absolute;
    right: 0;
    top: 114%;
    transform: translateY(-50%);
    width: 100%;
      z-index: 1;
}

.section-titletop h2{
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0 5px;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: #f2f2f2;
    text-shadow:
1px -4px 2px #8A6CB3 }


  .section-title{
    position: relative;
    margin: 60px 0;
    width: fit-content;
}

.section-title::before{
    content: "";
    position: absolute;
    right: 0;
    top: 22%;
    transform: translateY(-50%);
    width: 100%;
    height: 55px;
    background: #8A6CB3;
    z-index: 1;
}

.section-title h2{
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0 45px;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: #f2f2f2;
    text-shadow:
        0 5px 0 #8A6CB3,
        0 2px 0 #8A6CB3;
 }


