:root{
  --blue:#003366;
  --orange:#FF6B35;
  --gray:#f4f4f4;
  --text:#333;
}

*{margin:0;padding:0;box-sizing:border-box;}
body{
  font-family:'Open Sans',sans-serif;
  color:var(--text);
  scroll-behavior:smooth;
}

.container{width:90%;max-width:1200px;margin:auto;}
h1,h2,h3{font-family:'Montserrat',sans-serif;color:var(--blue);}

h1{font-size:2.8rem;padding-bottom:40px}

.header{
  position:fixed;top:0;width:100%;
  background:#fff;z-index:1000;
  border-bottom:1px solid #ddd;
}

.header-flex{
  display:flex;align-items:center;justify-content:space-between;
  padding:1rem 0;
}

.logo{font-size:1.5rem;font-weight:700;}
.logo span{color:var(--orange);}

.nav a{margin-left:1rem;color:var(--blue);font-weight:600;}
.burger{display:none;font-size:1.5rem;cursor:pointer;}

/*.hero{
  height:90vh;
  background:linear-gradient(rgba(0,51,102,.85),rgba(0,51,102,.85)),url('../img/hero.jpg');
  color:#fff;
  display:flex;
  align-items:center;
}

.hero h1{color:#fff;font-size:2.8rem;}
.hero p{margin:1rem 0;}
*/



.map-section {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 420px;
  overflow: hidden;

  background: url("/img/mena3dlighteasy.jpg") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}


.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(circle at 50% 50%,
      rgba(255,255,255,0.95) 0%,
      rgba(255,255,255,0.65) 25%,
      rgba(255,255,255,0.35) 45%,
      rgba(255,255,255,0.15) 65%,
      rgba(255,255,255,0.05) 80%,
      transparent 100%);

  mix-blend-mode: screen;
  animation: glowPulse 18.5s ease-in-out infinite;
   /* alternate; */
}

@keyframes glowPulse {
  from {
    
   transform:translateX(-4000px);
    /* transform: scale(1); */
    opacity: 0.15;
  }
  to {
    
   
   transform:translateX(4000px); 
    opacity: 0.6;
  }
}

/* ===== TEXT ===== */
.map-content {
  position: relative;
  z-index: 3; /* IMPORTANT - higher overlay */
  text-align: right;
  width: 100%; 
  padding: 0 20px;
    pointer-events: none;
  color: #002244;
}

.map-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  color:#FFF;
  text-shadow: #111 1px 1px 5px;

}

.map-content p {
  font-size: 18px;
  line-height: 1.6;
  color:#FFF;
  text-shadow: #111 1px 1px 5px;

}

/* ===== SCROLL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateX(-600px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(.22,.61,.36,1);
}

.reveal.active {
  opacity: 1;
  transform: translateX(0);
}


/* ===== Map Points ===== */
.map-points {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.map-point {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #008cff;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 20px rgb(0, 0, 0);
  animation: pulseDot 2.5s infinite;
}

/* Dot pulse */
@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(53, 144, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 32px rgba(53, 144, 255,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(53, 144, 255,0);
  }
}

/* Tooltip */
.map-point::after {
  content: attr(data-country);
  position: absolute;
  bottom: 0px;
  left: 50px;
  transform: translateX(-350%);
  background: #003366;
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

.map-point:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}





























.hero {
   position: relative;
  width: 100%;
  height: 70vh;
  min-height: 600px;
  /* overflow: hidden; */

  background-image: url("/img/placeholdervideoeasy.jpg");
  background-size: cover;
  background-position: center;
}

.hero.video-disabled {
  background-image: url("/img/placeholdervideoeasy.jpg");
}

.hero.video-disabled .hero__video {
  display: none;
}


.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  
    opacity: 0;
  transition: opacity 0.6s ease;
}
.hero:not(.video-disabled) .hero__video {
  opacity: 1;
}
/* dimming for text readability */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 25, 47, 0.75),
    rgba(10, 25, 47, 0.4)
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.hero__content h1 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  margin-bottom: 16px;
  color:#FFF;
}

