:root {
  --primary-color: #7affb1;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  border-radius: 50px;
  background-color: var(--primary-color);
}

::-webkit-scrollbar-track {
  background-color: #e8e8e8;
}

 
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
   font-family: "Montserrat", sans-serif;
   scroll-behavior: smooth;
}

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;
}
.fs-14{
  font-size: 12px;
}

/* Owl Dots Style */

.owl-dots{
    text-align:center;
    margin-top:25px;
}

.owl-dots .owl-dot{
    height:10px;
    width:10px;
    margin:5px;
    background:#cfcfcf !important;
    display:inline-block;
    border-radius:50%;
    transition:0.3s;
}

.owl-dots .owl-dot.active{
    background:var(--primary-color) !important;
    width:25px;
    border-radius:20px;
}

/* ===================== 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: #000;
  background: var(--primary-color);
}
.btn-1:hover {
  color: #fff;
  background: var(--primary-color);
}
.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:relative;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  transition: 0.5s ease;
  z-index: 997;
  padding: 10px 0;
}
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: 50px;
}
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{
  margin-left: auto;
}
header .header .navs > ul > li {
  position: relative;
  display: inline-block;
  margin: 0 20px;
}
header .header .navs > ul{
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 0;
}
header .header .navs > ul > li > a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  color: #000;
  padding: 5px 20px;
  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: var(--primary-color);
  border-radius: 30px;
}
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: 6px;
  padding: 8px 10px;
}
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: 50px;
  }
  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: 160px;
  opacity: 0;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

/* Show submenu */
header .header .navs ul li:hover > .sub-menu{
  opacity: 1;
  visibility: visible;
}

header .header .navs .sub-menu .sub-menu{
  top: 0;
  left: 108%;
  width: 180px;
}

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(280deg);
}

.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: 14px;
  font-weight: 400;
  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 ======================== */

#banner{
  position: relative;
  min-height:100vh;
}
#banner .slide{
  background-position: 100% 61%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  
}
#banner .one{
  background-image: url('../img/banner.webp');
  height: 90vh;
}
#banner .two{
  background-image: url('../img/banner2.webp');
  height: 90vh;
}
#banner .banner-content{
  position: absolute;
  top: 20%;
  left: 8%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  color: #000;
  width: 50%;
}
#banner .banner-content h1{
  color: #000;
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 10px;
}
#banner .banner-content p{
  color: #000;
  font-size: 14px;
  padding-bottom: 20px;
}
#banner .banner-content a.btn{
  padding: 12px 25px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}
#banner .owl-dots{
  margin-top: -30px;
  z-index: 99;
  position: relative;
}

@media(max-width:768px){
  #banner .slide{
    background-position: center;
  }
  #banner .banner-content {
    position: absolute;
    top: 15%;
    left: 2%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 20px;
    color: #000;
    width: 96%;
  }
  #banner .banner-content h1 {
    color: #000;
    font-size: 22px;
    font-weight: 600;
  }

}

/* Section */
.about-section{
    padding:80px 0 40px;
}

/* Glass Card */
.about-card{
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 40px rgba(0,0,0,0.1);
    transition:0.4s;
}

.about-card:hover{
    transform:translateY(-10px);
}

/* Image */
.about-img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* Heading */
.about-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
}

/* Highlight */
.highlight{
    color:var(--primary-color);
}

/* Text */
.about-text{
    color: #555;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    margin-bottom: 10px;
}

/* Button */
.about-btn{
    margin-top:20px;
    padding:12px 30px;
    border:none;
    border-radius:30px;
    background:#000;
    color:white;
    font-weight:500;
    transition:0.3s;
}

.about-btn:hover{
    transform:scale(1.05);
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width:768px){
    .about-title{
        font-size:28px;
    }
}

/* SECTION */
.steps-section{
    padding:40px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-weight:700;
    font-size: 32px;
}

