/* ====================Visa MAIN SECTION ==================== */
.visa-agency-section {
  background-color: #ffffff;
  padding: 3rem 1.5rem;
}

/* ==================== IMAGE ==================== */
.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); */
}

/* ==================== CONTENT ==================== */
.content-container .main-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #212529;
  margin-bottom: 1rem;
}

.content-container .intro-text {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
  .visa-agency-section {
    text-align: center;
  }

  .content-container .main-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .visa-agency-section {
    padding: 2rem 1rem;
  }

  .content-container .main-title {
    font-size: 1.6rem;
  }
}

/* invest Visa css */

/* ====== Section Header ====== */
.section-header {
  text-align: center;
  padding: 40px 20px 80px;
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
  position: relative;
  overflow: hidden;
}

.section-header::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(62, 146, 204, 0.05);
  top: -150px;
  right: -150px;
}

.section-header::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(10, 36, 99, 0.05);
  bottom: -100px;
  left: -100px;
}

.section-header h5 {
  color: #3e92cc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  z-index: 2;
}

.section-header h5::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: #3e92cc;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-top: 20px;
  color: #0a2463;
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

/* ====== Visa Block ====== */
.visa-block {
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-width: 1400px;
  margin: 0 auto;
}

.visa-block:nth-child(even) {
  background: linear-gradient(135deg, #fafbff 0%, #f5f8ff 100%);
}

.visa-block::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.05),
    transparent
  );
  bottom: 0;
  left: 0;
}

.visa-block:hover {
  background: linear-gradient(135deg, #f2f6ff 0%, #e8f0ff 100%);
}

/* ====== Image Section ====== */
.visa-image {
  flex: 1;
  text-align: center;
  padding: 20px;
  min-width: 300px;
  position: relative;
  z-index: 1;
}

.visa-image::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  /* background: linear-gradient(45deg, rgba(62, 146, 204, 0.1) 0%, rgba(10, 36, 99, 0.05) 100%); */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.visa-block:hover .visa-image::before {
  transform: translate(-50%, -50%) rotate(10deg) scale(1.05);
}

.visa-image img {
  max-width: 380px;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(10, 36, 99, 0.1);
  transform: translateY(0) scale(1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
}

.visa-block:hover .visa-image img {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 24px 48px rgba(10, 36, 99, 0.15);
}

/* ====== Content Section ====== */
.visa-content {
  flex: 1;
  padding: 20px 60px;
  min-width: 300px;
  position: relative;
  z-index: 2;
}

.visa-content h3 {
  color: #0a2463;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.visa-content h3 i {
  font-size: 2.2rem;
  color: #3e92cc;
}

.visa-content p {
  color: black;
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.8;
}

.visa-content ul {
  list-style: none;
  margin-bottom: 25px;
}

.visa-content li {
  color: black;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  font-size: 1.05rem;
}

.visa-content li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #3e92cc;
  background: rgba(62, 146, 204, 0.1);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.visa-validity {
  background: #3e92cc;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 12px;
  margin-top: 10px;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(62, 146, 204, 0.3);
  gap: 8px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.visa-validity:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(62, 146, 204, 0.4);
}

.visa-validity i {
  font-size: 1.1rem;
}

/* ====== Floating Elements ====== */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(62, 146, 204, 0.05);
  z-index: 0;
}

.element-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.element-2 {
  width: 120px;
  height: 120px;
  bottom: 15%;
  right: 8%;
  animation: float 10s ease-in-out infinite 2s;
}

/* ====== Animation ====== */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(10deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====== Responsive ====== */
@media (max-width: 1200px) {
  .visa-content {
    padding: 20px 40px;
  }
}

@media (max-width: 992px) {
  .visa-block {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .visa-content {
    padding: 30px 20px 0;
  }

  .visa-image {
    padding: 0 20px 30px;
  }

  .visa-content h3 {
    justify-content: center;
  }

  .visa-content li {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header {
    padding: 80px 20px 60px;
  }

  .visa-content h3 {
    font-size: 1.7rem;
  }
}

/* =======
        Visa Section Choose Us
    =========
    */

/* 🌟 Section Base */
.why-uae-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f9fcff 0%, #e4f2ff 100%);
  overflow: hidden;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #002244;
}
.section-header span {
  color: #0077ff;
}
.section-header p {
  max-width: 700px;
  margin: 15px auto 0;
  color: #555;
  font-size: 18px;
}

/* 🌐 Grid Layout */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* 🧊 Card Style */
.reason-card {
  perspective: 1000px;
}
.card-inner {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 45px 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.6s ease;
  overflow: hidden;
  transform-style: preserve-3d;
}
.card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(0, 119, 255, 0.1),
    rgba(0, 204, 255, 0.1)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}
.reason-card:hover .card-inner {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 119, 255, 0.2);
}
.reason-card:hover .card-inner::before {
  opacity: 1;
}

/* 🎯 Icon + Hover Animation */
.icon {
  font-size: 42px;
  color: #0077ff;
  margin-bottom: 20px;
  transition: transform 0.5s ease, color 0.4s ease;
  position: relative;
  z-index: 2;
}
.reason-card:hover .icon {
  transform: scale(1.2) rotate(10deg);
  color: #004bff;
}

/* Text Styling */
.reason-card h4 {
  font-size: 22px;
  color: #003366;
  font-weight: 600;
  margin-bottom: 10px;
  z-index: 2;
  position: relative;
}
.reason-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  z-index: 2;
  position: relative;
}