.hero__content p {
  max-width: 600px;
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}




@media (max-width: 768px) {
  .hero {
    height: 85vh;
  }

  .hero__overlay {
    background: rgba(10, 25, 47, 0.75);
  }

  .hero__content {
    text-align: center;
    align-items: center;
  }

  .hero__content p {
    font-size: 16px;
  }
}


/* ==============================
   OVERLAPPING IMAGE BETWEEN SECTIONS
================================ */

.section-overlap-image {
  position: absolute;
  right: 10vh;
  top: 100vh; /* end hero */
  transform: translateY(-163%);
  z-index: 5;
  pointer-events: none;
}

.section-overlap-image img {
  width: 520px;
  max-width: 45vw;
  height: auto;
  display: block;
}

/* ensure sections can be overlapped */
/* #hero,
#about-atlas {
  position: relative;
  z-index: 1;
} */

@media (max-width: 768px) {
  .section-overlap-image {
    display: none;
  }
}








#hero {
  position: relative;
  z-index: 2;
  overflow: visible;
}



.hero-overlap-image {
  position: absolute;
  right: 5vw;
  bottom: 0;
  transform: translateY(50%);
  z-index: 10; /* IMPORTANT  */
  pointer-events: none;
}

#about-atlas {
  position: relative;
  z-index: 1;
}

.hero-overlap-image img {
  width: 520px;
  max-width: 45vw;
  height: auto;
  display: block;
}


@media (max-width: 1024px) {
  .hero-overlap-image img {
    width: 420px;
  }
}

@media (max-width: 768px) {
  .hero-overlap-image img {
    width: 280px;
  }
}



/*.btn{
  display:inline-block;
  background:var(--orange);
  color:#fff;
  padding:.75rem 1.5rem;
  border-radius:4px;
  margin-right:.5rem;
}

.btn.outline{
  background:none;
  border:2px solid #fff;
}
*/

.btn {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: #f97316;
  color: #fff;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}















.section{padding:5rem 0;}
.light{background:var(--gray);}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:1.5rem;
  margin-top:2rem;
}

.card{
  padding:1.5rem;
  background:#fff;
  border-radius:6px;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.benefits{margin:2rem 0;}
.benefits li{margin:.5rem 0;}

.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  margin-top:2rem;
  text-align:center;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
}

.form input,.form textarea{
  width:100%;
  padding:.75rem;
  margin-bottom:1rem;
}

.footer{
  background:var(--blue);
  color:#fff;
  padding:3rem 0 1rem;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:2rem;
}