.section-title span{
    width:60px;
    height:4px;
    background:var(--primary-color);
    display:block;
    margin:10px auto;
    border-radius:10px;
}

/* STEPS WRAPPER */
.steps-wrapper{
    position:relative;
}

/* LINE */
.steps-line{
    position:absolute;
    top:35px;
    left:0;
    width:100%;
    height:2px;
    background:#e5e7eb;
    z-index:0;
}

/* STEP */
.step-item{
    text-align:center;
    position:relative;
    z-index:1;
    margin: 0;
}

/* ICON */
.step-icon{
    width:70px;
    height:70px;
    background:#fff;
    border:2px solid var(--primary-color);
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    margin:0 auto 20px;
    transition:0.3s;
}

/* HOVER */
.step-item:hover .step-icon{
    background:var(--primary-color);
    color:#000;
    transform:scale(1.1);
}

/* CARD */
.step-card{
    background:#fff;
    padding:10px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.3s;
    height:200px;
}

.step-card:hover{
    transform:translateY(-8px);
}

/* TEXT */
.step-number{
    font-size:14px;
    color:#999;
    margin-bottom:5px;
}

.step-card h5{
    font-weight:600;
}

.step-card p{
    font-size:14px;
    color:#666;
    padding-top: 20px;
}

/* MOBILE */
@media(max-width:768px){

.steps-line{
    display:none;
}

.step-item{
    margin-bottom:30px;
}

}


/* SECTION */
.country-section {
  width: 100%;
  overflow: hidden;
}

/* ROW */
.country-section .country-row {
  height: 100%;
}

/* IMAGE */
.country-section .country-img {
  position: relative;
  overflow: hidden;
}

.country-section .country-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* Overlay Gradient */
.country-section .country-img::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(120deg, rgba(0,0,0,0.5), rgba(0,0,0,0.1)); */
}

/* Hover Effect */
.country-section .country-img:hover img {
  transform: scale(1.1);
}

/* CONTENT */
.country-section .country-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 50px;
}
.country-section .content-box{
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}
.country-section .content-box h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.country-section .content-box p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 28px;
    text-align: justify;
}

/* BUTTON */
.country-section .btn-country {
  display: inline-block;
  padding: 12px 30px;
  background:#000;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.country-section .btn-country:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {

 .country-section .country-row {
    flex-direction: column !important;
  }

}



/* Section */
.premium-section{
  padding:40px 0;
  background:#fff;
}

/* Glass Card */
.premium-section .custom-card{
  padding:18px 20px;
  border-radius:16px;
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.3);
  box-shadow:0 10px 25px rgba(0,0,0,0.05);
  transition:.3s;
  height:100%;
}

.premium-section .custom-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.premium-section .custom-card h5{
  font-weight:600;
  font-size:16px;
  margin-bottom:6px;
}

.premium-section .custom-card p{
  font-size:13px;
  color:#6b7280;
  margin:0;
  line-height: 24px;
}

/* Center Image */
.premium-section .image-box{
  position:relative;
  text-align:center;
}

.premium-section .image-box img{
  width:100%;
  position:relative;
  z-index:2;
}

