:root {
  --primary: #c2185b;
  --primary-dark: #9b1348;
  --black: #0a0a0a;
  --black-2: #111111;
  --black-3: #171717;
  --white: #ffffff;
  --text: #d0d0d0;
  --muted: #a9a9a9;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-padding {
  padding: 90px 0;
}

.section-dark {
  background: var(--black-2);
}

.section-text {
  color: var(--text);
}

/* Topbar */
.topbar {
  background: #050505;
  color: #cccccc;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.topbar-left,
.topbar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.topbar i {
  color: var(--primary);
  margin-right: 8px;
}

/* Navbar */
.custom-navbar {
  background: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 0;
}

.navbar-brand {
  color: var(--white) !important;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.navbar-brand span {
  color: var(--primary);
}

.navbar-nav .nav-link {
  color: #000 !important;
  font-weight: 500;
  margin-left: 14px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

.nav-cta {
  white-space: nowrap;
}

/* Buttons */
.btn-theme {
  background: linear-gradient(135deg, var(--primary), #e91e63);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 600;
  box-shadow: 0 10px 26px rgba(194, 24, 91, 0.25);
}

.btn-theme:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-custom {
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 600;
}

/* Hero */
.hero-section {
  padding: 110px 0 90px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.76)),
    url("images/pic1.avif") center/cover no-repeat;
}

.hero-row {
  min-height: calc(100vh - 120px);
}

.hero-badge {
  display: inline-block;
  background: rgba(194, 24, 91, 0.15);
  color: #ff8ebc;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.14;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 17px;
  color: var(--text);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
}

.stat-box h4 {
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-box p {
  margin: 0;
  color: #e8e8e8;
  font-size: 14px;
}

/* Cards / Forms */
.hero-form-card,
.contact-box {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-form-card h3,
.form-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-form-card p {
  color: var(--text);
  margin-bottom: 20px;
}

.custom-input {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
}

.custom-input:focus {
  background: #0f0f0f;
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(194, 24, 91, 0.12);
}

.custom-input::placeholder {
  color: #9f9f9f;
}

/* Section title */
.section-title {
  margin-bottom: 20px;
}

.sub-title {
  display: inline-block;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
}

.title-center {
  max-width: 760px;
}

/* About */
.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.about-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--primary), #e91e63);
  color: var(--white);
  border-radius: 16px;
  padding: 18px 22px;
}

.about-badge h5,
.about-badge p {
  margin: 0;
}

.about-badge p {
  font-size: 14px;
}

/* Info Cards */
.info-card {
  height: 100%;
  display: flex;
  gap: 15px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 18px;
}

.info-card i {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: rgba(194, 24, 91, 0.14);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.info-card p {
  color: var(--text);
  margin-bottom: 0;
}

/* Service */
.service-card {
  height: 100%;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 24, 91, 0.35);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(194, 24, 91, 0.14);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.service-card h4 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text);
  margin-bottom: 0;
}

/* Country */
.country-card {
  height: 100%;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 20px;
  transition: all 0.3s ease;
}

.country-card:hover {
  transform: translateY(-4px);
}

.country-card h4 {
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 10px;
}

.country-card p {
  color: var(--text);
  margin-bottom: 0;
}

/* Process */
.process-card {
  height: 100%;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 22px;
}

.process-card span {
  display: inline-block;
  color: rgba(194, 24, 91, 0.28);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 12px;
}

.process-card h5 {
  font-size: 22px;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--text);
  margin-bottom: 0;
}

/* Contact */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: rgba(194, 24, 91, 0.14);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item p {
  color: var(--text);
  margin-bottom: 0;
}

/* Footer */
.footer-section {
  background: #050505;
  padding: 70px 0 25px;
}

.footer-logo span {
  color: var(--primary);
}

.footer-section h4,
.footer-section h5 {
  margin-bottom: 16px;
}

.footer-section p {
  color: var(--text);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-section hr {
  margin: 35px 0 20px;
  border-color: rgba(255, 255, 255, 0.08);
}

.copyright {
  color: #9a9a9a;
}

/* 1200 */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .section-title h2 {
    font-size: 36px;
  }
}

