/* ========================================
   Wils Migration — styles.css
   ======================================== */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap");

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

:root {
  --background: #f8fafc;
  --foreground: #0f1729;
  --card: #ffffff;
  --card-foreground: #0f1729;
  --primary: #1e2a4a;
  --primary-foreground: #f0f4ff;
  --secondary: #eef2f7;
  --secondary-foreground: #1e2a4a;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #3b82f6;
  --accent-foreground: #f0f4ff;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --ring: #3b82f6;
  --navy: #0f1729;
  --navy-light: #1e2a4a;
  --sky-brand: #2d8cf0;
  --sky-light: #dbeafe;
  --gold: #f59e0b;
  --destructive: #ef4444;
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}
input,
select,
textarea {
  font: inherit;
}

/* ---- Utility Classes ---- */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.glass-navy {
  background: rgba(15, 23, 41, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gradient-primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky-brand) 100%);
}
.gradient-sky {
  background: linear-gradient(135deg, var(--sky-brand) 0%, #60a5fa 100%);
}

.gradient-text {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky-brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-sky {
  color: var(--sky-brand);
}
.text-gold {
  color: var(--gold);
}
.text-muted {
  color: var(--muted-foreground);
}
.text-primary-fg {
  color: var(--primary-foreground);
}

.bg-card {
  background: var(--card);
}
.bg-muted-light {
  background: rgba(241, 245, 249, 0.3);
}

.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.shadow-lg {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.shadow-xl {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.border {
  border: 1px solid var(--border);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--navy), var(--sky-brand));
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s;
  box-shadow: 0 8px 20px -6px rgba(45, 140, 240, 0.25);
}
.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(30, 42, 74, 0.2);
  color: var(--foreground);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-outline:hover {
  background: var(--muted);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--muted);
}
::-webkit-scrollbar-thumb {
  background: var(--muted-foreground);
  border-radius: 4px;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.7s ease both;
}
.animate-fadeInLeft {
  animation: fadeInLeft 0.7s ease both;
}
.animate-fadeInRight {
  animation: fadeInRight 0.7s ease 0.2s both;
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}
.animate-scaleIn {
  animation: scaleIn 0.5s ease both;
}

/* Staggered delays */
.delay-1 {
  animation-delay: 0.08s;
}
.delay-2 {
  animation-delay: 0.16s;
}
.delay-3 {
  animation-delay: 0.24s;
}
.delay-4 {
  animation-delay: 0.32s;
}
.delay-5 {
  animation-delay: 0.4s;
}
.delay-6 {
  animation-delay: 0.48s;
}

/* ---- Top Bar ---- */
.top-bar {
  background: linear-gradient(135deg, #031ea3, #0b1b68);
  color: var(--primary-foreground);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.top-bar-left {
  display: flex;
  gap: 1.5rem;
}

/* ---- Navbar ---- */
.navbar {
  padding: 5px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.nav-brand-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--navy), var(--sky-brand));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a,
.nav-dropdown-trigger {
  padding: 0.5rem 0.875rem;
  font-size: 16px;
  font-weight: 500;
  color: rgba(15, 23, 41, 0.8);
  border-radius: 0.5rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a:hover,
.nav-dropdown-trigger:hover {
  color: var(--foreground);
  background: var(--muted);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 85%;
  left: 0;
  margin-top: 0.25rem;
  width: 13rem;
  background: var(--card);
  border-radius: 0.75rem;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  padding: 0.5rem;
  display: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}
.nav-dropdown-menu a:hover {
  background: var(--muted);
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #031ea3, #0b1b68);
  color: var(--primary-foreground);
  transition: opacity 0.2s;
}
.nav-cta:hover {
  opacity: 0.9;
}

.mobile-toggle {
  display: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.mobile-toggle:hover {
  background: var(--muted);
}
.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
}
.mobile-menu a:hover {
  background: var(--muted);
}
.mobile-menu .nav-cta {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
}

/* ---- Hero Section ---- */
/* ===== HERO V2 ===== */

.hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 45px 0 70px;
}
.hero-line-art {
  position: absolute;
  top: -110px;
  left: -81px;
  width: 100%;
  opacity: 10%;
  z-index: -1;
  pointer-events: none;
}

.hero-line-art img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-line-art {
    width: 320px;
    left: -40px;
    top: -20px;
    opacity: 0.06;
  }
	
.blog-layout {
    grid-template-columns: 100% !important;
}
	
.blog-content-box {
    padding: 20px !important;
}
}

.hero-gradient {
  position: absolute;
  inset: 0;

  background: radial-gradient(circle at top left, rgba(45, 140, 240, 0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(14, 30, 64, 0.08), transparent 35%);

  z-index: -3;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;

  background-image: linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);

  background-size: 80px 80px;

  mask-image: radial-gradient(circle at center, black, transparent 90%);

  z-index: -2;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  z-index: -1;
}

.hero-orb-1 {
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: rgba(45, 140, 240, 0.18);
}

.hero-orb-2 {
  bottom: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(14, 30, 64, 0.08);
}

/* LAYOUT */

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
}

/* CONTENT */

.hero-content {
  position: relative;
  z-index: 2;
}

/* HEADING */

.hero-content h1 {
  margin: 0;
  font-size: 53px;
  line-height: 65px;
  letter-spacing: 0;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--foreground);
}

.hero-content h1 span {
  display: block;
  color: #1e50c8;
}

.hero-divider {
  width: 70px;
  height: 4px;
  margin: 20px 0 16px;
  border-radius: 999px;
  background: #ed1b24;
}

.hero-subtitle {
  margin: 0 0 18px;
  max-width: 560px;
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: 800;
  color: #1f5797;
}

/* TEXT */

.hero-text {
  max-width: 620px;

  font-size: 1.1rem;
  line-height: 2;

  color: var(--muted-foreground);

  margin-bottom: 28px;
}

/* STATS */

.hero-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 34px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: center;
  padding: 0 34px;
  border-right: 1px solid rgba(15, 23, 42, 0.12);
}

.hero-stat-item:first-child {
  padding-left: 0;
}

.hero-stat-item:last-child {
  padding-right: 0;
  border-right: none;
}

.hero-stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(45, 140, 240, 0.12);
  color: var(--navy);
  font-size: 25px;
}

.hero-stat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.hero-stat-number {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--foreground);
}

.hero-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

/* BUTTONS */

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, #031ea3, #0b1b68);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(45, 140, 240, 0.25);
  transition: 0.35s ease;
}

.hero-btn-primary:hover {
  transform: translateY(-4px);
}

.hero-btn-primary svg {
  transition: 0.35s ease;
}

.hero-btn-primary:hover svg {
  transform: translateX(4px);
}

.hero-btn-outline {
  padding: 17px 28px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ed1b24;
  backdrop-filter: blur(10px);
  font-weight: 700;
  color: #fff;
  transition: 0.35s ease;
text-align: center;
}
.hero-btn-outline:hover {
  background: #ed1b24;
  transform: translateY(-3px);
}

/* USERS */

.hero-users {
/*   display: flex; */
  display: none; /* to hide. */
  align-items: center;
  gap: 18px;

  margin-top: 40px;
}

.hero-user-images {
  display: flex;
}

.hero-user-images img {
  width: 52px;
  height: 52px;

  object-fit: cover;

  border-radius: 50%;

  border: 3px solid #fff;

  margin-left: -14px;
}

.hero-user-images img:first-child {
  margin-left: 0;
}

.hero-users p {
  font-size: 0.95rem;
  color: var(--muted-foreground);
}

.hero-users strong {
  color: var(--foreground);
}

/* VISUAL */

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  display: block;
  border-radius: 40px;
  height: 500px;
  object-fit: cover;
}

.hero-image-glow {
  position: absolute;
  inset: auto;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 120px;
  filter: blur(60px);
}

/* FLOATING CARDS */

.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  animation: floatY 4s ease-in-out infinite;
}

.hero-card-icon {
  width: 130px;
  height: 130px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  overflow: hidden;
}
.hero-card-icon img {
  object-fit: cover;
}
.hero-card-1 .hero-card-icon{
  background-color: #042b42;
}

.hero-card-1 {
  top: -5%;
  left: -10%;
}
.hero-card-2 {
  right: -10%;
  top: 45%;
  animation-delay: 1s;
}

.hero-card-3 {
  bottom: -53px;
  left: 6%;
  animation-delay: 2s;
}

/* ANIMATION */

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-visual {
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-card-1 {
    left: 0;
  }

  .hero-card-2 {
    right: 0;
  }
}

@media (max-width: 991px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .hero-v2 {
    padding: 70px 0 60px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 46px;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.9;
  }

  .hero-stats {
    flex-wrap: nowrap;
    gap: 0;
    justify-content: center;
  }

  .hero-stat-item {
    padding: 0 10px;
    gap: 8px;
    border-right: none;
  }

  .hero-stat-icon {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .hero-stat-number {
    font-size: 0.92rem;
  }

  .hero-stat-label {
    font-size: 0.7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    justify-content: center;
  }

  .hero-users {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    position: relative;
    inset: auto !important;

    margin-top: 18px;

    animation: none;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 60px;
  }

  .hero-stat {
    padding: 28px;
  }

  .hero-stat h3 {
    font-size: 2.2rem;
  }
}
/* ---- Stats ---- */
.stats-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-card {
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: box-shadow 0.3s;
}
.stat-card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.stat-card svg {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto 0.75rem;
  color: var(--sky-brand);
}
.stat-card .stat-value {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}
.section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky-brand);
}
.section-title {
  font-size: 50px;
  font-weight: 700;
  margin-top: 0.75rem;
}
.section-desc {
  color: var(--muted-foreground);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Visa Search ---- */
.visa-search {
  padding: 50px 0px;
  background: rgb(207 221 236 / 30%);
}
.search-box {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.875rem;
  outline: none;
  transition: box-shadow 0.2s;
}
.search-box input:focus {
  box-shadow: 0 0 0 2px var(--ring);
}
.search-box svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.category-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  cursor: pointer;
  /* ~6-up on desktop while staying centered when the row isn't full. */
  flex: 0 1 calc(16.666% - 1rem);
  min-width: 140px;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(45, 140, 240, 0.3);
}
.category-card svg {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
  color: var(--sky-brand);
  transition: transform 0.3s;
}
.category-card:hover svg {
  transform: scale(1.1);
}
.category-card p {
  font-size: 0.875rem;
  font-weight: 600;
}
.category-card small {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.services {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

/* animated bg blur */
.services::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  filter: blur(90px);
  animation: floatBlur 8s ease-in-out infinite;
}

.services::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.08);
  filter: blur(100px);
  animation: floatBlur 10s ease-in-out infinite alternate;
}

@keyframes floatBlur {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(30px) translateX(20px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

.services-carousel {
  margin-top: 70px;
}

/* CARD */
.service-card {
  position: relative;
  background: #fff;
  border-radius: 34px;
  padding: 40px 34px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: 0.5s ease;
  height: 100%;
  min-height: 390px;
  z-index: 2;
}

/* glow bg */
.service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(96, 165, 250, 0.05), transparent);
  opacity: 0;
  transition: 0.5s ease;
  z-index: -2;
}

/* hover gradient */
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), transparent);
  transition: 0.5s ease;
  z-index: -1;
}

.service-card:hover::after {
  height: 100%;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(37, 99, 235, 0.15);
}

/* TOP LINE */
.service-card .top-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 5px;
  border-radius: 20px;
  background: linear-gradient(to right, #2563eb, #60a5fa);
  transition: 0.5s ease;
}

.service-card:hover .top-line {
  width: 100%;
}

/* ICON */
.service-icon {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 30px;
  transition: 0.45s ease;
  overflow: hidden;
}

/* rotating shine */
.service-icon::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: rotate(25deg) translateX(-140%);
  transition: 0.7s ease;
}

.service-card:hover .service-icon::before {
  transform: rotate(25deg) translateX(140%);
}

.service-card:hover .service-icon {
  transform: rotate(-6deg) scale(1.08);
}

/* icon colors */
.icon-blue {
  background: #dbeafe;
  color: #2563eb;
}

.icon-indigo {
  background: #e0e7ff;
  color: #4f46e5;
}

.icon-teal {
  background: #ccfbf1;
  color: #0f766e;
}

.icon-amber {
  background: #fef3c7;
  color: #d97706;
}

.icon-rose {
  background: #ffe4e6;
  color: #e11d48;
}

.icon-violet {
  background: #ede9fe;
  color: #7c3aed;
}

/* count */
.service-count {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: #94a3b8;
  margin-bottom: 14px;
  letter-spacing: 0.12em;
  position: relative;
}

/* title */
.service-content h3 {
  font-size: 30px;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 18px;
  font-weight: 800;
  transition: 0.4s ease;
}

.service-card:hover h3 {
  color: #2563eb;
}

/* text */
.service-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 32px;
}

/* link */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2563eb;
  font-weight: 700;
  text-decoration: none;
  transition: 0.35s ease;
  position: relative;
}

.service-link svg {
  transition: 0.35s ease;
}

.service-card:hover .service-link {
  gap: 16px;
}

.service-card:hover .service-link svg {
  transform: translateX(6px);
}

/* floating dots */
.service-dots {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  opacity: 0.12;
  transition: 0.5s ease;
}

.service-card:hover .service-dots {
  transform: rotate(8deg) scale(1.08);
  opacity: 0.18;
}