.footer a{color:#fff;}

.footer-bottom{
  text-align:center;
  margin-top:2rem;
  font-size:.9rem;
}

@media(max-width:768px){
  .nav{display:none;flex-direction:column;}
  .burger{display:block;}
  .contact-grid,.stats,.footer-grid{grid-template-columns:1fr;}
}



.nav-link {
  position: relative;
  padding: .5rem 0;
  font-weight: 600;
  color: #333;
}

.nav-link.active {
  color: #003366;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #FF6B35;
  border-radius: 2px;
}







.lazy-img {
  filter: blur(10px);
  transition: filter .6s ease;
}

.lazy-img.loaded {
  filter: blur(0);
}






.about-atlas {
  background: #f7f9fc;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.4rem;
  color: #003366;
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.about-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.about-features li {
  padding-left: 1.6rem;
  margin-bottom: .7rem;
  position: relative;
  
  transition: transform .25s ease, color .25s ease;

}
.about-features li:hover {
  transform: translateX(6px);
  color: #003366;
}

.about-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #FF6B35;
}

.about-links {
  display: flex;
  gap: 1rem;
}
.btn-primary,
.btn-outline {
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-primary:hover,
.btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.btn-primary {
  background: #FF6B35;
  color: #fff;
  padding: .9rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid #003366;
  color: #003366;
  padding: .9rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
}

.about-visual img {
  width: 100%;
  border-radius: 16px;
}

.about-badges {
  display: flex;
  gap: .8rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  
}

.about-badges span {
  background: #003366;
  color: #fff;
  padding: .4rem .8rem;
  font-size: .85rem;
  border-radius: 4px;
  
    transition: background .3s ease, transform .3s ease;
}

.about-badges span:hover {
  background: #FF6B35;
  transform: scale(1.05);
}

/* STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4rem;
  text-align: center;
}

.stat span {
  font-size: 2.6rem;
  font-weight: 700;
  color: #FF6B35;
}

.stat p {
  margin-top: .5rem;
  font-weight: 600;
}

/* ANIMATION */
.stat {
  opacity: 0;
  transform: translateY(20px);
  transition: .6s ease;
  
   transition: transform .3s ease;
}
.stat:hover {
  transform: translateY(-6px);
}
.stat.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-links {
    flex-direction: column;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}











/* ==============================
   FANNSLIDE BASE
================================ */

.fannslide {
  width: 100%;
  padding: 80px 0;
  background: #f7f9fc;
}

.fannslide-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

/* ==============================
   SLIDES
================================ */

.fannslide-track-wrapper {display:block;
  margin: 0 auto;
  overflow: hidden;
  max-width: 1000px;
}

.fannslide-track {
  display: flex;
  transition: transform .8s ease;  
  
}

.fannslide-slide {
  min-width: 100%;
  display: flex;
  gap: 60px;
  padding: 0 60px;
  align-items: center;
}

/* LEFT */
.fannslide-left {
  width: 40%;
}

.fannslide-left img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.fannslide-left h3 {
  font-size: 20px;
  font-weight: 700;
  color: #003366;
}

/* RIGHT */
.fannslide-right {
  width: 60%;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* ==============================
   NAVIGATION
================================ */

.fannslide-nav {
   position: absolute;
  top: 50%;

  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  cursor: pointer;
}

.fannslide-nav.fannprev { left: 20px; }
.fannslide-nav.fannnext { right: 20px; }

/* ARROWS */
.fannslide-nav .fannarrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.fannslide-nav .fannarrow::before,
.fannslide-nav .fannarrow::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: #003366;
  border-radius: 2px;
  transition: background .3s ease;
}

/* left */
.fannslide-nav.fannprev .fannarrow::before {
  transform: rotate(45deg);
  top: 5px;
  left: 0;
  transform-origin: left center;
}
.fannslide-nav.fannprev .fannarrow::after {
  transform: rotate(-45deg);
  top: 5px;
  left: 0;
  transform-origin: left center;
}






/* right */
.fannslide-nav.fannnext .fannarrow::before {
  transform: rotate(-45deg);
  top: 5px;
  right: 0;
    transform-origin: right center;
}
.fannslide-nav.fannnext .fannarrow::after {
  transform: rotate(45deg);
  top: 5px;
  right: 0;
    transform-origin: right center;
}

.fannslide-nav:hover .fannarrow::before,
.fannslide-nav:hover .fannarrow::after {
  background: #ff6b35;
}

/* ==============================
   PROGRESS BAR
================================ */

.fannslide-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.fannslide-progress span {
  width: 40px;
  height: 4px;
  background: #d0d6de;
  border-radius: 2px;
  transition: background .3s ease;
}

.fannslide-progress span.active {
  background: #003366;
}

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .fannslide-slide {
    flex-direction: column;
    gap: 32px;
  }

  .fannslide-left,
  .fannslide-right {
    width: 100%;
  }
}
























/* FILTER BUTTONS CSS catalog styles*/
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 2rem 0 1rem;
}

.filter-btn {
  padding: .6rem 1rem;
  border: 2px solid var(--blue);
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font-weight: 600;
  border-radius: 4px;
  transition: .2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--blue);
  color: #fff;
}







/*horizontal accordion*/
.api {
  background: #f7f9fc;
  overflow: hidden;
}

.api-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.api-badge {
  background: var(--orange);
  color: #fff;
  padding: .4rem 1rem;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
}

.api-accordion {
  display: flex;
  gap: 1rem;
  height: 340px;
  margin-top: 3rem;
}