/* 992 */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 75px 0;
  }

  .navbar-collapse {
    margin-top: 16px;
    padding: 18px;
    background: #FFF;
    border: 1px solid var(--border);
    border-radius: 16px;
  }

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero-section {
    padding: 80px 0 70px;
  }

  .hero-row {
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .about-image {
    min-height: auto;
  }

  .about-badge {
    position: static;
    display: inline-block;
    margin-top: 18px;
  }
}

/* 768 */
@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-form-card,
  .contact-box {
    padding: 24px 20px;
  }

  .service-card,
  .country-card,
  .process-card,
  .info-card {
    padding: 22px 18px;
  }

  .hero-form-card h3,
  .form-title {
    font-size: 24px;
  }
}

/* 576 */
@media (max-width: 575.98px) {
  .navbar-brand {
    font-size: 21px;
  }

  .hero-section {
    padding: 70px 0 60px;
  }

  .hero-content h1 {
    font-size: 29px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  .btn-theme,
  .btn-outline-custom {
    padding: 12px 18px;
    font-size: 14px;
  }

  .country-card h4,
  .service-card h4,
  .process-card h5 {
    font-size: 20px;
  }
}

/* about page */

body {
    background-color: #050505;
    color: #ffffff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

:root {
    --black: #050505;
    --black-light: #0d0d0f;
    --card-bg: #111113;
    --white: #ffffff;
    --text-light: #cfcfcf;
    --magenta: #ff007a;
    --magenta-dark: #d90068;
    --border-color: rgba(255, 255, 255, 0.08);
}

/* BANNER */
.about-banner {
    position: relative;
    background: url('images/about-banner.jpg') center center/cover no-repeat;
    padding: 140px 0;
    overflow: hidden;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.78));
}

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

.about-banner-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 16px;
}

.breadcrumb-box a {
    color: var(--magenta);
    font-weight: 600;
}

.breadcrumb-box .active-page {
    color: #fff;
}

/* COMMON */
.section-subtitle {
    display: inline-block;
    color: var(--magenta);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 42px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
}

.about-company-section,
.mission-vision-section {
    background-color: var(--black);
}

.who-we-are-section,
.why-choose-section {
    background-color: var(--black-light);
}

/* ABOUT IMAGE */
.about-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
}

.about-image-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--magenta), #ff338f);
    padding: 20px 22px;
    border-radius: 18px;
    color: #fff;
    max-width: 280px;
    box-shadow: 0 15px 35px rgba(255, 0, 122, 0.25);
}

.about-image-badge h4 {
    font-size: 24px;
    margin-bottom: 6px;
    font-weight: 700;
}

.about-image-badge p {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 600;
}

.about-image-badge span {
    font-size: 14px;
}

/* ABOUT CONTENT */
.about-content p,
.who-we-are-content p,
.mission-vision-card p,
.choose-card p,
.info-card p,
.about-feature-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.about-btn {
    display: inline-block;
    margin-top: 25px;
    background: linear-gradient(90deg, var(--magenta), #ff338f);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* FEATURE CARD */
.about-feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    gap: 15px;
    height: 100%;
    transition: 0.3s ease;
}

.about-feature-card:hover,
.info-card:hover,
.mission-vision-card:hover,
.choose-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 122, 0.4);
}

.icon-box {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 50%;
    background: rgba(255, 0, 122, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--magenta);
    font-size: 22px;
}

.about-feature-card h5,
.info-card h5,
.choose-card h5 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

/* INFO CARDS */
.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px 22px;
    height: 100%;
    transition: 0.3s ease;
}

.info-card i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 0, 122, 0.14);
    color: var(--magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

/* MISSION VISION */
.mission-vision-card {
    background: #101013;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--magenta);
    border-radius: 22px;
    padding: 35px 28px;
    height: 100%;
    transition: 0.3s ease;
}

.small-subtitle {
    display: inline-block;
    color: var(--magenta);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.mission-vision-card h3 {
    font-size: 28px;
    line-height: 1.35;
    margin-bottom: 14px;
    font-weight: 700;
}

/* CHOOSE CARD */
.choose-card {
    background: #101013;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    height: 100%;
    transition: 0.3s ease;
}

.choose-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: rgba(255, 0, 122, 0.14);
    color: var(--magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-banner {
        padding: 110px 0;
    }

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

    .section-title {
        font-size: 34px;
    }

    .about-main-image {
        height: 450px;
    }
}

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

    .about-banner-content h1 {
        font-size: 34px;
    }

    .breadcrumb-box {
        font-size: 14px;
        padding: 8px 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-main-image {
        height: 320px;
    }

    .about-image-badge {
        position: static;
        margin-top: 15px;
        max-width: 100%;
    }

    .mission-vision-card h3 {
        font-size: 22px;
    }
}

/* permanent residency */

body {
    background-color: #050505;
    color: #ffffff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

:root {
    --black: #050505;
    --black-light: #0d0d0f;
    --card-bg: #111113;
    --white: #ffffff;
    --text-light: #cfcfcf;
    --magenta: #ff007a;
    --magenta-dark: #d90068;
    --border-color: rgba(255, 255, 255, 0.08);
}

/* BANNER */
.inner-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat;
    padding: 130px 0;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.80));
}

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

