/* Reset & base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { 
  font-family: 'Inter', 'Tajawal', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; 
  background: #0b0b0c; color: #fafafa;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1100px, 92%); margin: 0 auto; }

/* Direction support */
body.ltr { direction: ltr; }
body.rtl { direction: rtl; }

/* Moving strip (24/7 ticker) */
.moving-strip { position: sticky; top: 0; z-index: 50; background: #0f0f12; border-bottom: 1px solid #1d1d22; overflow: hidden; }
.moving-strip .track { 
  white-space: nowrap; padding: 8px 0; display: inline-block; 
  animation: ticker 35s linear infinite;
  opacity: .8;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== ROOT THEME ========== */
:root {
  --black: #000;
  --dark: #0a0a0a;
  --gray-dark: #1a1a1a;
  --gray-mid: #2a2a2a;
  --gray-light: #aaa;
  --white: #fff;
  --border: rgba(255,255,255,0.08);
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 1rem;
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(0,0,0,0.65);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

/* ========== NAVBAR ========== */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--gray-dark);
  border: 1px solid var(--border);
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6),
              inset 0 0 1px rgba(255,255,255,0.1);
  transition: all .4s ease;
  position: relative;
  z-index: 1000;
}

/* Show hover effect on desktop */
.nav-bar:hover {
  background: var(--gray-mid);
}

/* Wrapper for nav + toggle */
.nav-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

/* Nav links desktop */
.nav-wrapper nav {
  display: flex;
  gap: 1rem;
}

/* Hamburger toggle hidden on desktop */
.menu-toggle {
  display: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background: #fff;
  transition: 0.3s;
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .nav-wrapper nav {
    display: none;               /* hide nav by default */
    position: fixed;
    top: 0;
    right: -100%;                /* off-screen */
    height: 100vh;
    width: 70%;
    flex-direction: column;
    background: var(--gray-dark);
    padding: 2rem 1rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.4);
    transition: right 0.3s ease;
    z-index: 1200;
  }

  .nav-wrapper nav.active {
    display: flex;
    right: 0;                    /* slide in */
  }

  .menu-toggle {
    display: block; /* show hamburger */
  }

  .overlay {
    display: none;
  }

  .overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1100;
  }

  .nav-wrapper nav a {
    padding: 1rem;
    text-align: center;
    font-size: 1.2rem;
  }
}

/* ========== BRAND ========== */
.brand {
  font-weight: 900;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--white);
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: opacity .3s ease;
}
.brand:hover { opacity: .85; }
.brand img.logo {
  height: 80px;   /* fits your navbar */
  width: auto;
  object-fit: contain;
}

/* ========== NAV LINKS ========== */
nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav a {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: color .3s ease, opacity .3s ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--white);
  transition: width .3s ease;
}
nav a:hover {
  color: var(--white);
}
nav a:hover::after {
  width: 100%;
}

/* ========== LANGUAGE SWITCH ========== */
body.ltr .lang-switch { margin-left: 16px; }
body.rtl .lang-switch { margin-right: 16px; }


