:root {
  --primary: #0079BC;
  --secondary: #9BD334;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1620px;
  }
}

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

/* Reduce default heading sizes */
h1 {
  font-size: 32px;
  font-weight: 700;
}
h2 {
  font-size: 28px;
  font-weight: 600;
}
h3 {
  font-size: 24px;
  font-weight: 600;
}
h4 {
  font-size: 20px;
  font-weight: 600;
}
h5 {
  font-size: 18px;
  font-weight: 600;
}
h6 {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5 {
    font-size: 16px;
  }
  h6 {
    font-size: 14px;
  }
}

@media (max-width: 556px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 18px;
  }
  h4 {
    font-size: 16px;
  }
  h5 {
    font-size: 14px;
  }
  h6 {
    font-size: 13px;
  }
}

.f-grow {
  flex-grow: 1;
}

.f-shrink {
  flex-shrink: 0;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.color-primary {
  color: var(--primary);
}

.btn {
  position: relative;
  z-index: 0;
  color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  border: 1px solid var(--primary);
  transition: all 0.5s ease-in-out;
}
@media (max-width: 992px) {
  .btn {
    font-size: 15px;
  }
}
@media (max-width: 556px) {
  .btn {
    font-size: 13px;
  }
}
.btn::before {
  content: "";
  width: 51%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--primary);
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
.btn::after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
.btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  transition: all 0.5s ease-in-out;
}
.btn:hover::before {
  left: -100%;
  transition: all 0.5s ease-in-out;
}
.btn:hover::after {
  right: -100%;
  transition: all 0.5s ease-in-out;
}

.nav-active {
  border-bottom: 2px solid var(--secondary);
  font-weight: 700 !important;
  color: var(--primary) !important;
}

.section-title {
  font-size: 33px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}
@media (max-width: 374px) {
  .section-title {
    font-size: 27px;
  }
}

.section-subtitle {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.subtitle {
  color: #131415;
  font-size: 16px;
}

.headers {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.headers .header-logo img {
  max-width: 154px;
}
@media (max-width: 1399px) {
  .headers .header-logo img {
    max-width: 120px;
  }
}
@media (max-width: 557px) {
  .headers .header-logo img {
    max-width: 110px;
  }
}
@media (max-width: 325px) {
  .headers .header-logo img {
    max-width: 90px;
  }
}

.header-shadow {
  box-shadow: 2px 2px 10px 0 #e9e9e9;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
}

.header-nav {
  list-style: none;
}
.header-nav li {
  padding-right: 44px;
}
@media (max-width: 1600px) {
  .header-nav li {
    padding-right: 24px;
    margin-bottom: 10px;
  }
}
.header-nav li a {
  font-weight: 500;
  text-decoration: none;
  color: #5c5c5c;
  position: relative;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  font-size: 20px;
}
@media (max-width: 1399px) {
  .header-nav li a {
    font-size: 15px;
  }
}
.header-nav li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--secondary);
  transition: all 0.5s ease-in-out;
}
.header-nav li a:hover {
  color: var(--secondary);
  transition: all 0.5s ease-in-out;
}
.header-nav li a:hover::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.fw-semibold {
  font-weight: 600;
}