.inner-banner-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 14px;
}

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
}

.breadcrumb-box a {
    color: var(--magenta);
    font-weight: 600;
}

/* COMMON */
.section-subtitle {
    display: inline-block;
    color: var(--magenta);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
}

p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.theme-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--magenta), #ff2d8c);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    border: none;
}

.theme-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* SERVICE DETAILS */
.service-details-section {
    background: #050505;
}

.service-main-image img,
.why-choose-image img {
    border-radius: 24px;
    height: 100%;
    object-fit: cover;
}

.service-highlights {
    margin: 28px 0 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.highlight-item i {
    color: var(--magenta);
    font-size: 18px;
}

/* BENEFITS */
.benefits-section {
    background: #0d0d0f;
}

.benefit-card {
    background: linear-gradient(180deg, #111113, #0c0c0f);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    height: 100%;
    transition: 0.35s ease;
}

.benefit-card:hover,
.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 0, 122, 0.4);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 0, 122, 0.12);
    color: var(--magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.benefit-card h5 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* PROCESS */
.process-section {
    background: #050505;
}

.process-card {
    background: #111113;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 24px;
    height: 100%;
    transition: 0.35s ease;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--magenta), #ff2d8c);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.process-card h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* WHY CHOOSE */
.why-choose-section {
    background: #0d0d0f;
}

.why-list {
    margin-top: 22px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.why-item i {
    color: var(--magenta);
    font-size: 18px;
}

/* CTA */
.cta-section {
    background: #050505;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 0, 122, 0.10), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 0, 122, 0.25);
    border-radius: 28px;
    padding: 55px 25px;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    max-width: 760px;
    margin: 0 auto 25px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .inner-banner {
        padding: 110px 0;
    }

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

    .section-title {
        font-size: 34px;
    }
}

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

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

    .breadcrumb-box {
        font-size: 14px;
        padding: 8px 14px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-box {
        padding: 40px 18px;
    }

    .cta-box h2 {
        font-size: 28px;
    }
}

/* work permit  */

body {
    background-color: #050505;
    color: #ffffff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

:root {
    --black: #050505;
    --black-light: #0d0d0f;
    --card-bg: #111113;
    --white: #ffffff;
    --text-light: #cfcfcf;
    --magenta: #ff007a;
    --magenta-dark: #d90068;
    --border-color: rgba(255, 255, 255, 0.08);
}

/* BANNER */
.inner-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat;
    padding: 130px 0;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.80));
}

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

.inner-banner-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 14px;
}

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb-box a {
    color: var(--magenta);
    font-weight: 600;
}

/* COMMON */
.section-subtitle {
    display: inline-block;
    color: var(--magenta);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
}

p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.theme-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--magenta), #ff2d8c);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    border: none;
}

.theme-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* SERVICE DETAILS */
.service-details-section {
    background: #050505;
}

.service-main-image img,
.why-choose-image img {
    border-radius: 24px;
    height: 100%;
    object-fit: cover;
}