/* ========== BUTTONS ========== */
.btn {
  --b: 3px;   /* border thickness */
  --s: .45em; /* size of the corner */
  --color: #fff; /* make color white */
  
  padding: calc(.5em + var(--s)) calc(.9em + var(--s));
  color: var(--color);
  --_p: var(--s);
  background:
    conic-gradient(from 90deg at var(--b) var(--b), #0000 90deg, var(--color) 0)
    var(--_p) var(--_p) / calc(100% - var(--b) - 2*var(--_p)) calc(100% - var(--b) - 2*var(--_p));
  transition: .3s linear, color 0s, background-color 0s;
  outline: var(--b) solid #0000;
  outline-offset: .6em;
  font-size: 16px;
  border: 0;

  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.btn:hover,
.btn:focus-visible {
  --_p: 0px;
  outline-color: #fff; /* outline visible on dark bg */
  outline-offset: .05em;
}

.btn:active {
  background: #fff;
  color: #000; /* contrast when pressed */
}

/* Ghost Button */
.btn.ghost {
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 1px;
  padding: 13px 20px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  position: relative;
  outline: 0;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.btn.ghost:after {
  content: "";
  background: var(--gray-mid); /* shadow background */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: -1;
  transition: 0.2s;
}

.btn.ghost:hover {
  border-color: var(--white);
}

.btn.ghost:hover:after {
  top: 0;
  left: 0;
}

@media (min-width: 768px) {
  .btn.ghost {
    padding: 13px 50px;
  }
}


/* Small Button */
.btn.small {
  padding: .6rem 1rem;
  font-size: .9rem;
  border-radius: .7rem;
}

/* ========== TOGGLE BUTTON (Mobile Only) ========== */
.menu-toggle {
  display: none; /* hidden on desktop */
  cursor: pointer;
  width: 32px;
  height: 28px;
  position: relative;
  z-index: 1300;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: transform 0.35s ease, top 0.35s ease, opacity 0.35s ease;
}

/* Position the bars nicely */
.menu-toggle span:nth-child(1) {
  top: 4px;
}
.menu-toggle span:nth-child(2) {
  top: 12px;
}
.menu-toggle span:nth-child(3) {
  top: 20px;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* When active â†’ morph into X */
.menu-toggle.active span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
}

/* ========== MOBILE MENU ========== */
@media (max-width: 900px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--gray-dark);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.35s ease-in-out;
    z-index: 2000;
    display: flex; /* important: nav should still be flex by default */
  }

  nav.active {
    right: 0;
  }

  nav a {
    font-size: 1.2rem;
    color: var(--white);
  }

  /* Hide CTA button on mobile */
  .btn.small {
    display: none;
  }
/* CTA responsive fix */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-top: 20px; /* was 12px -> more breathing room below subtitle */
}

.cta-row .btn {
  flex: 1 1 auto;
  min-width: 140px;
  text-align: center;
}

@media (max-width: 576px) {
  .cta-row {
    flex-direction: column;
    align-items: center;
  }
  .cta-row .btn {
    width: 100%;
    max-width: 260px;
  }
}

  /* Show toggle */
  .menu-toggle {
    display: flex;
  }

  /* Hide inline nav inside header bar */
  .nav-bar nav {
    display: none; /* hidden in header */
  }

  /* Show sliding nav when active */
  .nav-bar nav.active {
    display: flex;
  }
}


/* Hero */
.hero {
  padding: clamp(100px, 15vh, 200px) 0 40px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
}

/* Grid content stays above slideshow */
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
margin-top:-100px;
    
}

/* Dark overlay for readability */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* Background slideshow */
.hero .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeSlideshow 18s infinite;
  z-index: 1;
}
.hero .slide:nth-child(1) {
  background-image: url("/assets/img/image1.jpg");
  animation-delay: 0s;
}
.hero .slide:nth-child(2) {
  background-image: url("/assets/img/image2.jpg");
  animation-delay: 6s;
}
.hero .slide:nth-child(3) {
  background-image: url("/assets/img/image3.jpg");
  animation-delay: 12s;
}
@keyframes fadeSlideshow {
  0% { opacity: 0; }
  8% { opacity: 1; }
  33% { opacity: 1; }
  41% { opacity: 0; }
  100% { opacity: 0; }
}

/* Title glow */
.title {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  margin: 0 0 24px; /* was 12px -> more space below title */
  color: #fff;
  text-transform: uppercase;
  animation: glowPulse 2.5s ease-in-out infinite;
  text-align: left;
}
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255,255,255,0.7),
                 0 0 20px rgba(255,255,255,0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255,255,255,1),
                 0 0 40px rgba(255,255,255,0.8);
  }
}

