* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #222;
  line-height: 1.6;
}

.container {
  /* width: 90%;*/
  max-width: 1370px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}
/* TopBar Section Css Start Here */
.topbar {
  background: #262b68;
  border-bottom: 1px solid #ddd7cc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 105px;
  font-size: 12.5px;
  color: #fff;
}
.topbar-left {
  display: flex;
  gap: 28px;
}
.topbar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}
.topbar-left a svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.topbar-search {
  position: relative;
  display: flex;
  align-items: center;
}
.topbar-search input {
  border: 1px solid #cdc8be;
  border-radius: 3px;
  padding: 5px 32px 5px 10px;
  font-size: 12.5px;
  outline: none;
  background: #fff;
  width: 260px;
  color: #555;
}
.topbar-search svg {
  position: absolute;
  right: 10px;
  width: 13px;
  height: 13px;
  color: #999;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.linkedin-icon {
  width: 40px;
  height: 40px;
  background: #0a66c2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s ease;
}

.linkedin-icon:hover {
  background: #084e96;
  color: #fff;
}

@media (max-width: 1200px) {
  .topbar {
    padding: 7px 50px;
  }

  .topbar-search input {
    width: 220px;
  }
}

@media (max-width: 991px) {
  .topbar {
    padding: 8px 25px;
    flex-direction: column;
    gap: 10px;
  }

  .topbar-left {
    width: 100%;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .topbar-search {
    width: 100%;
    justify-content: center;
  }

  .topbar-search input {
    width: 300px;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .topbar {
    padding: 10px 15px;
    font-size: 12px;
  }

  .topbar-left {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .topbar-left a {
    justify-content: center;
  }

  .topbar-search {
    width: 100%;
  }

  .topbar-search input {
    width: 100%;
    padding: 7px 35px 7px 12px;
  }

  .topbar-search svg {
    right: 12px;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 10px;
  }

  .topbar-left {
    gap: 90px;
  }

  .topbar-left a {
    font-size: 11.5px;
  }

  .topbar-left a svg {
    width: 12px;
    height: 12px;
  }

  .topbar-search input {
    font-size: 12px;
  }
}
/* TopBar Section Css End Here */

/* Header Section Css Start Here */
/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  max-width: 220px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header-right {
  display: flex;
  align-items: center;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: #262b68;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}


/* =========================================
   MAIN NAVIGATION
========================================= */

.main-nav > ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  margin: 0;
  padding: 0;
}

.main-nav > ul > li > a {
  position: relative;
  display: block;
  padding: 28px 18px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}


/* Main menu hover */

.main-nav > ul > li > a:hover {
  color: #262b68;
  transform: translateY(-2px);
}


/* Animated underline */

.main-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 2px;
  background: #262b68;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav > ul > li > a:hover::after {
  transform: scaleX(1);
}


/* =========================================
   DESKTOP DROPDOWN
========================================= */

@media (min-width: 1025px) {

  .main-nav > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 250px;
    margin: 0;
    padding: 8px 0;

    list-style: none;
    background: #fff;
    border-radius: 10px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;

    z-index: 99999;
  }

  /* Open dropdown */

  .main-nav > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Dropdown items */

  .main-nav > ul > li > ul > li {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .main-nav > ul > li > ul > li > a {
    display: block;
    padding: 11px 16px;

    color: #000;
    background: transparent;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    white-space: normal;

    transition:
      color 0.2s ease,
      background 0.2s ease,
      padding-left 0.2s ease;
  }

  .main-nav > ul > li > ul > li > a:hover {
    color: #262b68;
    background: #f5f6ff;
    padding-left: 21px;
  }
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 1024px) {

  .header-container {
    position: relative;
    padding: 15px 20px;
  }

  .header-left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }

  .logo {
    max-width: 170px;
    order: 1;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;

    width: 42px;
    height: 42px;
  }

  .header-right {
    display: none;
  }


  /* Mobile navigation */

  .main-nav {
    display: none;

    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;

    background: #fff;
    border-top: 1px solid #eee;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav > ul {
    display: block;
    margin: 0;
    padding: 0;
  }

  .main-nav > ul > li {
    border-bottom: 1px solid #eee;
  }


  /* Mobile main links */

  .main-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 20px;

    transform: none;
  }

  .main-nav > ul > li > a:hover {
    transform: none;
  }

  .main-nav > ul > li > a::after {
    display: none;
  }


  /* =========================================
     MOBILE SUBMENU
  ========================================= */

  .main-nav > ul > li > ul {
    display: none;

    position: static;

    width: 100%;
    min-width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;

    background: #f8f8f8;

    border-radius: 0;
    box-shadow: none;

    opacity: 1;
    visibility: visible;
    transform: none;
  }


  /* JS adds active */

  .main-nav > ul > li.active > ul {
    display: block;
  }


  /* Mobile submenu items */

  .main-nav > ul > li > ul > li {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .main-nav > ul > li > ul > li > a {
    display: block;

    padding: 12px 20px 12px 35px;

    color: #000;
    background: transparent;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;
  }

  .main-nav > ul > li > ul > li > a:hover {
    color: #262b68;
    background: #f5f6ff;
    padding-left: 40px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 767px) {

  .header-container {
    padding: 12px 15px;
  }

  .logo {
    max-width: 145px;
  }
}


/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .header-container {
    padding: 10px 12px;
  }

  .logo {
    max-width: 120px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}
/* Header Section Css End Here */

/* Hero Section Css Start Here */

.hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://myservicesuae.webxploretechnologies.com/wp-content/uploads/2026/08/home-banner.png")
    center center/cover no-repeat;
  transform: scale(1.03);
  z-index: 1;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-bg {
        background-position: 60% center;
        transform: scale(1.02);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-bg {
        background-position: 65% center;
        background-size: cover;
        transform: scale(1);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-bg {
        background-position: 62% center;
        background-size: cover;
        transform: scale(1);
    }
}

/* .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.99) 10%,
      rgba(255, 255, 255, 0.98) 20%,
      rgba(255, 255, 255, 0.85) 40%,
      rgba(255, 255, 255, 0.62) 50%,
      rgba(255, 255, 255, 0) 65%
    ),
    linear-gradient(
      90deg,
      rgba(74, 90, 175, 0.18) 0%,
      rgba(74, 90, 175, 0.1) 45%,
      rgba(74, 90, 175, 0) 100%
    );
} */

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 720px;
  margin-left: 7%;
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid #d9d9d9;
  border-radius: 50px;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 600;
  color: #111;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.hero h1 span {
  color: #262b68;
}

.hero p {
  max-width: 580px;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 10px;
}

.hero-features {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #262b68;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feature strong {
  display: block;
  font-size: 15px;
  color: #111;
  margin-bottom: 4px;
}

.feature span {
  display: block;
  font-size: 15px;
  color: #000;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 58px;
  background: #262b68;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.35s;
}

.btn-primary:hover {
  background: #1d2253;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 58px;
  border: 2px solid #262b68;
  border-radius: 8px;
  color: #262b68;
  font-size: 15px;
  font-weight: 600;
  transition: 0.35s;
}

.btn-outline:hover {
  background: #262b68;
  color: #fff;
  transform: translateY(-2px);
}

.call-box {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  margin-left: 10px;
}

.call-box small {
  font-size: 13px;
  color: #000;
}

.call-box b {
  font-size: 22px;
  color: #111;
  font-weight: 700;
}

.stats-card {
  position: absolute;
  right: 60px;
  bottom: 5px;
  z-index: 20;

  display: flex;
  align-items: stretch;

  background: #fff;
  border-radius: 18px;
  overflow: hidden;

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.stat-item {
  width: 130px;
  padding: 5px 10px;
  text-align: center;
  border-right: 1px solid #ececec;
  transition: 0.35s;
}

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

.stat-item:hover {
  background: #fafafa;
}

.stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #262b68;
  font-size: 24px;
}

.stat-num {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-lbl {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}

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

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid #262b68;
  border-radius: 8px;
  background: #fff;
  color: #1d1d1d;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-whatsapp i {
  font-size: 22px;
  color: #25d366;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
}

@media (max-width: 1600px) {
  .hero-content {
    margin-left: 6%;
  }

  .stats-card {
    right: 40px;
  }
}

@media (max-width: 1400px) {
  .hero {
    min-height: 760px;
  }

  .hero-content {
    max-width: 580px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .stats-card {
    transform: scale(0.9);
    transform-origin: right bottom;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;

    padding: 90px 0 60px;

    align-items: flex-start;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.92) 35%,
      rgba(255, 255, 255, 0.7) 60%,
      rgba(255, 255, 255, 0.2) 80%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .hero-content {
    max-width: 100%;

    margin: 0;

    padding: 0 30px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-features {
    gap: 18px;

    flex-direction: column;
  }

  .hero-btns {
    gap: 15px;
  }

  .call-box {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }

  .stats-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 50px auto 0;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    transform: none;
  }

  .stat-item {
    width: 100%;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-bottom: none;
  }

  .stat-item:nth-child(4) {
    border-right: none;
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 70px 0 40px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 8px 16px;
  }

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

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

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

  .btn-primary,
  .btn-outline {
    width: 100%;
    min-width: 100%;
  }

  .call-box {
    text-align: center;
  }

  .stats-card {
    width: calc(100% - 30px);
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .stat-num {
    font-size: 18px;
  }

  .stat-lbl {
    font-size: 13px;
  }
}
/* Hero Section Css End Here */

/* Top Service Section Css Start Here */
.top-services {
  padding: 40px 0;
  background: #fff;
  text-align: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #000;
  /* margin-bottom: 10px; */
}
.eyebrow-line {
  width: 32px;
  height: 1px;
  background: #262b68;
  opacity: 0.7;
}
.section-h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #262b68;
}
.section-h2 span {
  color: #262b68;
  font-style: italic;
}

.top-services-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.svc-card {
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  padding: 30px 16px 22px;
  background: #fff;
  transition:
    box-shadow 0.2s,
    transform 0.18s;
  cursor: pointer;
}
.svc-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.svc-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  background: #262b68;
  color: #fff;
  font-size: 25px;
}
.svc-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: #262b68;
  font-weight: 700;
}
.svc-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #262b68;
}
.svc-card p {
  font-size: 14spx;
  color: #000;
  line-height: 1.55;
  margin-bottom: 16px;
}
.svc-learn {
  font-size: 14px;
  font-weight: 600;
  color: #262b68;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.svc-learn:hover {
  color: #262b68;
}
/* Top Service Section Css End Here */

