:root {
  --primary-color: #00f;
}

::-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: "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;
}

/* 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: 15px;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
  background: #dc3545;
}
.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 {
  
  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: 84px;
}
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: 60px;
  }
  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 ======================== */





/* ðŸ”¥ Background Blobs */
.bg-blur {
    position: absolute;
    width: 500px;
    height: 500px;
    background:#c7c7c7;
    filter: blur(120px);
    opacity: 0.3;
    top: -100px;
    left: -100px;
}

.bg-blur2 {
    position: absolute;
    width: 500px;
    height: 500px;
    background:#b1b1b152;
    filter: blur(120px);
    opacity: 0.3;
    bottom: -100px;
    right: 0px;
}

/* Section */
.hero {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

/* Title */
.hero .title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
}

.hero .title span {
    background: linear-gradient(90deg, #000, #00f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .desc {
    color: #64748b;
    margin-top: 15px;
    font-size: 17px;
}

/* Floating Card */
.hero .floating-card {
    margin-top: 50px;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(25px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.hero .floating-card:hover {
    transform: translateY(-10px) scale(1.02);
}


/* Button */
.hero .btn-premium {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-weight: 600;
    color: #fff;
    background:#dc3545;
    box-shadow: 0 10px 30px rgba(79,70,229,0.4);
    transition: 0.3s;
    display:inline-block;
    text-decoration:none!important;
    text-align:center;
}

.hero .btn-premium:hover {
    transform: translateY(-3px);
}

/* Image Box */
.hero .img-wrapper {
    position: relative;
}

.hero .img-main {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}


/* Responsive */
@media(max-width: 991px){
  .hero{
    padding: 40px 0;
  }
    .hero .title {
        font-size: 28px;
    }
    .hero .hero {
        padding: 70px 0;
    }
    .bg-blur{
      width: 450px;
    }
    .bg-blur2{
      width: 350px;
    }
    .hero .img-main{
      margin-top:20px;
    }
}

/* Input */
.input-group-modern {
    position: relative;
}

.input-group-modern i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #94a3b8;
}

.input-modern {
    padding: 12px 12px 12px 38px;
    border-radius: 12px;
    border: 1px solid #e0e7ff;
    transition: 0.3s;
}

.input-modern:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.section-title{
  margin-bottom: 40px;
}

.section-title h3{
    font-weight:700;
    font-size: 32px;
    text-align: center;
}

.section-title span{
    width:60px;
    height:4px;
    background:var(--primary-color);
    display:block;
    margin:10px auto;
    border-radius:10px;
}


#documents-section{
  overflow: hidden;
  padding: 40px 0;
}
/* FIX CUT ISSUE */
#documents-section .owl-carousel .owl-stage-outer{
  overflow: visible !important;
}

#documents-section .owl-carousel{
  padding-top:70px;
}

/* ALIGN */
#documents-section .owl-carousel .owl-stage{
  display:flex;
  align-items:stretch;
}

/* CARD */
#documents-section .slider-card{
  background:#fff;
  border-radius:24px;
  padding:20px 39px ; 
  height:100%;
  transition:all 0.5s ease;
  border:1px solid #e5e7eb;
  position:relative;
  overflow:hidden;
}

#documents-section .slider-card:hover::before{
  opacity:1;
}

/* TEXT */
#documents-section .slider-card h5{
  font-weight:600;
  margin-bottom:12px;
}

#documents-section .slider-card p{
  font-size:14px;
  color:#6b7280;
  line-height:1.7;
}

/* TAG */
#documents-section .tag{
  display:inline-block;
  font-size:12px;
  padding:6px 12px;
  border-radius:20px;
  background:var(--primary-color);
  opacity: 0.4;
  color:#fff;
  margin-bottom:12px;
}

/* SIDE ITEMS */
#documents-section .owl-item .slider-card{
  transform:scale(0.9);
  opacity:0.65;
}

/* ðŸ”¥ CENTER ITEM */
#documents-section .owl-item.center .slider-card{
  transform:scale(1.1) translateY(-10px);
  opacity:1;
  box-shadow:0 30px 80px rgba(0,0,0,0.15);
  border-color:#00247d40;
  z-index:2;
}

/* FLOAT ANIMATION */
@keyframes float{
  0%{ transform:translateY(-10px);}
  50%{ transform:translateY(-16px);}
  100%{ transform:translateY(-10px);}
}