/* 🫧 Floating Shape Animation */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatShape 12s infinite ease-in-out;
}
.shape1 {
  width: 250px;
  height: 250px;
  background: #0077ff;
  top: 5%;
  left: -5%;
}
.shape2 {
  width: 350px;
  height: 350px;
  background: #00ccff;
  bottom: -15%;
  right: -10%;
  animation-delay: 3s;
}
@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
  .why-uae-section {
    padding: 80px 40px;
  }
}
@media (max-width: 768px) {
  .why-uae-section {
    padding: 60px 25px;
  }
  .section-header h2 {
    font-size: 30px;
  }
  .card-inner {
    padding: 35px 25px;
  }
}

/* Table Section-in Visa */

.table-container {
  max-width: 1200px;
  margin: 30px auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

h4 {
  text-align: center;
  margin: 30px 0;
  color: #2c3e50;
  font-weight: 600;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.responsive-table thead {
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: white;
}

.responsive-table th {
  padding: 18px 15px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
}

.responsive-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.responsive-table tbody tr:last-child td {
  border-bottom: none;
}

.responsive-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.responsive-table tbody tr:hover {
  background-color: #f1f7fd;
  transition: background-color 0.2s ease;
}

.document-name {
  font-weight: 500;
  text-align: left;
  color: #2c3e50;
}

.checkmark {
  color: #27ae60;
  font-size: 18px;
}

.crossmark {
  color: #e74c3c;
  font-size: 18px;
}

.optional {
  color: #f39c12;
  position: relative;
}

.optional::after {
  content: "(optional)";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  white-space: nowrap;
  color: #f39c12;
}

.responsive-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}

@media screen and (max-width: 768px) {
  .responsive-table {
    font-size: 14px;
  }

  .responsive-table th,
  .responsive-table td {
    padding: 12px 8px;
  }
}

@media screen and (max-width: 480px) {
  body {
    padding: 10px;
  }

  h1 {
    font-size: 22px;
    margin: 20px 0;
  }

  .responsive-table {
    min-width: 500px;
  }
}

/* text center investor */

.investor-visa-intro-wrapper {
  text-align: center;
  margin: 50px auto;
  max-width: 800px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.investor-visa-intro-wrapper p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

.investor-visa-intro-wrapper p:last-child {
  margin-bottom: 0;
}

.investor-visa-heading {
  font-size: 1.8rem;
  color: #00698f;
  margin-bottom: 20px;
  font-weight: bold;
}

.investor-visa-highlight {
  color: #00698f;
  font-weight: bold;
}

@media (max-width: 768px) {
  .investor-visa-intro-wrapper {
    margin: 30px auto;
    padding: 15px;
  }

  .investor-visa-intro-wrapper p {
    font-size: 1rem;
  }

  .investor-visa-heading {
    font-size: 1.5rem;
  }
}

/* tourist visa Section  */

/* ====== Base Section ====== */
.uae-tourist-section {
  width: 100%;
  background: linear-gradient(135deg, #f9fbff 0%, #eef3ff 100%);
  overflow: hidden;
  position: relative;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial;
}

/* ====== Row Layout ====== */
.uae-tourist-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  min-height: 600px;
}

/* ====== Left Content ====== */
.uae-tourist-content {
  flex: 0 0 50%;
  padding: 50px 3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.uae-tourist-badge {
  display: inline-block;
  background-color: #0059ff;
  align-self: flex-start;
  color: #fff;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.uae-tourist-content h4 {
  font-size: 42px;
  font-weight: 700;
  color: #0f1724;
  line-height: 1.3;
  text-align: left;
  margin: 5px;
}

.uae-tourist-content p {
  color: #475569;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.uae-tourist-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: #0059ff;
  align-self: flex-start;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 89, 255, 0.25);
}

.uae-tourist-btn:hover {
  background-color: #0042cc;
  box-shadow: 0 8px 24px rgba(0, 89, 255, 0.35);
  transform: translateY(-2px);
}

/* ====== Right Image ====== */
.uae-tourist-image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}

.uae-tourist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.uae-tourist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 89, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  z-index: 2;
}