/* owl nav */
.services-carousel .owl-nav {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.services-carousel .owl-nav button {
  width: 58px;
  height: 58px;
  border-radius: 50% !important;
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  font-size: 22px !important;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.services-carousel .owl-nav button:hover {
  background: #2563eb !important;
  color: #fff !important;
  transform: translateY(-4px);
}

/* dots */
.services-carousel .owl-dots {
  margin-top: 24px;
  display: none;
}

.services-carousel .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  background: #cbd5e1 !important;
  transition: 0.3s ease;
}

.services-carousel .owl-dot.active span {
  width: 36px !important;
  border-radius: 30px !important;
  background: #2563eb !important;
}

/* responsive */
@media (max-width: 768px) {
  .services {
    padding: 90px 0;
  }

  .service-card {
    padding: 32px 24px;
    min-height: auto;
  }

  .service-content h3 {
    font-size: 24px;
  }

  .service-icon {
    width: 76px;
    height: 76px;
    font-size: 30px;
  }
}
/* ===== DESTINATION SECTION ===== */

.destination-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}
.destination-header {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.destination-header h2 {
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -3px;
  margin: 20px 0 24px;
  color: var(--foreground);
}

.destination-header h2 span {
  background: linear-gradient(135deg, var(--navy), var(--sky-brand));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.destination-header p {
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--muted-foreground);
}

/* GRID */

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

/* CARD */

.destination-card {
  position: relative;
  border-radius: 34px;
  padding: 28px;
  min-height: 320px;

  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.92));

  border: 1px solid rgba(255, 255, 255, 0.7);

  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  overflow: hidden;

  transition: all 0.4s ease;
}

.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(45, 140, 240, 0.08), transparent 45%);
  pointer-events: none;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* TOP */

.country-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}

.country-flag img {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(45, 140, 240, 0.25);
}

.country-badge {
  padding: 10px 16px;
  border-radius: 999px;

  background: rgba(45, 140, 240, 0.08);
  color: var(--sky-brand);

  font-size: 0.78rem;
  font-weight: 700;
}

/* CONTENT */

.country-content h3 {
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 14px;
  font-weight: 700;
  color: var(--foreground);
}

.country-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 34px;
}

/* FOOTER */

.country-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.country-footer span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sky-brand);
}

.country-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 0.95rem;
  font-weight: 700;

  color: var(--foreground);

  transition: 0.3s ease;
}

.country-footer a svg {
  transition: 0.3s ease;
}

.country-footer a:hover {
  color: var(--sky-brand);
}

.country-footer a:hover svg {
  transform: translateX(4px);
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .destination-section {
    padding: 80px 0;
  }

  .destination-header {
    margin-bottom: 50px;
  }

  .destination-header h2 {
    font-size: 2.7rem;
    letter-spacing: -1px;
  }

  .destination-header p {
    font-size: 0.95rem;
  }

  .destination-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .destination-card {
    min-height: auto;
    padding: 24px;
    border-radius: 28px;
  }

  .country-top {
    margin-bottom: 45px;
  }

  .country-flag {
    width: 62px;
    height: 62px;
    font-size: 1.7rem;
  }

  .country-content h3 {
    font-size: 1.7rem;
  }

  .country-content p {
    font-size: 0.92rem;
    margin-bottom: 24px;
  }

  .country-footer {
    flex-wrap: wrap;
  }
}

.process-dark-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #021024 0%, #0b1d3d 100%);
}

/* glow */
.process-dark-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(45, 140, 240, 0.12);
  filter: blur(120px);
  border-radius: 50%;
  top: -180px;
  left: -120px;
}

.process-dark-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.08);
  filter: blur(100px);
  border-radius: 50%;
  bottom: -120px;
  right: -100px;
}

.process-dark-section .container {
  position: relative;
  z-index: 2;
}
.process-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.process-title {
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.process-title span {
  color: #60a5fa;
}

.process-subtitle {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.68);
}

/*======================================
 PROCESS WRAPPER
=======================================*/
.process-dark-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}

/*======================================
 STEP
=======================================*/
.dark-process-step {
  position: relative;
}
.dark-process-step.active-step,
.dark-process-step.success-step {
  margin-top: 80px;
}
.step-top-line {
  width: 90px;
  height: 2px;
  margin-bottom: 22px;
  background: linear-gradient(to right, transparent, #60a5fa, transparent);
}

/* number */
.dark-step-number {
  font-size: 88px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 26px;
  color: transparent;
  -webkit-text-stroke: 2px #60a5fa;
  opacity: 0.95;
  transition: 0.4s ease;
}

/* hover effect */
.dark-process-step:hover .dark-step-number {
  transform: translateY(-8px);
  color: rgba(96, 165, 250, 0.08);
}

/* content */
.dark-process-content h3 {
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
}

.dark-process-content p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.9;
  font-size: 18px;
  max-width: 260px;
}

/* highlighted step */
.active-step .dark-step-number {
  -webkit-text-stroke: 2px #f24426;
  color: rgba(147, 197, 253, 0.06);
}

.success-step .dark-step-number {
  -webkit-text-stroke: 2px #f24426;
}

/*======================================
 HOVER ANIMATION
=======================================*/
.dark-process-step::after {
  content: "";
  position: absolute;
  inset: -25px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  opacity: 0;
  transition: 0.4s ease;
  z-index: -1;
}

.dark-process-step:hover::after {
  opacity: 1;
  transform: translateY(-6px);
}

/*======================================
 RESPONSIVE
=======================================*/
@media (max-width: 1100px) {
  .process-dark-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }

  .process-dark-wrapper::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-dark-section {
    padding: 90px 0;
  }

  .process-dark-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .dark-step-number {
    font-size: 72px;
  }

  .dark-process-content h3 {
    font-size: 28px;
  }

  .dark-process-content p {
    max-width: 100%;
    font-size: 16px;
  }

  .process-heading {
    margin-bottom: 70px;
  }
}

/* ===== Testimonials Grid ===== */

.testimonial-slider-wrapper {
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  position: relative;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    0 15px 40px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45, 140, 240, 0.04), transparent 45%);
  pointer-events: none;
}

.quote-icon {
  width: 46px;
  height: 46px;
  color: var(--sky-brand);
  opacity: 0.18;
  margin-bottom: 24px;
}

.testimonial-card blockquote {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--foreground);
  margin-bottom: 28px;
}

.testimonial-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  color: #fbbf24;
  margin-bottom: 12px;
}

.author {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 4px;
}

.role {
  font-size: 0.92rem;
  color: var(--muted-foreground);
}

/* NAV */

.testimonial-nav {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.testimonial-nav button {
  border: 0;
  cursor: pointer;
}

#t-prev,
#t-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition: 0.3s ease;
}

#t-prev:hover,
#t-next:hover {
  transform: translateY(-3px);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: 0.3s ease;
}

.testimonial-dots button.active {
  width: 28px;
  border-radius: 20px;
  background: var(--sky-brand);
}

/* Responsive */

@media (max-width: 991px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 34px 28px;
  }
}

@media (max-width: 767px) {
  .testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .testimonial-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
section#testimonials {
  padding: 50px 0px;
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, #021024 0%, #0b1d3d 100%);
}
.cta-inner {
  border-radius: 1.5rem;
  padding: 3rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-blob-1 {
  position: absolute;
  top: -5rem;
  right: 0;
  width: 20rem;
  height: 20rem;
  border-radius: 9999px;
  background: var(--sky-brand);
  opacity: 0.1;
}
.cta-blob-2 {
  position: absolute;
  bottom: -5rem;
  left: 0;
  width: 15rem;
  height: 15rem;
  border-radius: 9999px;
  background: var(--gold);
  opacity: 0.1;
}
.cta-inner h2 {
  font-size: 50px;
  font-weight: 800;
  color: var(--primary-foreground);
  position: relative;
  z-index: 1;
}
.cta-inner p {
  margin-top: 1rem;
  color: rgba(240, 244, 255, 0.8);
  font-size: 1.125rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.cta-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  background: var(--background);
  color: var(--foreground);
  font-weight: 600;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}
.cta-btn-white:hover {
  background: rgba(248, 250, 252, 0.9);
}
.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: 2px solid rgba(240, 244, 255, 0.3);
  color: var(--primary-foreground);
  font-weight: 600;
  transition: background 0.2s;
}
.cta-btn-ghost:hover {
  background: rgba(240, 244, 255, 0.1);
}

/* ---- FAQ ---- */
.faq {
  padding: 5rem 0 7rem;
  background: rgba(241, 245, 249, 0.3);
}
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}
.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-question.open svg {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  display: none;
}
.faq-answer.open {
  display: block;
}

/* ---- Blog ---- */
#blog {
  padding: 50px 0px;
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}
.blog-header .view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sky-brand);
}
.blog-header .view-all svg {
  width: 1rem;
  height: 1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 80px 0px;
}
.blog-card {
  background: var(--card);
  border-radius: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.blog-thumb img {
  height: 197px;
  width: 100%;
  object-fit: contain;
}
.blog-thumb {
  position: relative;
  overflow: hidden;
}
.blog-thumb-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
  background: var(--sky-brand);
  opacity: 0.2;
}
.blog-tag {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.blog-body {
  padding: 1.25rem;
}
.blog-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}
.blog-date svg {
  width: 0.875rem;
  height: 0.875rem;
}
.blog-card h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.blog-card:hover h3 {
  color: var(--sky-brand);
}
.blog-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ---- Contact ---- */
.contact {
  padding: 50px 0px;
  background: rgba(241, 245, 249, 0.3);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.contact-info .section-tag {
  text-align: left;
}
.contact-info h2 {
  text-align: left;
}
.contact-info > p {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}
.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--navy), var(--sky-brand));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-foreground);
}
.contact-detail p {
  font-size: 0.875rem;
  font-weight: 600;
}
.contact-detail small {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-form {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.75rem 2.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  font-size: 0.875rem;
  outline: none;
  transition: box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px var(--ring);
}
.form-group textarea {
  resize: none;
}
.form-submit {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--navy), var(--sky-brand));
  color: var(--primary-foreground);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}
.form-submit:hover {
  opacity: 0.9;
}

.form-success {
  text-align: center;
  padding: 3rem;
  display: none;
}
.form-success.show {
  display: block;
}
.form-success-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--sky-brand), #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}
.form-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
.form-success p {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
}