.hero-section {
  margin-top: 108px;
  padding: 190px 0;
  background-image: url("../img/home/banner.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1399px) {
  .hero-section {
    margin-top: 84px;
  }
}
@media (max-width: 1024px) {
  .hero-section {
    padding: 130px 0;
  }
}
@media (max-width: 556px) {
  .hero-section {
    padding: 80px 0;
    margin-top: 82px;
  }
}
@media (max-width: 325px) {
  .hero-section {
    margin-top: 740x;
  }
}
.hero-section h1 {
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .hero-section h1 {
    font-size: 40px;
  }
}
@media (max-width: 556px) {
  .hero-section h1 {
    font-size: 32px;
  }
}
.hero-section p {
  font-size: 18px;
  font-weight: 500;
  /*max-width: 1240px;*/
}
@media (max-width: 1024px) {
  .hero-section p {
    font-size: 16px;
  }
}
@media (max-width: 556px) {
  .hero-section p {
    font-size: 15px;
  }
}

.btn-white {
  color: var(--primary);
  background-color: var(--primary) !important;
  font-size: 16px;
  /*font-size: 24px;*/
}
@media (max-width: 556px) {
  .btn-white {
    font-size: 18px;
  }
}
.btn-white:hover {
  color: #fff;
}
.btn-white::before {
  background-color: #fff;
}
.btn-white::after {
  background-color: #fff;
}

.feature-card {
  background: #F9F9F9;
  border-radius: 0 40px 0 40px;
  padding: 20px 30px;
  height: 100%;
  border: 0;
  border-top: 4px solid var(--primary) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease-out forwards;
  position: relative;
  overflow: hidden;
}
.feature-card .product-icon {
  width: 62px;
  height: 62px;
  border: 1px solid var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  animation: float 3s ease-in-out infinite;
  font-size: 20px;
  color: var(--primary);
}
.feature-card .product-title {
  font-size: 20px;
  font-weight: 500;
}
.feature-card p {
  font-size: 16px;
  font-weight: 400;
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.feature-card .content-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.analysis-section .analysis-subtitle {
  font-size: 16px;
  max-width: 1134px;
  margin: 0 auto;
}
.analysis-section .analysis-card {
  background-color: transparent;
  border-radius: 8px;
  padding: 8px;
  box-sizing: border-box;
}
.analysis-section .analysis-card h3 {
  font-size: 20px;
  font-weight: 600;
}
.analysis-section .analysis-card p {
  font-size: 14px;
  font-weight: 400;
}
.analysis-section .analysis-card .analysis-img {
  width: 260px;
  height: 260px;
  margin-bottom: 10px;
}
.analysis-section .analysis-card .analysis-card-border {
  margin-top: -84px;
  margin-right: -10px;
}
.analysis-section .analysis-card .analysis-card-border-right {
  margin-top: -84px;
  margin-left: -10px;
}

.analysis-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(189, 230, 253, 0.8) 40%, rgba(189, 230, 253, 0.8) 60%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.z-index {
  z-index: 1;
}

.responsive-ai {
  padding: 160px 0;
  background-image: url("../img/home/ai-video.gif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.responsive-ai .ai-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.36) 100%);
}
@media (max-width: 556px) {
  .responsive-ai {
    padding: 90px 0;
  }
}
.responsive-ai h2 {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 556px) {
  .responsive-ai h2 {
    font-size: 26px;
  }
}
.responsive-ai .res-content {
  font-size: 18px;
  font-weight: 500;
  max-width: 1150px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .responsive-ai .res-content {
    font-size: 16px;
  }
}
@media (max-width: 556px) {
  .responsive-ai .res-content {
    font-size: 14px;
  }
}
.responsive-ai .global-text {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}
.responsive-ai .global-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 11px;
  background-image: url("../img/home/v-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  pointer-events: none;
  z-index: -1;
}

.flag-product .product-box {
  width: 180px;
  height: 180px;
  background-color: #F9F9F9;
  border-radius: 40px 40px 10px 40px;
  border-top: 3px solid var(--primary);
  padding: 50px;
}
.flag-product h5 {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .flag-product h5 {
    font-size: 18px;
  }
}
.flag-product p {
  font-size: 14px;
  font-weight: 400;
  max-width: 410px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .flag-product p {
    font-size: 13px;
  }
}

.custom-card {
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #7FBFE4;
}

.card-top {
  padding: 40px 0;
  background: white;
  width: 100%;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1607843137);
}

.card-bottom {
  box-shadow: 14px -12px 10px 0px #6AADD2 inset;
  background: linear-gradient(to bottom, #7FBFE4, #88c6f3);
  width: 100%;
  text-align: center;
  padding: 12px 0;
  color: #000;
  position: relative;
}
.card-bottom p {
  font-size: 16px;
  font-weight: 500;
  padding: 36px 0px;
  white-space: nowrap;
  text-align: center;
}

.card-bottom::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  /* background: white; */
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 10px solid white;
  z-index: 1;
}

.icon-img {
  height: 80px;
}

.footer {
  background-color: #F9F9F9;
}
.footer .info-item a {
  font-size: 14px;
  font-weight: 400;
  color: #131415;
  text-decoration: none;
}

.footer-nav .footer-title {
  font-size: 16px;
  font-weight: 600;
}
.footer-nav ul {
  list-style: none;
  padding-left: 0;
}
.footer-nav ul li {
  margin-bottom: 14px;
}
.footer-nav ul li a {
  text-decoration: none;
  color: #000;
  transition: all 0.5s ease-in-out;
  position: relative;
  font-size: 14px;
}
.footer-nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: var(--primary);
  transition: all 0.5s ease-in-out;
}
.footer-nav ul li a:hover {
  color: var(--primary);
  transition: all 0.5s ease-in-out;
}
.footer-nav ul li a:hover::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.form-control {
  border-radius: 20px;
}
.form-control::-moz-placeholder {
  color: #C2C2C2;
}
.form-control::placeholder {
  color: #C2C2C2;
}

.footer-border {
  border-right: 2px solid #ddd;
  padding-right: 10px;
  color: #000;
  text-decoration: none;
}

.footer-link {
  display: inline-block;
  position: relative;
  font-weight: bold;
}

.footer-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 60%;
  height: 2px;
  background-color: #4AA3DF;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
  transition: 0.5s ease-in-out;
}
.social-links a:hover {
  transition: 0.5s ease-in-out;
  margin-top: -4px;
}

