:root {
  --primary-color: #0d6efd;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background-color: var(--primary-color);
}

::-webkit-scrollbar-track {
  background-color: #e8e8e8;
}

::selection {
  background-color: var(--primary-color);
  color: #fff;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Nunito";
  src: url("../fonts/Nunito-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

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

a,
button,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}

/* ===================== Globle Items ===================== */
.btn-1 {
  display: inline-block;
  border: none;
  outline: none;
  text-decoration: none;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  padding: 8px 18px;
 
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  background: #0367fb;
}
.btn-1:hover {
  color: #fff;
  background:#0367fb;
}
.round-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
  text-decoration: none;
  color: var(--primary-color);
  background-color: #fff;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  cursor: pointer;
  transition: 0.3s;
}
.round-btn:hover {
  color: #fff;
  background-color: var(--primary-color);
}
/* ===================== End Globle Items ===================== */

/* ======================== Header Area ======================== */
header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  transition: 0.5s ease;
  z-index: 997;
}
header.active {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header .logo img {
  width: 150px;
}
header .header .logo img.logo-img-1 {
  display: block;
}
header .header .logo img.logo-img-2 {
  display: none;
}
header.active .header .logo img.logo-img-1 {
  display: none;
}
header.active .header .logo img.logo-img-2 {
  display: block;
}
header .header .navs > ul > li {
  position: relative;
  display: inline-block;
 
}
header .header .navs > ul > li > a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  color: #000;
  padding: 25px 15px;
  margin: 0 3px;
  cursor: pointer;
}
header .header .navs > ul > li:hover > a {
  color: #000;
}
header .header .navs > ul > li > a.down-arrow::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  line-height: 1;
  display: inline-block;
  margin-left: 5px;
  transition: 0.3s;
  font-weight: 600;
}
header .header .navs > ul > li:hover > a.down-arrow::after {
  transform: rotate(180deg);
}
header .header .navs > ul > li.active a {
  color: #000;
  background:#fff;
}
header .header .navs .sub-menu {
  position: absolute;
  top: 100%;
  width: 210px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
header .header .navs > ul > li:hover > .sub-menu {
  pointer-events: all;
  opacity: 1;
}
header .header .navs .sub-menu > ul {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  padding: 18px 15px;
}
header .header .navs .sub-menu > ul > li {
  display: block;
}
header .header .navs .sub-menu > ul > li > a {
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--neutra-color);
  padding: 5px 0;
  transition: 0.1s;
}
header .header .navs .sub-menu > ul > li > a:hover {
  color: var(--primary-color);
}
header .header .btns-box {
  display: flex;
  align-items: center;
}
header .header .btns-box .request-btn {
  padding: 0 15px 0 20px;
}
header .header .btns-box .contact-btn {
  position: relative;
}
header .header .btns-box .contact-btn:hover .btn-icon {
  background-color: var(--primary-color);
  color: #fff;
}
header .header .btns-box .contact-btn .contact-box {
  position: absolute;
  right: 0;
  padding-top: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
header .header .btns-box .contact-btn:hover .contact-box {
  pointer-events: all;
  opacity: 1;
}
header .header .btns-box .contact-btn .contact-info {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
  overflow: hidden;
}
header .header .btns-box .contact-btn .contact-info .contact-heading {
  font-size: 18px;
  font-weight: 600;
  color: #555;
  padding: 6px 15px;
}
header .header .btns-box .contact-btn .contact-info .info {
  padding: 10px 15px;
  background-color: rgba(204, 204, 204, 0.3);
}
header .header .btns-box .contact-btn .contact-info .info p {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  padding-bottom: 8px;
}
header .header .btns-box .contact-btn .contact-info .info a img,
header .header .btns-box .contact-btn .contact-info .info a i {
  width: 25px;
  font-size: 20px;
  margin-right: 8px;
}
header .header .btns-box .contact-btn .contact-info .info a {
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}
header .header .btns-box .contact-btn .contact-info .info a:hover {
  opacity: 0.7;
}
header.active .header .logo img.logo-img-2 {
  display: block;
}

@media screen and (max-width: 1199px) {
  header {
    padding: 20px 0;
  }
  header .header .navs {
    display: none;
  }
  header .header .btns-box .contact-btn {
    display: none;
  }
  header .header .btns-box {
    margin-left: auto;
  }
}

@media screen and (max-width: 575px) {
  header {
    padding: 15px 0;
  }
  header .header .logo img {
    width: 100px;
  }
  header .header .btns-box {
    display: block;
    margin-right: 15px;
  }
  header .header .round-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  header .header .btns-box .request-btn .btn-1 {
    display: none;
  }
}
/* ======================== End Header Area ======================== */


/* Default hidden */
        header .header .navs .sub-menu{
            position: absolute;
            top: 100%;
            left: 0;
            width: 280px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        /* Show submenu */
        header .header .navs ul li:hover > .sub-menu{
            opacity: 1;
            pointer-events: auto;
        }

        header .header .navs .sub-menu .sub-menu{
            top: 0;
            left: 100%;
        }

        header .header .navs ul li{
            position: relative;
        }

        header .header .navs a.down-arrow::after {
            content: "\f107";
            font-family: "Font Awesome 5 Pro";
            line-height: 1;
            display: inline-block;
            margin-left: 5px;
            transition: 0.3s;
            font-weight: 600;
        }

        header .header .navs li:hover > a.down-arrow::after {
            transform: rotate(180deg);
        }

        .side-menu .menu-item{
          display:flex;
          align-items:center;
          justify-content:space-between;
        }

        .submenu-toggle::after{
          content: "\f107";
            font-family: "Font Awesome 5 Pro";
            line-height: 1;
            display: inline-block;
            margin-left: 5px;
            transition: 0.3s;
            font-weight: 600;
        }

        .submenu-toggle.active::after{
          transform:rotate(180deg);
        }
        

/* ======================== Side-Menu Area ======================== */
.side-menu-area::-webkit-scrollbar {
  display: none;
}
.side-menu-area {
  scrollbar-width: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
}
.side-menu-area.active {
  pointer-events: all;
}
.side-menu-area .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: 0.5s ease;
}
.side-menu-area.active .overlay {
  opacity: 1;
}
.side-menu-area .side-menu-box {
  scrollbar-width: none;
  width: 280px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  /* border-top-right-radius: 50px; */
  /* border-bottom-right-radius: 50px; */
  background-color: #fff;
  overflow: auto;
  transform: translateX(-150%);
  transition: 0.8s;
}
.side-menu-area.active .side-menu-box {
  transform: translateX(0%);
}
.side-menu-area .side-menu-box::-webkit-scrollbar {
  display: none;
}
.side-menu-area .side-menu-box .side-menu {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.side-menu .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #eee;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
  padding: 12px 0 6px;
}
.side-menu .header .logo img {
  width: 100px;
  padding-left: 10px;
}
.side-menu .header .close-btn button {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 10px 20px;
}
.side-menu .navs {
  padding: 25px 25px;
}
.side-menu .navs ul {
  list-style: none;
}
.side-menu .navs > ul > li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.side-menu .navs > ul > li > a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* font-weight: 600; */
  color: var(--neutra-color);
  padding: 8px 0;
  cursor: pointer;
}
/* .side-menu .navs > ul > li > a.active, */
.side-menu .navs > ul > li > a:hover {
  color: var(--primary-color);
}
/*.side-menu .navs > ul > li > a.down-arrow::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  line-height: 1;
  display: inline-block;
  margin-left: 5px;
  transition: 0.3s;
  font-weight: 600;
}
.side-menu .navs > ul > li > a.active.down-arrow::after {
  transform: rotate(180deg);
}*/
.side-menu .navs > ul > li > .sub-menu {
  display: none;
  padding-left: 10px;
  padding-bottom: 10px;
}
.side-menu .navs a.down-arrow::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  line-height: 1;
  display: inline-block;
  margin-left: 5px;
  transition: 0.3s;
  font-weight: 600;
}