.premium-section .circle-bg{
  position:absolute;
  width:300px;
  height:300px;
  background:linear-gradient(135deg,#ff7a18,#4ade80);
  border-radius:50%;
  filter:blur(60px);
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  opacity:.4;
}

/* Mobile tweak */
@media(max-width:768px){
  .premium-section{
    padding:20px 0px;
  }
  .premium-section .image-box{
    margin:40px 0;
  }
}



/* Section */
.offer-section {
      padding: 20px 0;
      text-align: center;
  }


  /* Card Style */
.offer-section  .pin-card {
      position: relative;
      padding: 25px;
      border-radius: 20px;
      background: #fff;
      box-shadow: 0 15px 35px rgba(0,0,0,0.08);
      transition: 0.4s;
      height: 100%;
  }

  /* Hover Effect */
.offer-section .pin-card:hover {
      transform: translateY(-10px) rotate(0deg) scale(1.02);
  }


  /* Pin Style */
.offer-section  .pin {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  }

  /* Pin Colors */
.offer-section  .pin.blue { background: #4dabf7; }
.offer-section  .pin.green { background: #51cf66; }
.offer-section  .pin.red { background: #ff6b6b; }

  /* Text */
.offer-section  .pin-card h5 {
      font-weight: 600;
      margin-bottom: 10px;
      font-size: 20px;
  }

.offer-section  .pin-card p {
      font-size: 14px;
      color: #666;
      line-height: 24px;
  }
.offer-section  .pin-card .box{
  padding: 15px;
  border-radius: 20px;
  text-align: start;
  height: 100%;
}
.offer-section  .pin-card a{
  text-decoration: none;
  margin-top: 10px;
  display: block;
}
.blue-light{
    background-color: #eef6ff;
  }
.green-light{
  background-color: #ecfdf5;
}
.red-light{
  background-color: #fef2f2;
}

  /* Responsive */
  @media (max-width: 768px) {
  .offer-section    .pin-card {
          margin-bottom: 30px;
          transform: rotate(0deg) !important;
      }
  }


.faq-section {
    padding: 20px 0 0;
    position: relative;
}

/* Counter */
.faq-section .accordion {
    counter-reset: faq-counter;
}

.faq-section .accordion-item {
    counter-increment: faq-counter;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    border: none;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
}

/* Number Badge */
.faq-section .accordion-button::before {
    content: counter(faq-counter);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    background: #000;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

/* Header */
.faq-section .accordion-button {
    background: transparent;
    font-weight: 600;
    font-size: 18px;
    padding: 20px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}

/* REMOVE default arrow */
.faq-section .accordion-button::after {
    display: none;
}

/* PLUS ICON */
.faq-section .accordion-button::after {
    content: "+";
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    color: #ffbd6b;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(255, 189, 107, 0.15);
    transition: 0.3s;
}

/* MINUS when active */
.faq-section .accordion-button:not(.collapsed)::after {
    content: "−";
    background: #000;
    color: #fff;
}

/* Active text */
.faq-section .accordion-button:not(.collapsed) {
    color: #000;
    box-shadow: none;
    background-color: #7affb15c;
}

/* Body */
.faq-section .accordion-body {
    color: #555;
    line-height: 22px;
    padding: 10px;
    font-size: 14px;
}

/* Top gradient line */
.faq-section .accordion-item::before {
    content: "";
    height: 4px;
    width: 100%;
    background: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
}
.faq-section .img img{
    width: 40%;
    margin: 0 auto;
    display: block;
    position: absolute;
    bottom: 0px;
}

#cta{
  padding: 80px 0 40px;
}
#cta .container{
  background-color: #7affb15c;
  border-radius: 10px;
  position: relative;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#cta .des h6{
  font-size: 30px;
  font-weight: 800;
}
#cta .des p{
  font-size: 16px;
  padding: 20px 0;
}
#cta .img img{
    width: 20%;
    position: absolute;
    right: 25px;
    top: -30px;
}
#cta .des a{
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* ======================== */
/* PREMIUM FOOTER */
/* ======================== */

.footer .container{
  background: linear-gradient(135deg, #000000, #084298);
  color: #cbd5e1;
  padding: 20px;
  position: relative;
  border-radius: 20px;
}
.footer-top-shape{
  position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    z-index: 2;
    transform: rotate(180deg);
}
.footer-top-shape img{
  width: 100%!important;
}
.footer img{
  width: 50px;
}

.footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 3px solid #ff5f6d;
  max-width: max-content;
}

.footer p {
  font-size: 14px;
  width: 100%;
  line-height: 1.7;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
  display: block;
  margin-bottom: 10px;
}
.footer p a{
  display: inline;
}
.footer p a:hover {
  color: #6366f1;
  padding-left: 0px;
}

.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;
}