.service-highlights {
    margin: 28px 0 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.highlight-item i {
    color: var(--magenta);
    font-size: 18px;
}

/* BENEFITS */
.benefits-section {
    background: #0d0d0f;
}

.benefit-card {
    background: linear-gradient(180deg, #111113, #0c0c0f);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    height: 100%;
    transition: 0.35s ease;
}

.benefit-card:hover,
.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 0, 122, 0.4);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 0, 122, 0.12);
    color: var(--magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.benefit-card h5 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* PROCESS */
.process-section {
    background: #050505;
}

.process-card {
    background: #111113;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 24px;
    height: 100%;
    transition: 0.35s ease;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--magenta), #ff2d8c);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.process-card h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* WHY CHOOSE */
.why-choose-section {
    background: #0d0d0f;
}

.why-list {
    margin-top: 22px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.why-item i {
    color: var(--magenta);
    font-size: 18px;
}

/* CTA */
.cta-section {
    background: #050505;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 0, 122, 0.10), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 0, 122, 0.25);
    border-radius: 28px;
    padding: 55px 25px;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    max-width: 760px;
    margin: 0 auto 25px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .inner-banner {
        padding: 110px 0;
    }

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

    .section-title {
        font-size: 34px;
    }
}

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

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

    .breadcrumb-box {
        font-size: 14px;
        padding: 8px 14px;
        gap: 8px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-box {
        padding: 40px 18px;
    }

    .cta-box h2 {
        font-size: 28px;
    }
}
/* student visa */
body {
    background-color: #050505;
    color: #ffffff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

:root {
    --black: #050505;
    --black-light: #0d0d0f;
    --card-bg: #111113;
    --white: #ffffff;
    --text-light: #cfcfcf;
    --magenta: #ff007a;
    --magenta-dark: #d90068;
    --border-color: rgba(255, 255, 255, 0.08);
}

/* BANNER */
.inner-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat;
    padding: 130px 0;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.80));
}

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

.inner-banner-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 14px;
}

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb-box a {
    color: var(--magenta);
    font-weight: 600;
}

/* COMMON */
.section-subtitle {
    display: inline-block;
    color: var(--magenta);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
}

p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.theme-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--magenta), #ff2d8c);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    border: none;
}

.theme-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* SERVICE DETAILS */
.service-details-section {
    background: #050505;
}

.service-main-image img,
.why-choose-image img {
    border-radius: 24px;
    height: 100%;
    object-fit: cover;
}

.service-highlights {
    margin: 28px 0 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.highlight-item i {
    color: var(--magenta);
    font-size: 18px;
}

/* BENEFITS */
.benefits-section {
    background: #0d0d0f;
}

.benefit-card {
    background: linear-gradient(180deg, #111113, #0c0c0f);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    height: 100%;
    transition: 0.35s ease;
}

.benefit-card:hover,
.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 0, 122, 0.4);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 0, 122, 0.12);
    color: var(--magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.benefit-card h5 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* PROCESS */
.process-section {
    background: #050505;
}

.process-card {
    background: #111113;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 24px;
    height: 100%;
    transition: 0.35s ease;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--magenta), #ff2d8c);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.process-card h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* WHY CHOOSE */
.why-choose-section {
    background: #0d0d0f;
}

.why-list {
    margin-top: 22px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.why-item i {
    color: var(--magenta);
    font-size: 18px;
}

/* CTA */
.cta-section {
    background: #050505;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 0, 122, 0.10), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 0, 122, 0.25);
    border-radius: 28px;
    padding: 55px 25px;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    max-width: 760px;
    margin: 0 auto 25px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .inner-banner {
        padding: 110px 0;
    }

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

    .section-title {
        font-size: 34px;
    }
}

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

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

    .breadcrumb-box {
        font-size: 14px;
        padding: 8px 14px;
        gap: 8px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-box {
        padding: 40px 18px;
    }

    .cta-box h2 {
        font-size: 28px;
    }
}

/* visitor */

body {
    background-color: #050505;
    color: #ffffff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

:root {
    --black: #050505;
    --black-light: #0d0d0f;
    --card-bg: #111113;
    --white: #ffffff;
    --text-light: #cfcfcf;
    --magenta: #ff007a;
    --magenta-dark: #d90068;
    --border-color: rgba(255, 255, 255, 0.08);
}

/* BANNER */
.inner-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1496567640312-b1da0f3a3193?auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat;
    padding: 130px 0;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.80));
}

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

.inner-banner-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 14px;
}

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb-box a {
    color: var(--magenta);
    font-weight: 600;
}

/* COMMON */
.section-subtitle {
    display: inline-block;
    color: var(--magenta);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
}

p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.theme-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--magenta), #ff2d8c);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    border: none;
}

.theme-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* SERVICE DETAILS */
.service-details-section {
    background: #050505;
}

.service-main-image img,
.why-choose-image img {
    border-radius: 24px;
    height: 100%;
    object-fit: cover;
}