.side-menu .navs a.active.down-arrow::after {
  transform: rotate(180deg);
}
.side-menu .navs .sub-menu{
  display: none;
  padding-left: 10px;
  padding-bottom: 10px;
}
.side-menu .navs .sub-menu > ul > li a {
  text-decoration: none;
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--neutra-color);
  padding: 4px 0;
}
.side-menu .navs .sub-menu > ul > li a:hover {
  color: var(--primary-color);
}
.side-menu .request-btn {
  text-align: center;
  margin-left: -15px;
  margin-bottom: 40px;
  margin-top: auto;
}
/* ======================== End Side-Menu Area ======================== */

.hero-section {
  padding: 140px 0;
  background-image:linear-gradient(rgb(0 0 0 / 34%), rgb(0 0 0 / 19%)), url(../img/home-ban.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}

.hero-title span {
  color: #fff;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #fff;
  margin: 20px 0 35px;
}

.hero-btn .btn-primary {
  background:#0d6efd;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s ease;
}

.hero-btn .btn-primary:hover {
  background: #0d6efd;
  transform: translateY(-3px);
}

.hero-btn .btn-outline-dark {
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  margin-left: 10px;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero-section {
    text-align: center;
    padding: 40px 0;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-btn .btn-outline-dark {
    margin-left: 0;
    margin-top: 10px;
  }
}

.about-section {
  background: #f9fbfb;
}

.about-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #0367fb29;
  color: #000;
  font-weight: 600;
  border-radius: 50px;
  font-size: 14px;
}

.about-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.about-title span {
  color:#0367fb;
}

.about-text {
  color: #555;
  margin-top: 15px;
  line-height: 1.7;
}

.about-feature {
  background: #fff;
  padding: 12px 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 500;
}
.about-img img{
  width: 100%;
  border-radius: 10px;
      max-height: 500px;
    object-fit: cover;
    object-position: center;
}

.btn-primary {
  background:#0d6efd;
  border: none;
  padding: 6px 17px;
  border-radius:50px;
}

.btn-primary:hover {
  background:#1456b7;
}

.visa-section {
  background:linear-gradient(135deg, #ffffff, #ffffff);
}
.visa-section img{
  width: 100%;
  border-radius: 10px;
  max-height: 451px;
    object-fit: cover;
}
.visa-section .nav li{
    flex:1;
}
.visa-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  max-width: 800px;
  margin: auto;
}

.section-title span {
  color: #0367fb;
}

.visa-tabs .nav-link {
border-radius: 61px;
    padding: 10px 25px;
    font-weight: 600;
    color: #333;
    background: #0367fb0f;
    margin: 0 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    border: 1px solid #c2c2c2;
}

.visa-tabs .nav-link:hover {
  transform: translateY(-3px);
}

.visa-tabs .nav-link.active {
  background:#0367fb;
  color: #fff;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.premium-card {
  background: #ededed;
  backdrop-filter: blur(12px);
  border-radius: 25px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
      border: 1px solid black;
}

.visa-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.visa-text {
  color: #555;
  width: 95%;
  line-height: 28px;
  padding-bottom: 10px;
}

.visa-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.visa-img:hover {
  transform: scale(1.05);
}
.visa-section .tab-content {
  margin-top: 80px;
}

@media (max-width: 992px) {
  .premium-card {
    padding: 10px;
  }
  .about-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
  }
  .about-section .about-img {
    margin-bottom: 20px;
  }
  .visa-section .section-title {
    font-size: 24px;
  }
  .visa-section .tab-content {
    margin-top: 30px;
  }
  .nav-pills .nav-link {
    margin-bottom: 20px !important;
  }
  .visa-img {
    margin-top: 20px;
  }
  .visa-text {
    color: #555;
    width: 100%;
    line-height: 28px;
}
.visa-section img {
    width: 100%;
    border-radius: 10px;
    margin-top: 30px;
}
.visa-title {
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 30px;
}
}