/* ---- Footer ---- */
.footer {
  background: linear-gradient(135deg, #07134d, #07103f);
  color: var(--primary-foreground);
}
.footer .container {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand,
.footer-links {
  /* Grid tracks default to min-width:auto, so the brand column's
     unbreakable phone/email text was forcing its track wider than its
     1fr/2fr share, squeezing the Services/Company columns down to a
     fraction of the width. Letting the columns shrink lets the grid
     split space per the track sizes above instead. */
  min-width: 0;
}
.footer-brand .nav-brand {
  margin-bottom: 1rem;
}
.footer-brand p {
  color: rgba(240, 244, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 22rem;
  margin-bottom: 1.5rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(240, 244, 255, 0.7);
  padding-top: 20px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.footer-contact a {
  /* The email address has no spaces/hyphens for the browser to wrap at,
     so on a narrow footer column it would otherwise refuse to shrink and
     force its flex sibling (the icon) to collapse instead. */
  overflow-wrap: anywhere;
}
.footer-contact .footer-mara-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.15rem;
}
.footer-contact .footer-address-row {
  align-items: flex-start;
}
.footer-contact .footer-address-row svg {
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.footer-contact .footer-mara-inline {
  /* Allowed to wrap to two lines on narrow footer columns; there's
     enough width on desktop/tablet for it to still sit on one line. */
}

.footer-links h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(240, 244, 255, 0.6);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary-foreground);
}

.footer-newsletter {
  border-top: 1px solid rgba(240, 244, 255, 0.1);
  padding: 2rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-newsletter p {
  font-size: 0.875rem;
  color: rgba(240, 244, 255, 0.7);
}
.footer-newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.footer-newsletter input {
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  background: rgba(240, 244, 255, 0.1);
  border: 1px solid rgba(240, 244, 255, 0.1);
  font-size: 0.875rem;
  color: var(--primary-foreground);
  width: 15rem;
  outline: none;
}
.footer-newsletter input::placeholder {
  color: rgba(240, 244, 255, 0.4);
}
.footer-newsletter button {
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  background: var(--primary-foreground);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.2s;
}
.footer-newsletter button:hover {
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(240, 244, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 15px;
  color: rgba(240, 244, 255, 0.5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-legal a {
  color: rgba(240, 244, 255, 0.65);
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ---- Floating Buttons ---- */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #22c55e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}
.whatsapp-btn:hover {
  background: #16a34a;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
}
.whatsapp-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.scroll-top-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 2%;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--navy), var(--sky-brand));
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top-btn:hover {
  opacity: 0.9;
}
.scroll-top-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.75rem;
  display: none;
}
.mobile-sticky-bar a {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--sky-brand), #60a5fa);
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .top-bar {
    display: none;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero .container {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-card {
    flex-basis: calc(33.333% - 1rem);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-line {
    display: none !important;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .category-card {
    flex-basis: calc(50% - 1rem);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
  .cta-inner {
    padding: 2rem 1.5rem;
  }
  .mobile-sticky-bar {
    display: block;
  }
  /* The sticky bar above is ~70px tall and fixed to the bottom of the
     viewport, so it was permanently covering the last bit of the page
     (footer legal links). Reserve space for it at the very end of the
     document instead of just at the hero. */
  .footer .container {
    padding-bottom: calc(2rem + 70px);
  }
  .hero-floating-card {
    display: none;
  }
  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Client preference: single-column footer on mobile instead of the 2-up
   split. Placed after the 768px block above so it wins the cascade at
   phone widths. */
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1025px) {
  .process-line {
    display: block;
  }
}
a.category-card img {
  width: 100px;
  margin: 0 auto;
  height: 100px;
  object-fit: cover;
}

/* =========================
   WHY CHOOSE US
========================= */

.why-us {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #021024 0%, #0b1d3d 100%);
}

/* BACKGROUND SHAPES */

.why-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
}

.shape-1 {
  width: 420px;
  height: 420px;
  background: #2d8cf0;
  top: -120px;
  left: -120px;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: #60a5fa;
  bottom: -100px;
  right: -100px;
}

/* WRAPPER */

.why-wrapper {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */

.section-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #60a5fa;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;

  margin-bottom: 24px;
}

.why-title {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
}

.why-title span {
  color: #60a5fa;
  display: block;
}

.why-desc {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
}

.why-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 42px;
}

.why-stat h3 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.why-stat p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

.why-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 48px;
  padding: 16px 34px;

  border-radius: 16px;

  background: linear-gradient(135deg, #2d8cf0, #60a5fa);

  color: #fff;
  font-weight: 600;
  text-decoration: none;

  transition: 0.35s ease;
  box-shadow: 0 15px 40px rgba(45, 140, 240, 0.28);
}

.why-btn:hover {
  transform: translateY(-4px);
}

/* RIGHT FEATURES */

.why-features {
  position: relative;

  display: grid;
  gap: 24px;
}

.why-feature-card {
  position: relative;

  display: flex;
  align-items: flex-start;
  gap: 20px;

  padding: 28px;

  border-radius: 26px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);

  transition: 0.4s ease;
}

.why-feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
}

.active-card {
  transform: translateX(-30px);
  background: linear-gradient(135deg, rgba(45, 140, 240, 0.2), rgba(96, 165, 250, 0.1));
}

.why-feature-card h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-feature-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-size: 15px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .why-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .active-card {
    transform: none;
  }
}

@media (max-width: 767px) {
  .why-us {
    padding: 90px 0;
  }

  .why-title {
    font-size: 42px;
  }

  .why-stats {
    gap: 24px;
  }

  .why-stat h3 {
    font-size: 34px;
  }

  .why-feature-card {
    padding: 24px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
}

/* =========================================
                ABOUT PRO
========================================= */

.about-pro {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* SHAPES */

.about-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.about-shape-1 {
  width: 340px;
  height: 340px;

  background: rgba(45, 140, 240, 0.1);

  top: -100px;
  left: -100px;
}

.about-shape-2 {
  width: 260px;
  height: 260px;

  background: rgba(96, 165, 250, 0.1);

  bottom: -100px;
  right: -80px;
}

/* WRAPPER */

.about-pro-wrapper {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
  align-items: center;
}

/* =========================================
                CONTENT
========================================= */

.about-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;
  border-radius: 999px;

  background: rgba(45, 140, 240, 0.08);

  color: #2d8cf0;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  margin-bottom: 28px;
}

.about-pro-content h2 {
  font-size: 50px;
  line-height: 65px;
  font-weight: 800;
  color: #081120;

  margin-bottom: 28px;
}
.about-pro-content h2 span {
  display: block;
  color: #091c74;
}

.about-lead {
  max-width: 640px;

  font-size: 18px;
  line-height: 2;

  color: #64748b;

  margin-bottom: 48px;
}

/* FEATURES */

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;

  padding-bottom: 26px;

  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.feature-icon {
  min-width: 62px;
  width: 62px;
  height: 62px;

  border-radius: 20px;

  background: linear-gradient(135deg, #2d8cf0, #60a5fa);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  box-shadow: 0 18px 40px rgba(45, 140, 240, 0.18);
}

.about-feature h4 {
  font-size: 22px;
  font-weight: 700;

  color: #081120;

  margin-bottom: 10px;
}

.about-feature p {
  color: #64748b;
  line-height: 1.9;
  font-size: 15px;
}

/* CTA */

.about-actions {
  margin-top: 46px;

  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.about-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 34px;

  border-radius: 18px;

  background: linear-gradient(135deg, #2d8cf0, #60a5fa);

  color: #fff;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 16px 40px rgba(45, 140, 240, 0.25);

  transition: 0.35s ease;
}

.about-btn-primary:hover {
  transform: translateY(-5px);
}

.about-trust {
  display: flex;
  flex-direction: column;
}

.about-trust strong {
  font-size: 28px;
  font-weight: 800;
  color: #081120;
}

.about-trust span {
  color: #64748b;
  font-size: 14px;
}

/* =========================================
                VISUAL
========================================= */

.about-pro-visual {
  position: relative;
}

/* MAIN CARD */

.about-main-card {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
}

.about-main-card img{
	object-fit: contain;
}

.overlay-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);

  color: #fff;
  font-size: 13px;
  font-weight: 600;

  margin-bottom: 18px;
}

.pulse-dot {
  width: 10px;
  height: 10px;

  border-radius: 50%;
  background: #4ade80;

  animation: pulse 1.5s infinite;
}

.about-card-overlay h3 {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 700;

  color: #fff;

  max-width: 360px;
}

/* FLOATING STATS */

.about-floating-stats {
  position: absolute;

  left: -50px;
  bottom: 60px;

  display: flex;
  align-items: center;
  gap: 26px;

  padding: 26px 34px;

  border-radius: 28px;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
}

.floating-item h4 {
  font-size: 34px;
  font-weight: 800;

  color: #2d8cf0;

  margin-bottom: 6px;
}

.floating-item p {
  font-size: 14px;
  color: #64748b;
}

.floating-divider {
  width: 1px;
  height: 54px;

  background: rgba(15, 23, 42, 0.08);
}

/* ANIMATION */

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(74, 222, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.about-icon img {
    object-fit: contain;
}

/* =========================================
                RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .about-pro-wrapper {
    grid-template-columns: 1fr;
	  gap: 0;
  }

  .about-main-card img {
    height: 620px;
  }
}
@media (min-width: 320px) and (max-width: 767.9px) {
.about-main-card img { 
    height: auto !important;
    }
}
@media (max-width: 768px) {
  .about-pro {
    padding: 90px 0px 0px;
  }

  .about-pro-content h2 {
    font-size: 42px;
  }
.about-pro-content {
    order: 2;
  }

  .about-lead {
    font-size: 16px;
  }

  .about-feature {
    gap: 16px;
  }

  .feature-icon {
    min-width: 54px;
    width: 54px;
    height: 54px;
  }

  .about-main-card img {
         height: 500px;
        object-fit: contain;
  }
.testimonial-author h4 {
    padding-top: 10px;
}
.cta-inner h2 {
    font-size: 30px;
}
.hero-card {
display: none !important;
}
.hero-user-images img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.hero-user-images {
    display: flex;
    gap: 20px;
}	
	
  .about-floating-stats {
    left: 15px;
    right: 15px;
    bottom: 15px;

    justify-content: space-between;
  }
  .blog-grid
  {
     padding: 0px;
  }
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
}

.hero-video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}

/* =========================
FIXED SOCIAL ICONS
========================= */

.fixed-social-icons {
  position: fixed;
  /* Aligned under the Enquiry Now tab so both share the same vertical line.
     Cluster is lifted (see .enquiry-fixed-btn) so the last icon clears the
     bottom-anchored back-to-top button on shorter desktop viewports. */
  right: 2px;
  left: auto;
  top: calc(50% + 26px);
  bottom: auto;
  transform: none;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
margin-top: 10px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  top: 0;
  left: -100%;
  transition: 0.5s;
}

.social-icon:hover::before {
  left: 100%;
}

.social-icon:hover {
  transform: translateX(-8px) scale(1.08);
  color: #fff;
}

/* BRAND COLORS */

.facebook {
  background: #1877f2;
}

.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.linkedin {
  background: #0a66c2;
}

.youtube {
  background: #ff0000;
}

.whatsapp {
  background: #25d366;
}

/* MOBILE */

@media (max-width: 768px) {
  .fixed-social-icons {
    right: 12px;
    left: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    gap: 10px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
    border-radius: 14px;
  }
}

/* =========================
ENQUIRY BUTTON
========================= */

.enquiry-fixed-btn {
  position: fixed;
  right: -69px;
  /* Lifted 70px above centre so the tab + social icons below it clear the
     bottom-anchored back-to-top button on shorter desktop viewports. */
  top: calc(50% - 70px);
  transform: translateY(-50%) rotate(-90deg);
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  padding: 14px 30px;
  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 9999;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
  transition: 0.4s;
}

.enquiry-fixed-btn:hover {
  right: -52px;
}

/* =========================
OVERLAY
========================= */

.enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9998;
}

.enquiry-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================
POPUP FORM
========================= */

.enquiry-popup {
  position: fixed;
  top: 50%;
  right: -100%;
  transform: translateY(-50%);
  width: 450px;
  max-width: 95%;
  background: #fff;
  border-radius: 30px 0 0 30px;
  padding: 45px;
  z-index: 9999;
  transition: 0.5s ease;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  max-height: 100vh;
}

.enquiry-popup.active {
  right: 0;
}

.close-enquiry {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f3f6fb;
  cursor: pointer;
  transition: 0.3s;
}

.close-enquiry:hover {
  background: #2563eb;
  color: #fff;
}

.mini-title {
  display: inline-block;
  background: #edf4ff;
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.enquiry-content h3 {
  font-size: 34px;
  font-weight: 800;
  color: #081b33;
  line-height: 1.2;
  margin-bottom: 15px;
}

.enquiry-content p {
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* FORM */

.form-group {
  margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #e4e9f2;
  background: #f8fbff;
  padding: 16px 18px;
  border-radius: 16px;
  outline: none;
  transition: 0.3s;
  font-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.submit-btn {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  padding: 16px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
  transition: 0.4s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
}

/* MOBILE */

@media (max-width: 768px) {
  .enquiry-popup {
    width: 100%;
    max-width: 100%; /* base rule's max-width:95% left a gap on the left edge */
    border-radius: 30px 30px 0 0;
    right: 0;
    bottom: -100%;
    top: auto;
    transform: none;
    max-height: 90vh;
  }

  .enquiry-popup.active {
    bottom: 0;
  }

  /* Hidden on mobile: the sticky bottom CTA already covers this action. */
  .enquiry-fixed-btn {
    display: none;
  }

  .enquiry-content h3 {
    font-size: 28px;
  }
}

/* SERVICE ICON */

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-icon i {
  font-size: 34px;
  color: #fff;
}

/* ICON COLORS */

.icon-blue {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.icon-indigo {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
}

.icon-teal {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.icon-amber {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.icon-rose {
  background: linear-gradient(135deg, #e11d48, #f43f5e);
}

.icon-violet {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}

/* =========================
INNER BANNER
========================= */

.inner-banner {
  position: relative;
  padding: 80px 0px;
  /* Per-page image is set via the --wm-banner-bg custom property on the
     element; falls back to the default design image when none is uploaded. */
  background-image: var(--wm-banner-bg, url("../images/2150433348.jpg"));
  overflow: hidden;
  text-align: center;
  z-index: 1;
  background-size: cover;
  background-position: 100%;
}
.inner-banner::before {
  position: absolute;
  background: #091b77;
  clear: both;
  content: "";
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 80%;
}
/* SHAPES */

.banner-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.shape-one {
  width: 500px;
  height: 500px;
  background: rgb(242 65 35 / 21%);
  top: -220px;
  left: -180px;
}

.shape-two {
  width: 350px;
  height: 350px;
  background: rgb(242 65 35 / 21%);
  bottom: -180px;
  right: -120px;
}

/* CONTENT */

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-tag {
  display: inline-block;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid #dbe7ff;
  border-radius: 50px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* HEADING */

.inner-banner h1 {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 28px;
}

/* BREADCRUMB */

.custom-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.custom-breadcrumb a {
  color: #2563eb;
  font-weight: 600;
  transition: 0.3s;
}

.custom-breadcrumb a:hover {
  opacity: 0.7;
}

.custom-breadcrumb span {
  color: #94a3b8;
  font-size: 15px;
}

.custom-breadcrumb .active-page {
  color: red;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .inner-banner {
    padding: 160px 0 100px;
  }

  .inner-banner h1 {
    font-size: 58px;
  }
}

@media (max-width: 767px) {
  .inner-banner {
    padding: 140px 0 80px;
  }

  .inner-banner h1 {
    font-size: 42px;
  }

  .banner-tag {
    font-size: 12px;
    padding: 9px 16px;
  }

  .custom-breadcrumb {
    gap: 10px;
  }
}
.section-padding {
  padding: 80px 0px;
}
.section-tag {
  display: inline-block;
  padding: 10px 18px;
  background: #edf4ff;
  color: #2563eb;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}

.section-title span {
  color: var(--secondary);
}

.section-desc {
  color: var(--text);
  line-height: 1.9;
  font-size: 17px;
}

.gradient-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  padding: 16px 34px;
  border-radius: 60px;
  font-weight: 600;
  transition: 0.4s;
}

.gradient-btn:hover {
  transform: translateY(-5px);
}

/* =========================
ABOUT STORY
========================= */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-images {
  position: relative;
  padding-right: 80px;
}

.story-main {
  border-radius: 35px;
}

.story-small {
  position: absolute;
  width: 240px;
  bottom: -40px;
  right: 0;
  border-radius: 30px;
  border: 8px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.story-points {
  margin-top: 40px;
}

.story-point {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.story-point i {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #edf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 24px;
  flex-shrink: 0;
}

.story-point h4 {
  margin-bottom: 8px;
}

.vision-modern-section {
  position: relative;
  background: linear-gradient(135deg, #0a1c73, #0b1b68);
  overflow: hidden;
}
/* SHAPES */

.vision-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-left {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.03);
  top: -180px;
  left: -120px;
}

.shape-right {
  width: 320px;
  height: 320px;
  background: rgba(37, 99, 235, 0.1);
  bottom: -140px;
  right: -100px;
}

/* HEADING */

.vision-heading {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.vision-tag {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  color: #8db6ff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}

.vision-heading h2 {
  font-size: 58px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 22px;
}

.vision-heading h2 span {
  color: #4f8dff;
}

.vision-heading p {
  color: #c6d2ea;
  line-height: 1.9;
  font-size: 17px;
}

/* MAIN LAYOUT */

.vision-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 35px;
  position: relative;
  z-index: 2;
}

/* LEFT WRAP */

.vision-left-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* BOX */

.vision-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 35px;
  padding: 45px;
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

.vision-box:hover {
  transform: translateY(-8px);
}

.mission-box {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border: none;
}

/* TOP */

.vision-top {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}

/* ICON */

.vision-icon-box {
  width: 85px;
  height: 85px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vision-icon-box i {
  font-size: 34px;
  color: #fff;
}

/* TEXT */

.small-label {
  display: inline-block;
  color: #8db6ff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.vision-box h3 {
  font-size: 32px;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
}

.vision-box p {
  color: #d8e2ff;
  line-height: 1.9;
  font-size: 16px;
}

/* CORE VALUE BOX */

.core-values-box {
  background: #fff;
  border-radius: 35px;
  padding: 12px 20px;
  position: relative;
  overflow: hidden;
}

.core-values-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #edf4ff;
  top: -70px;
  right: -70px;
}

/* HEADER */

.core-value-header {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.value-mini-tag {
  display: inline-block;
  background: #edf4ff;
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.core-value-header h3 {
  font-size: 38px;
  color: #081b33;
  font-weight: 900;
  line-height: 1.2;
}

/* VALUE ITEM */

.value-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.value-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #edf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon i {
  color: #2563eb;
  font-size: 26px;
}

.value-item h4 {
  font-size: 22px;
  color: #081b33;
  margin-bottom: 8px;
}

.value-item p {
  color: #6b7280;
  line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .vision-layout {
    grid-template-columns: 1fr;
  }

  .vision-heading h2 {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .vision-modern-section {
    padding: 80px 0;
  }

  .vision-heading h2 {
    font-size: 36px;
  }

  .vision-box,
  .core-values-box {
    padding: 35px 28px;
  }

  .vision-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .vision-box h3 {
    font-size: 26px;
  }

  .core-value-header h3 {
    font-size: 30px;
  }

  .value-item {
    align-items: flex-start;
  }
}

.about-modern-section {
  position: relative;
  padding: 80px 0;
  background: #f8fbff;
  overflow: hidden;
}

/* SHAPES */

.about-bg-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.shape-left {
  width: 420px;
  height: 420px;
  background: rgba(37, 99, 235, 0.05);
  top: -180px;
  left: -150px;
}

.shape-right {
  width: 320px;
  height: 320px;
  background: rgba(79, 70, 229, 0.05);
  bottom: -120px;
  right: -100px;
}

/* CONTAINER */

.about-modern-section .container {
  position: relative;
  z-index: 2;
}

/* TOP CONTENT */

.about-top-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
  margin-bottom: 70px;
}

.about-tag {
  display: inline-block;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid #dbe7ff;
  border-radius: 50px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.about-top-content h2 {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.1;
  color: #081b33;
  margin-bottom: 28px;
}

.about-top-content h2 span {
  color: #2563eb;
}

.about-top-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #6b7280;
  max-width: 100% !important;
}
.about-info-card.active-card p,
.about-info-card.active-card h3 {
  color: #fff;
}

.about-card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-info-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 35px;
  text-align: center;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.about-info-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgb(30 92 227 / 14%);
  border-radius: 50%;
  top: -40px;
  right: -40px;
}

.about-info-card:hover {
  transform: translateY(-10px);
}

.about-info-card.active-card {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  transform: unset;
}

.active-card h3,
.active-card p,
.active-card .about-icon i {
  color: #fff;
}

.active-card::before {
  background: rgba(255, 255, 255, 0.08);
}

/* ICON */

.about-icon {
  width: 85px;
  height: 85px;
  border-radius: 24px;
  background: #edf4ff;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.about-icon i {
  font-size: 34px;
  color: #2563eb;
}

.active-card .about-icon {
  background: rgba(255, 255, 255, 0.12);
}

/* CARD TEXT */

.about-info-card h3 {
  font-size: 27px;
  font-weight: 800;
  color: #081b33;
  margin-bottom: 18px;
}

.about-info-card p {
  color: #6b7280;
  line-height: 1.8;
}

/* BOTTOM BOX */

.about-bottom-box {
  background: #081b33;
  border-radius: 40px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.about-bottom-box::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  right: -120px;
  top: -100px;
}

.about-bottom-left {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.about-bottom-left h4 {
  font-size: 42px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-bottom-left p {
  color: #c6d2ea;
  line-height: 1.9;
  font-size: 16px;
}

/* EXPERIENCE CIRCLE */

.experience-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
}

.experience-circle h3 {
  font-size: 64px;
  color: #fff;
  font-weight: 900;
  line-height: 1;
}

.experience-circle span {
  color: #dbe7ff;
  margin-top: 10px;
  font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .about-top-content h2 {
    font-size: 46px;
  }

  .about-card-wrapper {
    grid-template-columns: 1fr;
  }

  .about-bottom-box {
    flex-direction: column;
    text-align: center;
    padding: 50px 35px;
  }

  .about-bottom-left h4 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .about-modern-section {
    padding: 80px 0;
  }

  .about-top-content h2 {
    font-size: 36px;
  }

  .about-info-card {
    padding: 38px 28px;
  }

  .about-info-card h3 {
    font-size: 24px;
  }

  .experience-circle {
    width: 180px;
    height: 180px;
  }

  .experience-circle h3 {
    font-size: 52px;
  }

  .about-bottom-left h4 {
    font-size: 28px;
  }
}
/* =========================
FOUNDER SECTION
========================= */

.founder-section {
  position: relative;
  background: #f8fbff;
  overflow: hidden;
}

/* SHAPES */

.founder-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-one {
  width: 420px;
  height: 420px;
  background: rgba(37, 99, 235, 0.05);
  top: -180px;
  left: -120px;
}

.shape-two {
  width: 320px;
  height: 320px;
  background: rgba(79, 70, 229, 0.05);
  bottom: -140px;
  right: -100px;
}

/* WRAPPER */

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

/* CONTENT */

.founder-tag {
  display: inline-block;
  padding: 10px 18px;
  background: #edf4ff;
  color: #2563eb;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

.founder-content h2 {
  font-size: 58px;
  font-weight: 900;
  color: #081b33;
  line-height: 1;
  margin-bottom: 16px;
}

.founder-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #091c75;
  line-height: 1.5;
  margin-bottom: 20px;
  max-width: 650px;
}

.founder-desc {
  color: #6b7280;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 20px;
}

/* SPECIALITY */

.founder-speciality {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.speciality-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: 0.4s;
}

.speciality-item:hover {
  transform: translateY(-6px);
}

.speciality-item i {
  color: #2563eb;
  font-size: 22px;
  margin-top: 2px;
}

.speciality-item span {
  color: #081b33;
  font-weight: 600;
  line-height: 1.6;
  font-size: 15px;
}

/* QUOTE */

.founder-quote {
  background: linear-gradient(135deg, #031ea3, #0b1b68);
  border-radius: 28px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.founder-quote::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  top: -80px;
  right: -60px;
}

.founder-quote i {
  color: #4f8dff;
  font-size: 34px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.founder-quote p {
  color: #dbe7ff;
  line-height: 1.9;
  font-size: 17px;
  position: relative;
  z-index: 2;
}

/* IMAGE */

.founder-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* BG CIRCLE */

.image-bg-circle {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  opacity: 0.08;
}
.founder-image {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  height: 800px;
  object-fit: cover;
}

/* FLOATING CARD */

.founder-floating-card {
  position: absolute;
  bottom: 40px;
  left: 0;
  background: #fff;
  padding: 24px 28px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 3;
}

.founder-floating-card h4 {
  font-size: 34px;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 6px;
}

.founder-floating-card span {
  color: #6b7280;
  font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .founder-wrapper {
    grid-template-columns: 1fr;
  }

  .founder-content h2 {
    font-size: 52px;
  }

  .founder-image-wrap {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .founder-section {
    padding: 80px 0;
  }

  .founder-content h2 {
    font-size: 40px;
  }

  .founder-content h3 {
    font-size: 18px;
  }

  .founder-speciality {
    grid-template-columns: 1fr;
  }

  .founder-floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 20px;
  }

  .image-bg-circle {
    width: 320px;
    height: 320px;
  }
}

/* =========================
WILS UNIQUE SECTION
========================= */

.wils-unique-section {
  background: #071b34;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.wils-unique-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* =========================
LEFT SIDE
========================= */

.wils-main-feature {
  position: relative;
  padding-left: 60px;
  margin-bottom: 70px;
}

.wils-main-feature::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
}

.wils-main-feature::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 55px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4d7cff;
}

/* ICON */

.wils-main-icon {
  width: 85px;
  height: 85px;
  border-radius: 28px;
  background: linear-gradient(135deg, #4d7cff, #5a54ff);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 28px;
}

.wils-main-icon i {
  color: #fff;
  font-size: 34px;
}

/* TEXT */

.wils-small-title {
  display: block;
  color: #6ea0ff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

.wils-main-feature h2 {
  color: #fff;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 25px;
}

.wils-main-feature p {
  color: #c7d4ea;
  line-height: 2;
  font-size: 18px;
  max-width: 650px;
}

/* =========================
FEATURE LIST
========================= */

.wils-feature-list {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.wils-feature-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.wils-feature-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 38px;
  width: 30px;
  height: 2px;
  background: #3b82f6;
}

/* ICON */

.wils-feature-icon {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.wils-feature-icon i {
  color: #4d7cff;
  font-size: 32px;
}

/* TEXT */

.wils-feature-text h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}

.wils-feature-text p {
  color: #c7d4ea;
  font-size: 18px;
  line-height: 1.8;
}

/* =========================
RIGHT SIDE
========================= */

.wils-unique-right {
  position: relative;
  min-height: 700px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* CIRCLE */

.wils-circle-box {
  width: 360px;
  height: 360px;
  border-radius: 50%;

  background: linear-gradient(135deg, #4d7cff, #5146ff);

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  box-shadow: 0 40px 90px rgba(77, 124, 255, 0.35);
}

.wils-circle-box::before {
  content: "";
  position: absolute;

  width: 460px;
  height: 460px;

  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.wils-circle-inner {
  text-align: center;
  max-width: 180px;
}

.wils-circle-inner h3 {
  color: #fff;
  font-size: 100px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 10px;
}

.wils-circle-inner span {
  color: #dbe7ff;
  line-height: 1.7;
  font-size: 19px;
}

/* =========================
FLOATING CARDS
========================= */

.wils-floating-card {
  position: absolute;

  width: 290px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(14px);

  border-radius: 35px;

  padding: 32px;
}

/* TOP */

.wils-card-top {
  top: 20px;
  right: 0;
}

/* BOTTOM */

.wils-card-bottom {
  bottom: 40px;
  left: 0;
}

/* CARD ICON */

.wils-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;
}

.wils-card-icon i {
  color: #4d7cff;
  font-size: 30px;
}

/* TEXT */

.wils-floating-card h4 {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 18px;
  font-weight: 600;
}

.wils-floating-card p {
  color: #d6e2f4;
  line-height: 1.9;
  font-size: 17px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .wils-unique-container {
    grid-template-columns: 1fr;
  }

  .wils-unique-right {
    min-height: auto;
    gap: 30px;
    flex-direction: column;
  }

  /* Below this width the cards stack in normal flow instead of floating
     over the circle. Keep the circle out of that flow too -- center it
     as a backdrop behind the card stack instead of a separate block
     sitting above them. */
  .wils-circle-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  .wils-floating-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    /* .wils-card-top/-bottom set top/right/bottom/left for the absolute
       layout above; those offsets still apply to position:relative and
       were shifting the bottom card up into the top one. */
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
}

@media (max-width: 767px) {
  .wils-unique-section {
    padding: 80px 0;
  }

  .wils-main-feature {
    padding-left: 35px;
  }

  .wils-main-feature h2 {
    font-size: 40px;
  }

  .wils-main-feature p {
    font-size: 16px;
  }

  .wils-feature-list {
    padding-left: 20px;
  }

  .wils-feature-item {
    flex-direction: column;
  }

  .wils-feature-item::before {
    left: -20px;
    width: 15px;
  }

  .wils-feature-text h4 {
    font-size: 28px;
  }

  .wils-feature-text p {
    font-size: 16px;
  }

  /* On phones the card icons sit right where the circle backdrop peeks
     out from behind the stack, so it reads as covering them. Hide it
     here only -- tablets (768-1100px) keep the circle-behind-cards
     layout from the previous fix. */
  .wils-circle-box,
  .wils-circle-box::before {
    display: none;
  }

  .wils-floating-card {
    padding: 26px;
  }

  .wils-floating-card h4 {
    font-size: 24px;
  }
}

/* =========================
CONTACT PAGE
========================= */

.wils-contact-page {
  background: #f8fbff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* SHAPES */

.wils-contact-shape {
  position: absolute;
  border-radius: 50%;
}

.shape-one {
  width: 420px;
  height: 420px;
  background: rgba(37, 99, 235, 0.05);
  top: -180px;
  left: -120px;
}

.shape-two {
  width: 320px;
  height: 320px;
  background: rgba(79, 70, 229, 0.05);
  bottom: -120px;
  right: -100px;
}

/* CONTAINER */

.wils-contact-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* Top row: address + form — unchanged 50/50 split. */
.wils-contact-toprow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

/* Bottom row: a wider map beside the Opening Hours, so the hours column is
 * narrower and its cards fill it (no empty space on the right). */
.wils-contact-maprow {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.wils-contact-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.wils-contact-map-col iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 32px;
  display: block;
}

/* =========================
LEFT SIDE
========================= */

.wils-contact-tag {
  display: inline-block;
  color: #2563eb;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-left: 50px;
}

.wils-contact-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 2px;
  background: #2563eb;
}

/* HEADING */

.wils-contact-left h2 {
  font-size: 58px;
  line-height: 1.05;
  color: #081b33;
  font-weight: 900;
  margin-bottom: 28px;
}

.wils-contact-desc {
  color: #6b7280;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 55px;
  max-width: 650px;
}

/* CONTACT INFO */

.wils-contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ITEM */

.wils-contact-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

/* ICON */

.wils-contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

  flex-shrink: 0;
}

.wils-contact-icon i {
  color: #2563eb;
  font-size: 32px;
}

/* TEXT */

.wils-contact-text h4 {
  font-size: 22px;
  color: #081b33;
  font-weight: 800;
}

.wils-contact-text p {
  color: #6b7280;
  line-height: 1.9;
  font-size: 17px;
}

/* =========================
RIGHT SIDE
========================= */

/* FORM */

.wils-contact-form-box {
  background: #081b33;
  border-radius: 40px;
  padding: 45px;
  margin-bottom: 35px;
}

/* FORM TOP */

.wils-form-top span {
  color: #8db6ff;
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

.wils-form-top h3 {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 35px;
}

/* GRID */

.wils-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* INPUT */

.wils-input-group {
  margin-bottom: 18px;
}

.wils-input-group input,
.wils-input-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;

  padding: 18px 20px;

  color: #fff;
  font-size: 16px;

  outline: none;
}

.wils-input-group textarea {
  height: 160px;
  resize: none;
}

.wils-input-group input::placeholder,
.wils-input-group textarea::placeholder {
  color: #aebad0;
}

/* BUTTON */

.wils-submit-btn {
  border: none;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;

  padding: 18px 32px;
  border-radius: 60px;

  font-size: 16px;
  font-weight: 600;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  cursor: pointer;
  transition: 0.4s;
}

.wils-submit-btn:hover {
  transform: translateY(-5px);
}

/* =========================
BOTTOM INFO
========================= */

.wils-bottom-info {
  display: grid;
  grid-template-columns: max-content;
  gap: 25px;
}

/* HOURS */

.wils-hours-box {
  background: #fff;
  border-radius: 32px;
  padding: 35px;
}

.wils-hours-box h4 {
  font-size: 22px;
  color: #081b33;
  font-weight: 800;
  margin-bottom: 28px;
}

.wils-hours-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wils-hours-box li {
  display: flex;
  justify-content: space-between;
  gap: 0;
  padding: 16px 0;
  border-bottom: 1px solid #edf2f7;
  flex-direction: column;
}

.wils-hours-box li:last-child {
  border: none;
}

.wils-hours-box span {
  color: #6b7280;
}

.wils-hours-box strong {
  color: #081b33;
}

/* ADVISOR */

.wils-advisor-box {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 32px;
  padding: 35px;
  color: #fff;
}

.advisor-label {
  display: none;
  margin-bottom: 16px;
  color: #dbe7ff;
  font-size: 14px;
}

.wils-advisor-box h4 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 14px;
	display: none;
}

.wils-advisor-box p {
  color: #e6eeff;
  margin-bottom: 28px;
  display: none;
}

/* SOCIAL */

.wils-social-links {
  display: flex;
  gap: 14px;
}

.wils-social-links a {
  width: 48px;
  height: 48px;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 18px;

  transition: 0.4s;
}

.wils-social-links a:hover {
  transform: translateY(-5px);
  background: #fff;
  color: #2563eb;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .wils-contact-toprow,
  .wils-contact-maprow {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wils-contact-map-col iframe {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .wils-contact-page {
    padding: 80px 0;
  }

  .wils-contact-left h2 {
    font-size: 42px;
  }

  .wils-contact-desc {
    font-size: 16px;
  }

  .wils-contact-item {
    flex-direction: column;
  }

  .wils-contact-text h4 {
    font-size: 24px;
  }

  .wils-contact-form-box {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .wils-form-top h3 {
    font-size: 32px;
  }

  .wils-form-grid {
    grid-template-columns: 1fr;
  }

  .wils-bottom-info {
    grid-template-columns: 1fr;
  }

  .wils-hours-box,
  .wils-advisor-box {
    padding: 28px 24px;
    border-radius: 24px;
  }
}

/* =========================================
TESTIMONIAL PAGE
========================================= */

.wils-testimonial-page {
  background: #f5f7fb;
  padding: 120px 0;
  overflow: hidden;
}

.wils-testimonial-container {
  width: 92%;
  max-width: 1450px;
  margin: auto;
}

/* =========================================
HEADING
========================================= */

.wils-testimonial-heading {
  text-align: center;
  margin-bottom: 70px;
}

.wils-testimonial-heading span {
  display: inline-block;
  color: #2563eb;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
}

.wils-testimonial-heading h2 {
  font-size: 68px;
  line-height: 1.05;
  color: #081b33;
  font-weight: 900;
  margin-bottom: 22px;
}

.wils-testimonial-heading p {
  max-width: 760px;
  margin: auto;
  color: #6b7280;
  font-size: 18px;
  line-height: 2;
}

/* =========================================
GRID
========================================= */

.wils-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

/* =========================================
CARD
========================================= */

.wils-testi-card {
  border-radius: 38px;
  padding: 55px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.wils-testi-card:hover {
  transform: translateY(-10px);
}

/* LARGE CARD */

.wils-testi-large {
  grid-column: span 3;
  min-height: 360px;
}

/* SMALL CARD */

.wils-testi-blue,
.wils-testi-pink,
.wils-testi-light {
  grid-column: span 2;
  min-height: 320px;
}

/* =========================================
COLORS
========================================= */

.wils-testi-yellow {
  background: #ffe60014;
}

.wils-testi-purple {
  background: #c8bbff52;
}

.wils-testi-blue {
  background: #11589d45;
  color: #fff;
}

.wils-testi-pink {
  background: #f7b3bc;
}

.wils-testi-light {
  background: #f1e9e8;
}

/* =========================================
QUOTE
========================================= */

.wils-quote-icon {
  margin-bottom: 30px;
}

.wils-quote-icon i {
  font-size: 64px;
  line-height: 1;
}

/* QUOTE COLORS */

.wils-testi-yellow .wils-quote-icon i {
  color: #2563eb;
}

.wils-testi-purple .wils-quote-icon i {
  color: #fff;
}

.wils-testi-blue .wils-quote-icon i {
  color: #ffe600;
}

.wils-testi-pink .wils-quote-icon i {
  color: #2563eb;
}

.wils-testi-light .wils-quote-icon i {
  color: #f6a6b1;
}

/* =========================================
TEXT
========================================= */

.wils-testi-text {
  font-size: 20px;
  line-height: 1.6;
  color: #081b33;
  margin-bottom: 45px;
}

.wils-testi-blue .wils-testi-text {
  color: #fff;
}

/* =========================================
CLIENT INFO
========================================= */

.wils-client-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.wils-client-info img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
}

.wils-client-info h4 {
  font-size: 22px;
  color: #081b33;
  font-weight: 800;
  margin-bottom: 6px;
}

.wils-client-info span {
  color: #3f3f46;
  font-size: 17px;
}

.wils-testi-blue .wils-client-info h4,
.wils-testi-blue .wils-client-info span {
  color: #fff;
}

/* =========================================
RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .wils-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .wils-testi-large,
  .wils-testi-blue,
  .wils-testi-pink,
  .wils-testi-light {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .wils-testimonial-page {
    padding: 80px 0;
  }

  .wils-testimonial-heading h2 {
    font-size: 42px;
  }

  .wils-testimonial-heading p {
    font-size: 16px;
  }

  .wils-testi-card {
    padding: 35px 25px;
    border-radius: 28px;
  }

  .wils-testi-text {
    font-size: 20px;
  }

  .wils-client-info h4 {
    font-size: 22px;
  }

  .wils-client-info span {
    font-size: 15px;
  }
}
.vision-icon-box img {
  border-radius: 26px;
  height: 70px;
  width: 70px;
  object-fit: cover;
}
.about-info-card.active-card .about-icon img {
  border-radius: 26px;
  height: 70px;
  width: 70px;
  object-fit: cover;
}

/* =========================================
        SKILL ASSESSMENT BANNER
========================================= */
.skill-section {
  position: relative;
  padding: 80px 0px;
}
.skill-content {
  text-align: center;
  font-size: 20px;
  line-height: 40px;
}
.skill-content blockquote {
  background: #07114329;
  border-radius: 50px 0px;
  padding: 20px;
  border-left: 5px solid #071143;
  margin-top: 30px;
}

/* =========================================
        MODERN ASSESSMENT SECTION
========================================= */

.assessment-modern {
  position: relative;
  overflow: hidden;

  padding: 50px 0;

  background: linear-gradient(135deg, #081120 0%, #0f172a 100%);
}

/* TOP */

.assessment-modern-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  flex-wrap: wrap;

  margin-bottom: 80px;
}

.assessment-left {
  max-width: 650px;
}

.assessment-mini-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);

  color: #60a5fa;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  margin-bottom: 24px;
}

.assessment-left h2 {
  font-size: clamp(40px, 4vw, 68px);
  line-height: 1.05;
  font-weight: 800;

  color: #fff;
}

.assessment-left h2 span {
  color: #60a5fa;
}

.assessment-modern-top p {
  max-width: 460px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 17px;
  line-height: 1.9;
}

/* GRID */

.assessment-modern-grid {
  position: relative;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* ITEM */

.assessment-modern-item {
  position: relative;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s ease;
  text-align: center;
  padding-top: 20px;
}

.assessment-modern-item:hover {
  transform: translateY(-10px);
  border-color: rgba(96, 165, 250, 0.35);
}

/* TOP LINE */

.assessment-line {
  position: absolute;

  top: 0;
  left: 39%;

  width: 90px;
  height: 3px;

  border-radius: 999px;

  background: linear-gradient(90deg, #2d8cf0, #60a5fa);
}

/* ICON */

.assessment-modern-icon {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2d8cf0, #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 28px;
  box-shadow: 0 20px 40px rgba(45, 140, 240, 0.18);
  transition: 0.4s ease;
  margin: 0 auto 20px;
}

.assessment-modern-item:hover .assessment-modern-icon {
  transform: rotate(-8deg) scale(1.06);
}

/* CONTENT */

.assessment-modern-content span {
  display: inline-block;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #60a5fa;

  margin-bottom: 14px;
}

.assessment-modern-content h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;

  color: #fff;

  margin-bottom: 18px;
}

.assessment-modern-content p {
  color: rgba(255, 255, 255, 0.7);

  font-size: 15px;
  line-height: 1.9;
}

/* =========================================
                RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .assessment-modern-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .assessment-modern {
    padding: 90px 0;
  }

  .assessment-modern-top {
    margin-bottom: 50px;
  }

  .assessment-left h2 {
    font-size: 42px;
  }

  .assessment-modern-item {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .assessment-modern-content h3 {
    font-size: 24px;
  }
}

/* =========================================
        WHY CHOOSE WILS
========================================= */

.why-wils {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef6ff 100%);
}

/* SHAPES */

.why-wils-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.shape-one {
  width: 320px;
  height: 320px;

  background: rgba(45, 140, 240, 0.1);

  top: -100px;
  left: -100px;
}

.shape-two {
  width: 260px;
  height: 260px;

  background: rgba(96, 165, 250, 0.12);

  right: -60px;
  bottom: -60px;
}

/* WRAPPER */

.why-wils-wrapper {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* CONTENT */

.why-wils-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(45, 140, 240, 0.1);

  color: #2d8cf0;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  margin-bottom: 24px;
}

.why-wils-content h2 {
  font-size: clamp(42px, 4vw, 68px);
  line-height: 1.08;
  font-weight: 800;

  color: #081120;

  margin-bottom: 24px;
}

.why-wils-content h2 span {
  display: block;
  color: #2d8cf0;
}

.why-wils-desc {
  max-width: 650px;

  font-size: 18px;
  line-height: 1.9;

  color: #64748b;

  margin-bottom: 50px;
}

/* LIST */

.why-wils-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-wils-item {
  display: flex;
  gap: 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.why-icon {
  min-width: 70px;
  height: 70px;

  border-radius: 24px;

  background: linear-gradient(135deg, #2d8cf0, #60a5fa);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 20px;
  font-weight: 700;

  box-shadow: 0 18px 35px rgba(45, 140, 240, 0.18);
}

.why-info h3 {
  font-size: 24px;
  font-weight: 700;

  color: #081120;

  margin-bottom: 0px;
}

.why-info p {
  color: #64748b;

  line-height: 1.9;
  font-size: 15px;
}

/* VISUAL */

.why-wils-visual {
  position: relative;
}
.why-wils-visual img {
  border-radius: 30px;
  height: 600px;
  width: 100%;
  object-fit: cover;
}
/* FLOATING CARD */

.why-floating-card {
  position: absolute;

  right: -30px;
  bottom: 50px;

  padding: 24px 28px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.88);

  backdrop-filter: blur(10px);

  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);

  animation: floatCard 4s ease-in-out infinite;
}

.why-floating-card h4 {
  font-size: 20px;
  font-weight: 700;

  color: #081120;

  margin-bottom: 6px;
}

.why-floating-card p {
  font-size: 14px;
  color: #64748b;
}

/* FLOAT */

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================================
                RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .why-wils-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-wils {
    padding: 90px 0;
  }

  .why-wils-content h2 {
    font-size: 42px;
  }

  .why-main-card {
    padding: 34px 24px;
  }

  .why-main-card h3 {
    font-size: 28px;
  }

  .why-main-top span {
    font-size: 54px;
  }

  .why-wils-item {
    gap: 18px;
  }

  .why-icon {
    min-width: 60px;
    height: 60px;

    border-radius: 18px;
  }

  .why-info h3 {
    font-size: 20px;
  }

  .why-floating-card {
    position: relative;

    right: auto;
    bottom: auto;

    margin-top: 20px;
  }
}

/* =========================================
            CTA SECTION
========================================= */

.migration-cta {
  position: relative;
  overflow: hidden;

  padding: 50px 0;

  background: linear-gradient(135deg, #071120 0%, #0f172a 50%, #132238 100%);
}

/* SHAPES */

.cta-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.cta-shape-1 {
  width: 320px;
  height: 320px;

  background: rgba(45, 140, 240, 0.25);

  top: -100px;
  left: -100px;
}

.cta-shape-2 {
  width: 260px;
  height: 260px;

  background: rgba(96, 165, 250, 0.18);

  right: -80px;
  bottom: -80px;
}

/* WRAPPER */

.migration-cta-wrap {
  position: relative;
  text-align: center;
}

/* LEFT */

.migration-cta-left h2 {
  font-size: clamp(42px, 4vw, 72px);
  line-height: 1.08;
  font-weight: 800;

  color: #fff;

  margin-bottom: 24px;
}

.migration-cta-left h2 span {
  display: block;
  color: #60a5fa;
}

.migration-cta-left p {
  max-width: 70%;
  margin: 0 auto;

  color: rgba(255, 255, 255, 0.72);

  font-size: 18px;
  line-height: 1.9;

  margin-bottom: 40px;
}

/* BUTTONS */

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cta-btn-primary,
.cta-btn-outline {
  height: 58px;

  padding: 0 34px;

  border-radius: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  text-decoration: none;

  transition: 0.35s ease;
}

.cta-btn-primary {
  background: linear-gradient(135deg, #2d8cf0, #60a5fa);

  color: #fff;

  box-shadow: 0 18px 35px rgba(45, 140, 240, 0.25);
}

.cta-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.05);

  color: #fff;

  backdrop-filter: blur(10px);
}

.cta-btn-primary:hover,
.cta-btn-outline:hover {
  transform: translateY(-4px);
}

/* =========================================
                RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .migration-cta-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .migration-cta {
    padding: 90px 0;
  }

  .migration-cta-left h2 {
    font-size: 42px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn-primary,
  .cta-btn-outline {
    width: 100%;
  }

  .cta-visual {
    height: 420px;
  }

  .cta-circle {
    width: 140px;
    height: 140px;
  }

  .cta-circle span {
    font-size: 42px;
  }

  .cta-mini-card {
    font-size: 14px;
    padding: 14px 18px;
  }

  .card-1 {
    left: 20px;
    top: 60px;
  }

  .card-2 {
    right: 20px;
  }

  .card-3 {
    left: 40px;
    bottom: 50px;
  }

  .cta-floating-card {
    position: relative;

    right: auto;
    top: auto;

    margin-bottom: 20px;
  }
}

/* =========================================
        PARTNER VISA HERO
========================================= */

.partner-hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0px;
  background: linear-gradient(135deg, #f7fbff 0%, #ffffff 45%, #eef5ff 100%);
}

/* BACKGROUND */

.partner-hero-bg {
  position: absolute;
  inset: 0;

  background-image: linear-gradient(rgba(45, 140, 240, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 140, 240, 0.03) 1px, transparent 1px);

  background-size: 60px 60px;
}

.partner-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.partner-glow-1 {
  width: 300px;
  height: 300px;

  background: rgba(45, 140, 240, 0.12);

  top: -100px;
  left: -100px;
}

.partner-glow-2 {
  width: 260px;
  height: 260px;

  background: rgba(96, 165, 250, 0.1);

  right: -80px;
  bottom: -80px;
}

/* WRAP */

.partner-hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

/* CONTENT */

.partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(45, 140, 240, 0.1);

  color: #2d8cf0;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  margin-bottom: 24px;
}

.partner-hero-content h1 {
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.05;
  font-weight: 800;

  color: #081120;

  margin-bottom: 26px;
}

.partner-hero-content h1 span {
  display: block;
  color: #2d8cf0;
}

.partner-desc {
  max-width: 650px;

  color: #64748b;

  font-size: 18px;
  line-height: 1.9;

  margin-bottom: 40px;
}

/* POINTS */

.partner-points {
  display: flex;
  flex-direction: column;
  gap: 18px;

  margin-bottom: 45px;
}

.partner-point {
  display: flex;
  align-items: center;
  gap: 16px;
}

.partner-icon {
  width: 46px;
  height: 46px;

  border-radius: 14px;

  background: linear-gradient(135deg, #2d8cf0, #60a5fa);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  box-shadow: 0 14px 28px rgba(45, 140, 240, 0.18);
}

.partner-point span {
  font-size: 16px;
  font-weight: 600;

  color: #081120;
}

/* BUTTONS */

.partner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.partner-btn-primary,
.partner-btn-outline {
  height: 58px;

  padding: 0 34px;

  border-radius: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  font-weight: 700;

  transition: 0.35s ease;
}

.partner-btn-primary {
  background: linear-gradient(135deg, #2d8cf0, #60a5fa);

  color: #fff;

  box-shadow: 0 20px 40px rgba(45, 140, 240, 0.18);
}

.partner-btn-outline {
  border: 1px solid rgba(15, 23, 42, 0.08);

  background: #fff;

  color: #081120;
}

.partner-btn-primary:hover,
.partner-btn-outline:hover {
  transform: translateY(-4px);
}

/* VISUAL */

.partner-hero-visual {
  position: relative;
}

.partner-image-card {
  position: relative;

  overflow: hidden;

  border-radius: 40px;

  height: 620px;

  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.12);
}

.partner-image-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.partner-image-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(8, 17, 32, 0.25), transparent 40%);
}

/* FLOATING CARDS */

.partner-floating-card {
  position: absolute;

  display: flex;
  align-items: center;
  gap: 16px;

  padding: 18px 22px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.92);

  backdrop-filter: blur(14px);

  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);

  animation: floatCard 4s ease-in-out infinite;
}

.float-icon {
  width: 54px;
  height: 54px;

  border-radius: 16px;

  background: linear-gradient(135deg, #2d8cf0, #60a5fa);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
}

.partner-floating-card h4 {
  font-size: 17px;
  font-weight: 700;

  color: #081120;

  margin-bottom: 5px;
}

.partner-floating-card p {
  font-size: 14px;
  color: #64748b;
}

.card-top {
  top: 40px;
  left: -40px;
}

.card-bottom {
  right: -30px;
  bottom: 40px;
}

/* ANIMATION */

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================================
            RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .partner-hero-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .partner-hero {
    padding: 90px 0;
  }

  .partner-hero-content h1 {
    font-size: 42px;
  }

  .partner-buttons {
    flex-direction: column;
  }

  .partner-btn-primary,
  .partner-btn-outline {
    width: 100%;
  }

  .partner-image-card {
    height: 450px;
  }

  .partner-floating-card {
    position: relative;

    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    margin-top: 20px;
  }
}

/* =========================================
      PARTNER VISA INFO SECTION
========================================= */

.partner-info-section {
  position: relative;
  overflow: hidden;

  padding: 50px 0;

  background: linear-gradient(135deg, #081120 0%, #0f172a 55%, #132238 100%);
}

/* BACKGROUND */

.partner-wave {
  position: absolute;
  inset: 0;

  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

  background-size: 60px 60px;

  opacity: 0.35;
}

.partner-light {
  position: absolute;

  width: 500px;
  height: 500px;

  border-radius: 50%;

  background: radial-gradient(rgba(45, 140, 240, 0.25), transparent 70%);

  top: -180px;
  right: -120px;

  filter: blur(80px);
}

/* WRAP */

.partner-info-wrap {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.partner-info-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #60a5fa;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
  width: 52%;
}

.partner-info-left h2 {
  font-size: clamp(42px, 4vw, 68px);
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0px;
}

.partner-info-left h2 span {
  display: block;
  color: #60a5fa;
}

.partner-info-desc {
  max-width: 640px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 18px;
  line-height: 1.9;

  margin-bottom: 0px;
}

/* BUTTON */

.partner-info-actions {
  margin-top: 40px;
}

.partner-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 60px;
  padding: 0 34px;

  border-radius: 18px;

  background: linear-gradient(135deg, #2d8cf0, #60a5fa);

  color: #fff;
  text-decoration: none;
  font-weight: 700;

  box-shadow: 0 18px 40px rgba(45, 140, 240, 0.22);

  transition: 0.35s ease;
}

.partner-info-btn:hover {
  transform: translateY(-4px);
}

/* RIGHT */

.partner-info-right {
  position: relative;
}

/* CARD */

.partner-visa-card {
  position: relative;

  overflow: hidden;

  padding: 42px;

  border-radius: 36px;

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(14px);

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

/* CARD GLOW */

.partner-visa-card::before {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  border-radius: 50%;

  background: radial-gradient(rgba(45, 140, 240, 0.22), transparent 70%);

  top: -100px;
  right: -100px;
}

/* TOP */

.partner-card-top {
  display: flex;
  align-items: center;
  gap: 20px;

  margin-bottom: 40px;
}

.partner-card-icon {
  width: 80px;
  height: 80px;

  border-radius: 24px;

  background: linear-gradient(135deg, #2d8cf0, #60a5fa);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  box-shadow: 0 18px 35px rgba(45, 140, 240, 0.24);
}

.partner-card-top h3 {
  font-size: 28px;
  font-weight: 700;

  color: #fff;

  margin-bottom: 8px;
}

.partner-card-top p {
  color: rgba(255, 255, 255, 0.65);
}

/* LIST */

.partner-card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;

  margin-bottom: 42px;
}

.partner-card-item {
  display: flex;
  align-items: center;
  gap: 16px;

  padding-bottom: 18px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-card-item .dot {
  width: 14px;
  height: 14px;

  border-radius: 50%;

  background: linear-gradient(135deg, #2d8cf0, #60a5fa);

  box-shadow: 0 0 0 6px rgba(45, 140, 240, 0.12);
}

.partner-card-item p {
  color: rgba(255, 255, 255, 0.78);

  font-size: 16px;
  line-height: 1.7;
}

/* BOTTOM */

.partner-card-bottom {
  display: flex;
  gap: 20px;
}

.partner-bottom-box {
  flex: 1;

  padding: 24px;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.06);

  border: 1px solid rgba(255, 255, 255, 0.06);
}

.partner-bottom-box h4 {
  font-size: 32px;
  font-weight: 800;

  color: #60a5fa;

  margin-bottom: 10px;
}

.partner-bottom-box span {
  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;
}

/* FLOAT LABEL */

.partner-floating-label {
  position: absolute;

  left: -40px;
  bottom: 40px;

  padding: 18px 24px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.95);

  color: #081120;

  font-size: 15px;
  font-weight: 700;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);

  animation: floatLabel 4s ease-in-out infinite;
}

/* ANIMATION */

@keyframes floatLabel {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================================
              RESPONSIVE
========================================= */

@media (max-width: 1200px) {
  .partner-info-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .partner-info-section {
    padding: 90px 0;
  }

  .partner-info-left h2 {
    font-size: 42px;
  }

  .partner-visa-card {
    padding: 30px 24px;
  }

  .partner-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-card-bottom {
    flex-direction: column;
  }

  .partner-floating-label {
    position: relative;

    left: auto;
    bottom: auto;

    margin-top: 20px;
  }
}

.visa-table-section {
  position: relative;
  padding: 50px 0;
  background: #f5f8fc;
  overflow: hidden;
}

.visa-table-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d8cf0, #0f172a);
  opacity: 0.06;
}

.visa-table-header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 20px;
}

.table-subtitle {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(45, 140, 240, 0.1);
  color: #2d8cf0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.visa-table-header h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.visa-table-header p {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
}

.custom-visa-table {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.06);
}
.table-head {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  padding: 15px 40px;
  background: linear-gradient(90deg, #0f172a, #16325f);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  gap: 24px;
}

.table-row {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1.5fr;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: 0.35s ease;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  transition: 0.35s ease;
}

.table-row:hover {
  background: #f8fbff;
}

.table-row:hover::before {
  background: #2d8cf0;
}

.active-row {
  background: linear-gradient(90deg, rgba(45, 140, 240, 0.05), transparent);
}

.visa-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.visa-number {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2d8cf0, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 15px 35px rgba(45, 140, 240, 0.2);
}
.visa-title h4 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.visa-title p {
  font-size: 15px;
  color: #2d8cf0;
  font-weight: 600;
}

.visa-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.location-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2d8cf0;
  box-shadow: 0 0 0 6px rgba(45, 140, 240, 0.12);
}

.visa-summary {
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
}

@media (max-width: 991px) {
  .table-head {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .visa-table-section {
    padding: 80px 0;
  }

  .custom-visa-table {
    border-radius: 24px;
  }

  .visa-title {
    align-items: flex-start;
  }

  .visa-number {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    font-size: 14px !important;
  }

  .visa-title h4 {
    font-size: 20px;
  }
}

.partner-visa-info-section {
  position: relative;
  padding: 50px 0;
  background: #f8fbff;
  overflow: hidden;
}

.partner-visa-info-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  filter: blur(100px);
}

.partner-info-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  position: relative;
  z-index: 2;
}

/* LEFT */
.partner-info-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.partner-info-card {
  position: relative;
  display: flex;
  gap: 26px;
  padding: 38px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
  transition: 0.4s ease;
}

.partner-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.1);
}

.partner-info-icon {
  min-width: 78px;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.3);
}

.partner-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-info-content h3 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 800;
  color: #0f172a;
}

.partner-info-content p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
}

.partner-info-content ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partner-info-content ul li {
  position: relative;
  padding-left: 30px;
  color: #1e293b;
  line-height: 1.7;
}

.partner-info-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.12);
}

/* RIGHT */
.partner-info-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.processing-card {
  position: relative;
  padding: 42px;
  border-radius: 36px;
  background: linear-gradient(135deg, #021024 0%, #0b1d3d 100%);
  overflow: hidden;
  color: #fff;
}

.processing-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(96, 165, 250, 0.12);
  filter: blur(60px);
}

.processing-top span,
.pitfall-head span {
  display: inline-block;
  margin-bottom: 14px;
  color: #60a5fa;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.processing-top h3,
.pitfall-head h3 {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
}

.processing-top p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.processing-list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.processing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.processing-item h4 {
  font-size: 17px;
  font-weight: 600;
}

.processing-item p {
  color: #60a5fa;
  font-weight: 700;
}

.processing-note {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

/* PITFALL */
.pitfall-card {
  padding: 40px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.pitfall-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.pitfall-item {
  padding: 18px;
  border-radius: 18px;
  background: #f1f7ff;
  border: 1px solid rgba(59, 130, 246, 0.08);
  color: #0f172a;
  line-height: 1.6;
  font-weight: 500;
}

.pitfall-note {
  margin-top: 24px;
  color: #475569;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .partner-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .partner-visa-info-section {
    padding: 80px 0;
  }

  .partner-info-card {
    flex-direction: column;
    padding: 28px;
  }

  .partner-info-content h3,
  .processing-top h3,
  .pitfall-head h3 {
    font-size: 30px;
  }

  .processing-card,
  .pitfall-card {
    padding: 28px;
  }

  .processing-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pitfall-grid {
    grid-template-columns: 1fr;
  }
}

.section-img img {
  width: 100%;
  border-radius: 30px;
  height: 315px;
  object-fit: cover;
}
/* =========================
   MULTI LEVEL DROPDOWN
========================= */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
}

/* LEVEL 1 */
.nav-dropdown-menu {
  position: absolute;
  top: 85%;
  left: 0;
  min-width: 270px;
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: 0.3s ease;
  z-index: 99;
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  color: #0f172a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-dropdown-menu a:hover {
  background: #f1f7ff;
  color: #2563eb;
}

/* LEVEL 2 */
.submenu-item {
  position: relative;
}

.submenu-dropdown {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: 0.3s ease;
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.submenu-item:hover .submenu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Hover bg */
.submenu-dropdown a:hover {
  background: #2563eb;
  color: #fff;
}

/* Dropdown item icon + label */
.nav-menu-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-menu-icon {
  font-size: 16px;
  line-height: 1;
  color: #2563eb;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.submenu-dropdown a:hover .nav-menu-icon {
  color: #fff;
}

/* Arrow */
.submenu-item svg {
  transition: 0.3s ease;
}

.submenu-item:hover svg {
  transform: translateX(3px);
}

/* MOBILE */
@media (max-width: 991px) {
  .nav-dropdown-menu,
  .submenu-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 8px 0 0;
    display: none;
    background: transparent;
  }

  .nav-dropdown.active .nav-dropdown-menu,
  .submenu-item.active .submenu-dropdown {
    display: block;
  }
}
.graduate-visa-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background: #ffffff;
}

/* subtle pattern */
.graduate-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.06), transparent 28%),
    radial-gradient(circle at bottom left, rgba(96, 165, 250, 0.05), transparent 30%);
}

/* top */
.graduate-top {
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.graduate-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 100px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.graduate-top h2 {
  font-size: 50px;
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #0f172a;
}

.graduate-top h2 span {
  color: #2563eb;
}

/* content wrapper */
.graduate-content-wrap {
  position: relative;
  z-index: 2;
}

/* intro */
.graduate-intro {
  max-width: 1100px;
  margin-bottom: 90px;
  position: relative;
  padding-left: 50px;
}

.graduate-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(to bottom, #2563eb, #60a5fa);
}

.graduate-big-text {
  font-size: 28px !important;
  line-height: 1.25 !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.03em;
}

.graduate-intro p {
  font-size: 20px;
  line-height: 2;
  color: #64748b;
}

/* grid */
.graduate-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: flex-start;
}
.graduate-left h3 {
  font-size: 45px;
  line-height: 60px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  position: sticky;
  top: 120px;
}

/* right */
.graduate-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.graduate-right p {
  font-size: 19px;
  line-height: 2;
  color: #475569;
}

.graduate-right p:last-child {
  border: none;
  padding-bottom: 0;
}

/* decorative blur */
.graduate-visa-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.08);
  filter: blur(100px);
  top: -150px;
  right: -120px;
}

/* responsive */
@media (max-width: 992px) {
  .graduate-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .graduate-left h3 {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .graduate-visa-section {
    padding: 90px 0;
  }

  .graduate-top {
    margin-bottom: 50px;
  }

  .graduate-top h2 {
    font-size: 40px;
  }

  .graduate-intro {
    padding-left: 30px;
    margin-bottom: 60px;
  }

  .graduate-big-text {
    font-size: 20px !important;
  }

  .graduate-intro p {
    font-size: 17px;
    line-height: 1.9;
  }

  .graduate-left h3 {
    font-size: 34px;
	line-height: 50px;
  }

  .graduate-right p {
    font-size: 16px;
    line-height: 1.9;
  }
h2.section-title{
	font-size: 40px !important;
	}
.benefits-big-text {
    font-size: 20px !important;
}
}

.benefits-dark-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background: linear-gradient(135deg, #061120 0%, #0c1b34 100%);
}

/* glow */
.benefits-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.benefits-glow-1 {
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.18);
  top: -120px;
  right: -100px;
}

.benefits-glow-2 {
  width: 350px;
  height: 350px;
  background: rgba(96, 165, 250, 0.12);
  bottom: -120px;
  left: -80px;
}

/* heading */
.benefits-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.benefits-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #93c5fd;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.benefits-heading h2 {
  font-size: 60px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: #fff;
}