#documents-section .owl-item.center .slider-card{
  animation:float 3s ease-in-out infinite;
}

/* NAV */
#documents-section .owl-nav button{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:50%!important;
  background:#fff!important;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

#documents-section .owl-nav .owl-prev{ left:-75px; }
#documents-section .owl-nav .owl-next{ right:-75px; }

#documents-section .owl-nav span{
  font-size:26px;
  color:#ff9800;
}

/* MOBILE */
@media(max-width:768px){
 #documents-section  .owl-item .slider-card{
    transform:scale(0.95);
    opacity:1;
  }
 #documents-section  .owl-item.center .slider-card{
    transform:scale(1.05);
    animation:none;
  }
}


/* ABOUT SECTION */
.about-section {
  
  position: relative;
  background: #f4f6f9;
  padding: 40px 0;
  view-timeline-name: --about;
  view-timeline-axis: block;
}

/* Sticky */
.sticky-wrapper {
  position: sticky;
  top: 90px;
}

/* Premium Box */
.about-box {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Image */
.about-img img {
  width: 100%;
  border-radius: 20px;
  /*animation: imageScale linear;*/
  /*animation-timeline: --about;*/
  /*animation-range: entry 10% cover 80%;*/
      max-height: 400px;
    object-fit: cover;
}

/* Text */
.about-content h2 {
  font-size: 30px;
  font-weight: 700;
  
}

.about-content p {
  font-size: 15px;
  color: #555;
  margin-bottom:10px;
}

/* Animations */
@keyframes imageScale {
  from { transform: scale(1.10); }
  to { transform: scale(0.9); }
}

@keyframes textGrow {
  from { font-size: 30px; }
  to { font-size: 44px; }
}

@keyframes textGrowP {
  from { font-size: 15px; opacity: 0.7; }
  to { font-size: 18px; opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .sticky-wrapper {
    position: relative;
    top: 0;
  }

  .about-box {
    padding: 30px;
  }

  .about-content {
    text-align: center;
    margin-top: 30px;
  }
}

/* Section */
.process-section{
  padding:100px 0 50px;
}

/* LEFT SIDE */
.process-section .left-content{
  position: sticky;
  top: 100px;
}

.process-section .left-content h3{
  font-size:32px;
  font-weight:700;
  color:#0f172a;
}

.process-section .left-content p{
  color:#64748b;
  margin-top:20px;
}
.process-section .left-content img{
  width: 80%;
  margin: 0 auto;
}

/* TIMELINE */
.process-section .timeline{
  position: relative;
  padding-left:60px;
}

.process-section .timeline::before{
  content:'';
  position:absolute;
  left:28px;
  top:0;
  width:2px;
  height:100%;
  background:#e2e8f0;
}

/* ITEM */
.process-section .timeline-item{
  position:relative;
  margin-bottom:70px;
  display:flex;
  gap:25px;
  align-items:flex-start;
  padding-left: 20px;
}

/* ICON */
.process-section .timeline-icon{
  position:absolute;
  left:-60px;
  width:56px;
  height:56px;
  background:#eef2f7;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:#0f172a;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
  transition:0.3s;
}

/* Hover Smooth */
.process-section .timeline-item:hover .timeline-icon{
  transform:scale(1.1);
  background:var(--primary-color);
  color: #fff;
}

/* TEXT */
.process-section .timeline-content h4{
  font-size:22px;
  font-weight:600;
  color:#0f172a;
}

.process-section .timeline-content p{
  color:#64748b;
  margin-top:8px;
  line-height:1.6;
}

/* RESPONSIVE */
@media(max-width:991px){

.process-section  .left-content{
    position:static;
    margin-bottom:60px;
  }

.process-section  .timeline{
    padding-left:40px;
  }

.process-section  .timeline-icon{
    left:-45px;
    width:50px;
    height:50px;
  }

}



.section {
    padding: 40px 0px 40px;
    position: relative;
    overflow: hidden;
    background: -webkit-linear-gradient(90deg, rgb(244 239 237 / 84%) 0%, rgb(255 255 255 / 90%) 50%), url(../img/who.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
}


.header-title {
  margin-bottom: 60px;
  text-align: center;
}

.header-title h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 10px;
}

.header-title h3 span {
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-title p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}
.section .img img {
  position: absolute;
  bottom: 0;
  width: 30%;
  right: 0;
}
.section .header-title {
  text-align: center;
}
.section .header-title p {
  width: 100%;
}

/* Grid */

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

@media (max-width: 768px) {
  .country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
    gap: 10px;
  }
  .section .img img {
    display: none;
  }
  .section .header-title p {
    width: 100%;
    font-size: 14px;
  }
  .header-title h4{
    font-size: 24px;
  }
}

/* Card */

.country-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    padding: 10px 10px;
    border-radius: 10px;
    box-shadow: rgb(0 0 0 / 2%) 0px 3px 8px;
    border: 1px solid #e3dcd9;
    display: grid;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    transition: 0.8s;
    font-size: 14px;
}
.country-card i{
    text-align: center;
    margin: 0 auto;
}