/* Subtitle typing/fade */
.subtitle {
  opacity: 0.95;
  font-size: clamp(16px, 2vw, 20px);
  max-width: 48ch;
  margin: 0 0 28px; /* was 24px -> more space below subtitle */
  text-align: left;
  color: #fff;
}
.subtitle span {
  opacity: 0;
  display: inline-block;
  white-space: nowrap;
}
@keyframes fadeInChar {
  from { opacity: 0; transform: translateY(0.4em); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero art (illustrations/orbs) */
.hero-art { 
  position: relative; 
  height: clamp(200px, 40vw, 340px); 
}
.orb { 
  position: absolute; 
  border-radius: 50%; 
  filter: blur(20px); 
  animation: float 8s ease-in-out infinite alternate; 
}
.orb-1 { width: 220px; height: 220px; background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.1)); top: 0; left: 20px; }
.orb-2 { width: 160px; height: 160px; background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.08)); bottom: 20px; right: 30px; animation-duration: 10s; }
.orb-3 { width: 120px; height: 120px; background: radial-gradient(circle at 30% 30%, #fff, rgba(255,255,255,.06)); top: 40px; right: 80px; animation-duration: 12s; }
@keyframes float { from { transform: translateY(0); } to { transform: translateY(-24px); } }

/* ========================
   Section Titles
======================== */
.section-title {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  margin: clamp(20px, 5vw, 40px) auto 24px;
  text-align: center;
  line-height: 1.2;
  font-weight: 900;
  max-width: 800px;
  color: #000;
  position: relative;
  display: block;       /* Full block so it can center nicely */
  text-align: center;   /* Ensure text is centered */
  padding-bottom: 12px; /* Space for underline */
}

/* Line effect under title */
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;             /* Always center */
  bottom: 0;
  width: 0;              /* Start small */
  height: 3px;
  background: linear-gradient(90deg, #000 0%, #fff 100%);
  border-radius: 3px;
  transform: translateX(-50%); /* Keep centered */
  transition: width 0.5s ease-in-out;
}

/* Animate on load (optional) */
.section-title.appear::after {
  width: 70px;  /* Default underline size */
}

/* Hover effect */
.section-title:hover::after {
  width: 120px; /* Expands evenly from middle */
  background: linear-gradient(90deg, #fff 0%, #000 100%);
}
/* =========================
   WHO WE ARE SECTION
   ========================= */
.who-we-are {
  background: #fff;
  color: #000;
  padding: 90px 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}

.who-we-are .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Headings */
.who-we-are h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
}

.who-we-are h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #000;
  margin: 12px auto 0;
  border-radius: 2px;
}

.who-we-are h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 35px;
  color: #222;
}

/* Strengths cards stacked vertically */
.who-we-are .strengths {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* space between cards */
  max-width: 700px;
}

.who-we-are .strengths li {
  width: 100%;
  background: #fff;
  padding: 22px 18px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  border: 1px solid #eee;
}

/* Hover lift effect */
.who-we-are .strengths li:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
  border-color: #000;
}

/* =========================
   RTL (Arabic) FIXES
   ========================= */
[dir="rtl"] .who-we-are {
  direction: rtl;
}

[dir="rtl"] .who-we-are h2,
[dir="rtl"] .who-we-are h3,
[dir="rtl"] .who-we-are p,
[dir="rtl"] .who-we-are .strengths li {
  text-align: center; /* keep everything centered for Arabic */
}


/* ========================
   Services Section
======================== */
.services {
  padding: 100px 20px;
  background: #fff;
  color: #000;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 80px;
}

/* ========================
   Service Item (Desktop)
======================== */
.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

/* Image */
.service-image {
  flex: 1;
  text-align: center;
}

.service-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.05);
}

/* ========================
   Text Box (Desktop)
======================== */
.service-text {
  flex: 1;
  padding: 25px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Hover overlay effect */
.service-text::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #000, #444);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-text:hover::before {
  opacity: 0.08;
}