.benefits-heading h2 span {
  color: #60a5fa;
}

/* layout */
.benefits-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: flex-start;
}

/* left */
.benefits-highlight {
  position: sticky;
  top: 120px;
  padding-left: 40px;
}

.benefits-highlight-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(to bottom, #3b82f6, #60a5fa);
}

.benefits-big-text {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.benefits-small-text {
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
}

/* right */
.benefits-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.benefit-item {
    display: flex;
    gap: 28px;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    transition: 0.4s ease;
    align-items: center;
}

.benefit-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(96, 165, 250, 0.35);
}

.benefit-number {
  min-width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.benefit-item h3 {
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 700;
}

.benefit-item p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.68);
}

/* responsive */
@media (max-width: 992px) {
  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .benefits-highlight {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .benefits-dark-section {
    padding: 90px 0;
  }

  .benefits-heading {
    margin-bottom: 50px;
  }

  .benefits-heading h2 {
    font-size: 56px;
  }

  .benefits-highlight {
    padding-left: 26px;
  }

  .benefits-big-text {
    font-size: 32px;
  }

  .benefits-small-text {
    font-size: 16px;
  }

  .benefit-item {
    padding: 24px;
    flex-direction: column;
    gap: 20px;
  }

  .benefit-number {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }

  .benefit-item h3 {
    font-size: 22px;
  }

  .benefit-item p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.gsm-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background: #f8fbff;
}

/* background shapes */
.gsm-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.gsm-shape-1 {
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.12);
  top: -120px;
  right: -80px;
}