/* ===== HERO ===== */
.breadcrumb {
    height: 350px;
    background: url('../img/bred.webp') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.breadcrumb::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 80, 0.6);
}
.breadcrumb-content {
    position: relative;
    text-align: center;
}
.breadcrumb h1 {
    font-size: 48px;
    font-weight: 700;
}
.breadcrumbs {
    justify-content: center;
    background: transparent;
    color: #ddd;
}

/* ===== CONTACT SECTION ===== */
.contact-wrapper {
    margin-top: -80px;
}

.contact-box {
    background: #eef3f6;
    padding: 30px;
    border-radius: 20px;
    margin-top: 100px;
    margin-bottom: 30px;
}

.contact-info {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info i {
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* ===== FORM ===== */
.form-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 12px;
}

.btn-submit {
    background: #7ac142;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    color: #fff;
    font-weight: 500;
}

.btn-submit:hover {
    background: #65a832;
}



/* Section Card */

.about-desc{
  background:white;
  padding:20px;
  margin-bottom:25px;
  border-radius:20px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  border-left:4px solid var(--primary-color);
  transition:.3s;
}

.about-desc:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.about-desc h3{
  font-size:24px;
  margin-bottom:15px;
  color:#111;
}

.about-desc p{
  font-size:15px;
  line-height:1.8;
  color:#555;
}

.about-desc ul{
  padding-left:18px;
  margin-top:10px;
}

.about-desc li{
  margin-bottom:8px;
  color:#555;
}


@media(max-width:600px){

  .about-desc{
    padding:22px;
  }

}

#pricing{
  padding: 20px 0;
}
#pricing .box{
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    margin-bottom: 30px;
}

#pricing .head{
  margin-bottom: 30px;
}


/* Card */
#pricing .premium-card{
    border-radius:18px;
    border:1px solid #e9edf5;
    background:#fff;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.05),
        0 4px 10px rgba(0,0,0,0.03);
    transition:0.4s;
    padding:28px;
}

#pricing .premium-card:hover{
    transform:translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.08);
}

/* Badge */
#pricing .badge-custom{
    background:#eef4ff;
    color:#2b6fff;
    padding:6px 12px;
    border-radius:8px;
    font-size:12px;
}

/* Price */
#pricing .price h2{
    font-size:34px;
    font-weight:700;
}

/* Features */
#pricing .features li{
    margin-bottom:10px;
    padding-left:24px;
    position:relative;
}

#pricing .features li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#2b6fff;
}

/* Info */
#pricing .info-box{
    background:#f3f6fb;
    border:1px solid #e6ebf2;
    border-radius:10px;
    padding:12px;
    font-size:13px;
}

/* Button */
#pricing .btn-premium{
    background:linear-gradient(45deg,#2b6fff,#4facfe);
    color:#fff;
    border:none;
    border-radius:10px;
    padding:14px;
    font-weight:500;
    transition:0.3s;
}

#pricing .btn-premium:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(43,111,255,0.25);
    color:#fff;
}

/* Learn */
#pricing .learn{
    text-decoration:none;
    color:#777;
    font-size:13px;
}

#pricing .learn:hover{
    color:#2b6fff;
}


/* Section Box */
#pricing-steps .section-box{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

/* Heading */
#pricing-steps .section-title{
    font-weight:600;
    font-size:22px;
}

/* Card */
#pricing-steps .feature-card{
    background:#fff;
    border-radius:16px;
    padding:25px;
    text-align:center;
    border:1px solid #eef1f6;
    transition:all 0.35s ease;
    will-change: transform;
}

/* Smooth Hover */
#pricing-steps .feature-card:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
    border-color:#dbe7ff;
}

/* Icon */
#pricing-steps .icon-box{
    width:60px;
    height:60px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    background:var(--primary-color);
    color:#fff;
    margin-bottom:15px;
    box-shadow:0 10px 20px rgba(43,111,255,0.25);
    transition:0.3s;
}