/* Trust Bar Section Css Start Here */
.trust-bar {
  background: #262b68;
  border-top: 1px solid #ddd7cc;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 5px 80px;
  border-right: 1px solid #fff;
}
.trust-item:last-child {
  border-right: none;
}
.trust-icon {
  color: #fff;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 26px;
  height: 26px;
}
.trust-text strong {
  font-size: 13px;
  font-weight: 700;
  display: block;
  color: #fff;
}
.trust-text span {
  font-size: 12px;
  color: #f8f9ff;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-carousel {
    min-height: 340px;
  }
  .top-services-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .top-services-row {
    grid-template-columns: 1fr;
  }
  .trust-bar {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 30px;
  }
  .stats-card {
    display: none;
  }
  .hero-features {
    flex-wrap: wrap;
    gap: 14px;
  }
}
/* Trust Bar Section Css End Here */

/* About Section Css Start Here */
.about-exact {
  padding: 40px 0;
  background: #ffffff;
}

.about-wrap {
  max-width: 1370px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-tag {
  color: #000000 !important;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.about-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: rgb(10, 30, 70);
  font-weight: 600;
}

.about-left p {
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  text-align: justify;
}

.about-stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 35px 0 45px;
}

.about-stat-box {
  background: #eff0f6;
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.about-stat-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0b2b55;
  margin-bottom: 6px;
}

.about-stat-box strong {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}

.about-stat-box.highlight {
  background: #000000;
  color: #fff;
}

.about-stat-box.highlight h3,
.about-stat-box.highlight strong {
  color: #fff;
}

