: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;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.btn-1:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.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: #eef2ff;
  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: 20px 20px;
  margin: 0 3px;
  cursor: pointer;
}
header .header .navs > ul > li.active > a {
  color: #fff !important;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}
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.active .header .navs > ul > li > a,
header.active .header .navs > ul > li > a:hover {
  color: #000;
}
header .header .navs .sub-menu {
  position: absolute;
  top: 100%;
  width: 280px;
  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;
  }
}

 /* 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);
        }
        
/* ======================== End Header Area ======================== */

/* ======================== 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 .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;*/
/*}*/

.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: 10px 0;
}

.hero-banner {
  position: relative;
  background: url("../img/australia_visa_banner.webp") center/cover no-repeat;
  border-radius: 30px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner.subclass600{
      
  background: url("../img/sub600.webp") center/cover no-repeat;
  
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(0 0 0 / 40%), rgb(0 0 0 / 40%));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 80%;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  margin: 20px 0;
  opacity: 0.9;
}

.btn-apply {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border: none;
  padding: 14px 38px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  transition: 0.3s ease;
}

.btn-apply:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
  color: #fff;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
    font-weight: 700;
  }
  .hero-content{
    width: 100%;
  }
  .hero-banner{
    min-height: 400px;
  }
}

/* ======================== */
/* 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 var(--primary-color);
  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;
    padding: 40px 0 20px;
  }
  .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;
}
}

.about-section {
  padding: 30px 20px;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
}

/* subtle background shape */
.about-wrapper::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  opacity: 0.08;
}

.about-left h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 20px;
  color: #111827;
}

.about-left p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 10px;
}

.badge {
  display: inline-block;
  padding: 10px 18px;
  background: #eef2ff;
  color: #4f46e5;
  font-size: 14px;
  border-radius: 30px;
  font-weight: 500;
  margin-top: 10px;
}

/* Right Side */

.about-right {
  width: 100%;
}
.about-right img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
      max-height: 500px;
    object-fit: cover;
    object-position: 100% 28%;
}
.about-section .custom-btn {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border: none;
  padding: 14px 38px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  transition: 0.3s ease;
  text-decoration: none;
  margin-top: 20px;
  display: table;
}

/* Responsive */

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

  .about-right {
    margin-top: 0px;
    padding: 20px;
  }
  .about-left h2{
    font-size: 22px;
  }
}

.section {
  padding: 90px 20px;
}

.header-title {
  margin-bottom: 60px;
  text-align: center;
}

.header-title h2 {
  font-size: 44px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 10px;
}

.header-title h2 span {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-title p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

/* Grid */

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

/* Card */

.country-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgb(102 102 242);
  padding: 10px 10px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.country-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
  border-color: #c7d2fe;
}

.country-card img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
}

.country-card span {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
}


.toggle-btn {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25);
}

.toggle-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(99, 102, 241, 0.35);
}

.toggle-btn svg {
  transition: transform 0.4s ease;
}

.toggle-btn.active svg {
  transform: rotate(180deg);
}

/* Text Change Logic */
.toggle-btn .less-text{
  display:none;
}

.toggle-btn[aria-expanded="true"] .more-text{
  display:none;
}

.toggle-btn[aria-expanded="true"] .less-text{
  display:inline;
}
.list-group-flush {
    border-radius: 0;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
  .header-title {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-title h2{
    font-size: 28px;
  }
  .country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }
  .section {
    padding: 40px 20px;
  }
  
}

/* CTA Section */
.cta-bg-section {
  position: relative;
  background: url("../img/cta-aus.webp") center center/cover no-repeat;
  padding: 60px 0;
  color: #fff;
}

/* Dark Overlay */
.cta-bg-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

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

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Button */
.cta-btn {
  padding: 14px 45px;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border: none;
  color: #fff;
  transition: 0.3s ease;
  text-decoration: none;
  margin-bottom:10px;
  display:inline-block;
  margin-right:14px;
}