.api-item {
  flex: 1;
  background: #003366;
  color: #fff;
  padding: 2rem;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .45s ease;
  opacity: 0;
  transform: translateY(40px);
}

.api-item:hover {
  transform: translateY(-6px);
}

.api-item.active {
  flex: 4;
  background: linear-gradient(135deg, #003366, #0055a5);
}

.api-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.api-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  color: #FFFFFF;
}

.api-item p {
  opacity: 0;
  max-width: 260px;
  line-height: 1.6;
  font-size: .95rem;
  transition: opacity 0.03s ease;
}

.api-item.active h3 {
  writing-mode: horizontal-tb;
  transform: none;
  text-align: left;
}

.api-item.active p {
  opacity: 1;
  margin-top: .5rem;
}

/* Reveal animation */
.api-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 900px) {
  .api-accordion {
    flex-direction: column;
    height: auto;
  }

  .api-item h3 {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .api-item p {
    opacity: 1;
  }
}





/*featured-products*/

.featured-products {
  position: relative;
  background: #f7f8fa;
  padding: 80px 0;
  overflow: hidden;
}

.slider {
  max-width: 1200px;
  margin: auto;
  position: relative;
    min-height: 400px;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 60px;
  opacity: 0;
  pointer-events: none;

}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}
.slide.active .slide-text h3 {
  animation: titleIn .6s ease forwards;
}
.slide.active .slide-text h2 {
  animation: titleIn .6s ease forwards;
    animation-delay: .5s;
}

.slide.active .slide-text p {
  animation: textIn .6s ease forwards;
  animation-delay: .9s;
}

.slide.active .slide-image img {
  animation: imageIn .7s ease forwards;
}

.slide-text {
  flex: 1;
  text-align: right;
}

.slide-text h3 {
  font-size: 36px;
  transform: translateX(-80px);
  opacity: 0;
  animation: titleIn 0.6s ease forwards;
}
.slide-text h2 {
  font-size: 56px;
  transform: translateX(-80px);
  opacity: 0;
  animation: titleIn 0.6s ease forwards;
  animation-delay: 0.5s;
}

.slide-text p {
  margin-top: 20px;
  font-size: 18px;
  color: #555;
  transform: translateX(-80px);
  opacity: 0;
  animation: textIn 0.6s ease forwards;
  animation-delay: 0.9s;
}

.slide-image {
  flex: 1;
  display: flex;
  justify-content: center;
   opacity: 1;
}

.slide-image img {
  max-width: 420px;
  transform: translateX(120px);
  opacity: 0;
  animation: imageIn 0.7s ease forwards;
}

@keyframes titleIn {
  to { transform: translateX(0); opacity: 1; }
}
@keyframes textIn {
  to { transform: translateX(0); opacity: 1; }
}
@keyframes imageIn {
  to { transform: translateX(0); opacity: 1; }
}

/* NAVIGATION */
.slidenav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border: none;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  cursor: pointer;
  overflow: hidden;
  transition: width .35s ease, box-shadow .35s ease;
}

.slidenav.prev { left: -70px; }
.slidenav.next { right: -70px; }

.slidenav:hover {
  width: 220px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}


/* ==============================
   ARROWS — REAL CHEVRONS
================================ */

.arrow {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
}

/* fixed anchor */
.prev .arrow { left: 20px; }
.next .arrow { right: 24px; }

.arrow::before,
.arrow::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: #003366;
  border-radius: 2px;
  transition: background .3s ease;
}

/* ⬅ LEFT ARROW */
.prev .arrow::before {
  top: 5px;
  left: 0;
  transform: rotate(45deg);
  transform-origin: left center;
}

.prev .arrow::after {
  top: 5px;
  left: 0;
  transform: rotate(-45deg);
  transform-origin: left center;
}