.gsm-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.08);
  bottom: -100px;
  left: -60px;
}

/* grid */
.gsm-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* image */
.gsm-image-wrap {
  position: relative;
}

.gsm-image-card {
  position: relative;
}

.gsm-image-card img {
  width: 100%;
  display: block;
  height: 600px;
}
.gsm-image-card {
  margin-top: 30px;
}
/* floating card */
.gsm-floating-box {
  position: absolute;
  left: 30px;
  bottom: 30px;
  padding: 22px 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.gsm-floating-box span {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 6px;
}

.gsm-floating-box p {
  font-size: 15px;
  color: #475569;
  font-weight: 500;
}

/* content */
.gsm-tag {
  display: inline-flex;
  padding: 10px 22px;
  border-radius: 100px;
  background: #dbeafe;
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.gsm-content h2 {
  font-size: 60px;
  line-height: 75px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}

.gsm-content h2 span {
  display: block;
  color: #2563eb;
}

.gsm-content > p {
  font-size: 18px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 24px;
}

/* features */
.gsm-feature-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.gsm-feature-item {
  display: flex;
  gap: 22px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: 0.35s ease;
}

.gsm-feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.gsm-feature-icon {
  min-width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.gsm-feature-item h3 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 8px;
  font-weight: 700;
}

.gsm-feature-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #64748b;
}

/* bottom text */
.gsm-bottom-text {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 17px;
  line-height: 1.9;
  color: #475569;
}

/* responsive */
@media (max-width: 992px) {
  .gsm-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .gsm-image-card img {
    height: 420px;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .gsm-section {
    padding: 90px 0;
  }

  .gsm-content h2 {
    font-size: 40px;
  }

  .gsm-content > p {
    font-size: 16px;
  }

  .gsm-feature-item {
    flex-direction: column;
    padding: 22px;
  }

  .gsm-feature-icon {
    width: 58px;
    height: 58px;
  }

  .gsm-feature-item h3 {
    font-size: 20px;
  }

  .gsm-bottom-text {
    font-size: 16px;
  }

  .gsm-image-card img {
    height: 420px;
  }
  .dark-process-step.active-step, .dark-process-step.success-step {
    margin-top: 0;
  }
}

/*======================================
 MODERN FAQ SECTION
=======================================*/
.modern-faq-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.modern-faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 70px;
  align-items: center;
  padding-top: 30px;
}
.faq-mini-title {
  display: inline-flex;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(45, 140, 240, 0.1);
  color: #2d8cf0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0px;
}

/*======================================
 FAQ ITEM
=======================================*/
.modern-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modern-faq-item {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.04);
}

