@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root{
    /*--blue: #036;*/
    --blue: #1A56FF;
    --yellow: #FEC328;
    --bg: #fcfafe;
    --bg2:#f5f7fb;
    --bg3:  #f2f5fb;
    --bg4: #fce7cf;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
}
/*.container{*/
/*    width: 1200px;*/
/*}*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Inter Tight", sans-serif; */
    /* font-family: "Montserrat", sans-serif; */
    /*font-family: "Plus Jakarta Sans", sans-serif;*/
    /*font-family: "Source Sans 3", sans-serif;*/
    /*font-family: "Noto Sans", sans-serif;*/
    /*font-family: "Inter", sans-serif;*/
    /*font-family: "DM Serif Display", serif;*/
    font-family: "Bricolage Grotesque", sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}


.hero h1{
      font-family: "Bricolage Grotesque", sans-serif;
      font-weight: 500;
      /*color: rgba(0, 0, 0, 0.5) !important;*/
      font-size: 54px !important;;
  }
/*body{*/
/*    background-color: var(--bg);*/
/*}*/

/********* Back To Top Button Start *********/
#top{
    display: inline-block;
    background-color: #1A56FF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    bottom: 15px;
    right: 15px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    /*content: "\f102";*/
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.2em;
    line-height: 50px;
    color: #fff;
  }
  #top:hover {
    cursor: pointer;
    background-color: #234cc1;
  }
  #top:active {
    background-color: #234cc1;
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/

/********* Header Section Start *********/


#nav{
    width: 100%;
    overflow: hidden;
}
#nav .logo a{
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
    transition: .4s ease-in-out;
}
#nav .logo a h1{
    font-weight: 600;
}
#nav .logo a:hover{
    color: var(--yellow);
}
#nav .menu ul{
    justify-content: right;
    display: flex;
}
#nav .menu ul li{
    padding: 10px;
    list-style: none;
}
#nav .menu ul li a{
    opacity: 1;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--blue);
    margin: 0 10px;
    position: relative;
    transition: .4s ease-in-out;
}
#nav{
    /* position: fixed;
    top: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%); */
    z-index: 999999999;
    background-color: var(--white);
    margin: 0 auto !important;
    transition: .4s ease-in-out;
}
#nav img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(240deg) brightness(117%) contrast(99%);
}
#header .logo .logo-icon{
    width: 30px;
    height: 30px;
    background-color: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#header .logo .logo-icon i{
    color: var(--white);
    font-size: 19px;
}
#header .logo .logo-text h3{
    color: var(--black);
    margin-bottom: 0;
    font-weight: 700;
    font-size: 28px;
    margin-top: 1px;
    background: linear-gradient(90deg, #5029ec, #f76031);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    /*font-family: "Noto Sans", sans-serif;*/
    font-family: "Albert Sans", sans-serif;
}
#header .logo .logo-text h3 span{
    color: var(--blue);
    margin-left: 2px;
    font-weight: 500;
}

.menu-color{
    background-image: none !important;
    background-color: var(--white) !important;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3);
}
.col-black{
    color: var(--black) !important;
}
.logo-white img{
    filter: none !important;
}

/********* Header Section End *********/


/* FOOTER */
  footer {
    background: #234cc1;
    color: rgba(250,248,243,0.6);
    padding: 3.5rem 2.5rem 2rem;
  }
  .footer-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .nav-logo { color: #fff; margin-bottom: 1rem; display: inline-flex; }
  .footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 300px; }
  .footer-col-title {
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.85); font-weight: 700; margin-bottom: 1rem;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; padding-left: 0; margin-bottom: 0; }
  .footer-links a {
    text-decoration: none; color: rgba(250,248,243,0.55);
    font-size: 0.875rem; transition: color 0.2s;
  }
  .footer-links a:hover { color: rgba(250,248,243,0.9); }
  .footer-bottom {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1.75rem; font-size: 0.8rem;
    flex-wrap: wrap; gap: 0.5rem;
  }
  
  
  
  
  #pri-wrapper{
      margin-top: 56px;
  }
  .hero{
      max-width: 950px;
      margin: 0 auto;
  }
  .hero-content{
      position: relative;
  }
  .hero-img{
          position: absolute;
  }
  .hero-img img{
      filter: brightness(0) saturate(100%) invert(35%) sepia(82%) saturate(7214%) hue-rotate(226deg) brightness(102%) contrast(101%);
  }
  .hi1{
      inset: 8px 652px auto auto;
  }
  .hi2{
      inset: 68px 426px auto auto;
  }
  .hi2 img{
      filter: brightness(0) saturate(100%) invert(60%) sepia(50%) saturate(3999%) hue-rotate(353deg) brightness(102%) contrast(97%);
  }
  
  
  .hero-content h1 span{
      font-size: 50px;
      display: inline-block;
      transform: translate(1px, 6px);
      color: #1A56FF;
      margin: 0 4px;
  }
   .hero-content h1 i{
      font-size: 38px;
      transform: translate(0, -6px);
      color: #fb8012;
      margin: 0 8px;
  }
  .material-symbols-outlined {
  font-variation-settings:
    'FILL' 1,
    'wght' 500,   /* increase this */
    'GRAD' 0,
    'opsz' 24;
}


#tag{
    margin-top: 56px;
}
#tag .tag-head h1{
    font-size: 30px;
    color: #000;
}
#tag ul {
    padding-left: 0;
}
#tag ul li{
   list-style: none;
}
#tag ul li a{
   text-decoration: none;
   color: rgba(0, 0 ,0, 0.7);
   font-size: 17px;
   display: inline-block;
   margin: 2px 0;
   font-weight: 400;
   transition: .4s ease-in-out;
}
#tag ul li a:hover{
    color: #1A56FF;
}
#tag .tag-wrap{
    margin: 25px 0;
}
.hero-tag a
{
    text-decoration:none;
}
.hero-tag a:hover
{
    text-decoration:none;
    color:#fff;
}
.country-trigger-btn{
    background: transparent;
    border: 0;
    padding: 0;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.country-trigger-btn img{
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.country-trigger-btn .globe-main{
    font-size: 22px;
    line-height: 1;
}

#countrymodal .modal-dialog{
    max-width: 560px;
}

#countrymodal .modal-content{
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

#countrymodal .modal-header{
    padding: 18px 22px;
    border-bottom: 1px solid #e6e6e6;
}

#countrymodal .modal-title{
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

#countrymodal .modal-body{
    padding: 18px 16px 20px;
}

.country-tab-title{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #4b7bec;
    padding-bottom: 10px;
    border-bottom: 3px solid #4b7bec;
    margin-bottom: 18px;
}

.country-grid .country-item{
    margin-bottom: 14px;
}

.country-option{
    display: block;
    text-decoration: none;
    color: #222;
}

.country-card{
    min-height: 46px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    background: #fff;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all .2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

.country-card:hover{
    border-color: #4b7bec;
    box-shadow: 0 4px 12px rgba(75,123,236,.12);
}

.country-card.active{
    background: #dbe9ff;
    border-color: #4b7bec;
    box-shadow: none;
}

.country-flag{
    width: 26px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    flex: 0 0 auto;
}

.country-globe{
    font-size: 22px;
    line-height: 1;
    color: #222;
    flex: 0 0 auto;
}

.country-label{
    font-size: 16px;
    font-weight: 500;
    color: #222;
    line-height: 1.2;
}