.cta-btn:hover {
  background: #fff;
  color: #0d6efd;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 28px;
  }
  .cta-bg-section {
    padding: 80px 0;
  }
}

#about-ser {
  padding: 40px 0;
  background-image: url("../img/ser-bg.webp");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: auto;
}

#about-ser .serving-label {
  color: #4f6df5;
  font-weight: 600;
  letter-spacing: 1px;
}

#about-ser .serving-title {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 40px;
}

#about-ser .left-border {
  border-left: 6px solid #2d4bff;
  padding-left: 18px;
  color: #666;
  font-size: 18px;
  margin-bottom: 40px;
}

#about-ser .company-box {
  display: flex;
  gap: 20px;
  margin-top: 0px;
  align-items: center;
}

#about-ser .company-icon {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

#about-ser .company-title {
  font-weight: 700;
  font-size: 20px;
}

#about-ser .company-desc {
  color: #666;
  margin-top: 5px;
  font-size: 14px;
}

#about-ser .divider {
  margin: 20px 0;
  border-top: 1px solid #ddd;
}

#about-ser .btn-custom {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  padding: 16px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 25px;
}

#about-ser .btn-custom:hover {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
}
#about-ser .img img {
  width: 100%;
}
#about-ser .company-box:hover .company-icon {
  background: var(--primary-color);
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media (max-width: 768px) {
  #about-ser .serving-title {
    font-size: 38px;
  }
  #about-ser{
    background-image: unset;
    padding: 40px 0 0;
  }
}

