: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, #e11d48, #fb7185);
}
.btn-1:hover {
  color: #fff;
  background: linear-gradient(135deg, #e11d48, #fb7185);
}
.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, #e11d48, #fb7185);
}
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 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/canada_banner.webp") center/cover no-repeat;
  border-radius: 30px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:linear-gradient(135deg, rgb(0 0 0 / 23%), rgb(0 0 0 / 18%));
}

.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: #e11d48;
  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);
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 30px;
    font-weight: 700;
  }
  .hero-content{
    width: 100%;
  }
}

/* ======================== */
/* 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 #e11d48;
  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;
  gap: 50px;
  position: relative;
  overflow: hidden;
  align-items: center;
}

/* subtle background shape */
.about-wrapper::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #e11d48, #fb7185);
  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: 20px;
}

.badge {
  display: inline-block;
  padding: 10px 18px;
  background: #f7657c66;
  color: #000;
  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 #f7657c66;
}
.about-section .custom-btn {
  background: linear-gradient(135deg, #e11d48, #fb7185);
  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: 40px 10px;
}

.header-title {
  text-align: center;
  gap: 20px;
  margin-bottom: 60px;
}

.header-title h2 {
  font-size: 44px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.header-title h2 span {
  background: linear-gradient(135deg, #e11d48, #fb7185);
  -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(200px, 1fr));
  gap: 25px;
}

/* Card */

.country-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgb(228 37 78);
  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;
}


/* Button */

.section .btn-wrapper {
  text-align: center;
  margin-top: 100px;
  z-index: 99;
  position: relative;
}

.toggle-btn {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  background:#e11d48;
  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 12px 30px rgba(225, 29, 72, 0.45);
  border: none;
}

.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: 26px;
    padding-bottom: 5px;
  }
  .country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
  .section {
    padding: 40px 20px;
  }
  .section .header-title{
    margin-bottom: 30px;
  }
}

/* CTA Section */
.cta-bg-section {
  position: relative;
  background: url("../img/cta-ca.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: 18px 45px 18px;
  font-weight: 600;
  border-radius: 50px;
  background:#e11d48;
  border: none;
  color: #fff;
  transition: 0.3s ease;
  text-decoration: none;
}

.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: 40px 0;
  }
  .faq-subtitle{
    font-size: 16px;
  }
}

#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, #e11d48, #fb7185);
  color: #fff;
  padding: 16px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 25px;
}

#about-ser .btn-custom:hover {
  background: linear-gradient(135deg, #e11d48, #fb7185);
  color: #fff;
}
#about-ser .img img {
  width: 100%;
}
#about-ser .company-box:hover .company-icon {
  background: linear-gradient(135deg, #e11d48, #fb7185);
  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, #e11d48, #fb7185);
  -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:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.15);
}

.step-card .step-number {
  width: 55px;
  height: 55px;
  background:#e11d48;
  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: 20px;
}
.how-it-works h2 span {
  background: linear-gradient(135deg, #e11d48, #fb7185);
  -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: #e11d48;
}

.how-it-works .step h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.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;
  }
  .step-card{
    padding: 20px 10px;
  }
  .step-card h6{
    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;
  }
}

/* Section spacing */
.faq-section {
  padding: 40px 0;
}

/* Badge */
.faq-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #f7657c66;
  color: #000;
  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, #e11d48, #fb7185);
  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: #e11d48;
  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 ul {
    padding: 0 20px;
}

.premium-section .stack-card {
  position: sticky;
  top: 140px;
  padding: 70px;
  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;
}

.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;
    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: 30px;
  }

  .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: 20px;
  }
  .premium-section .stack-card:nth-child(6){
    background: #fff;
    height: unset !important;
  }
}

/* ===== 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;
  }
  .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); }
}

/* Responsive */
@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;
}

/* 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;
}


.btn-primary{
    background:#e11d48;
    border-radius:50px;
    border:none;
}
