.footer-copy {
  border-top: 1px solid #5D5D5D;
  font-size: 12px;
}
.footer-copy p {
  color: #131415;
  font-size: 14px;
}

.header-open {
  display: block !important;
  transition: all 0.5s ease-in-out !important;
  left: 0 !important;
}

.res-header {
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 99;
  right: 0;
  left: 100%;
  border: 0;
  height: 100%;
  color: #002253;
  transition: all 0.5s ease-in-out;
}/*# sourceMappingURL=style.css.map */



/*/ 20-jan-2026 /*/
.tp_div_card {
  border-radius: 20px;
  padding:20px;
  /*box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1215686275);*/
  box-shadow: 0px 16px 60px 0px #0D517829;  width: 100%;
  height: 100%;
}

.tp_div_card .time-icon {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background-color: #ECF5FA; 
}

.tp_div_card h4 {
    font-size: 20px;
    font-weight: 600;
}

.tp_div_card p {
    font-size: 14px;
}

.tp_div_card_body{
   height: 100%;
  display: grid;
  align-items: end;
}
.align-self-start{
    align-self: start;
}
.op_div_card {
 
}

.op_div_card h5 {
    color:black;
}

.op_div_img  {
    border-radius: 20px;
    padding: 10px 15px 10px 15px;
     
    margin: 20px;
    box-shadow: 0px 4px 20px 0px #0000001F;
    border: 1px solid #EEEEEE;
    background-color: white;
}

.op_div_img img{
    /*width: 121px;*/
    /*width: fit-content;*/
    height: 65px !important;
    
    width: 100%;object-fit: contain;
}