.country-card:hover {
  border: 1px solid var(--primary-color);
}

.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: #0202b6;
  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;
}




#cta{
  padding: 80px 0 40px;
}
#cta .container{
  background-color:#0202b6;
  border-radius: 10px;
  position: relative;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
#cta .des h6{
  font-size: 32px;
  font-weight: 800;
  color: #fff;
}
#cta .des p{
  font-size: 16px;
  padding: 20px 0;
  color: #fff;
}
#cta .img img{
    width: 20%;
    position: absolute;
    right: 25px;
    top: -69px;
}
#cta .des a{
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
}


.faq-section {
    padding: 20px 0 0;
}

/* 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: "0" 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;
}

/* 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 {
    
    background: #000;
    color: #fff;
}

/* Active text */
.faq-section .accordion-button:not(.collapsed) {
    color: #4f46e5;
    box-shadow: none;
    background-color: #ffe3c152;
}

/* Body */
.faq-section .accordion-body {
    color: #555;
    line-height: 1.6;
    padding: 20px 20px 20px;
    font-size: 16px;
}

/* Top gradient line */
.faq-section .accordion-item::before {
    content: "";
    height: 4px;
    width: 100%;
    background:#00247d;
    position: absolute;
    top: 0;
    left: 0;
}
.faq-section .img img{
  width: 80%;
  margin: 0 auto;
  display: block;
}

#steps{
  padding: 40px 0;
}

#steps .infographic-card {
      background: #ffffff;
      border-radius: 60px;
      width: 80%;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
 }

#steps .infographic-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle at 50% 50%, transparent 60px, #e9ebf0 61px, transparent 62px),
        radial-gradient(circle at 50% 50%, transparent 120px, #e9ebf0 121px, transparent 122px),
        radial-gradient(circle at 50% 50%, transparent 200px, #e9ebf0 201px, transparent 202px),
        radial-gradient(circle at 50% 50%, transparent 290px, #e9ebf0 291px, transparent 292px);
      opacity: 0.5;
      pointer-events: none;
      z-index: 0;
}

#steps .card-inner {
      position: relative;
      z-index: 1;
}

#steps .step-circle-wrap {
      display: flex;
      justify-content: center;
}

#steps .step-circle {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15), inset 0 2px 4px rgba(255,255,255,0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#steps .step-circle:hover {
      transform: translateY(-6px) scale(1.05);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2), inset 0 2px 4px rgba(255,255,255,0.4);
}

#steps .step-circle svg {
      width: 44px;
      height: 44px;
      stroke: #fff;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
}

#steps .circle-red    { background: radial-gradient(circle at 35% 35%, #ff7096, #e63370); }
#steps .circle-purple { background: radial-gradient(circle at 35% 35%, #a66dff, #7b3fe4); }
#steps .circle-blue   { background: radial-gradient(circle at 35% 35%, #5aadff, #2d7dd2); }

#steps .step-connector {
      display: flex;
      justify-content: center;
      height: 30px;
}
#steps .connector-line {
      width: 2px;
      height: 28px;
      background: #ccc;
      border-radius: 2px;
}

#steps .step-label {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 8px;
      letter-spacing: 0.5px;
}

#steps .label-red    { color: #e63370; }
#steps .label-purple { color: #7b3fe4; }
#steps .label-blue   { color: #2d7dd2; }

#steps .step-desc {
    font-size: 16px;
    color: #888;
    line-height: 1.7;
    font-weight: 300;
}