.why-section {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.section-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
  background:#0367fb21;
  padding: 6px 15px;
  border-radius: 50px;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.section-heading span {
  color:#0367fb;
}

.section-text {
  color: #555;
  margin-top: 15px;
  line-height: 1.7;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 18px;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 40px;
  height: 30px;
  background:#0367fb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.feature-box h6 {
  margin: 0;
  font-weight: 600;
}

.feature-box p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

.image-wrapper img {
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
  width: 100%;
}

.image-wrapper img:hover {
  transform: scale(1.03);
}

@media (max-width: 992px) {
  .section-heading {
    font-size: 24px;
  }
  .feature-icon {
    height: unset;
    width: 60px;
  }
  .section-text{
    text-align: justify;
  }
}

.offer-section {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.offer-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.offer-subtitle {
  margin: 10px auto 0;
  color: #666;
}

.offer-card {
  background: #fff;
  padding: 20px 15px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0367fb;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.offer-card .icon-box {
  width: 60px;
  height: 60px;
  background:#0367fb1f;
  color: #6366f1;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin-bottom: 20px;
}

.offer-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 14px;
  color: #666;
  line-height: 26px;
  margin-bottom: 10px;
}

.offer-link {
  text-decoration: none;
  font-weight: 600;
  color: #ff5f6d;
  transition: 0.3s ease;
}

.offer-link:hover {
  letter-spacing: 1px;
  color: #4f46e5;
}

@media (max-width: 992px) {
  .offer-title {
    font-size: 22px;
  }
}

.support-section {
  background: radial-gradient(circle at top left, #1e1e2f, #0f0f17);
  color: #fff;
}

.support-title {
  font-size: 2.3rem;
  font-weight: 700;
}

.support-subtitle {
  color: #aaa;
  margin-top: 10px;
}

.support-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background:linear-gradient(135deg, #6366f1, #ffc107);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
}

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

.support-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

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

@media (max-width: 992px) {
  .support-title {
    font-size: 1.8rem;
  }
}

/* Section spacing */
.faq-section {
  padding: 40px 0;
}

/* Badge */
.faq-badge {
  display: inline-block;
  padding: 6px 16px;
  background:#0367fb52;
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Heading */
.faq-title {
  font-size: 34px;
  font-weight: 600;
  color: #111827;
}

.faq-subtitle {
  color: #6b7280;
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}

/* Left Card */
.faq-left-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* Button */
.btn-gradient {
  background: linear-gradient(135deg, #ff5f6d, #ffc371);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
  color: #fff;
}

/* Accordion Custom */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.accordion-button {
  font-weight: 600;
  font-size: 17px;
  padding: 20px;
  background: #ffffff;
}

.accordion-button:not(.collapsed) {
  background: #0d6efd;
  color: #fff;
  box-shadow: none;
}

.accordion-body {
  color: #6b7280;
  font-size: 15px;
  padding: 20px;
}

.accordion-button:focus {
  box-shadow: none;
}

/* ===== Section ===== */
.fees-section {
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
  padding: 40px 0;
}

/* Left Content */
.fees-content {
  text-align: center;
}
.fees-content h2 {
  display: inline-block;
  padding: 6px 16px;
  background: #e0e7ff;
  color: #4f46e5;
  border-radius: 50px;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 20px;
}

.fees-content p {
  color: #6c757d;
  font-size: 16px;
}

/* Cards */
.fee-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(13, 43, 82, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(13, 43, 82, 0.05);
}
.fee-card p {
  margin-bottom: 10px;
}
.fee-card h5{
  font-weight: 600;
  margin-bottom: 10px;
}

.fee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.fee-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #0d6efd;
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
}

.fee-price {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
  color: #0d6efd;
}

.fee-card ul {
  padding-left: 18px;
  margin-top: 15px;
}

.fee-card ul li {
  margin-bottom: 8px;
  color: #6c757d;
}

/* Note box */
.fee-note {
  margin-top: 25px;
  background: rgba(13, 110, 253, 0.07);
  padding: 18px;
  border-radius: 12px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  .fees-content {
    margin-bottom: 30px;
    text-align: center;
  }
  .faq-left-box{
    padding: 20px;
    margin-bottom: 20px;
  }
  .fee-card{
    padding: 20px;
  }
}

/* ========================= */
/* PREMIUM CTA WITH IMAGE */
/* ========================= */

.premium-cta {
  position: relative;
  padding: 40px 0;
  background: url("../img/cta.webp") center center/cover no-repeat;
  overflow: hidden;
}

/* Dark Overlay */
.premium-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(0 0 0 / 41%), rgb(0 0 0 / 41%));
  backdrop-filter: blur(3px);
}

/* Glass Card */
.cta-box {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

/* Badge */
.cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Heading */
.cta-heading {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 25px;
}

/* Description */
.cta-text {
  font-size: 18px;
  color: #d1d5db;
  max-width: 650px;
  margin: auto;
}

/* Buttons */
.cta-btn-primary {
  background:#0367fb;
  border: none;
  padding: 14px 34px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.6);
}

.cta-btn-secondary {
  padding: 14px 34px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn-secondary:hover {
  background: #ffffff;
  color: #111827 !important;
  transform: translateY(-5px);
}

/* Trust text */
.cta-trust {
  font-size: 14px;
  color: #cbd5e1;
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-heading {
    font-size: 28px;
  }
  .cta-box {
    padding: 10px 25px;
  }
  .premium-cta {
    padding: 40px 0;
  }
  .faq-subtitle {
    color: #6b7280;
    font-size: 16px;
    max-width: 700px;
    margin: auto;
}
}

/* ======================== */
/* PREMIUM FOOTER */
/* ======================== */

.footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #cbd5e1;
  padding: 80px 0 30px;
}
.footer img{
  width: 65px;
      background: white;
    padding: 5px 8px;
    border-radius: 4px;
}

.footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 3px solid #0367fb;
  max-width: max-content;
}

.footer p {
  font-size: 14px;
  width: 100%;
  line-height: 1.7;
}
.footer p a{
    display:inline;
    color:#cbd5e1;
}
.footer p a:hover{
    padding:0;
    color: #6366f1;
}
.footer a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
  display: block;
  margin-bottom: 10px;
}