.service-highlights {
    margin: 28px 0 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.highlight-item i {
    color: var(--magenta);
    font-size: 18px;
}

/* BENEFITS */
.benefits-section {
    background: #0d0d0f;
}

.benefit-card {
    background: linear-gradient(180deg, #111113, #0c0c0f);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    height: 100%;
    transition: 0.35s ease;
}

.benefit-card:hover,
.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 0, 122, 0.4);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 0, 122, 0.12);
    color: var(--magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.benefit-card h5 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* PROCESS */
.process-section {
    background: #050505;
}

.process-card {
    background: #111113;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 24px;
    height: 100%;
    transition: 0.35s ease;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--magenta), #ff2d8c);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.process-card h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* WHY CHOOSE */
.why-choose-section {
    background: #0d0d0f;
}

.why-list {
    margin-top: 22px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.why-item i {
    color: var(--magenta);
    font-size: 18px;
}

/* CTA */
.cta-section {
    background: #050505;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 0, 122, 0.10), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 0, 122, 0.25);
    border-radius: 28px;
    padding: 55px 25px;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    max-width: 760px;
    margin: 0 auto 25px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .inner-banner {
        padding: 110px 0;
    }

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

    .section-title {
        font-size: 34px;
    }
}

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

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

    .breadcrumb-box {
        font-size: 14px;
        padding: 8px 14px;
        gap: 8px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-box {
        padding: 40px 18px;
    }

    .cta-box h2 {
        font-size: 28px;
    }
}
/* family immigration */

body {
    background-color: #050505;
    color: #ffffff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

:root {
    --black: #050505;
    --black-light: #0d0d0f;
    --card-bg: #111113;
    --white: #ffffff;
    --text-light: #cfcfcf;
    --magenta: #ff007a;
    --magenta-dark: #d90068;
    --border-color: rgba(255, 255, 255, 0.08);
}

/* BANNER */
.inner-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat;
    padding: 130px 0;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.80));
}

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

.inner-banner-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 14px;
}

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb-box a {
    color: var(--magenta);
    font-weight: 600;
}

/* COMMON */
.section-subtitle {
    display: inline-block;
    color: var(--magenta);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
}

p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.theme-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--magenta), #ff2d8c);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    border: none;
}

.theme-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* SERVICE DETAILS */
.service-details-section {
    background: #050505;
}

.service-main-image img,
.why-choose-image img {
    border-radius: 24px;
    height: 100%;
    object-fit: cover;
}

.service-highlights {
    margin: 28px 0 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.highlight-item i {
    color: var(--magenta);
    font-size: 18px;
}

/* BENEFITS */
.benefits-section {
    background: #0d0d0f;
}

.benefit-card {
    background: linear-gradient(180deg, #111113, #0c0c0f);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    height: 100%;
    transition: 0.35s ease;
}

.benefit-card:hover,
.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 0, 122, 0.4);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 0, 122, 0.12);
    color: var(--magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.benefit-card h5 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* PROCESS */
.process-section {
    background: #050505;
}

.process-card {
    background: #111113;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 24px;
    height: 100%;
    transition: 0.35s ease;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--magenta), #ff2d8c);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.process-card h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* WHY CHOOSE */
.why-choose-section {
    background: #0d0d0f;
}

.why-list {
    margin-top: 22px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.why-item i {
    color: var(--magenta);
    font-size: 18px;
}

/* CTA */
.cta-section {
    background: #050505;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 0, 122, 0.10), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 0, 122, 0.25);
    border-radius: 28px;
    padding: 55px 25px;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    max-width: 760px;
    margin: 0 auto 25px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .inner-banner {
        padding: 110px 0;
    }

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

    .section-title {
        font-size: 34px;
    }
}

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

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

    .breadcrumb-box {
        font-size: 14px;
        padding: 8px 14px;
        gap: 8px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-box {
        padding: 40px 18px;
    }

    .cta-box h2 {
        font-size: 28px;
    }
}

/* business */

body {
    background-color: #050505;
    color: #ffffff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    display: block;
}

:root {
    --black: #050505;
    --black-light: #0d0d0f;
    --card-bg: #111113;
    --white: #ffffff;
    --text-light: #cfcfcf;
    --magenta: #ff007a;
    --magenta-dark: #d90068;
    --border-color: rgba(255, 255, 255, 0.08);
}

/* BANNER */
.inner-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat;
    padding: 130px 0;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.80));
}

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