.modern-faq-item.active {
  border-color: rgba(45, 140, 240, 0.2);
  box-shadow: 0 25px 60px rgba(45, 140, 240, 0.12);
}

.modern-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: #081028;
}

.modern-faq-icon {
  min-width: 54px;
  width: 54px;
  height: 54px;
  border-radius: 50%;

  background: rgba(45, 140, 240, 0.08);
  color: #2d8cf0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: 400;

  transition: 0.4s ease;
}

.modern-faq-item.active .modern-faq-icon {
  background: #2d8cf0;
  color: #fff;
  transform: rotate(45deg);
}

/*======================================
 ANSWER
=======================================*/
.modern-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
}

.modern-faq-item.active .modern-faq-answer {
  grid-template-rows: 1fr;
}

.modern-faq-answer-content {
  overflow: hidden;

  padding: 0 30px 0 30px;

  color: #64748b;
  font-size: 16px;
  line-height: 1.9;
}

.modern-faq-item.active .modern-faq-answer-content {
  padding-bottom: 30px;
}

/*======================================
 RIGHT IMAGE
=======================================*/
.modern-faq-right {
  position: relative;
}

.modern-faq-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
}
.modern-faq-image-wrap img {
  width: 100%;
  height: 470px;
}

/*======================================
 RESPONSIVE
=======================================*/
@media (max-width: 1100px) {
  .modern-faq-wrapper {
    grid-template-columns: 1fr;
  }

  .modern-faq-right {
    order: -1;
  }

  .modern-faq-image-wrap img {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .modern-faq-section {
    padding: 80px 0;
  }

  .modern-faq-question {
    padding: 22px;
    font-size: 17px;
  }

  .modern-faq-answer-content {
    padding: 0 22px;
  }

  .modern-faq-item.active .modern-faq-answer-content {
    padding-bottom: 22px;
  }

  .modern-faq-icon {
    min-width: 46px;
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .modern-faq-image-wrap img {
    height: 420px;
  }

  .faq-floating-box {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

span.red-underline {
  border-bottom: 2px solid red;
}

.visa-info-section {
  position: relative;
  padding: 60px 0;
  background: #f5f9ff;
  overflow: hidden;
}

.visa-info-section::before {
  content: "";
  position: absolute;
  top: -250px;
  right: -200px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(45, 140, 240, 0.12), transparent 70%);
  border-radius: 50%;
}

.visa-info-top {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(45, 140, 240, 0.12);
  color: #2d8cf0;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.visa-info-top h2 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 800;
  color: #071c3d;
  margin-bottom: 22px;
}

.visa-info-top h2 span {
  display: block;
  color: #2d8cf0;
}

.visa-info-top p {
  font-size: 18px;
  line-height: 1.8;
  color: #5f6f8a;
}

.visa-stream-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 45px;
}

.stream-card {
  position: relative;
  padding: 50px;
  border-radius: 32px;
  overflow: hidden;
  min-height: 360px;
  transition: 0.4s ease;
}

.stream-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
}

.stream-card:hover {
  transform: translateY(-10px);
}

.stream-blue {
  background: linear-gradient(135deg, #0d4ea6, #2d8cf0);
  color: #fff;
}

.stream-dark {
  background: #08172f;
  color: #fff;
}

.stream-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 90px;
  font-weight: 800;
  opacity: 0.08;
  line-height: 1;
}

.stream-icon {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin-bottom: 35px;
  backdrop-filter: blur(10px);
}

.stream-card h3 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.stream-card p {
  font-size: 17px;
  line-height: 1.9;
  opacity: 0.9;
}

.stream-highlight {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
  font-weight: 500;
}

.requirements-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

.mini-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2d8cf0;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.requirements-left h2 {
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 25px;
  color: #071c3d;
}

.requirements-left h2 span {
  display: block;
  color: #2d8cf0;
}

.requirements-left p {
  font-size: 17px;
  line-height: 1.9;
  color: #5f6f8a;
}

.requirements-note {
  margin-top: 30px;
  padding: 18px 22px;
  border-radius: 18px;
  background: #fff;
  color: #071c3d;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.requirements-note i {
  color: #2d8cf0;
  font-size: 22px;
}

.requirements-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.requirement-item {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  display: flex;
  gap: 18px;
  transition: 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.requirement-item:hover {
  transform: translateY(-8px);
}

.req-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(45, 140, 240, 0.12);
  color: #2d8cf0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.requirement-item h4 {
  font-size: 21px;
  margin-bottom: 10px;
  color: #071c3d;
}

.requirement-item p {
  font-size: 15px;
  line-height: 1.8;
  color: #5f6f8a;
}

.visa-bottom-cta {
  margin-top: 50px;
  border-radius: 35px;
  padding: 60px;
  background: linear-gradient(135deg, #08172f, #0d4ea6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  position: relative;
}

.visa-bottom-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.08);
  color: #8ec3ff;
  font-size: 13px;
  margin-bottom: 18px;
}