.service-text:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.service-text * {
  position: relative;
  z-index: 1;
}

/* Typography */
.service-text h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.service-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #444;
}

.service-text:hover h3 {
  color: #000;
}

/* ========================
   Read More Button
======================== */
.read-more {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #000;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease, transform 0.3s ease;
}

.read-more:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ========================
   Mobile / Tablet Layout
======================== */
@media (max-width: 1024px) {
  .service-item,
  .service-item.reverse {
    flex-direction: column;
    text-align: center;
    margin-bottom: 60px;
  }

  .service-image img {
    width: 280px;
    max-width: 100%;
    border-radius: 12px;
  }

  .service-text {
    padding: 20px;
    margin-top: 20px;
  }

  .service-text h3 {
    font-size: 1.6rem;
  }

  .service-text p {
    font-size: 1rem;
  }
}

/* ========================
   Small Mobile Fixes
======================== */
@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 50px;
  }

  .service-text h3 {
    font-size: 1.4rem;
  }

  .service-text p {
    font-size: 0.95rem;
  }

  .read-more {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* ========================
   Bottom Button
======================== */
.services-bottom {
  text-align: center;
  margin-top: 40px;
}


/* Why Bullets */
.bullets {
  line-height: 1.9;
  opacity: 0.95;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-left: 0;
  list-style: none;
  position: relative;
}
.bullets li {
  margin: 14px 0;
  padding-left: 28px;
  font-size: 1.15rem;
  color: #e5e5e5;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}
.bullets li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  transition: color 0.3s ease;
}
.bullets li:hover::before {
  color: #4CAF50;
}
.bullets li:hover {
  transform: translateX(8px);
  color: #fff;
}

/* Separator between Bullets & Testimonials */
.section-separator {
  width: 80%;
  height: 3px;
  margin: -40px auto 60px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  border-radius: 50px;
  animation: separatorGlow 3s ease-in-out infinite;
}
@keyframes separatorGlow {
  0%   { opacity: 0.4; filter: blur(1px); }
  50%  { opacity: 1; filter: blur(2px); }
  100% { opacity: 0.4; filter: blur(1px); }
}

/* ================== TESTIMONIALS SECTION ================== */
.testimonials {
  background: radial-gradient(circle at top center, #1a1a1f 0%, #0a0a0d 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Title */
.testimonials .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 70px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  position: relative;
}
.testimonials .section-title::after {
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff4d4d, #4d9dff, #a64dff);
  display: block;
  margin: 18px auto 0;
  border-radius: 3px;
}

/* Carousel */
.testimonial-carousel {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}
.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
  gap: 30px;
}

/* Card */
.testimonial-card {
  flex: 0 0 calc(33.333% - 20px); /* Default desktop */
  background: #fff;
  border-radius: 20px;
  padding: 35px 28px 28px;
  text-align: left;
  color: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 2px solid #e5e5e5;
  position: relative;
  transition: all 0.35s ease;
}
.testimonial-card:hover {
  background: #121217;
  color: #fff;
  transform: translateY(-12px) scale(1.025);
  box-shadow: 0 0 45px rgba(0,0,0,0.45);
  border-color: #444;
}

/* Quote Icon */
.quote-icon {
  font-size: 2.5rem;
  color: #ff4d4d;
  font-weight: bold;
  position: absolute;
  top: 15px;
  left: 20px;
  opacity: 0.8;
}
.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 28px;
  padding-top: 30px;
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #121217;
}
.testimonial-author h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
}
.testimonial-author span {
  font-size: 0.9rem;
  color: #555;
}
.testimonial-card:hover .testimonial-author h4,
.testimonial-card:hover .testimonial-author span {
  color: #fff;
}
.testimonial-card:hover .testimonial-author img {
  border-color: #fff;
  filter: brightness(0) invert(1);
}

/* Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 45px;
}
.carousel-controls button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.35s ease;
}
.carousel-controls button:hover {
  background: #fff;
  color: #000;
  transform: scale(1.12);
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 20px); /* 2 per row */
  }
}
@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%; /* 1 per row */
  }
}
/* --- RTL Styling Fix (Arabic) --- */
html[lang="ar"] .testimonial-text,
html[lang="ar"] .testimonial-author h4,
html[lang="ar"] .testimonial-author span {
  text-align: right;
  direction: rtl;
}

/* Keep the profile image on the LEFT side even in Arabic */
html[lang="ar"] .testimonial-author {
  flex-direction: row !important;
}

/* Prevent layout flipping or reversed padding */
html[lang="ar"] .testimonial-card {
  direction: ltr;
  text-align: right;
}



/* ========================= */
/* 🌐 Contact Form Styles    */
/* ========================= */
.form-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
  width: 100%; /* ensures it fits on mobile */
}

.form-wrap form.card {
  display: grid;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  padding: 40px 32px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 15px 50px rgba(0,0,0,0.8),
              0 0 30px rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

.form-wrap form.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.9),
              0 0 50px rgba(255,255,255,0.08);
}

.form-wrap h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-align: center; /* centered title */
}

/* Inputs, selects, textareas */
.form-wrap label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: #ddd;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%; /* full width always */
  background: #0f0f14;
  color: #fff;
  border: 1px solid #23232b;
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s, background .2s;
  font-size: 15px;
}

.form-wrap input:focus,
.form-wrap select:focus,
.form-wrap textarea:focus {
  border-color: #3a3a45;
  background: #16161d;
}

/* File input */
.form-wrap input[type="file"] {
  padding: 8px;
  background: #111;
  cursor: pointer;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-wrap form.card {
    padding: 24px 16px; /* reduce padding on small screens */
  }

  .form-wrap h3 {
    font-size: 1.3rem;
  }
}

/* Submit button */
.form-wrap .btn {
  margin-top: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  background: linear-gradient(90deg, #444, #222);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%; /* full-width button */
}

.form-wrap .btn:hover {
  background: linear-gradient(90deg, #666, #333);
  transform: translateY(-2px);
}

/* Compact Stylish Footer */
.site-footer {
  padding: 50px 0 30px; /* â¬‡ smaller height */
  background: linear-gradient(180deg, #0b0b10, #11111a, #0a0a0e);
  border-top: 2px solid rgba(255,255,255,0.08);
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

/* Animated background accent */
.site-footer::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.07), transparent 70%);
  animation: footerGlow 35s infinite linear;
}
@keyframes footerGlow {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px; /* tighter spacing */
  position: relative;
  z-index: 1;
}

/* Section headings */
.footer-grid h4 {
  font-size: 1.4rem; /* â¬‡ compact */
  margin-bottom: 14px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}
.footer-grid h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #fff, transparent);
  margin-top: 6px;
  opacity: 0.6;
}

/* Footer links */
.footer-grid a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem; /* smaller */
  color: #cfcfcf;
  text-decoration: none;
  transition: color .4s ease, transform .3s ease;
}
.footer-grid a:hover {
  color: #fff;
  transform: translateX(5px) scale(1.02);
}

/* Sleek Social Icons */
.socials a {
  display: inline-grid;
  place-items: center;
  width: 42px;   /* â¬‡ more compact */
  height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: all .35s ease;
}
.socials a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px) scale(1.12);
  box-shadow: 0 12px 24px rgba(0,0,0,0.6);
}