.inner-banner-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 14px;
}

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb-box a {
    color: var(--magenta);
    font-weight: 600;
}

/* COMMON */
.section-subtitle {
    display: inline-block;
    color: var(--magenta);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
}

p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.theme-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--magenta), #ff2d8c);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
    border: none;
}

.theme-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* SERVICE DETAILS */
.service-details-section {
    background: #050505;
}

.service-main-image img,
.why-choose-image img {
    border-radius: 24px;
    height: 100%;
    object-fit: cover;
}

.service-highlights {
    margin: 28px 0 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.highlight-item i {
    color: var(--magenta);
    font-size: 18px;
}

/* BENEFITS */
.benefits-section {
    background: #0d0d0f;
}

.benefit-card {
    background: linear-gradient(180deg, #111113, #0c0c0f);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    height: 100%;
    transition: 0.35s ease;
}

.benefit-card:hover,
.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 0, 122, 0.4);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255, 0, 122, 0.12);
    color: var(--magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.benefit-card h5 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

/* PROCESS */
.process-section {
    background: #050505;
}

.process-card {
    background: #111113;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 30px 24px;
    height: 100%;
    transition: 0.35s ease;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--magenta), #ff2d8c);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.process-card h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* WHY CHOOSE */
.why-choose-section {
    background: #0d0d0f;
}

.why-list {
    margin-top: 22px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.why-item i {
    color: var(--magenta);
    font-size: 18px;
}

/* CTA */
.cta-section {
    background: #050505;
}

.cta-box {
    background: linear-gradient(135deg, rgba(255, 0, 122, 0.10), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 0, 122, 0.25);
    border-radius: 28px;
    padding: 55px 25px;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    max-width: 760px;
    margin: 0 auto 25px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .inner-banner {
        padding: 110px 0;
    }

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

    .section-title {
        font-size: 34px;
    }
}

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

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

    .breadcrumb-box {
        font-size: 14px;
        padding: 8px 14px;
        gap: 8px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-box {
        padding: 40px 18px;
    }

    .cta-box h2 {
        font-size: 28px;
    }
}
/* countries */

body {
    background: #050505;
    color: #fff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a { text-decoration: none; }
img { width: 100%; display: block; }

:root {
    --magenta: #ff007a;
    --text-light: #cfcfcf;
    --border-color: rgba(255,255,255,0.08);
}

.inner-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding: 130px 0;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.82));
}
.inner-banner-content { position: relative; z-index: 2; }
.inner-banner-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 14px;
}
.breadcrumb-box {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: rgba(255,255,255,.08);
    padding: 10px 22px;
    border-radius: 50px;
}
.breadcrumb-box a {
    color: var(--magenta);
    font-weight: 600;
}

.section-subtitle {
    color: var(--magenta);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 14px;
}
.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 14px;
}
.section-text {
    color: var(--text-light);
    max-width: 760px;
    margin: auto;
    line-height: 1.8;
}

.country-card {
    background: linear-gradient(180deg, #111113, #0c0c0f);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: .35s ease;
}
.country-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,0,122,.4);
}
.country-image {
    height: 240px;
    overflow: hidden;
}
.country-image img {
    height: 100%;
    object-fit: cover;
}
.country-content {
    padding: 26px 22px;
}
.country-content h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}
.country-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .inner-banner { padding: 90px 0; }
    .inner-banner-content h1 { font-size: 34px; }
    .section-title { font-size: 28px; }
}
/* process */

body {
    background: #050505;
    color: #fff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
a { text-decoration: none; }

:root {
    --magenta: #ff007a;
    --text-light: #cfcfcf;
    --border-color: rgba(255,255,255,.08);
}

.inner-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding: 130px 0;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.82));
}
.inner-banner-content { position: relative; z-index: 2; }
.inner-banner-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 14px;
}
.breadcrumb-box {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: rgba(255,255,255,.08);
    padding: 10px 22px;
    border-radius: 50px;
}
.breadcrumb-box a {
    color: var(--magenta);
    font-weight: 600;
}

.section-subtitle {
    color: var(--magenta);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 14px;
}
.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 14px;
}
.section-text {
    color: var(--text-light);
    max-width: 760px;
    margin: auto;
    line-height: 1.8;
}