/* Icon Animation */
#pricing-steps .feature-card:hover .icon-box{
    transform:scale(1.1) rotate(5deg);
}

/* Title */
#pricing-steps .feature-title{
    font-weight:600;
    margin-bottom:8px;
    font-size:16px;
}

/* Text */
#pricing-steps .feature-text{
    font-size:14px;
    color:#666;
}



 /* Glass Card Style */
        .premium-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }
        .premium-card p{
          font-size: 14px;
          margin-bottom: 10px;
        }

        .premium-card:hover {
            transform: translateY(-10px);
        }

        .section-tag {
            text-transform: uppercase;
            font-weight: 700;
            color: #c5a059;
            letter-spacing: 2px;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 10px;
        }

        .display-heading {
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 25px;
        }

        /* Support List Styling */
        .support-list {
            list-style: none;
            padding: 0;
        }

        .support-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: flex-start;
        }

        .support-list li i {
            color: var(--primary-color);
            margin-right: 15px;
            margin-top: 5px;
        }

        /* MARN Badge */
        .marn-badge {
            background: #fff;
            border-left: 4px solid #1a1a1a;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            font-size: 0.95rem;
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #1a1a1a;
        }
        .premium-card ul{
          padding: 10px;
        }
        .premium-card ul li{
          list-style: none;
          font-size: 14px;
          padding-bottom: 10px;
        }
        .premium-card ul li i{
          color: var(--primary-color);
        }
        .premium-card .c-btn{
          display: inline-block;
          padding: 12px 30px;
          background: var(--primary-color);
          color: #fff;
          border-radius: 50px;
          text-decoration: none;
          transition: 0.3s ease;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .premium-card { padding: 25px; }
        }



.disclaimer-wrapper{
  padding:20px 0;
}

.disclaimer-wrapper .disclaimer-card{
  background:#ffffff;
  border-radius:20px;
  padding:30px;
  box-shadow:0 20px 60px rgba(0,0,0,0.05);
  border:1px solid #eef1f6;
}

.disclaimer-wrapper .disclaimer-title::after{
  content:"";
  width:60px;
  height:4px;
  background:#4f46e5;
  position:absolute;
  bottom:-10px;
  left:0;
  border-radius:5px;
}

.disclaimer-wrapper .section-block{
  margin-bottom:40px;
}

.disclaimer-wrapper .section-title{
  font-size:28px;
  font-weight:600;
  margin-bottom:15px;
  color:#111827;
  text-align: start;
}

.disclaimer-wrapper .section-text{
  font-size:15px;
  line-height:1.8;
  color:#4b5563;
  margin-bottom: 10px;
}

.disclaimer-wrapper .list-style{
  padding-left:20px;
}

.disclaimer-wrapper .list-style li{
  margin-bottom:10px;
}

.disclaimer-wrapper .highlight-box{
  background:#f1f5ff;
  padding:20px;
  border-radius:12px;
  border-left:4px solid #4f46e5;
  margin-top:15px;
}

.disclaimer-wrapper .footer-box{
  background:#111827;
  color:#fff;
  padding:20px;
  border-radius:15px;
  margin-top:40px;
}

.disclaimer-wrapper .footer-box p{
  margin:5px 0;
}