/* ➡ RIGHT ARROW */
.next .arrow::before {
  top: 5px;
  right: 0;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.next .arrow::after {
  top: 5px;
  right: 0;
  transform: rotate(45deg);
  transform-origin: right center;
}

/* hover color */
/* COLOR CHANGE */
.slidenav:hover .arrow::before,
.slidenav:hover .arrow::after {
  background: #ff6b35;
}





.label {
  position: absolute;
  top: 50%;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  color: #003366;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .3s ease, transform .3s ease;
}


.prev .label {
  left: 56px;
  transform: translate(10px, -50%);
}


.next .label {
  right: 56px;
  transform: translate(-10px, -50%);
}

.slidenav:hover .label {
  opacity: 1;
  transform: translate(0, -50%);
}













/*api-tabs*/
.api-tabs {
  background: #fff;
}

.api-tabs-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

/* LEFT */
.api-tabs-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border-right: 3px solid #7093D6;
  
  
}

.api-tab {
  padding: 1rem 1.2rem;
  /*border: 1px solid #003366;*/
  border: 0px solid #003366;
  
  background: #fff;
  color: #003366;
  font-weight: 400;
   font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  transition: .25s ease;
}

.api-tab:hover {
  /*background: #003366;*/
  color: #000;
  font-weight: 600;
}

.api-tab.active {
  /*background: linear-gradient(135deg, #003366, #0055a5);*/
  color: #000;
    font-weight: 600;
}

/* RIGHT */
.api-tabs-content {
  background: #f7f9fc;
  border-radius: 12px;
  padding: 2.5rem;
  min-height: 320px;
}

.api-tab-content {
  display: none;
}

.api-tab-content.active {
  display: block;
}

.api-tab-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.api-tab-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.api-tab-content ul {
  list-style: none;
  padding: 0;
}

.api-tab-content li {
  margin-bottom: .6rem;
  padding-left: 1.4rem;
  position: relative;
}

.api-tab-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* MOBILE */
@media (max-width: 900px) {
  .api-tabs-layout {
    grid-template-columns: 1fr;
  }

  .api-tabs-list {
    flex-direction: row;
    overflow-x: auto;
  }

  .api-tab {
    white-space: nowrap;
  }
}

















/*SUPPORT*/
.support {
  background: #fff;
}

.support-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.support-row.reverse {
  direction: rtl;
}

.support-row.reverse > * {
  direction: ltr;
}

.support-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.support-text p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.support-text ul {
  list-style: none;
  padding: 0;
}

.support-text li {
  margin-bottom: .6rem;
  padding-left: 1.5rem;
  position: relative;
}

.support-text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

.support-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: auto;
}

/* MOBILE */
@media (max-width: 900px) {
  .support-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .support-text li {
    text-align: left;
  }
}















/* ---------- FORM VALIDATION ---------- */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #003366;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #e53935;
}






/* ---------- MODAL ---------- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modalImage {
            width: 100%;
			text-align:center;
        }

#modalImage {
            max-width: 100%;
			max-height: 50vh;
			
            height: auto;
        }
.modal.active {
  display: flex;
}

.modal-content{
  background:#fff;
  width:90%;
  max-width:80vw;
  max-height: 90wh;
  margin:5% auto;
  padding:2rem;
  position:relative;
  border-radius:12px;
  animation: scaleIn .3s ease;
}
.modalDesc{
  font-weight: 800;
  font-size: 1rem;
  padding: 10px 0;
}
.modal-content h3 {
  padding: 1px 0;
}

#closeModal{
  position:absolute;
  top:10px;
  right:15px;
  font-size:1.5rem;
  cursor:pointer;
}
#closeModalSuccess{
  position:absolute;
  top:10px;
  right:15px;
  font-size:1.5rem;
  cursor:pointer;
}

@keyframes scaleIn {
  from { transform: scale(.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.modal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
}

@media(max-width:768px){
  
  .modal-grid{grid-template-columns:1fr;}
}








.form-success {
  display: none;
  margin-top: 120px;
  color: #1a7f37;
  font-weight: 1600;
  padding: 50px;
}

.is-hidden {
  display: none !important;
}

.fade-in {
  animation: fadeIn .4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}



/* Submission status */
#response {
    font-size: 16px;
    display: block;
    text-align: center;
    margin-top: 10px;
}
.success {
    color: green;
}
.error {
    color: red;
}