.footer a:hover {
  color: #6366f1;
  padding-left: 5px;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  margin-right: 8px;
  color: #ffffff;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #6366f1;
  transform: translateY(-3px);
}

/* Divider */
.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px;
}

/* Bottom Bar */
.footer-bottom {
  font-size: 14px;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .social-icons {
    margin-bottom: 20px;
  }
  .footer p {
    width: 100%;
  }
  .footer h5 {
    color: #ffffff;
    font-weight: 600;
    border-bottom: 3px solid #ff5f6d;
    max-width: max-content;
    width: 100%;
    text-align: center;
    margin: 0 auto 20px;
}
.footer{
  padding: 40px 0 20px;
}

}

a.custom-btn {
  background: #0367fb;
  text-decoration: none;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 18px;
}

.process-section {
  padding: 40px 0;
}

.process-section .step-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 10px 30px 20px;
  text-align: center;
  transition: 0.4s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border:1px solid #aaaaaa;
}

.process-section .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.process-section .step-number {
  width: 50px;
  height: 50px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  background: #0d6efd;
  color: #fff;
  margin-bottom: 25px;
}

.process-section .step-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #1d1d1f;
  font-size: 20px;
  height: 50px;
}

.process-section .step-card p {
  font-size: 14px;
  color: #6c757d;
}