.process-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.process-wrapper h2 {
  font-size: 44px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.process-wrapper h2 span {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step-card {
  background: #f9faff;
  border: 1px solid #eef0ff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}
.step-card h6{
  font-size: 18px;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.15);
}

.step-card .step-number {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 18px;
}

.how-it-works {
  padding: 10px 0 0;
  text-align: center;
}

.how-it-works h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  padding-bottom: 10px;
}
.how-it-works h2 span {
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.how-it-works .subtitle {
  max-width: 650px;
  margin: 0 auto 70px;
  color: #6c757d;
}

.how-it-works .steps-wrapper {
  position: relative;
}

.how-it-works .steps-line {
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e2e6ef;
  z-index: 0;
}

.how-it-works .step {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.how-it-works .circle-wrapper {
  position: relative;
  width: 120px;
  height: 90px;
  margin: 5px auto;
}

.how-it-works .circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 2;
}

/* Rotating dotted border */
.how-it-works .circle-wrapper::before {
  content: "";
  position: absolute;
  top: -5px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px dashed #d6dbe6;
  animation: rotate 8s linear infinite;
  left: 30px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Gradients */
.blue {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.how-it-works .step h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.how-it-works .step p {
  font-size: 14px;
  color: #6c757d;
}

/* Responsive */
@media (max-width: 991px) {
  .how-it-works .steps-line {
    display: none;
  }
  .process-wrapper h2 {
    font-size: 29px;
  }
  .process-wrapper {
    padding: 20px 10px;
  }
  .how-it-works .step h5{
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .how-it-works .circle-wrapper {
    width: 100px;
    height: 70px;
  }
  .how-it-works .circle-wrapper::before {
    width: 60px;
    height: 60px;
    left: 20px;
  }
  .how-it-works h2 {
    font-size: 28px;
  }
  .how-it-works .subtitle {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #6c757d;
  }
  .step-card{
    padding: 10px 5px;
  }
.step-card h6 {
    font-size: 12px;
}
.step-card .step-number{
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
}

}

@media (min-width: 320px) and (max-width: 991px) {
  
.row-cols-6>* {
    flex: 0 0 auto;
    width: 50%;
}
  
}
@media (min-width: 992px) and (max-width: 1200px) {
  
.row-cols-6>* {
    flex: 0 0 auto;
    width: 32.666667%;
}
  
}


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

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

/* Heading */
.faq-title {
  font-size: 34px;
  font-weight: 700;
  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, #6366f1, #4f46e5);
  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: #f5f7ff;
  color: #4f46e5;
  box-shadow: none;
}

.accordion-body {
  color: #6b7280;
  font-size: 15px;
  padding: 20px;
}
.accordion-body ul{
  padding: 10px 20px;
}
.accordion-button:focus {
  box-shadow: none;
}

.premium-section {
  padding: 40px 0;
  position: relative;
}

.premium-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.premium-section .header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.premium-section .section-badge {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  font-size: 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-decoration: none;
}

.premium-section .section-header h2 {
  font-weight: 800;
  font-size: 40px;
  margin-bottom: 20px;
  text-align: start;
}

.premium-section .section-header p {
  color: #6c757d;
  max-width: 650px;
  margin: auto;
  font-size: 18px;
}

.premium-section .stack-card {
  position: sticky;
  top: 140px;
  padding: 40px 40px;
  border-radius: 24px;
  margin-bottom: 40px;
  background: #fff;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.06);
  transition: 0.4s ease;
  overflow: hidden;
  height: 400px;
}
.premium-section .stack-card ul{
  padding: 0 20px;
}

.premium-section .stack-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.1);
}

.premium-section .step-number {
  position: absolute;
  right: 40px;
  top: 30px;
  font-size: 120px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
}

.premium-section .stack-card h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

.premium-section .stack-card p {
  color: #000;
  font-size: 18px;
}

.premium-section .stack-card:nth-child(1) {
  background: #ffffff;
}
.premium-section .stack-card:nth-child(2) {
  background: #fcfcfc;
}
.premium-section .stack-card:nth-child(3) {
  background: #fafafa;
}
.premium-section .stack-card:nth-child(4) {
  background: #f8f8f8;
}
.premium-section .stack-card:nth-child(5) {
  background: #f6f6f6;
}
.premium-section .stack-card:nth-child(6) {
  background: #f4f4f4;
}

@media (max-width: 768px) {
  .premium-section .section-header h2 {
    font-size: 30px;
    text-align: center;
  }
  .premium-section .header-flex{
    display: block;
  }
  .faq-left-box{
    margin-bottom: 20px!important;
    padding: 20px;
  }

  .premium-section .stack-card {
    padding: 40px;
    margin-bottom: 90px;
  }

  .premium-section .step-number {
    font-size: 70px;
    right: 20px;
  }

  .premium-section .stack-card {
    position: relative; /* Sticky removed */
    top: auto;
    margin-bottom: 30px;
    padding: 20px;
    height: unset;
  }

  .premium-section .step-number {
    position: relative;
    font-size: 40px;
    right: auto;
    top: auto;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 0.08);
  }

  .premium-section .section-header {
    margin-bottom: 50px;
  }
  .faq-subtitle{
    font-size: 16px;
  }

}

/* ===== 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;
    font-weight: 700;
  }
  .fee-card{
    padding: 20px;
  }
}

.extra {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.extra.active {
  max-height: 200px;
  margin-top: 10px;
}


/* Wrapper */
.sticky-apply-wrapper{
    position:fixed;
    bottom:30px;
    right:30px;
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transform:translateY(40px);
    transition:all .4s ease;
    transform: scale(0.9) !important;
}

/* Active class when scrolling */
.sticky-apply-wrapper.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Button */
.sticky-apply-btn{
    width:95px;
    height:95px;
    background:linear-gradient(135deg,#16a34a,#22c55e);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 15px 35px rgba(0,0,0,0.2);
    position:relative;
    transition:all .3s ease;
}

.sticky-apply-btn:hover{
    transform:scale(1.08);
    box-shadow:0 25px 45px rgba(0,0,0,0.3);
    color: #fff;
}
.sticky-apply-btn i{
  font-size: 42px;
}


/* Curved Text */
.curved-text{
    position:absolute;
    width:170px;
    height:170px;
    top:-38px;
    left:-38px;
    transform: rotate(310deg);
}

.curved-text text{
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    fill:#16a34a;
}

@keyframes rotateText{
    from { transform:rotate(0deg); }
    to { transform:rotate(360deg); }
}

 
@media(max-width:576px){
    .sticky-apply-wrapper{
        bottom:20px;
        right:20px;
    }
    .sticky-apply-btn{
        width:80px;
        height:80px;
        font-size:22px;
    }
    .curved-text{
        width:140px;
        height:140px;
        top:-30px;
        left:-30px;
    }
}
.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;
}
.row-cols-5>* {
    flex: 0 0 auto;
    width: 50%;
}

}

@media (min-width: 769px) and (max-width: 991px) {
  
.row-cols-5>* {
    flex: 0 0 auto;
    width: 50%;
}


}


.eligibility-section{
    background: linear-gradient(135deg, #f8fbff, #eef4ff);
    padding: 80px 0;
}

.eligibility-card{
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

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

.eligibility-title{
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.eligibility-list{
    list-style: none;
    padding-left: 0;
}

.eligibility-list li{
    margin-bottom: 18px;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.eligibility-list i{
    color: #0d6efd;
    font-size: 20px;
    margin-right: 12px;
    margin-top: 3px;
}

.section-note{
    text-align: center;
    margin-top: 40px;
    color: #666;
    font-size: 15px;
}

@media(max-width:768px){
    .eligibility-card{
        padding: 30px;
    }
}

.dropdown-submenu {
  position: relative;
}

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

 
.dropdown-menu.show {
  display: block;
}
.navbar-brand img{
    width:65px;
}
.navbar-light .navbar-nav .nav-link{
    color:black;
}
.offcanvas ul li a{
    color:black;
}
.btn-primary{
    background:linear-gradient(135deg, #6366f1, #4f46e5);
    border-radius:50px;
    
}


    .tav-section {
      position: relative;
      min-height: 65vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      font-family: 'DM Sans', sans-serif;
      padding: 80px 0;
    }

   
    .tav-bg {
      position: absolute;
      inset: 0;
      background: url('../img/sub600.webp')
        center/cover no-repeat;
      animation: tavZoom 18s ease-in-out infinite alternate;
    }
    @keyframes tavZoom {
      from { transform: scale(1); }
      to   { transform: scale(1.05); }
    }

     
    .tav-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(105deg, rgb(4 12 30 / 31%) 0%, rgb(4 12 30 / 22%) 45%, rgb(4 12 30 / 19%) 100%);
    }

   
    .tav-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 48px 48px;
    }

   
    .tav-left {
      position: relative; z-index: 3;
    }

    .tav-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      margin-bottom: 22px;
    }
    .tav-eyebrow-line {
      width: 28px; height: 2px;
      background: #ffffff; border-radius: 2px;
    }
    .tav-eyebrow-text {
      font-size: 11px; letter-spacing: 3px;
      text-transform: uppercase; font-weight: 600;
      color: #ffffff;
    }

    .tav-heading {
      
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      font-weight: 600;
      color: #ffffff;
      line-height: 1.1;
      letter-spacing: -1.5px;
      margin-bottom: 20px;
    }
    
    .tav-sub {
      font-size: 16px; font-weight: 300;
      color: rgb(255 255 255);
      line-height: 1.75;
      max-width: 400px;
      margin-bottom: 36px;
    }

   
    .tav-pills {
      display: flex; flex-wrap: wrap; gap: 10px;
    }
    .tav-pill {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50px;
      padding: 8px 16px;
      font-size: 12.5px; font-weight: 500;
      color: rgba(255,255,255,0.75);
      backdrop-filter: blur(8px);
    }
    .tav-pill i { color: #f97316; font-size: 11px; }

    
    .tav-right {
      position: relative; z-index: 3;
    }

    .tav-card {
      border-radius: 24px;
      padding: 36px 32px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s cubic-bezier(0.34,1.4,0.64,1),
                  box-shadow 0.3s ease;
    }
    .tav-card:hover { transform: translateY(-8px); }

     
    .tav-card-1 {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.9);
      box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    }
    .tav-card-1:hover {
      box-shadow: 0 32px 80px rgba(0,0,0,0.3);
    }

    
    .tav-card-2 {
      background: linear-gradient(135deg, #6366f1, #4f46e5);
      border: none;
      box-shadow: 0 20px 60px rgba(249,115,22,0.4);
    }
    .tav-card-2:hover {
      box-shadow: 0 32px 80px rgba(249,115,22,0.55);
    }

     
    .tav-card-ring {
      position: absolute;
      top: -50px; right: -50px;
      width: 160px; height: 160px;
      border-radius: 50%;
      border: 28px solid rgba(0,0,0,0.04);
      pointer-events: none;
    }
    .tav-card-2 .tav-card-ring {
      border-color: rgba(255,255,255,0.08);
    }

   
    .tav-card-tag {
      display: inline-flex; align-items: center; gap: 6px;
      border-radius: 50px;
      padding: 5px 14px;
      font-size: 11px; letter-spacing: 1.5px;
      text-transform: uppercase; font-weight: 700;
      margin-bottom: 24px;
    }
    .tav-tag-1 {
      background: #eef2ff;
      color: #6366f1;
      border: 1px solid #6366f1;
    }
    .tav-tag-2 {
      background: rgba(255,255,255,0.18);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.25);
    }

     
    .tav-card-icon {
      width: 64px; height: 64px; border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
    }
    .tav-card-icon img{
      width: 50px;
    }
    .tav-icon-2 img{
      filter: invert(1);
    }
    .tav-card:hover .tav-card-icon { transform: rotate(-6deg) scale(1.08); }
    .tav-icon-1 { background: rgba(249,115,22,0.1); color: #f97316; }
    .tav-icon-2 { background: rgba(255,255,255,0.18); color: #fff; }

     
    .tav-card-title {
      font-family: 'Syne', sans-serif;
      font-size: 20px; font-weight: 800;
      letter-spacing: -0.5px;
      margin-bottom: 10px;
    }
    .tav-ct-dark  { color: #0f172a; }
    .tav-ct-white { color: #ffffff; }

     
    .tav-card-desc {
      font-size: 14px; font-weight: 300;
      line-height: 1.75;
      margin-bottom: 28px;
    }
    .tav-cd-muted { color: #64748b; }
    .tav-cd-white { color: rgba(255,255,255,0.75); }

    
    .tav-card-btn {
      display: flex; align-items: center; justify-content: space-between;
      border-radius: 14px;
      padding: 15px 20px;
      font-family: 'Syne', sans-serif;
      font-size: 14px; font-weight: 700;
      text-decoration: none;
      border: none; cursor: pointer;
      transition: all 0.25s;
      width: 100%;
    }
    .tav-btn-1 {
      background: #0f172a;
      color: #ffffff;
    }
    .tav-btn-1:hover {
      background: #f97316;
      color: #fff;
    }
    .tav-btn-2 {
      background: #fff;
      color: #000;
      border: 1px solid rgba(255,255,255,0.3);
      backdrop-filter: blur(8px);
    }
    .tav-btn-2:hover {
      background: rgba(255,255,255,0.28);
      color: #fff;
    }
    .tav-btn-2 .tav-btn-arrow{
      background-color: #000;
      color: #fff;
    }
    .tav-btn-arrow {
      width: 28px; height: 28px; border-radius: 50%;
      background: rgba(255,255,255,0.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px;
      transition: transform 0.25s;
    }
    .tav-card-btn:hover .tav-btn-arrow {
      transform: translateX(3px);
    }
    .tav-btn-1 .tav-btn-arrow { background: rgba(255,255,255,0.15); }

   
    .tav-badge {
      position: absolute;
      top: 24px; right: 24px;
      background: linear-gradient(135deg, #6366f1, #4f46e5);
      color: #fff;
      font-size: 10px; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
      padding: 4px 10px; border-radius: 50px;
    }
    .tav-card-2 .tav-badge {
      background: rgba(255,255,255,0.25);
      color: #fff;
    }

  
    @media (max-width: 991px) {
      .tav-section { padding: 70px 0; min-height: auto; }
      .tav-left { margin-bottom: 0px; }
      .tav-sub { max-width: 100%; margin-bottom: 0; }
    }
    @media (max-width: 575px) {
      .tav-section { padding: 60px 0; }
      .tav-heading { letter-spacing: -1px; }
      .tav-card { padding: 28px 24px; }
    }

   

    
.visa-section .bg-shape{
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    filter: blur(100px);
    z-index:0;
}

.visa-section .shape1{
    background:#3b82f6;
    top:5%;
    left:5%;
    opacity:0.15;
}

.visa-section .shape2{
    background:#f59e0b;
    bottom:5%;
    right:5%;
    opacity:0.15;
}

 
.visa-section{
    padding:50px 0;
    position:relative;
    z-index:1;
    text-align:center;
     background: #f6f9fc;
}

.visa-section .visa-title{
    font-size:42px;
    font-weight:700;
    color:#0c1f45;
}

.visa-section .visa-sub{
    color:#6b7280;
}

 
.visa-section .visa-card{
    background: rgba(255,255,255,0.7);
    border-radius:25px;
    padding:40px;
    backdrop-filter: blur(20px);
    border:1px solid rgba(255,255,255,0.6);
    position:relative;
    transition:0.4s;
}
 
.visa-section .visa-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:25px;
    padding:1.5px;
    background: linear-gradient(135deg,#3b82f6,#f59e0b);
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

 
.visa-section .visa-card:hover{
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

 
.visa-section .badge-custom{
    padding:6px 15px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;
    display:inline-block;
}

.visa-section .badge-yellow{
    background:#249256;
    color:#fff;
}

.visa-section .badge-blue{
    background:#0c66ff;
    color:#ffffff;
}

 
.visa-section .card-title{
    font-size:28px;
    font-weight:700;
    color:#0c1f45;
}

.visa-section .card-sub{
    color:#6b7280;
    margin-bottom:20px;
}

 
.visa-section .feature{
    background:#f1f5f9;
    padding:12px;
    border-radius:10px;
    margin-bottom:10px;
    transition:0.3s;
}

.visa-section .feature:hover{
    background:#e2e8f0;
    transform: translateX(5px);
}

 
.visa-section .btn-custom{
    width:100%;
    padding:14px;
    border-radius:50px;
    border:none;
    font-weight:600;
    margin-top:20px;
    position:relative;
    overflow:hidden;
    display:inline-block;
    text-decoration:none;
}

 
.visa-section .btn-yellow{
    background: linear-gradient(135deg, #0daa20, #198754);
    color:#ffffff;
}

.visa-section .btn-blue{
    background: linear-gradient(135deg, #0050ff, #0061ff);
    color:#fff;
}
 
.visa-section .btn-custom::after{
    content:"";
    position:absolute;
    width:200%;
    height:200%;
    background: radial-gradient(circle,rgba(255,255,255,0.5),transparent);
    top:-100%;
    left:-100%;
    transition:0.5s;
}

.visa-section .btn-custom:hover::after{
    top:0;
    left:0;
}

 
@media(max-width:768px){
    .visa-section .visa-title{
        font-size:30px;
    }
}
 .eligible_country .nav-pills .nav-link.active, .eligible_country .nav-pills .show>.nav-link{
     background-color: #5854ea!important;
 }


.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;
  }
}