@media (max-width: 767px) {
#steps .infographic-card { border-radius: 36px; padding: 32px 20px 40px; }
#steps .infographic-title { font-size: 1.5rem; }
#steps .step-circle { width: 88px; height: 88px; }
#steps .step-circle svg { width: 34px; height: 34px; }
}



#types{
  background-color: #fff;
  padding: 40px 0 80px;
}
/* TITLE */
#types .title{
  text-align:center;
  font-size:36px;
  font-weight:600;
  margin:50px 0px;
  color:#1a2b49;
}

/* CARD */
#types .visa-card{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  aspect-ratio:16/10;
  cursor:pointer;
  transition:0.4s;
}

/* IMAGE */
#types .visa-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s;
}

/* OVERLAY */
#types .overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:25px;
  background:linear-gradient(to top,rgba(0,0,0,0.6),transparent);
  color:#fff;
}

/* TEXT */
#types .overlay h3{
  font-size:22px;
  font-weight:500;
  margin-bottom:10px;
  text-align: center;
}

/* BUTTON */
#types .btn{
  display:inline-block;
  padding:8px 18px;
  border-radius:20px;
  background:rgb(255 255 255 / 60%);
  backdrop-filter:blur(8px);
  font-size:14px;
  transition:0.3s;
}

#types .btn:hover{
  background:#ff7a00;
  color: #fff;
}

/* HOVER EFFECT */
#types .visa-card:hover img{
  transform:scale(1.12);
}

#types .visa-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.2);
}


#types .visa-card:hover::after{
  opacity:1;
}

/* TABLET */
@media(max-width:992px){
#types  .visa-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* MOBILE */
@media(max-width:600px){
#types  .title{
    font-size:26px;
  }

#types  .visa-grid{
    grid-template-columns:1fr;
  }

#types  .overlay h3{
    font-size:18px;
  }
}


/* ======================== */
/* PREMIUM FOOTER */
/* ======================== */

.footer {
  
  color: #cbd5e1;
  
  position: relative;
}
.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: 80px;
}

.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;
}


@media (min-width: 320px) and (max-width: 480px) {
  
 .header-title h3{
  font-size: 28px;
 }
 .process-section {
    padding: 40px 0 0px;
}
.process-section .left-content h3{
  font-size: 28px;
}
#steps .infographic-card{
  width: 100%;
}
#steps .infographic-card .col-md-4{
  margin-bottom: 40px;
}
#steps{
  padding: 0;
}
.section-title h3{
  font-size: 28px;
}
#cta{
  padding: 0px 0 40px;
}
#cta .des h6{
  font-size: 28px;
}
#cta .img img{
  display: none;
}
  
}



/* Section */
.pricing-section {
    padding: 80px 0;
}


/* Main Card */
.pricing-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

/* Heading */
.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #00247d;
}
.section-title p{
  font-size: 16px;
  font-weight: 400;
}
.section-desc {
    color: #6c757d;
    margin-bottom: 30px;
}

/* Price */
.price-box {
    background: #00247d;
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.price-box h2 {
    font-size: 20px;
    margin: 0;
    font-weight: 500;
}

/* List */
.feature-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.feature-list li::before {
    content: "✔";
    color: #00247d;
    margin-right: 10px;
    font-weight: bold;
}

/* Info Boxes */
.info-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #00247d;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-box h5 {
    font-weight: 600;
    color: #00247d;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card {
        padding: 25px;
    }

    .section-title {
        font-size: 24px;
    }

    .price-box h2 {
        font-size: 32px;
    }
}



/* Section Title */
#who-we .section-title{
    text-align:center;
    font-size:40px;
    font-weight:700;
    margin-bottom:40px;
}

/* Card Design */
#who-we .news-card{
    background:linear-gradient(to right, #f0f4f8, #ddd);
    border-radius:30px;
    padding:30px 30px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

/* Left Content */
#who-we .news-content{
    flex:1;
    min-width:280px;
}

#who-we .news-title{
    font-size:36px;
    font-weight:700;
    margin-bottom:20px;
}

#who-we .news-text{
    font-size:16px;
    color:#555;
    line-height:1.7;
    margin-bottom:15px;
}

/* Button */
#who-we .news-btn{
    padding:12px 28px;
    border-radius:50px;
    background:#000;
    color: #fff;
    border:none;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

#who-we .news-btn:hover{
    transform:translateY(-3px);
}