.about-stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: #262b68;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  /* box-shadow: 0 12px 30px rgba(255, 106, 43, 0.4); */
  transition: all 0.35s ease;
}

/* .about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(255, 106, 43, 0.55);
} */

/* RIGHT IMAGE */
.about-right {
  position: relative;
}

.main-image {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  margin-top: -10px;
}

.main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.main-image img {
  width: 100%;
  height: 70vh;
  display: block;
  border-radius: 26px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-left h2 {
    font-size: 30px;
  }

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

@media (max-width: 768px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-left h2 {
    font-size: 26px;
  }

  .about-left p {
    font-size: 15px;
  }

  .about-stats-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat-box {
    padding: 20px 15px;
  }

  .main-image img {
    height: auto;
  }
}

/* About Section Css End Here */

/* Jurisdiction Section Css Start Here */

.jurisdiction-section {
  padding: 40px 0;
  background: #eff0f6;
}

.jurisdiction-container {
  width: 90%;
  max-width: 1370px;
  margin: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: 35px;
  color: #262b68;
  /* margin-bottom: 12px; */
  font-weight: 600;
}

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

.jurisdiction-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  height: 450px;
  cursor: pointer;
}

.jurisdiction-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}

.jurisdiction-card:hover img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 350px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    to top,
    rgba(5, 20, 42, 0.96) 0%,
    rgba(5, 20, 42, 0.92) 50%,
    rgba(5, 20, 42, 0.8) 60%,
    rgba(5, 20, 42, 0.45) 80%,
    transparent 100%
  );
}

.card-content {
  width: 100%;
}

.card-content h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
}

.card-content p {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
}

.learn-btn {
  display: inline-flex;
  align-items: center;
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 14px;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 6px;
  background: rgb(255, 255, 255);
  text-decoration: none;
  transition: 0.35s;
}

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

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.learn-btn i {
  font-size: 14px;
}

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

@media (max-width: 768px) {
  .jurisdiction-section {
    padding: 70px 0;
  }

  .section-heading {
    font-size: 36px;
  }

  .jurisdiction-grid {
    grid-template-columns: 1fr;
  }

  .jurisdiction-card {
    height: 350px;
  }

  .card-overlay {
    height: 300px;
    padding: 30px;
  }

  .card-content h3 {
    font-size: 30px;
  }

  .card-content p {
    font-size: 16px;
  }

  .learn-btn {
    padding: 14px 30px;
  }
}
/* Jurisdiction Section Css End Here */

/* Services for Businesses Section Css Start Here */

.services-section {
  padding: 40px 0;
  background: #ffffff;
}

.services-container {
  max-width: 1370px;
  margin: auto;
  padding: 0 20px;
}

.services-layout {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.services-left {
  flex: 0 0 35%;
  position: sticky;
  top: 120px;
}

.business-header h2 {
  font-size: 35px;
  line-height: 1.15;
  color: #262b68;
}

.business-header p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  text-align: justify;
}

.services-right {
  flex: 1;
}

.service-title {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #262b68;
  margin-bottom: 22px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 26px;
  margin-bottom: 65px;
}

.service-card {
  position: relative;
  backdrop-filter: blur(14px);
  border-radius: 18px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.service-card i {
  padding: 12px;
  color: #262b68;
  border-radius: 5%;
  margin-bottom: 5px;
}

.service-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;

  margin: 1px 0 10px;
}

.service-card p {
  font-size: 15px;
  color: #000000;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .services-layout {
    flex-direction: column;
  }

  .services-left {
    position: relative;
    top: auto;
  }

  .business-header h2 {
    font-size: 34px;
  }
}
/* Services for Businesses Section Css End Here */

/* Services for Individuals Section Css Start Here */

.individual-services {
  padding: 100px 0;
  background: #f7f9fc;
}

.individual-container {
  max-width: 1370px;
  margin: auto;
  padding: 0 20px;
}

.individual-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 50px;
}

.individual-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0b2b55;
}

.individual-header h2 span {
  background: linear-gradient(135deg, #e53935, #ff8a65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.individual-header p {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
}

.group-title {
  font-size: 18px;
  font-weight: 700;
  margin: 45px 0 20px;
  color: #0b2b55;
  position: relative;
  padding-left: 14px;
}

.group-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 5px;
  height: 70%;
  background: linear-gradient(180deg, #6b6efb, #ff4d5a);
  border-radius: 10px;
}

.individual-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.individual-grid.small {
  grid-template-columns: repeat(3, 1fr);
}

.ind-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid #eef1f5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  cursor: pointer;
}