.visa-bottom-cta h3 {
  font-size: 35px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  max-width: 760px;
}

.visa-bottom-cta p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 60px;
  background: #fff;
  color: #071c3d;
  text-decoration: none;
  font-weight: 700;
  transition: 0.4s ease;
  white-space: nowrap;
}

.cta-btn:hover {
  transform: translateY(-5px);
  background: #2d8cf0;
  color: #fff;
}

@media (max-width: 991px) {
  .visa-stream-grid,
  .requirements-wrapper {
    grid-template-columns: 1fr;
  }

  .requirements-right {
    grid-template-columns: 1fr;
  }

  .visa-bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .visa-info-top h2 {
    font-size: 42px;
  }

  .requirements-left h2 {
    font-size: 38px;
  }

  .visa-bottom-cta h3 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .visa-info-section {
    padding: 80px 0;
  }

  .stream-card {
    padding: 35px;
  }

  .stream-card h3 {
    font-size: 28px;
  }

  .stay-extension-box {
    flex-direction: column;
  }

  .visa-info-top h2 {
    font-size: 34px;
  }

  .requirements-left h2 {
    font-size: 32px;
  }

  .visa-bottom-cta {
    padding: 40px 30px;
  }

  .visa-bottom-cta h3 {
    font-size: 28px;
  }
}