@media (max-width: 768px) {
}

/*** 
=============================================
    Breadcrumb area style
=============================================
***/
.breadcrumb-area {
  position: relative;
  background-attachment: scroll;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 100px;
  z-index: 10;
}
.breadcrumb-area::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
  content: "";
  z-index: -1;
}
.breadcrumb-area .inner-content {
  position: relative;
  display: block;
}

.breadcrumb-area .title {
  position: relative;
  display: block;
  margin: 0 0 9px;
}
.breadcrumb-area .title h2 {
  color: #ffffff;
  font-size: 48px;
  line-height: 60px;
  font-weight: 600;
  text-transform: capitalize;
}
.breadcrumb-menu ul {
  position: relative;
  display: block;
  overflow: hidden;
}
.breadcrumb-menu ul li {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  padding: 0 3px;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
}
.breadcrumb-menu ul li a {
  color: #ffffff;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  text-decoration: none;
}
.breadcrumb-menu ul li a:hover {
  color: #0098ff;
}
.breadcrumb-menu ul li.active {
  color: #0098ff;
}

#policy {
  padding: 40px 0;
}

.policy-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: rgb(0 0 0 / 10%) 0px 3px 5px 0px;
  margin-bottom: 25px;
  transition: 0.3s;
}
.policy-card h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 8px;
    color: #000;
    border-bottom: 1px solid black;
    margin-top: 34px;
}
.policy-card p {
  font-size: 18px;
  font-weight: 400;
  color: #404040;
}
.policy-card ul{
  padding: 10px;
}
.policy-card ul li{
  line-height: 30px;
}
/* QUICK STRIP */
.quick-contact {
  background: #fff;
  margin-top: -30px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  padding: 30px;
  z-index: 99;
  position: relative;
}

/* INFO CARD */
.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* FORM */
.form-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.form-control {
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #e2e8f0;
}

.form-control:focus {
  border-color: #6366f1;
  box-shadow: none;
}

.btn-premium {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  padding: 14px 35px;
  border-radius: 50px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

/* MAP */
.map iframe {
  width: 100%;
  height: 400px;
  border-radius: 25px;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
  padding: 80px 0;
  margin-top: 100px;
}
.c-box h6 {
  font-weight: 600;
  font-size: 20px;
  padding-bottom: 10px;
}

@media (max-width: 768px) {
  .c-box {
    margin-bottom: 20px;
  }
  .quick-contact {
    padding: 20px 30px 0;
  }
  .form-box {
    padding: 30px;
  }
  .info-card p {
    margin-bottom: 10px;
  }
  
}
.dis{
  background: #dddddd54;
}
.dis p{
  font-size: 14px;
  padding: 10px 0 5px;
}
@media (max-width: 768px){

  .dis p {
    font-size: 12px;
    padding: 10px 10px 5px;
}

}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .submenu {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  min-width:170px;
}

/* Bootstrap uses .show */
.dropdown-menu.show {
  display: block;
}
.navbar-brand img{
    width:65px;
}
.navbar-light .navbar-nav .nav-link{
    color:black;
}
.offcanvas ul li a{
    color:black;
}