/* Image */
#who-we .news-image{
    flex:1;
    min-width:280px;
}

#who-we .news-image img{
    width:100%;
    border-radius:25px;
    object-fit:cover;
}

/* Responsive */
@media(max-width:991px){
    #who-we .section-title{
        font-size:36px;
    }

    #who-we .news-title{
        font-size:28px;
    }

    #who-we .news-card{
        padding:30px;
    }
}

@media(max-width:768px){
    #who-we .news-card{
        flex-direction:column;
        text-align:center;
    }
}
.footer .container {
    background: linear-gradient(135deg, #000000, #084298);
    color: #cbd5e1;
    padding: 20px;
    position: relative;
    border-radius: 20px;
}


.aps-section {
      background: #f8fafc;
      padding: 100px 0 110px;
      overflow: hidden;
      position: relative;
    }

    /* dot grid */
    .aps-section::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(0,0,0,0.045) 1px, transparent 1px);
      background-size: 28px 28px;
      pointer-events: none;
    }

    /* glow blob */
    .aps-blob {
      position: absolute;
      width: 600px; height: 600px; border-radius: 50%;
      background: radial-gradient(circle, rgba(30,58,110,0.05) 0%, transparent 70%);
      top: -150px; right: -150px;
      pointer-events: none;
    }

    /* ── LEFT SIDE ── */
    .aps-left {
      position: relative; z-index: 2;
      padding-right: 48px;
    }

    .aps-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      margin-bottom: 20px;
    }
    .aps-ew-line { width: 28px; height: 2px; background: #1e3a6e; border-radius: 2px; }
    .aps-ew-text {
      font-size: 11px; letter-spacing: 3px;
      text-transform: uppercase; font-weight: 700;
      color: #1e3a6e;
    }

    .aps-heading {
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 800; color: #0f172a;
      letter-spacing: -2px; line-height: 1.08;
      margin-bottom: 20px;
    }
    .aps-heading em {
      font-style: italic; color: #1e3a6e;
    }

    .aps-sub {
      font-size: 15px; font-weight: 300;
      color: #64748b; line-height: 1.8;
      margin-bottom: 40px;
      max-width: 400px;
    }

    /* trust pills */
    .aps-pills {
      display: flex; flex-wrap: wrap; gap: 10px;
      margin-bottom: 44px;
    }
    .aps-pill {
      display: inline-flex; align-items: center; gap: 7px;
      background: #ffffff;
      border: 1px solid rgba(30,58,110,0.12);
      border-radius: 50px; padding: 8px 16px;
      font-size: 12.5px; font-weight: 500; color: #334155;
      box-shadow: 0 2px 10px rgba(0,0,0,0.04);
      transition: all .2s;
    }
    .aps-pill:hover { border-color: rgba(30,58,110,0.3); color: #1e3a6e; }
    .aps-pill i { color: #1e3a6e; font-size: 11px; }

    /* stat boxes */
    .aps-stats {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .aps-stat {
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 18px; padding: 22px 20px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
      transition: all .25s;
    }
    .aps-stat:hover {
      border-color: rgba(30,58,110,0.15);
      box-shadow: 0 8px 28px rgba(30,58,110,0.08);
      transform: translateY(-2px);
    }
    .aps-stat-num {
      font-size: 30px; font-weight: 800;
      color: #1e3a6e; line-height: 1;
      margin-bottom: 5px; letter-spacing: -1px;
    }
    .aps-stat-num span { color: #3b6bc4; }
    .aps-stat-label { font-size: 12px; color: #94a3b8; font-weight: 400; }

    /* ── RIGHT SIDE — STEPS ── */
    .aps-right {
      position: relative; z-index: 2;
    }

    /* vertical line */
    .aps-timeline {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .aps-timeline::before {
      content: '';
      position: absolute;
      left: 27px; top: 28px; bottom: 28px;
      width: 2px;
      background: linear-gradient(to bottom,
        #1e3a6e 0%,
        #3b6bc4 50%,
        rgba(30,58,110,0.1) 100%);
      border-radius: 2px;
    }

    /* step item */
    .aps-step {
      display: flex; gap: 24px;
      padding: 0 0 32px;
      position: relative;
    }
    .aps-step:last-child { padding-bottom: 0; }

    /* circle */
    .aps-step-circle {
      width: 56px; height: 56px; border-radius: 50%;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      position: relative; z-index: 1;
      transition: all .3s;
      border: 2px solid transparent;
    }
    .aps-sc-1 { background: #1e3a6e; color: #fff; box-shadow: 0 6px 24px rgba(30,58,110,0.3); }
    .aps-sc-2 { background: #ffffff; color: #1e3a6e; border-color: rgba(30,58,110,0.2); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
    .aps-sc-3 { background: #ffffff; color: #1e3a6e; border-color: rgba(30,58,110,0.2); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }

    .aps-step:hover .aps-step-circle {
      background: #1e3a6e !important;
      color: #fff !important;
      border-color: transparent !important;
      box-shadow: 0 8px 28px rgba(30,58,110,0.3) !important;
      transform: scale(1.08);
    }

    /* step card */
    .aps-step-card {
      flex: 1;
      background: #ffffff;
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 20px;
      padding: 28px 28px 28px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
      transition: all .3s cubic-bezier(.34,1.4,.64,1);
      position: relative;
      overflow: hidden;
    }
    .aps-step-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, #1e3a6e, #3b6bc4);
      opacity: 0;
      transition: opacity .3s;
    }
    .aps-step:hover .aps-step-card {
      transform: translateX(6px);
      border-color: rgba(30,58,110,0.12);
      box-shadow: 0 12px 40px rgba(30,58,110,0.1);
    }
    .aps-step:hover .aps-step-card::before { opacity: 1; }

    /* step number tag */
    .aps-step-tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 10.5px; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 700;
      color: #1e3a6e; margin-bottom: 10px;
      opacity: 0.6;
    }
    .aps-step-tag::before {
      content: '';
      width: 16px; height: 1px;
      background: #1e3a6e;
    }

    .aps-step-title {
      font-family: 'Syne', sans-serif;
      font-size: 18px; font-weight: 800;
      color: #0f172a; letter-spacing: -0.5px;
      margin-bottom: 10px; line-height: 1.25;
    }
    .aps-step-desc {
      font-size: 14px; font-weight: 300;
      color: #64748b; line-height: 1.8;
      margin: 0;
    }

    /* icon inside card top-right */
    .aps-card-ico {
      position: absolute;
      top: 20px; right: 20px;
      width: 36px; height: 36px; border-radius: 10px;
      background: #f0f4fb;
      display: flex; align-items: center; justify-content: center;
      color: #3b6bc4; font-size: 14px;
      transition: all .3s;
    }
    .aps-step:hover .aps-card-ico {
      background: #1e3a6e; color: #fff;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      .aps-section { padding: 70px 0; }
      .aps-left { padding-right: 0; margin-bottom: 56px; }
      .aps-sub { max-width: 100%; }
      .aps-stats { grid-template-columns: repeat(4,1fr); }
    }
    @media (max-width: 767px) {
      .aps-section { padding: 60px 0; }
      .aps-heading { letter-spacing: -1.5px; }
      .aps-stats { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 480px) {
      .aps-timeline::before { left: 23px; }
      .aps-step-circle { width: 48px; height: 48px; font-size: 16px; }
      .aps-step-card { padding: 22px 18px; }
    }

.fs-14 {
    font-size: 12px;
}



/* Container Item */
.common_mist .item {
  padding: 15px;
}

/* Card Design */
.common_mist .slider-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

/* Hover Effect */
.common_mist .slider-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Title */
.common_mist .slider-card h5 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
}

/* Title underline */
.common_mist .slider-card h5::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #007bff;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

/* Paragraph */
.common_mist .slider-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* List Styling */
.common_mist .slider-card ul {
  padding-left: 18px;
  margin: 15px 0;
}

.common_mist .slider-card ul li {
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

/* Custom Bullet */
.common_mist .slider-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #28a745;
  font-size: 14px;
}

/* List Text */
.common_mist .slider-card ul li p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .common_mist .slider-card {
    padding: 20px;
  }

  .common_mist .slider-card h5 {
    font-size: 18px;
  }
}

.tip-box {
    border-radius: 16px;
    padding: 30px 25px;
    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;
}

.tip-title {
    font-size: 18px;
    font-weight: 700;
    color: #00247d;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tip-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 36, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #00247d;
}
.tip-text {
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

.fs-12{
    font-size:10px;
}