.benefit-item img {
  border-radius: 10px;
  height: 100px;
  width: 100px;
}

.blog-detail-section {
  padding: 100px 0;
  background: #f8fbff;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1.8fr 0.8fr;
  gap: 50px;
}

.blog-feature-image {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-feature-image img {
  width: 100%;
  display: block;
object-fit: contain;
}

.blog-content-box {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}
.blog-content-box h2 {
  font-size: 25px;
  margin-top: 20px;
  margin-bottom: 18px;
  color: #02122f;
  line-height: 40px;
  font-weight: 800;
}
.blog-content-box p {
  line-height: 2;
  color: #5b6475;
  font-size: 17px;
}
ul.blog-list {
  padding: 20px;
}
ul.blog-list li {
  list-style: disc;
  color: #5b6475;
  font-size: 17px;
}
.blog-highlight ul.blog-list li {
  color: #fff !important;
  font-size: 17px;
}
.blog-content-box h4 {
  color: #f24628;
  padding-top: 20px;
}
.intro-text {
  font-size: 17px !important;
  color: #1d2b47 !important;
}

.blog-tip {
  margin-top: 25px;
  padding: 24px;
  border-left: 5px solid #2d8cf0;
  background: #eef6ff;
  border-radius: 16px;
}

.blog-highlight {
  margin-top: 50px;
  background: linear-gradient(135deg, #02122f, #0b2f70);
  padding: 40px;
  border-radius: 25px;
  color: #fff;
}

.blog-highlight h3 {
  margin-bottom: 15px;
}

.blog-highlight p {
  color: rgba(255, 255, 255, 0.8);
}

/* SIDEBAR */

.blog-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.sidebar-card {
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  margin-bottom: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.sidebar-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-card ul li {
  padding: 14px 0;
  border-bottom: 1px solid #eee;
}

.blue-card {
  background: linear-gradient(135deg, #02122f, #0a2f70);
  color: #fff;
}

.blue-card p {
  color: rgba(255, 255, 255, 0.75);
  margin: 15px 0 25px;
}

.sidebar-btn {
  display: inline-flex;
  padding: 14px 22px;
  background: #2d8cf0;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
}

/* ======================================================================
 * Theme additions (Wilsmigration) — utility blocks for pages without a
 * dedicated design (Thank You, 404, dynamic placeholders).
 * ====================================================================== */
.thank-you-inner,
.error-404-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.thank-you-icon {
  margin-bottom: 24px;
}
.thank-you-icon i {
  font-size: 64px;
  color: #16a34a;
}
.thank-you-actions {
  justify-content: center;
  margin-top: 24px;
}
.error-404-inner .hero-btn-primary {
  margin-top: 24px;
}
.wm-placeholder {
  padding: 20px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  border-radius: 12px;
  color: #64748b;
  background: rgba(15, 23, 42, 0.02);
}

/* ======================================================================
 * Responsive fixes (Wilsmigration QA pass)
 * ====================================================================== */
/* Prevent horizontal scroll from absolutely-positioned decorative shapes
 * (hero orbs, blobs, banner/partner glows) on small screens.
 * NOTE: use `clip`, not `hidden` — `hidden` creates a scroll container that
 * breaks the sticky header (position: sticky on .navbar). */
html,
body {
  overflow-x: clip;
}

/* Make embedded iframes (contact map, blog embeds) fluid instead of the
 * hardcoded width="600" overflowing narrow viewports. */
.wils-contact-info-wrap iframe,
.blog-content iframe,
.wm-embed iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
}

/* Responsive media never exceeds its container. */
img,
video,
iframe {
  max-width: 100%;
}

/* ---- Mobile menu accordion (sub-page navigation on phones) ---- */
.mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  color: inherit;
  background: none;
  border: 0;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: left;
}
.mobile-submenu-toggle:hover {
  background: var(--muted);
}
.mobile-submenu-toggle svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.mobile-submenu-toggle.open svg {
  transform: rotate(180deg);
}
.mobile-submenu {
  display: none;
  padding-left: 0.85rem;
  border-left: 1px solid var(--border);
  margin: 0.15rem 0 0.35rem 0.5rem;
}
.mobile-submenu.open {
  display: block;
}

/* ---- Logo aspect ratio (wp_get_attachment_image sets a height attr that
 *      conflicts with the width override) ---- */
.nav-brand img {
  width: 80px;
  height: auto;
}
.footer-brand img {
  width: 100px;
  height: 100px;
  max-width: 100%;
}

/* ---- Newsletter form: style the Contact Form 7 output to match the
 *      approved static design. CF7 wraps the controls in a <p> (wpautop) and
 *      renders an <input type="submit">, so the flex row is applied to that p. ---- */
.footer-newsletter-form,
.footer-newsletter-form p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
.footer-newsletter-form p {
  flex: 1;
  width: 100%;
}
.footer-newsletter-form .wpcf7-form-control-wrap {
  flex: 1;
  min-width: 0;
  display: block;
}
.footer-newsletter-form input[type="email"] {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.footer-newsletter-form input[type="submit"] {
  width: auto;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--primary-foreground);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.footer-newsletter-form input[type="submit"]:hover {
  opacity: 0.9;
}
.footer-newsletter .wpcf7-spinner {
  display: none;
}
.footer-newsletter form .wpcf7-response-output {
  margin: 0.75rem 0 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: rgba(240, 244, 255, 0.8);
}
/* Stack the two office maps on the contact page. */
.wils-contact-maps {
  display: grid;
  gap: 16px;
}
.wils-contact-maps iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 16px;
}

/* ---- Mobile menu as an overlay dropdown (no longer pushes content down) ---- */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: block;
  background: var(--background);
  border-top: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
  padding: 1rem 1.5rem;
  max-height: 85vh;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 60;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* The floating social rail, enquiry tab and sticky CTA bar are all
   position:fixed to the viewport, so they sit above the (position:absolute)
   mobile menu regardless of z-index ordering. Hide them while the mobile
   menu is open so they don't overlap the nav links. */
body.mobile-menu-open .fixed-social-icons,
body.mobile-menu-open .enquiry-fixed-btn,
body.mobile-menu-open .mobile-sticky-bar,
body.mobile-menu-open .scroll-top-btn {
  display: none !important;
}

/* Visa-type badge: accommodate short word labels (e.g. "Aged", "Non-Aged")
   in addition to subclass numbers, without overflowing the 70px badge. */
.visa-number {
  font-size: 20px;
  line-height: 1.05;
  text-align: center;
  padding: 6px;
  word-break: break-word;
}
img {
	object-fit: cover;
}

.blog-content-box ul li {
    list-style: disc;
    line-height: 30px;
    color: #5b6475;
    font-size: 17px;
}
.blog-content-box ul {
    padding: 20px;
}

.blog-content-box h3 {
    padding-top: 20px;
}
nav.navigation.pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding-top: 20px;
    justify-content: center;
}

span.page-numbers.current {
    padding: 10px 20px;
    background: #071143;
    color: #fff;
}


.client-videos{
    padding:90px 0;
    overflow:hidden;
}

/* Video testimonials — responsive 3-up grid (portrait 9:16) */
.video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    max-width:1120px;
    margin:40px auto 0;
}

.video-card{
    aspect-ratio:9 / 16;
    border-radius:20px;
    overflow:hidden;
    background:#f5f5f5;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:transform .35s ease, box-shadow .35s ease;
}

.video-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.video-card video{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    border-radius:20px;
}

@media(max-width:991px){
    .video-grid{ grid-template-columns:repeat(2,1fr); gap:20px; max-width:640px; }
}

@media(max-width:600px){
    .video-grid{ grid-template-columns:1fr; max-width:340px; }
}
/* Home client-video slider (Owl) — shown only when there are 4+ videos */
.wm-video-carousel .video-card{ width:100%; }
.wm-video-carousel .owl-nav{ text-align:center; margin-top:30px; }
.wm-video-carousel .owl-nav button.owl-prev,
.wm-video-carousel .owl-nav button.owl-next{
    width:50px; height:50px; margin:0 8px; border-radius:50%;
    background:#0A4EA3 !important; color:#fff !important; font-size:20px;
    display:inline-flex; align-items:center; justify-content:center; transition:background .3s;
}
.wm-video-carousel .owl-nav button.owl-prev:hover,
.wm-video-carousel .owl-nav button.owl-next:hover{ background:#083a7d !important; }
.wm-video-carousel .owl-dots{ text-align:center; margin-top:16px; }
.wm-video-carousel .owl-dots .owl-dot span{
    width:10px; height:10px; margin:0 5px; background:#d4d4d4; border-radius:50%; display:inline-block; transition:background .3s;
}
.wm-video-carousel .owl-dots .owl-dot.active span{ background:#0A4EA3; }