/* ====== Responsive ====== */
@media (max-width: 992px) {
  .uae-tourist-wrapper {
    flex-direction: column-reverse;
  }

  .uae-tourist-content {
    padding: 60px 8%;
    text-align: center;
  }

  .uae-tourist-content h4 {
    font-size: 32px;
  }

  .uae-tourist-content p {
    font-size: 16px;
  }

  .uae-tourist-image {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .uae-tourist-content {
    padding: 50px 6%;
  }

  .uae-tourist-content h4 {
    font-size: 26px;
  }

  .uae-tourist-btn {
    padding: 12px 28px;
    font-size: 15px;
  }

  .uae-tourist-content p {
    font-size: 15px;
  }

  .uae-tourist-image {
    height: 300px;
  }
}

/* Visa Types Css Start */

/* Main Section */
.main-section {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  animation: slideUp 0.8s ease-out 0.2s both;
  margin-bottom: 30px;
}

/* Table Styling */
.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1d4ed8;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  /* background: linear-gradient(90deg, #2563eb, #f59e0b); */
  border-radius: 2px;
}

.table-container {
  overflow-x: auto;
  margin-bottom: 30px;
  border-radius: 12px;
}

.visa-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.visa-table thead {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.visa-table th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 600;
  color: #ffffff;
}

.visa-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.visa-table tbody tr:hover {
  background: rgba(37, 99, 235, 0.05);
}

.visa-table tbody tr:last-child td {
  border-bottom: none;
}

/* Note Section */
.note-section {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  margin-top: 20px;
}

.note-section p {
  color: #92400e;
  font-size: 0.95rem;
}

/* Full Width Requirements Section with Background */
.visa-requirements-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 35px 20px;
  overflow: hidden;
}

.visa-requirements-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1544989164-31dc3c645987?auto=format&fit=crop&w=1400&q=80")
    center / cover no-repeat;
  opacity: 0.85;
  z-index: -2;
}

.visa-requirements-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  z-index: -1;
}

.requirements-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tourist-visa__header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.tourist-visa__header::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #5aa8ff, #6ee0ff);
  margin: 10px auto 0;
  border-radius: 2px;
}

.tourist-visa__title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tourist-visa__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-top: 8px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.tourist-visa__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.tourist-visa__item {
  position: relative;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 30px 25px 30px 75px;
  transition: all 0.4s ease;
  overflow: hidden;
  color: #ffffff;
}