.responsive-op {
    margin-top:20px;
    padding: 40px 0;
    background-image: url("../img/home2/our_partner_bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section {
    margin-top: 90px ;
    padding: 50px 0 50px 0;
    background-image: url("../img/home2/header_banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.become_partner_btn {
    background: #0944684D;
    border: 1px solid #CEFBFF !important;
    box-shadow: 0px 5px 60px 0px #40B9DC99;
    color:white  !important;
    backdrop-filter: blur(20px);
}

.bg_shadowb1 {
    box-shadow: 0px 5px 60px 0px #40B9DC99;
}

.bd_shadow1 {
    box-shadow: 0px 16px 60px 0px #0D517829;
    border-radius: 40px !important;
}

.text_b1 {
    color: #0079BC;
    font-size: 20px;
    text-decoration: none;
}

.text_b2 {
    color: #0079BC;
    font-size:17px;
    text-decoration: none;
}

.text_131415 {
    color: #131415;
}

.btn_b1 {
    color: white !important;
}

.btn_b1:hover {
    color: #000 !important;
    border:1px solid   #0079BC !important;
}

.fs-17 {
 font-size:17px;
}

.about-banner {
  margin-top: 90px;
  padding: 50px 0 50px 0;
  background-image: url("../img/home2/header_banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about-banner h1 {
  font-size: 48px;
  font-weight: 700;
}

.about-banner p {
  font-size: 18px;
  font-weight: 500;
  /*max-width: 1240px;*/
}

.our_team_card {
  background: #F9F9F9;
  /*border-radius: 0 40px 0 40px;*/
  border-radius:  40px  ;
  padding: 20px 30px;
  height: 100%;
  border: 0;
    border-top-width: 0px;
    border-top-style: none;
    border-top-color: currentcolor;
  border-top: 2px solid var(--primary) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 0.8s ease-out forwards;
  position: relative;
  overflow: hidden;
}
.team_bgimg{ 
      background-image: url("../img/about/team_bgimg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.team_bgimg img {
  width: 100%;
  height: 100%;
  object-fit: fill;border-radius: 25px;
}
/*30-jan-2026*/

.ot_div_card {
  border-radius: 20px;
  padding:20px;
  /*box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1215686275);*/
  box-shadow: 0px 16px 60px 0px #0D517829;  width: 100%;
  height: 100%;
}

.ot_div_card .time-icon {
    width: 220px;
    height: 220px;
    border-radius: 25px;
    background-color: #ECF5FA; 
}

.ot_div_card h4 {
    font-size: 20px;
    font-weight: 600;
}

.ot_div_card p {
    font-size: 14px;
}


.ot_div_card_body{
   height: 100%;
  display: grid;
  align-items: end;
}




/*.flip-card {*/
/*  background-color: transparent;*/
/*   width: 100%;*/
/*  height:100%;*/
/*  perspective: 1000px;*/
/*}*/

/*.flip-card-inner {*/
/*  position: relative;*/
/*  width: 100%;*/
/*  height: 100%;*/
 
/*  transition: transform 0.9s;*/
/*  transform-style: preserve-3d;*/
  
/*}*/

/*.flip-card:hover .flip-card-inner {*/
/*  transform: rotateY(180deg);*/
/*}*/

/*.flip-card-front {*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  -webkit-backface-visibility: hidden;*/
/*  backface-visibility: hidden;*/
/*}*/
/* .flip-card-back {*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  -webkit-backface-visibility: hidden;*/
/*  backface-visibility: hidden;*/
/*}*/

/*.flip-card-front {*/
/*  background-color: #fff;*/
/*  color: black;*/
/*}*/

/*.flip-card-back {*/
/*  background-color: #fff;*/
/*  color: black;*/
/*  transform: rotateY(180deg);border-radius: 38px !important;padding: 10px;*/
/*  text-align: center;*/
/*}*/
/*.flip-card-back h4{color:#0079BC; }*/



 .container_flip {
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
 perspective: 1000px;
}

.card_flip {
  position: relative;
  /*width: 8rem;*/
  /*height: 8rem;*/
  width: auto;
  /*height: 100%;*/
  
  margin: 0.5rem;
  text-align: center;
  /*line-height: 8rem;*/
  color: #ecf0f1;
  border-radius: 0.8rem;
 transform-style: preserve-3d;
}

.face {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /*height: 100%;*/
  height: auto;
  /*border-radius: 0.8rem;*/
  background-size: cover;
  background-position: center center;
  backface-visibility: hidden;
  transition: transform 0.9s ease-in-out;
}

.face--front {
  background: #fff;
  font-size: 3rem;
}

.face--back {
  background: #fff;
  /*font-size: 1.5rem;*/
  transform: rotateY(180deg);height:100%; overflow: auto;
}

.card_flip:hover .face--front {
  transform: rotateY(-180deg);
}

.card_flip:hover .face--back {
  transform: rotateY(0deg);
}

.text_color_bl2{
    color:#0079BC;
}
.name_div {
color: black;
  text-align: left;
}

.back_div_bd_top{
 border-top: 2px solid var(--primary) !important; 
}

.pos_rel {
position:relative;
}


.flex1 {
    flex: 1;
}

 .frst_row_pd {
      padding-left: 3rem !important;
      padding-right: 3rem !important;
  }
  
@media (max-width: 556px) {  
    .row1 {
    flex-direction: column !important;
  }
  
  .frst_row_pd {
      padding-left:0rem !important;
      padding-right:0rem !important;
  }
}
@media (max-width: 768px) {
      .row1 {
    flex-direction: column !important;
  }
   .frst_row_pd {
      padding-left: 0rem !important;
      padding-right: 0rem !important;
  }
}

.height_100per {
    height: 100% !important;
}
.text_justify {
text-align: justify !important;
}

.bgimg{
 
       background-image: url("../img/partnerform/bgimg.png");
 background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.partner_form label {
    color:white;
}


 .custom-select {
  display: inline-block;
  width: 100%;
  
  height: 100%;
  padding: .375rem 1.75rem .375rem .75rem;
  line-height: 1.5;
  /*color: #fff;*/
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
  background-size: auto;
  background-size: auto;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border: 2px solid #3C3D53;
  border-radius: .25rem;
 
  appearance: none;
}



.payment_summ_div {
    background-color: white;
    border-radius: 10px;
}

.text_color_bl4 {
    color:#013F54;
}

.footerlink_active {
color:#0079BC !important;
text-decoration: underline solid #0079BC 1px  !important;

}