.process-card {
    background: linear-gradient(180deg, #111113, #0c0c0f);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px 24px;
    height: 100%;
    transition: .35s ease;
}
.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,0,122,.4);
}
.step-number {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--magenta), #ff2d8c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.process-card h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}
.process-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .inner-banner { padding: 90px 0; }
    .inner-banner-content h1 { font-size: 34px; }
    .section-title { font-size: 28px; }
}
/* contact */

body {
    background: #050505;
    color: #fff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
a { text-decoration: none; }

:root {
    --magenta: #ff007a;
    --text-light: #cfcfcf;
    --border-color: rgba(255,255,255,.08);
}

.inner-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding: 130px 0;
}
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.82));
}
.inner-banner-content { position: relative; z-index: 2; }
.inner-banner-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 14px;
}
.breadcrumb-box {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: rgba(255,255,255,.08);
    padding: 10px 22px;
    border-radius: 50px;
}
.breadcrumb-box a {
    color: var(--magenta);
    font-weight: 600;
}

.section-subtitle {
    color: var(--magenta);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 14px;
}
.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}
p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-info-box,
.contact-form-box {
    background: linear-gradient(180deg, #111113, #0c0c0f);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px 24px;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}
.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(255,0,122,.12);
    color: var(--magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    min-width: 60px;
}
.contact-item h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}
.contact-item p {
    margin-bottom: 0;
}

.custom-input {
    background: #0b0b0d;
    border: 1px solid rgba(255,255,255,.08);
    color: #fff;
    padding: 14px 16px;
    border-radius: 14px;
}
.custom-input:focus {
    background: #0b0b0d;
    color: #fff;
    border-color: rgba(255,0,122,.45);
    box-shadow: none;
}
.custom-input::placeholder {
    color: #9e9e9e;
}

.theme-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--magenta), #ff2d8c);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s ease;
}
.theme-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 767px) {
    .inner-banner { padding: 90px 0; }
    .inner-banner-content h1 { font-size: 34px; }
    .section-title { font-size: 28px; }
}
/* book consultation */

body {
    background: #050505;
    color: #fff;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
    text-decoration: none;
}

:root {
    --magenta: #ff007a;
    --magenta-dark: #d90068;
    --text-light: #cfcfcf;
    --border-color: rgba(255,255,255,0.08);
    --card-bg: #111113;
}

/* BANNER */
.inner-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80') center center/cover no-repeat;
    padding: 130px 0;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.82));
}

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

.inner-banner-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 14px;
}

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    padding: 10px 22px;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb-box a {
    color: var(--magenta);
    font-weight: 600;
}

/* COMMON */
.section-subtitle {
    color: var(--magenta);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 14px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

p {
    color: var(--text-light);
    line-height: 1.8;
}

/* BOXES */
.consultation-info-box,
.consultation-form-box {
    background: linear-gradient(180deg, #111113, #0c0c0f);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px 24px;
}

/* INFO ITEMS */
.info-item {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.info-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 18px;
    background: rgba(255, 0, 122, 0.12);
    color: var(--magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info-item h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.info-item p {
    margin-bottom: 0;
}

.contact-mini-box {
    margin-top: 30px;
    padding: 22px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
}

.contact-mini-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
}

.contact-mini-box p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.contact-mini-box i {
    color: var(--magenta);
    margin-right: 10px;
}

/* FORM */
.custom-input {
    background: #0b0b0d;
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    padding: 14px 16px;
    border-radius: 14px;
}

.custom-input:focus {
    background: #0b0b0d;
    color: #fff;
    border-color: rgba(255,0,122,0.45);
    box-shadow: none;
}

.custom-input::placeholder {
    color: #9e9e9e;
}

.form-select.custom-input {
    color: #9e9e9e;
}

.form-select.custom-input option {
    color: #000;
}

/* BUTTON */
.theme-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(90deg, var(--magenta), #ff2d8c);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s ease;
}

.theme-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .inner-banner {
        padding: 110px 0;
    }

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

    .section-title {
        font-size: 32px;
    }
}

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

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

    .section-title {
        font-size: 28px;
    }

    .breadcrumb-box {
        font-size: 14px;
        padding: 8px 14px;
        gap: 8px;
    }

    .consultation-info-box,
    .consultation-form-box {
        padding: 24px 18px;
    }
}

.grid_box_250 img{
    width:100%!important;
    height:250px!important;
}