.tourist-visa__item::before {
  content: attr(data-icon);
  position: absolute;
  left: 20px;
  top: 25px;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #5aa8ff, #6ee0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
}

.tourist-visa__item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(90, 168, 255, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tourist-visa__item:hover::before {
  transform: rotate(15deg) scale(1.3);
}

.tourist-visa__item-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.tourist-visa__item-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.5;
}

/* CTA Buttons */
.tourist-visa__actions {
  text-align: center;
  margin-top: 40px;
}

.tourist-visa__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(90, 168, 255, 0.9),
    rgba(110, 224, 255, 0.85)
  );
  backdrop-filter: blur(4px);
  cursor: pointer;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin: 0 10px;
}

.tourist-visa__btn a {
  color: #ffffff;
  text-decoration: none;
}

.tourist-visa__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(90, 168, 255, 0.6);
}

.tourist-visa__btn:active {
  transform: translateY(1px);
}

/* Footer Text */
.tourist-visa__footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header h4 {
    font-size: 2.5rem;
  }

  .main-section {
    padding: 30px;
  }

  .tourist-visa__title {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  .header h4 {
    font-size: 2.2rem;
  }

  .header p {
    font-size: 1.1rem;
  }

  .main-section {
    padding: 25px;
    border-radius: 16px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .visa-table th,
  .visa-table td {
    padding: 15px;
  }

  .tourist-visa__list {
    grid-template-columns: 1fr;
  }

  .visa-requirements-section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .header h4 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .tourist-visa__title {
    font-size: 1.6rem;
  }

  .tourist-visa__btn {
    display: block;
    width: 100%;
    margin: 12px 0;
    padding: 16px;
  }

  .visa-requirements-section {
    padding: 50px 10px;
  }
}

/* Visa Types Css End */

/* Visa Random Section Start */

.three-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
  align-items: stretch;
}

.section-box {
  background: #ffffff;
  /* card */
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.section-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.section-box h3 {
  color: #0d2b4c;
  /* primary */
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-box p {
  font-size: 15px;
  color: #555555;
  margin-bottom: 10px;
}

.section-box ul {
  margin-top: 10px;
  padding-left: 20px;
}

.section-box ul li {
  margin-bottom: 8px;
  position: relative;
}

.section-box ul li::before {
  content: "•";
  color: #ef9a2f;
  /* secondary */
  font-weight: bold;
  position: absolute;
  left: -14px;
}

/* Center image section */
.image-box {
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.image-box:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .three-section {
    grid-template-columns: 1fr;
  }

  .image-box {
    order: 2;
  }

  .section-box:nth-child(1) {
    order: 1;
  }

  .section-box:nth-child(3) {
    order: 3;
  }
}
/* Visa Random Section end  */

/* ====== Card Section Start */

/* ==== Card Section End  */

/* Banner Start */

/* ================== UAE Banner Section ================== */
.uae-banner {
  width: 100%;
  min-height: 400px;
  background: url("assets/img/visa/visa-bg.jpg") center/cover no-repeat;
  position: relative;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 60px 80px;
  color: #fff;
  overflow: hidden;
}

/* ====== Dark Overlay ====== */
.uae-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 20px;
  z-index: 1;
}

/* ====== Text Content ====== */
.uae-banner .text-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.uae-banner .text-content h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #fff;
}

.uae-banner .text-content span {
  color: #ffe082;
}

.uae-banner .text-content p {
  font-size: 22px;
  color: #f7f7f7;
  font-weight: 500;
  line-height: 1.6;
}

/* ================== Responsive Design ================== */