@media(max-width:768px){
.disclaimer-wrapper  .disclaimer-card{
    padding:25px;
  }

.disclaimer-wrapper  .disclaimer-title{
    font-size:26px;
  }
}



 .wyg-section {
      background: #ffffff;
      padding: 100px 0 110px;
      overflow: hidden;
      position: relative;
    }

    /* dot grid bg */
    .wyg-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(0,0,0,0.042) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    /* top accent */
    .wyg-section::after {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 60px; height: 3px;
      background: linear-gradient(90deg, #1e3a6e, #3b6bc4);
      border-radius: 0 0 4px 4px;
    }

    /* ── HEADER ── */
    .wyg-header {
      margin-bottom: 64px;
      position: relative; z-index: 2;
    }
    .wyg-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      margin-bottom: 18px;
    }
    .wyg-ew-line { width: 28px; height: 2px; background: #1e3a6e; border-radius: 2px; }
    .wyg-ew-text {
      font-size: 11px; letter-spacing: 3px;
      text-transform: uppercase; font-weight: 700;
      color: #1e3a6e;
    }
    .wyg-heading {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800; color: #0f172a;
      letter-spacing: -1.5px; line-height: 1.1;
      margin-bottom: 14px;
    }
    .wyg-heading em { font-style: italic; color: var(--primary-color); }
    .wyg-sub {
      font-size: 15px; font-weight: 300;
      color: #64748b; line-height: 1.8;
      max-width: 500px;
    }

    /* ── CARDS ── */
    .wyg-card {
      background: #f8fafc;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 24px;
      padding: 36px 28px 32px;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: all .35s cubic-bezier(.34,1.4,.64,1);
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    }

    /* hover state */
    .wyg-card:hover {
      background: #ffffff;
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(30,58,110,0.12);
      border-color: rgba(30,58,110,0.15);
    }

    /* top color bar */
    .wyg-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      border-radius: 24px 24px 0 0;
      opacity: 0;
      transition: opacity .3s;
    }
    .wyg-card:hover::before { opacity: 1; }
    .wyg-cb-1::before { background: linear-gradient(90deg, #1e3a6e, #3b6bc4); }
    .wyg-cb-2::before { background: linear-gradient(90deg, #0891b2, #38bdf8); }
    .wyg-cb-3::before { background: linear-gradient(90deg, #059669, #34d399); }
    .wyg-cb-4::before { background: linear-gradient(90deg, #7c3aed, #a78bfa); }

    /* big bg number */
    .wyg-bg-num {
      position: absolute;
      bottom: -10px; right: 10px;
      font-size: 90px; font-weight: 800;
      color: rgba(0,0,0,0.03);
      line-height: 1; pointer-events: none;
      transition: color .3s;
      letter-spacing: -4px;
    }
    .wyg-card:hover .wyg-bg-num { color: rgba(30,58,110,0.05); }

    /* icon */
    .wyg-icon-wrap {
      width: 60px; height: 60px; border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      margin-bottom: 24px;
      transition: all .3s ease;
      position: relative; z-index: 1;
    }
    .wyg-card:hover .wyg-icon-wrap { transform: rotate(-6deg) scale(1.1); }

    .wyg-iw-1 { background: rgba(30,58,110,0.08);  color: #1e3a6e; }
    .wyg-iw-2 { background: rgba(8,145,178,0.08);  color: #0891b2; }
    .wyg-iw-3 { background: rgba(5,150,105,0.08);  color: #059669; }
    .wyg-iw-4 { background: rgba(124,58,237,0.08); color: #7c3aed; }

    .wyg-card:hover .wyg-iw-1 { background: #1e3a6e; color: #fff; }
    .wyg-card:hover .wyg-iw-2 { background: #0891b2; color: #fff; }
    .wyg-card:hover .wyg-iw-3 { background: #059669; color: #fff; }
    .wyg-card:hover .wyg-iw-4 { background: #7c3aed; color: #fff; }

    /* title */
    .wyg-title {
      font-size: 18px; font-weight: 600;
      color: #0f172a; letter-spacing: -0.4px;
      line-height: 1.3; margin-bottom: 12px;
      position: relative; z-index: 1;
    }

    /* desc */
    .wyg-desc {
      font-size: 14px; font-weight: 300;
      color: #64748b; line-height: 1.8;
      margin: 0; position: relative; z-index: 1;
    }

    /* learn more */
    .wyg-link {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 20px;
      font-size: 13px; font-weight: 600;
      text-decoration: none;
      opacity: 0; transform: translateY(6px);
      transition: all .3s;
      position: relative; z-index: 1;
    }
    .wyg-card:hover .wyg-link { opacity: 1; transform: translateY(0); }
    .wyg-l-1 { color: #1e3a6e; }
    .wyg-l-2 { color: #0891b2; }
    .wyg-l-3 { color: #059669; }
    .wyg-l-4 { color: #7c3aed; }
    .wyg-link i { font-size: 11px; transition: transform .25s; }
    .wyg-link:hover i { transform: translateX(3px); }

    /* ── BOTTOM BANNER ── */
    .wyg-banner {
      margin-top: 56px;
      border-radius: 24px;
      background: #000;
      padding: 48px 52px;
      display: flex; align-items: center;
      justify-content: space-between; gap: 32px;
      position: relative; overflow: hidden;
      box-shadow: 0 20px 60px rgba(30,58,110,0.25);
      z-index: 2;
    }
    /* banner glow */
    .wyg-banner::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 300px; height: 300px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
      pointer-events: none;
    }
    .wyg-banner-left {}
    .wyg-banner-title {
      font-size: 22px; font-weight: 800;
      color: #ffffff; letter-spacing: -0.5px;
      margin-bottom: 8px;
    }
    .wyg-banner-sub {
      font-size: 14px; font-weight: 300;
      color: rgba(255,255,255,0.6); line-height: 1.7;
      max-width: 480px;
    }
    .wyg-banner-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--primary-color); color: #000;
      border: none; border-radius: 14px;
      padding: 15px 28px;
      font-size: 14px; font-weight: 600;
      cursor: pointer; white-space: nowrap;
      text-decoration: none; flex-shrink: 0;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      transition: all .25s;
    }
    .wyg-banner-btn:hover {
      background: #f0f6ff; color: #1e3a6e;
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(0,0,0,0.3);
    }
    .wyg-banner-btn i { transition: transform .25s; }
    .wyg-banner-btn:hover i { transform: translateX(3px); }

    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      .wyg-section { padding: 70px 0 80px; }
      .wyg-banner { flex-direction: column; padding: 36px 28px; text-align: center; }
      .wyg-banner-sub { max-width: 100%; }
    }
    @media (max-width: 767px) {
      .wyg-section { padding: 60px 0 70px; }
      .wyg-heading { letter-spacing: -1px; }
      .wyg-banner-btn { width: 100%; justify-content: center; }
    }



@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;
}
.section-title h2 {
        font-weight: 700;
        font-size: 26px;
    }
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.country-section .country-content{
  padding: 20px;
}
.country-section .content-box{
  padding: 15px;
}
.country-section .content-box h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}
.country-section .content-box p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 26px;
}
.about-card{
  padding: 15px;
}
.about-text {
    color: #555;
    font-size: 14px;
    line-height: 26px;
}
.breadcrumb{
  background-position: 75% 100%;
}
.contact-box{
  padding: 20px;
}
.breadcrumb h1 {
    font-size: 28px;
    font-weight: 700;
}
#pricing-steps .section-box{
  padding: 10px;
}
#pricing-steps .feature-card{
  margin-bottom: 20px;
}
#pricing-steps .section-title {
    font-weight: 600;
    font-size: 20px;
    text-align: start;
}
.step-card{
  height: 150px;
}
.country-section .content-box h3{
  font-size: 24px;
}
.about-img{
  margin-bottom: 20px;
}
#cta .des h6 {
    font-size: 22px;
    font-weight: 800;
}
#cta .des p {
    font-size: 14px;
    padding: 20px 0;
}
#cta .img img{
  display: none;
}
.fs-14 {
    font-size: 12px;
    padding: 0 20px 10px;
}
.faq-section .img img{
  display: none;
}

}

.num {
    padding: 10px 14px;
    background: #e1edff;
    border: 1px solid #949494;
    border-radius: 4px;
}