.ind-card img {
  height: 42px;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.ind-card p {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  line-height: 1.45;
}

.ind-card:hover {
  transform: translateY(-10px);
  background: #f2f6ff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.ind-card:hover img {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .individual-header {
    flex-direction: column;
  }

  .individual-grid,
  .individual-grid.small {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .individual-grid,
  .individual-grid.small {
    grid-template-columns: 1fr;
  }
}
/* Services for Individuals Section Css End Here */

/* locations Section Css Start Here */
.locations {
  padding: 80px 0;
  text-align: center;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.location-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.location-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.location-card span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: #fff;
  font-weight: 600;
}
/* locations Section Css End Here */

/* Steps Section Css Start Here */

.vas-section {
  padding: 40px 0;
  text-align: center;
  background: #eff0f6;
}

.vas-container {
  max-width: 1370px;
  margin: auto;
  text-align: center;
}

.vas-tag {
  color: #22c55e;
  font-size: 14px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.vas-container h2 {
  font-size: 35px;
  color: #262b68;
  margin-bottom: 8px;
  font-weight: 600;
}

.vas-sub {
  max-width: 720px;
  margin: 0 auto 40px;
  color: #000000;
  font-size: 16px;
}

.vas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.vas-card {
  position: relative;
  text-align: left;
  padding: 70px 32px 36px;
  border-radius: 26px;
  border: 1px solid #000000;
  background: #ffffff;
}

.vas-card:hover {
  transform: translateY(-8px);
}

.vas-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #000000;
  text-align: center;
}

.vas-card p {
  font-size: 17px;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 26px;
  text-align: center;
}

.vas-card a {
  color: #22c55e;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vas-icon {
  position: absolute;
  top: -26px;
  left: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.vas-icon {
  background: #262b68;
}
/* .vas-icon.cyan { background: #06b6d4; }
.vas-icon.lime { background: #84cc16; }
.vas-icon.blue { background: #2563eb; } */

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

@media (max-width: 600px) {
  .vas-container h2 {
    font-size: 32px;
  }

  .vas-grid {
    grid-template-columns: 1fr;
  }
}
/* Steps Section Css End Here */

/* Testimonials Section Css Start Here */
.testimonials {
  padding: 40px 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 35px;
  font-weight: 600;
  color: #262b68;
  margin-bottom: 20px;
}

.testimonial-subtitle {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 50px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1370px;
  margin: auto;
}

.testimonial {
  background: #eff0f6;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial::before {
  content: "“";
  font-size: 80px;
  color: #ff4d5a;
  position: absolute;
  top: 10px;
  right: 20px;
  opacity: 0.15;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial p {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 20px;
}

.testimonial h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}

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

@media (max-width: 576px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* Testimonials Section Css End Here */

/* licenses Section Css Start Here */
.licenses {
  padding: 40px 0;
  background: #eff0f6;
  text-align: center;
}

.licenses-container {
  max-width: 1370px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.licenses h2 {
  font-size: 35px;
  font-weight: 600;
  color: #262b68;
  margin: 0 auto 30px;
}

.licenses h2 span {
  background: linear-gradient(90deg, #2563eb, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.licenses-subtitle {
  font-size: 16px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.license-grid {
  max-width: 1370px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.license-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  text-align: left;
  box-shadow: 0 18px 45px rgba(2, 12, 27, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.license-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.license-card:hover::before {
  opacity: 0.05;
}

.license-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 70px rgba(2, 12, 27, 0.16);
}

.license-img {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}

.license-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.license-card:hover img {
  transform: scale(1.07);
}

.license-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0b2b55;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.license-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  position: relative;
  z-index: 1;
}

/* .license-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: #000000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.35s ease;
} */

.license-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  margin-top: 10px;
  background: #262b68;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.35s ease;
  position: relative;
  z-index: 5;
  cursor: pointer;
}

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

@media (max-width: 576px) {
  .licenses h2 {
    font-size: 30px;
  }

  .license-grid {
    grid-template-columns: 1fr;
  }
}

/* licenses Section Css End Here */

/* Consultation Section Css Start Here */
.consult {
  padding: 40px 0;
  background: #eff0f6;
}

.consult-wrap {
  max-width: 1370px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* .consult-info {
  color: #262b68;
}

.consult-info h3 {
  font-size: 35px;
  font-weight: 600;
  color: #262b68;
  margin-bottom: 18px;
}

.consult-info h3 span {
  color: #262b68;
}

.info-sub {
  color: #000000;
  line-height: 1.7;
  margin-bottom: 30px;
}

.consult-info p {
  font-size: 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.consult-info i {
  color: #262b68;
}

.info-box {
  margin-top: 28px;
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.info-box h4 {
  font-size: 15px;
  margin-bottom: 6px;
} */

.consult-info {
  max-width: 1370px;
  margin: auto;
}

.consult-info h3 {
  font-size: 35px;
  font-weight: 600;
  color: #2a2f78;
  /* margin-bottom: 20px; */
}

.info-desc {
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  color: #000;
  margin-bottom: 10px;
}

.cta-text {
  font-size: 20px;
  color: #2a2f78;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 260px;
  background: transparent;
  border: 1.5px solid #c7cffd;
  border-radius: 8px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-card i {
  font-size: 36px;
  color: #2a2f78;
}

.contact-card strong {
  display: block;
  font-size: 18px;
  color: #000000;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 16px;
  color: #000000;
}

.contact-info .footer-whatsapp {
  font-weight: 900;
}

@media (max-width: 768px) {
  .consult-info h3 {
    font-size: 32px;
  }

  .cta-text {
    font-size: 22px;
  }
}

.consult-form {
  background: #ffffff;
  padding: 45px;
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.consult-form h3 {
  font-size: 35px;
  font-weight: 600;
  color: #262b68;
  margin-bottom: 6px;
}

.consult-form h3 span {
  color: #262b68;
}

.form-sub {
  font-size: 16px;
  color: #000000;
  margin-bottom: 26px;
}

.form-row {
  display: flex;
  gap: 14px;
}

.form-group {
  position: relative;
  margin-bottom: 14px;
}

.form-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #262b68;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px 13px 60px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  min-height: 110px;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #262b68;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.consult-form button {
  width: 100%;
  margin-top: 20px;
  background: #262b68;
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* .consult-form button:hover {
  background: #e04e20;
} */

.form-group.full {
  width: 100%;
}

.form-group.full .iti {
  width: 100%;
  display: block;
  color: #000;
}

.form-group.full .iti input {
  width: 100%;
  padding-left: 60px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .consult-wrap {
    grid-template-columns: 1fr;
  }

  .consult-form {
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }

  .consult-info h3 {
    font-size: 30px;
  }
}
/* Consultation Section Css End Here */

/* Footer Section Css Start Here */
.footer {
  background: #ffffff;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-grid {
  max-width: 1370px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: flex-start;
}

.footer-grid > div {
  min-width: 0;
}

.footer-brand img {
  height: 85px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 14px;
  color: #000;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.footer-contact h5 {
  font-size: 15px;
  margin-top: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, #262b68, #000);
}

.footer-links a {
  font-size: 14px;
  color: #000;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #262b68;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-contact p a {
  font-size: 13px;
  color: #000;
  text-decoration: none;
}

.footer-contact p a:hover {
  color: #1d2269;
}

.footer-contact i {
  color: #262b68;
  min-width: 18px;
  font-size: 15px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.footer-social i {
  color: #fff;
  min-width: 28px;
  font-size: 30px;
}

.footer-contact .footer-whatsapp {
  font-weight: 900;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-social a:hover {
  background: #262b68;
  transform: translateY(-3px);
}

.bottom-bg {
  background-color: #000;
}

.footer-bottom {
  padding: 12px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    margin: 6px auto 0;
  }
}
/* Footer Section Css End Here */

.steps-exact {
  padding: 90px 20px;
  text-align: center;
  background: #eff0f6;
}

.steps-exact h2 {
  font-size: 32px;
  color: #262b68;
  margin-bottom: 8px;
}

.steps-exact p {
  font-size: 18px;
  color: #000;
  margin-bottom: 60px;
}

.steps-track {
  max-width: 1370px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
}

.steps-track::before {
  content: "";
  position: absolute;
  top: 115px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #2563eb,
    #22c55e 6px,
    transparent 6px,
    transparent 14px
  );
  z-index: 0;
}

.step-box {
  position: relative;
  z-index: 1;
  margin-top: -30px;
}

.step-pill {
  width: 105px;
  height: 195px;
  margin: auto;
  border-radius: 50px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 700;
}

.step-pill span {
  font-size: 18px;
  letter-spacing: 1px;
  margin-top: -35px;
}

.step-pill strong {
  font-size: 34px;
  line-height: 1;
}

.step-icon {
  width: 105px;
  height: 105px;
  background: #fff;
  border-radius: 50%;
  margin: -70px auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-icon i {
  color: #ffffff;
}

.step-icon img {
  width: 42px;
}

.step-box h5 {
  font-size: 16px;
  color: #000;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .steps-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .steps-track::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .steps-track {
    grid-template-columns: 1fr;
  }
}

.individual-section {
  padding: 40px 0;
  background: #ffffff;
  color: #fff;
}

.individual-container {
  max-width: 1370px;
  margin: auto;
  padding: 0;
  text-align: center;
}

.individual-tag {
  color: #6ee7b7;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
}

.individual-container h2 {
  font-size: 35px;
  margin: 0;
  font-weight: 600;
  color: #262b68;
}

.individual-subtitle {
  max-width: 950px;
  margin: 0 auto 40px;
  font-size: 16px;
  opacity: 0.9;
  color: #000000;
}

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

.individual-card {
  background: #f8fafc;
  border: 1px solid #000000;
  border-radius: 18px;
  padding: 10px 28px 0px;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
}

.individual-card:hover {
  transform: translateY(-8px);
}

.individual-card h3 {
  font-size: 20px;
  margin: 25px 0 12px;
  color: #000000;
}

.individual-card p {
  font-size: 15px;
  color: #000000;
}

.individual-card a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.individual-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.individual-icon {
  background: #262b68;
  color: #ffffff;
}

.individual-btn {
  display: inline-block;
  margin-top: 70px;
  padding: 14px 36px;
  border-radius: 6px;
  background: #000000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

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

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

  .individual-container h2 {
    font-size: 32px;
  }
}

.uae-setup {
  background: linear-gradient(180deg, #0b5fa5, #0b3f34);
  padding: 100px 20px;
  color: #fff;
}

.uae-setup .container {
  max-width: 1370px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.left h2 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
}

.left h2 span {
  color: #2ecc71;
}

.left p {
  margin: 25px 0 35px;
  max-width: 450px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 16px 35px;
  border-radius: 50px;
  background: linear-gradient(90deg, #1e90ff, #2ecc71);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.person img {
  margin-top: 50px;
  max-width: 320px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 15px;
  border-radius: 12px;
  transition:
    transform 0.3s,
    background 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
  background: rgb(17 34 216 / 10%);
}

.icon {
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-text h4 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
}

.feature-text p {
  font-size: 14.5px;
  line-height: 1.5;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .uae-setup .container {
    grid-template-columns: 1fr;
  }

  .right {
    grid-template-columns: 1fr;
  }

  .person img {
    max-width: 260px;
  }
}

.text-btn a {
  display: inline-block;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.text-btn a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #262b68;
  display: block;
  margin: auto;
  margin-top: 5px;
  transition: width 0.3s ease;
}

.text-btn a:hover::after {
  width: 100%;
}

/* The CSS code for the inner pages starts here. */
/* Banner Section Css Starts Here */
.banner-section {
  /* background: linear-gradient(135deg, #0f172a, #1e293b); */
  background:
    linear-gradient(
      to right,
      rgba(27, 33, 104, 0.95) 0%,
      rgba(27, 33, 104, 0.85) 25%,
      rgba(27, 33, 104, 0.75) 45%,
      rgba(27, 33, 104, 0) 75%
    ),
    url("../images/banner.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  padding: 80px 20px;
}

.banner-container {
  max-width: 1370px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.banner-content {
  flex: 1;
  min-width: 300px;
}

.banner-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #cbd5f5;
  line-height: 1.6;
}

.banner-btn {
  /* display: inline-block;
  padding: 12px 25px;
  background: #00a99d;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s; */

  display: inline-block;
  padding: 14px 30px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* .banner-btn:hover {
  background: #028f85;
} */

/* RESPONSIVE */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 30px;
  }
}
/* Banner Section Css Ends Here */

/* Banner Hero Section Css Starts Here */
.banner-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background:
    linear-gradient(rgba(10, 30, 70, 0.6), rgba(10, 30, 70, 0.6)),
    url("https://efirst.ae/images/bg-6.png");

  background-size: cover;
  background-position: center;
}

.banner-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;

  background: url("https://www.lolsexport.com/wp-content/themes/LOLS%20Export/images/bg-transparent.png")
    no-repeat right center;
  background-size: cover;

  opacity: 0.35;

  mask-image: linear-gradient(to left, black 70%, transparent);
  -webkit-mask-image: linear-gradient(to left, black 70%, transparent);

  pointer-events: none;
}

.banner-hero .container {
  width: 100%;
  max-width: 1370px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.banner-hero-content {
  max-width: 600px;
  text-align: left;
}

.banner-hero h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
}

.banner-breadcrumb {
  color: #ddd;
  font-size: 14px;
  letter-spacing: 1px;
}

.banner-breadcrumb a {
  color: #ddd;
  text-decoration: none;
}

.banner-breadcrumb a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .banner-hero {
    min-height: 220px;
  }

  .banner-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .banner-hero {
    min-height: 200px;
    padding: 20px 0;
  }

  .banner-hero h1 {
    font-size: 24px;
  }

  .banner-breadcrumb {
    font-size: 12px;
  }

  .banner-hero::before {
    width: 60%;
    opacity: 0.25;
  }
}

@media (max-width: 480px) {
  .banner-hero {
    min-height: 180px;
  }

  .banner-hero h1 {
    font-size: 20px;
  }

  .banner-hero::before {
    display: none;
  }
}
/* Banner Hero Section Css Ends Here */

/* What Section Css Starts Here */
.what-section {
  padding: 60px 20px;
}

.what-section .container {
  max-width: 1370px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.what-left-box {
  flex: 1;
  min-width: 320px;
}

.what-left-box h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: rgb(10, 30, 70);
  font-weight: 600;
  text-align: justify;
  line-height: 1.2;
}

.what-left-box p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  text-align: justify;
}

.form-box {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.form-box h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 26px;
  color: rgb(10, 30, 70);
  font-weight: 600;
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.form-box input:focus,
.form-box textarea:focus {
  border-color: #000;
  outline: none;
}

.form-box button {
  display: inline-block;
  padding: 14px 30px;
  background: #262b68;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.form-box button:hover {
  background: #333;
}

@media (max-width: 992px) {
  .what-section .container {
    gap: 25px;
  }

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

@media (max-width: 768px) {
  .what-section .container {
    flex-direction: column;
  }

  .what-section {
    padding: 50px 15px;
  }

  .what-left-box h3 {
    font-size: 22px;
    text-align: left;
  }

  .what-left-box p {
    text-align: left;
    font-size: 13px;
  }

  .form-box {
    padding: 20px;
  }

  .form-box button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .what-left-box h3 {
    font-size: 20px;
  }

  .form-box h3 {
    font-size: 18px;
  }
}
/* What Section Css Ends Here */

/* Why Choose Us Section Css Starts Here */
.why-choose-us-section {
  display: flex;
  max-width: 1370px;
  margin: 50px auto;
  gap: 30px;
  align-items: stretch;
}

.left-img,
.right-box {
  width: 50%;
}

.left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.right-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.right-box h3 {
  margin-bottom: 20px;
  font-size: 32px;
  color: rgb(10, 30, 70);
  font-weight: 600;
}

.list {
  list-style: none;
}

.list li {
  margin-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.list li::before {
  content: "✔";
  color: #000;
  margin-right: 10px;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.stat-box {
  text-align: center;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  width: 32%;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid #000;
}

.stat-box h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

@media (max-width: 992px) {
  .why-choose-us-section {
    gap: 20px;
    margin: 30px auto;
  }

  .right-box {
    padding: 20px;
  }

  .right-box h3 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .why-choose-us-section {
    flex-direction: column;
    padding: 0 15px;
  }

  .left-img,
  .right-box {
    width: 100%;
  }

  .left-img img {
    height: 250px;
    object-fit: cover;
  }

  .right-box {
    padding: 20px 15px;
  }

  .right-box h3 {
    font-size: 18px;
    text-align: center;
  }

  .list li {
    font-size: 14px;
  }

  /* STATS FIX */
  .stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-box {
    width: 100%;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .left-img img {
    height: 200px;
  }

  .right-box h3 {
    font-size: 16px;
  }

  .list li {
    font-size: 13px;
  }

  .stat-box h4 {
    font-size: 16px;
  }
}
/* Why Choose Us Section Css Ends Here */

/* Our Expertise Section Css Starts Here */
.our-expertise-section {
  text-align: center;
  padding: 50px;
  background-color: #eff0f6;
}

.small-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid #000;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}

.our-expertise-section h2 {
  margin: 10px 0;
  font-size: 32px;
  color: #000000;
  font-weight: 600;
}

.our-expertise-section p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 14px;
  color: #000;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1370px;
  margin: auto;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.card:hover {
  border-color: #000;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card h4 {
  margin: 15px 0;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}

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

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

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

  .our-expertise-section {
    padding: 50px 15px;
  }

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

  .our-expertise-section p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .card h4 {
    font-size: 16px;
  }

  .card p {
    font-size: 13px;
  }
}
/* Our Expertise Section Css Ends Here */

/* Services Section Css Start Here */
.services-section {
  padding: 40px 0;
  text-align: center;
  max-width: 1370px;
  margin: 0 auto;
}

.services-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.services-section h2 span {
  color: #00a99d;
  border-bottom: 3px solid #00a99d;
}

.services {
  display: flex;
  gap: 20px;
  max-width: 1370px;
  margin: auto;
}

.service-box {
  background: #eff0f6;
  padding: 25px;
  border-radius: 10px;
  width: 33%;
  text-align: left;
  border: 1px solid #eee;
  transition: 0.3s;
}

.service-box:hover {
  border-color: #000;
}

.service-number {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 15px;
  line-height: 40px;
  font-weight: bold;
  padding-left: 15px;
  color: #4a90e2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.service-box p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}
/* Services Section Css Ends Here */

/* Inner Services Section Css Ends Here */
.inner-services-section {
  padding: 60px 20px;
  text-align: center;
  margin: 0 auto;
  background-color: #eff0f6;
}

.inner-services-section .container {
  max-width: 1370px;
  margin: 0 auto;
}

.inner-services-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #000000;
  font-weight: 600;
}

.inner-services-section h2 span {
  color: #00a99d;
  border-bottom: 3px solid #00a99d;
}

.inner-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.inner-service-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  border: 1px solid #eee;
  transition: 0.3s;
}

.inner-service-box:hover {
  border-color: #000;
  transform: translateY(-5px);
}

.inner-service-number {
  width: 40px;
  height: 40px;
  background: #eff0f6;
  border-radius: 50%;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.inner-service-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.inner-service-box p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}

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

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

@media (max-width: 768px) {
  .inner-services {
    grid-template-columns: 1fr;
  }

  .inner-service-box {
    padding: 20px;
  }

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

@media (max-width: 480px) {
  .inner-service-box h3 {
    font-size: 16px;
  }

  .inner-service-box p {
    font-size: 13px;
  }
}
/* Inner Services Section Css Ends Here */

/* FAQ Section Css Start Here */
.faq-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.faq-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0a1e46;
  font-weight: 600;
}

.faq {
  max-width: 1370px;
  margin: auto;
  text-align: left;
}

.faq-item {
  background: #eff0f6;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 18px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-2px);
}

.faq-item.active {
  border-left: 4px solid #0a8754;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #222;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

.plus {
  font-size: 18px;
  font-weight: bold;
  color: #0a8754;
  transition: 0.3s;
}

.faq-item.active .plus {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 24px;
  }
}
/* FAQ Section Css Ends Here */

/* CALL TO ACTION Section Css Starts Here */
.cta-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;

  width: 100vw;
  left: 50%;
  margin-left: -50vw;

  background:
    linear-gradient(rgba(10, 30, 70, 0.85), rgba(10, 30, 70, 0.85)),
    url("https://images.unsplash.com/photo-1497366216548-37526070297c");

  background-size: cover;
  background-position: center;
}

.cta-container {
  max-width: 900px;
  margin: auto;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #ddd;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

/* .btn-primary {
  background: #0a8754;
  color: #fff;
} */

/* .btn-primary:hover {
  background: #086c43;
  transform: translateY(-2px);
} */

.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 992px) {
  .cta-section {
    padding: 70px 20px;
  }

  .cta-section h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 15px;
  }

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

  .cta-section p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cta-section h2 {
    font-size: 20px;
  }

  .cta-section p {
    font-size: 13px;
  }
}
/* CALL TO ACTION Section Css Ends Here */
/* The CSS code for the inner pages Ends here. */

/* About Us Page Css Starts Here */
.about-us-section {
  padding: 90px 0;
  background: #ffffff;
}

.about-us-wrap {
  max-width: 1370px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-us-tag {
  color: #000000 !important;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

.about-us-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: rgb(10, 30, 70);
  font-weight: 600;
}

.about-us-left p {
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.about-us-stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 35px 0 45px;
}

.about-us-stat-box {
  background: #eff0f6;
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.about-us-stat-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0b2b55;
  margin-bottom: 6px;
}

.about-us-stat-box strong {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}

.about-us-stat-box.highlight {
  background: #000000;
  color: #fff;
}

.about-us-stat-box.highlight h3,
.about-us-stat-box.highlight strong {
  color: #fff;
}

.about-us-stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: #000000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.35s ease;
}

.about-us-right {
  position: relative;
}

.about-us-main-image {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  margin-top: -10px;
}

.about-us-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.about-us-main-image img {
  width: 100%;
  height: 70vh;
  display: block;
  border-radius: 26px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
}

.our-value-section {
  padding: 60px 20px;
  background: #eff0f6;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 600;
}

.our-value-wrapper {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.our-value-box {
  flex: 1;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.our-value-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.our-value-box .icon {
  width: 60px;
  height: 60px;
  background: #262b68;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 22px;
}

.our-value-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.our-value-box p {
  font-size: 15px;
  color: #000;
  line-height: 1.6;
}

.about-stats {
  background: #eff0f6;
  padding: 50px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}

.stat-box h3 {
  font-size: 28px;
  color: #262b68;
}

.stat-box p {
  font-size: 14px;
}

.mission-section {
  padding: 60px 20px;
  background: #eff0f6;
}

.mission-wrapper {
  display: flex;
  gap: 30px;
}

.mission-box {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.mission-box h3 {
  margin-bottom: 10px;
}

.what-we-do-section {
  max-width: 1370px;
  margin: auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.what-we-do-left h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: rgb(10, 30, 70);
  font-weight: 600;
}

.what-we-do-left p {
  margin-top: 20px;
  color: #000;
  line-height: 1.8;
  font-size: 16px;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(90deg, #2b6cb0, #38a169);
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.what-we-do-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.what-we-do-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  background: #eff0f6;
  transition: 0.3s ease;
  border: 1px solid #000;
}

.what-we-do-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.what-we-do-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.what-we-do-card p {
  margin-top: 8px;
  color: #000;
  font-size: 14px;
  line-height: 1.6;
}

.who-we-are-section {
  padding: 80px 20px;
  background: #eff0f6;
}

.who-we-are-wrapper {
  max-width: 1370px;
  margin: auto;
}

.who-we-are-top {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.who-we-are-small {
  font-size: 13px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 10px;
}

.who-we-are-top h2 {
  font-size: 36px;
  line-height: 1.3;
}

.who-we-are-top span {
  color: #00a99d;
}

.who-we-are-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.who-we-are-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 100%;
}

.who-we-are-card:hover {
  transform: translateY(-6px);
}

.who-we-are-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.who-we-are-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.who-we-are-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

@media (max-width: 992px) {
  .about-us-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-us-left h2 {
    font-size: 28px;
  }

  .about-us-stats-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-us-main-image img {
    height: auto;
  }

  .our-value-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-wrapper {
    flex-direction: column;
  }

  .what-we-do-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .who-we-are-content {
    grid-template-columns: 1fr;
  }

  .who-we-are-top h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .about-us-section {
    padding: 60px 15px;
  }

  .about-us-left h2 {
    font-size: 24px;
  }

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

  .about-us-stats-cards {
    grid-template-columns: 1fr;
  }

  .about-us-stat-box {
    padding: 20px 15px;
  }

  .our-value-wrapper {
    grid-template-columns: 1fr;
  }

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

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

  .what-we-do-right {
    grid-template-columns: 1fr;
  }

  .what-we-do-left h1 {
    font-size: 24px;
  }

  .what-we-do-left p {
    font-size: 14px;
  }

  .who-we-are-section {
    padding: 60px 15px;
  }

  .who-we-are-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .who-we-are-top h2 {
    font-size: 24px;
  }

  .who-we-are-card {
    padding: 20px;
  }

  .who-we-are-card h3 {
    font-size: 18px;
  }

  .who-we-are-card p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .about-us-left h2,
  .who-we-are-top h2,
  .what-we-do-left h1,
  .section-title {
    font-size: 20px;
  }

  .about-us-tag {
    font-size: 16px;
  }

  .about-us-stat-box h3,
  .stat-box h3 {
    font-size: 22px;
  }

  .about-us-btn,
  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
/* About Us Page Css Ends Here */

/* Two Part Section Css Start Here */
.two-part-section {
  padding: 50px 0;
  background: #eff0f6;
}

.two-part-section-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.two-part-section-title small {
  display: inline-block;
  color: #0a2c57;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.two-part-section-title h2 {
  font-size: 32px;
  color: #0a2c57;
  margin-bottom: 20px;
  font-weight: 600;
}

.two-part-section-title p {
  color: #000;
  font-size: 14px;
  line-height: 1.6;
}

.two-part-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.two-part-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.two-part-card:hover {
  transform: translateY(-8px);
}

.two-part-card h3 {
  font-size: 28px;
  color: #0a2c57;
  margin-bottom: 20px;
}

.two-part-card p {
  color: #000;
  margin-bottom: 20px;
  line-height: 1.8;
}

.two-part-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.two-part-card ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #000;
  font-size: 16px;
}

.two-part-card ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: rgb(10, 30, 70);
  position: absolute;
  left: 0;
  top: 1px;
}

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

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

  .two-part-card {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .two-part-section {
    padding: 70px 0;
  }

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

  .two-part-card h3 {
    font-size: 24px;
  }
}
/* Two Part Section Css End Here */

/* Step Section Css Start Here */
.step-section {
  padding: 50px 0;
}

.step-section .section-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 20px;
}

.step-section .section-title small {
  display: inline-block;
  color: rgb(10, 30, 70);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.step-section .section-title h2 {
  font-size: 42px;
  color: #0a2c57;
  margin-bottom: 15px;
}

.step-sub {
  color: #666;
  font-size: 17px;
  line-height: 1.8;
}

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

.step-card {
  background: #eff0f6;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
  border: 1px solid #000;
}

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

.step-icon {
  width: 70px;
  height: 70px;
  background: #0a2c57;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 25px;
}

.step-number {
  display: inline-block;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.step-card h3 {
  font-size: 24px;
  color: #0a2c57;
  margin-bottom: 15px;
}

.step-card p {
  color: #000;
  line-height: 1.8;
  font-size: 15px;
}

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

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

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

  .step-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    padding: 35px 25px;
  }
}
/* Step Section Css End Here */

/* Blog Section Css Start Here */
.blog-section {
  padding: 60px 20px;
  background: #eff0f6;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

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

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  text-decoration: none;
  color: #262b68;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* Blog Section Css End Here */

/* Contact Section Css Start Here */

.contact-section {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
}

.contact-info {
  width: 40%;
}

.contact-info h3 {
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #555;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.info-box i {
  color: #262b68;
}

.contact-social a {
  margin-right: 10px;
  color: #000;
  font-size: 16px;
}

.contact-form {
  width: 60%;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}

.btn-submit {
  background: #262b68;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #1e2255;
}

.map-section {
  width: 100%;
  background: #eff0f6;
  padding: 60px 0;
}

/* .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
} */

.map-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.map-box iframe {
  width: 100%;
  height: 500px;
  display: block;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }
}
/* Contact Section Css End Here */

/* Single Blog Section Css Start Here */
.single-blog {
  padding: 60px 20px;
  background: #eff0f6;
}

.blog-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.blog-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.blog-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #444;
}

.blog-text h2 {
  margin-top: 20px;
  font-size: 22px;
}



/* =========================================
   Single Blog Page
========================================= */

.single-blog {
    background: #f5f6fb;
    padding: 50px 20px 80px;
}

.single-blog .container {
    max-width: 1250px;
    margin: 0 auto;
}


/* Blog Article */
.single-blog-post {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}


/* Blog Title */
.single-blog-post .blog-title {
    margin: 0 0 30px;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
    color: #222;
    text-align: left;
}


/* Featured Image */
.blog-image-wrapper {
    width: 100%;
    margin-bottom: 35px;
    overflow: hidden;
    border-radius: 10px;
}

.blog-image-wrapper .blog-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    border-radius: 10px;
}


/* Blog Content */
.single-blog-post .blog-text {
    max-width: 950px;
    margin: 0 auto;
    color: #333;
    font-size: 17px;
    line-height: 1.8;
    text-align: left;
}


/* Paragraph */
.single-blog-post .blog-text p {
    margin: 0 0 22px;
}


/* Headings */
.single-blog-post .blog-text h2 {
    margin: 35px 0 15px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    color: #262b68;
}

.single-blog-post .blog-text h3 {
    margin: 30px 0 12px;
    font-size: 22px;
    line-height: 1.4;
    color: #262b68;
}


/* Lists */
.single-blog-post .blog-text ul,
.single-blog-post .blog-text ol {
    margin: 0 0 25px 25px;
    padding-left: 20px;
}

.single-blog-post .blog-text li {
    margin-bottom: 10px;
}


/* Links */
.single-blog-post .blog-text a {
    color: #262b68;
    text-decoration: underline;
}


/* Strong Text */
.single-blog-post .blog-text strong {
    font-weight: 700;
}


/* =========================================
   Banner
========================================= */

.banner-hero {
    padding: 55px 20px;
}

.banner-hero-content h1 {
    margin: 0 0 10px;
}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767px) {

    .single-blog {
        padding: 30px 15px 50px;
    }

    .single-blog-post {
        padding: 25px 20px;
        border-radius: 8px;
    }

    .single-blog-post .blog-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .blog-image-wrapper {
        margin-bottom: 25px;
    }

    .blog-image-wrapper .blog-image {
        max-height: 350px;
    }

    .single-blog-post .blog-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .single-blog-post .blog-text h2 {
        font-size: 22px;
        margin-top: 30px;
    }

}
/* Single Blog Section Css End Here */