/* Tablet View */
@media (max-width: 992px) {
  .uae-banner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 50px 40px;
    min-height: 350px;
    background-position: center;
  }

  .uae-banner .text-content {
    max-width: 100%;
  }

  .uae-banner .text-content h2 {
    font-size: 42px;
  }

  .uae-banner .text-content p {
    font-size: 18px;
    line-height: 1.5;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .uae-banner {
    text-align: center;
    justify-content: center;
    padding: 40px 25px;
    min-height: 300px;
    background-position: center;
    background-size: cover;
  }

  .uae-banner::before {
    background: rgba(0, 0, 0, 0.55);
  }

  .uae-banner .text-content h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .uae-banner .text-content p {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .uae-banner {
    padding: 30px 15px;
    min-height: 260px;
    border-radius: 15px;
  }

  .uae-banner .text-content h2 {
    font-size: 26px;
  }

  .uae-banner .text-content p {
    font-size: 15px;
  }
}
/* Banner End */

/* ================= FAMILY VISA SECTION ================= */
.family-visa-section {
  padding: 90px 0;
  /* background: linear-gradient(135deg, #e8f0ff 0%, #f9fbff 100%); */
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  position: relative;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.9s ease forwards;
}

/* ---------- Left Image Grid ---------- */
.family-visa-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 18px;
  animation: fadeUp 1.1s ease;
  height: 100%;
}

.family-visa-images .big {
  grid-column: span 2;
  height: 330px;
}

.family-visa-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.family-visa-images img:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* ---------- Right Content ---------- */
.family-visa-content {
  animation: fadeUp 1.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.family-visa-content h2 {
  font-size: 35px;
  font-weight: 700;
  color: #0d2b4c;
  line-height: 1.3;
  margin-bottom: 25px;
}

.family-visa-content p {
  color: #111;
  line-height: 1.8;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .family-visa-section {
    padding: 70px 25px;
  }

  .family-visa-content h2 {
    font-size: 32px;
  }

  .family-visa-images {
    grid-template-rows: repeat(3, 200px);
  }

  .family-visa-images .big {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .family-visa-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .family-visa-images .big {
    grid-column: span 1;
  }

  .family-visa-content {
    text-align: center;
    margin-top: 20px;
  }

  .family-visa-content p {
    font-size: 16px;
  }
}
/* =======  Family Visa End ======= */

/* Family Cards */

/* ========================= Real Estate Investment Cards ========================= */
.re-invest-cards-section {
  padding: 20px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.re-invest-cards-section .container {
  position: relative;
  z-index: 2;
}

.re-invest-title {
  font-size: 32px;
  font-weight: 700;
  color: #141a46;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Card Styling */
.re-invest-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  color: black;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.re-invest-card:hover {
  background: #ffffff;
  border-color: #141a46;
  transform: translateY(-8px);
  box-shadow: 0 0 25px #141a46;
}

.re-invest-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #141a46;
  transition: transform 0.4s ease;
}

.re-invest-card:hover .re-invest-icon {
  transform: scale(1.2);
}

.re-invest-card p {
  font-size: 16px;
  line-height: 1.6;
  color: black;
  margin: 0;
}

/* Responsive Fixes */
@media (max-width: 991px) {
  .re-invest-title {
    font-size: 26px;
  }

  .re-invest-card {
    padding: 25px 18px;
  }
}

@media (max-width: 576px) {
  .re-invest-card p {
    font-size: 15px;
  }

  .re-invest-icon {
    font-size: 32px;
  }
}

/* General-  Section Css  Start*/

.family-visa-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px 20px;
}

.visa-header {
  text-align: center;
  margin-bottom: 50px;
}

.visa-header h2 {
  font-size: 2.2rem;
  color: #0d2b4c;
  margin-bottom: 10px;
  position: relative;
}

/* .visa-header h2::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: #3e54ff;
            border-radius: 5px;
        } */

.visa-header p {
  font-size: 1rem;
  color: #555;
  margin-top: 8px;
}

/* Cards layout */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.visa-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 5px solid #3e54ff;
}

.visa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.visa-card h3 {
  font-size: 1.3rem;
  color: #0d2b4c;
  margin-bottom: 15px;
}

.visa-card ul {
  list-style: none;
}

.visa-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #333;
}

.visa-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3e54ff;
  font-weight: bold;
}