/* Copyright */
.copyright {
  padding-top: 18px;
  font-size: 0.85rem;
  opacity: .7;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 30px;
  z-index: 1;
  position: relative;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .socials {
    justify-content: center;
  }
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Float animation container */
[data-float] { position: relative; isolation: isolate; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  nav { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
/* Blog Section */
.blog-section {
  margin: 80px 0;
  text-align: center;
  padding: 0 20px;
}

.blog-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.blog-title::after {
  content: "";
  display: block;
  width: 70%;
  height: 4px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  margin: 12px auto 0;
  border-radius: 4px;
}

/* Blog Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  justify-content: center;
}

/* Blog Card */
.blog-card {
  display: flex;
  flex-direction: column;
  background: #1a1a1a;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 6px 25px rgba(0,0,0,0.7);
  height: 420px; /* fixed equal height */
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 45px rgba(0,0,0,0.85);
}

/* Blog Image */
.blog-image {
  position: relative;
  overflow: hidden;
  height: 200px;
  width: 100%;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-image img {
  transform: scale(1.15);
}

/* Tag */
.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(90deg, #ff6a00, #ee0979);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

/* Blog Content */
.blog-content {
  flex: 1;
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.blog-content p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-date {
  display: block;
  font-size: 0.85rem;
  color: #aaa;
  margin-top: auto;
  font-style: italic;
}

/* View All Button */
.view-all {
  text-align: center;
  margin-top: 30px;
}
.btn-view-all {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-view-all:hover {
  background: #000;
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .blog-title { font-size: 2rem; }
  .blog-card { height: 380px; }
}
@media (max-width: 576px) {
  .blog-title { font-size: 1.6rem; }
  .blog-card { height: auto; }
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.footer-contact li {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #fff;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: #fff; /* default white */
  min-width: 18px; /* keeps alignment */
  text-align: center;
  transition: color 0.3s ease;
}

.footer-contact a {
  color: #fff; /* default white */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-contact li:hover i {
  color: #00c853; /* green on hover */
}
/* ===== Hero Section ===== */
.about-hero {
  background: linear-gradient(135deg, #000 0%, #222 100%);
  color: #fff;
  padding: 140px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.07), transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from { opacity: 0.4; transform: scale(1); }
  to   { opacity: 0.8; transform: scale(1.1); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: #ccc;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease;
}

/* ===== Sections Wrapper ===== */
.about-sections {
  padding: 100px 20px;
  background: #fff;
  position: relative;
  z-index: 2;
}

/* ===== Blocks ===== */
.about-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
  perspective: 1200px;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s ease;
}

.about-block.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.about-block.reverse .about-text {
  order: 2;
}

.about-block.reverse .about-image {
  order: 1;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 800;
  color: #000;
  position: relative;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #000;
  margin-top: 10px;
  transition: width 0.4s ease;
}

.about-text h2:hover::after {
  width: 120px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #444;
  transition: transform 0.3s ease;
}

.about-text p:hover {
  transform: translateX(8px);
}

/* ===== Image Styling ===== */
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease-out;
}

/* Image itself */
.about-image img {
  width: 100%;
  max-width: 220px;   /* smaller size */
  height: auto;
  border-radius: 20px;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25); /* 🔹 shadow now matches image */
  transition: all 0.6s ease;
}

/* Hover effect */
.about-image img:hover {
  filter: grayscale(0%) brightness(1.05);
  transform: rotateY(10deg) scale(1.08);
}

/* Remove overlay shadow effect */
.about-image::after {
  display: none; /* 🔹 disabled background overlay */
}

/* Hover overlay */
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-image:hover::after {
  opacity: 1;
}

/* ===== Reveal Active ===== */
.reveal.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-block {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-block.reverse {
    grid-template-columns: 1fr;
  }

  .about-block.reverse .about-text,
  .about-block.reverse .about-image {
    order: unset; /* reset order on mobile */
  }

  .about-text h2::after {
    margin-left: auto;
    margin-right: auto;
  }

  .about-image {
    margin-top: 25px;
  }

  .about-image img {
    max-width: 160px;  /* 🔹 smaller on tablets */
    transform: none;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .about-text h2 {
    font-size: 1.7rem;
  }
  .about-text p {
    font-size: 1rem;
  }
  .about-image img {
    max-width: 120px;  /* 🔹 smallest on mobile */
  }
}




/* ========================
   Section Titles
======================== */
.whychooseus {
  font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  margin: clamp(20px, 5vw, 40px) auto 24px;
  text-align: center;
  line-height: 1.2;
  font-weight: 900;
  max-width: 800px;
  color: #fff;
  position: relative;
  display: block;       /* Full block so it can center nicely */
  text-align: center;   /* Ensure text is centered */
  padding-bottom: 12px; /* Space for underline */
}

/* Line effect under title */
.whychooseus::after {
  content: "";
  position: absolute;
  left: 50%;             /* Always center */
  bottom: 0;
  width: 0;              /* Start small */
  height: 3px;
  background: linear-gradient(90deg, #000 0%, #fff 100%);
  border-radius: 3px;
  transform: translateX(-50%); /* Keep centered */
  transition: width 0.5s ease-in-out;
}

/* Animate on load (optional) */
.whychooseus.appear::after {
  width: 70px;  /* Default underline size */
}

/* Hover effect */
.whychooseus:hover::after {
  width: 120px; /* Expands evenly from middle */
  background: linear-gradient(90deg, #fff 0%, #000 100%);
}
.featured-service {
  padding: 120px 20px;
  background: linear-gradient(135deg, #000 60%, #111 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.featured-service::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at 20% 40%, rgba(255,255,255,0.08), transparent 70%);
  z-index: 1;
}

.feature-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.feature-text .badge {
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(255,255,255,0.3);
}

.feature-text h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(90deg, #fff, #aaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-text .intro {
  font-size: 20px;
  color: #ddd;
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 550px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 3px solid #fff;
  padding-left: 25px;
}

.feature-list li {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 10px;
}

.feature-list li::before {
  content: "✦";
  position: absolute;
  left: -25px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.feature-list li:hover::before {
  color: #aaa;
  transform: scale(1.3);
}

.img-frame {
  border: 5px solid #fff;
  border-radius: 25px;
  overflow: hidden;
  transform: rotate(-2deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.img-frame:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 30px 70px rgba(0,0,0,0.9);
}

.img-frame img {
  width: 100%;
  display: block;
  filter: grayscale(100%) contrast(130%);
  transition: filter 0.4s ease;
}

.img-frame img:hover {
  filter: grayscale(0%) contrast(100%);
}

@media(max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .feature-text h2 { font-size: 32px; }
  .feature-text .intro { font-size: 18px; margin: 0 auto 30px; }
  .img-frame { margin-top: 40px; }
}
/* WhatsApp Floating Button - Black & White */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: #000; /* Black background */
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  display: block;
  filter: brightness(0) invert(1); /* White icon */
}

.whatsapp-float:hover {
  background: #fff;       /* Turn white on hover */
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.whatsapp-float:hover img {
  filter: brightness(0);  /* Black icon on hover */
}
/* contact us button below why choose us*/
.contact-cta {
  text-align: center;
  margin: 60px 0 50px; /* spacing */
}

.contact-cta .btn {
  background: linear-gradient(135deg, #000, #222);
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #fff; /* always white border */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-cta .btn:hover {
  background: #fff;
  color: #000;
  border: 2px solid #fff; /* keep border white */
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}
/* about intro*/
.about-intro {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.about-intro h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.about-intro p {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
  color: #333;
}
/*our values */
/* Our Values */
.our-values {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.our-values h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 50px;
  color: #111;
  position: relative;
}

.our-values h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #000;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Value Cards */
.value-card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  background: #fff;
}

/* Icon */
.value-card .icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

/* Text */
.value-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.value-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
}
/*our team*/
/* Our Team */
.our-team {
  background: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
}

.our-team h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.our-team .team-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Team Cards */
.team-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  border-color: #000;
}

.team-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.team-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* ===== Golden Visa Page Styles ===== */
.golden-visa-page {
  background: #0f0f0f;
  color: #f5f5f5;
  font-family: 'Inter', 'Poppins', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Headings */
.golden-visa-page h1,
.golden-visa-page h2,
.golden-visa-page h3 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.golden-visa-page h2 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
}

.golden-visa-page h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== Hero Section ===== */
.golden-visa-page .hero {
  position: relative;
  min-height: calc(100vh - 70px);   /* fits full screen minus header */
  display: flex;
  align-items: center;              /* vertical centering */
  justify-content: center;          /* horizontal centering */
  text-align: center;
  color: #fff;
  margin-top: 70px;                 /* adjust for fixed header */
  padding: 0 20px;
  margin-top:0;
}

.golden-visa-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.golden-visa-page .hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.golden-visa-page .hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.golden-visa-page .hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #ccc;
}

.golden-visa-page .hero button {
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.golden-visa-page .hero button:hover {
  background: #fff;
  color: #000;
}

/* ===== Sections ===== */
.golden-visa-page section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

.golden-visa-page section ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 25px;
  padding: 0;
}

.golden-visa-page section ul li {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #222;
  transition: 0.3s;
  text-align: center;
}

.golden-visa-page section ul li:hover {
  background: #2a2a2a;
  transform: translateY(-3px);
}

/* ===== Modal Overlay ===== */
.golden-visa-page .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);

  display: flex;               /* Flexbox centering */
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* ===== Modal Box ===== */
.golden-visa-page .modal-content {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;   /* smaller size for desktop */
  max-height: 90vh;   /* fit within screen */
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);

  display: flex;
  flex-direction: column;
  justify-content: center;   /* center inputs */
  overflow: hidden;          /* no scrollbar */
}

/* ===== Title ===== */
.golden-visa-page .modal-content h3 {
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ===== Labels ===== */
.golden-visa-page .modal-content label {
  display: block;
  margin: 6px 0 3px;
  font-weight: 600;
  color: #fff;
  font-size: 0.85rem;
}

/* ===== Inputs ===== */
.golden-visa-page .modal-content input {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #1d1d1d;
  color: #fff;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

/* ===== Submit Button ===== */
.golden-visa-page .modal-content button {
  width: 100%;
  padding: 12px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.3s;
  margin-top: 10px;
}

.golden-visa-page .modal-content button:hover {
  background: #f5f5f5;
}

/* ===== Close Button ===== */
.golden-visa-page .close {
  position: absolute;
  top: 12px; right: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

/* ===== Responsive Adjustments ===== */
@media(max-width: 768px) {
  .golden-visa-page .modal-content {
    max-width: 95%;
    padding: 15px;
  }
  .golden-visa-page .modal-content h3 {
    font-size: 1rem;
  }
  .golden-visa-page .modal-content button {
    font-size: 0.9rem;
    padding: 10px;
  }
}
/* === Golden Visa Section Wrapper === */
.gvisa-block {
  padding: 100px 20px;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(50px);
}

.gvisa-block.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Alternating Backgrounds === */
.gvisa--light {
  background: var(--white);
  color: var(--black);
}

.gvisa--dark {
  background: var(--black);
  color: var(--white);
}

/* === Section Titles === */
.gvisa-title {
  font-size: 2.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.gvisa-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: var(--gold);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* === List Styling === */
.gvisa-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 650px;
  text-align: left;
}

.gvisa-item {
  font-size: 1.1rem;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.gvisa--light .gvisa-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gvisa-item::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.8rem;
  margin-right: 8px;
  transition: var(--transition);
}

.gvisa-item:hover {
  transform: translateX(5px);
  color: var(--gold);
}

.gvisa-item:hover::before {
  transform: scale(1.2);
}

/* === Responsive === */
@media (max-width: 768px) {
  .gvisa-block {
    padding: 70px 20px;
  }

  .gvisa-title {
    font-size: 1.8rem;
  }

  .gvisa-item {
    font-size: 1rem;
  }
}