/* Highlight Box */
.highlight-box {
  margin-top: 40px;
  background: linear-gradient(135deg, #0d2b4c, #163f6b);
  color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.highlight-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: white;
}

.highlight-box p {
  font-size: 18px;
  color: #e6e6e6;
  margin-bottom: 25px;
}

.highlight-box a {
  display: inline-block;
  padding: 12px 30px;
  background: #3e54ff;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.highlight-box a:hover {
  background: #ffb84a;
  color: black;
}

@media (max-width: 768px) {
  .visa-header h3 {
    font-size: 22px !important;
  }

  .highlight-box {
    padding: 30px 20px;
  }
}

/* General _ Section Css End  */

/* Aeroplance ---  */
:root {
  --bg: #ffffff;
  --primary: #2b6cb0;
  --accent: #1fb6ff;
  --muted: black;
  --card: #f8fafc;
  --circle-size: 72px;
  --max-width: 1100px;
}

body {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.journey {
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  text-align: center;
}

.journey-header {
  margin-bottom: 28px;
}

.eyebrow {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.15;
  font-weight: 700;
}

p.lead {
  margin: 10px auto 0;
  max-width: 760px;
  color: var(--muted);
}

.steps {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 12px 18px;
}

.connector {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}

.step {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  display: flex;
  gap: 14px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 12px;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.6s;
  opacity: 0;
  transform: translateY(20px) scale(0.99);
}

.step.in-view {
  opacity: 1;
  transform: none;
}

.icon-wrap {
  width: var(--circle-size);
  height: var(--circle-size);
  min-width: var(--circle-size);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border: 4px solid rgba(43, 108, 176, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(43, 108, 176, 0.06);
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  position: relative;
}

.step:nth-child(1) .icon-wrap {
  background: #2b6cb0;
  border-color: #2b6cb0;
}

.step:nth-child(1) .icon-number {
  color: #ffffff;
}

.step:nth-child(3) .icon-wrap {
  background: #383e4a;
  border-color: #2c313a;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.step:nth-child(3) .icon-number {
  color: #ffffff;
}

.icon-number {
  font-weight: 800;
  font-size: 1.05rem;
}

.step h3 {
  margin: 8px 0 6px;
  font-size: 1.03rem;
  color: #0b1220;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.38;
  max-width: 240px;
}

/* Airplane Image - Floating outside Step 3 */
.plane-container {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -100%);
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 5;
  animation: plane-bob 3.6s ease-in-out infinite;
}

.plane-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(35deg);
}

@keyframes plane-bob {
  0% {
    transform: translate(50%, -100%) rotateZ(35deg);
  }

  50% {
    transform: translate(50%, -115%) rotateZ(30deg);
  }

  100% {
    transform: translate(50%, -100%) rotateZ(35deg);
  }
}

@media (max-width: 820px) {
  .steps {
    flex-direction: column;
    align-items: stretch;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .connector {
    display: none;
  }

  .plane-container {
    display: none;
  }

  .steps::before {
    content: "";
    position: absolute;
    left: calc(50% - 1px);
    top: 40px;
    bottom: 40px;
    width: 2px;
    background-image: repeating-linear-gradient(
      to bottom,
      rgba(43, 108, 176, 0.14) 0 6px,
      transparent 6px 12px
    );
    z-index: 0;
    border-radius: 2px;
  }

  .step {
    align-items: center;
    padding: 22px 12px;
    text-align: center;
  }

  .step .icon-wrap {
    transform: translateX(0);
    margin-bottom: 8px;
  }

  .step:nth-child(3) .icon-wrap,
  .step:nth-child(1) .icon-wrap {
    background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
    border-color: rgba(43, 108, 176, 0.12);
  }

  .step:nth-child(3) .icon-number,
  .step:nth-child(1) .icon-number {
    color: var(--primary);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.step:focus-within,
.step:focus {
  outline: 4px solid rgba(31, 182, 255, 0.18);
  border-radius: 10px;
}
