@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  border: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

:root {
  --color-blue: #226ce0;
  --color-white: #ffffff;
  --color-black-2: #011627;
}

.container-fluid {
  width: 100%;
}

.container {
  width: 85% !important;
  margin: auto;
}
.column-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.column-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.column-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.column-5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.column-6 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
}

.global_title {
  font-size: 34px;
  font-weight: 400;
  line-height: 40px;
}
.global_title span {
  font-weight: 600;
}

.global_sub_title {
  color: var(--color-blue);
  font-size: 16px;
  font-weight: 700;
}

.breadcrumb-subtitle span {
  font-size: 16px;
  font-weight: 700;
  color: #e2e8ef;
  margin-left: 5px;
}
.breadcrumb-subtitle span a {
  color: #e2e8ef;
}

.breadcrumb-title {
  font-size: 60px;
  font-weight: 300;
  color: #e2e8ef;
}

.breadcrumb-title span {
  font-weight: 600;
}

.g-white-btn{
    border:1px solid #226ce0;
}
.g-white-btn:hover{
    border:1px solid #fff;
}

@media (max-width: 1280px) {
  .container {
    width: 95% !important;
    margin: auto;
  }
}

@media (max-width: 1024px) {
  .container {
    width: 95% !important;
    margin: auto;
  }
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .global_title {
    font-size: 28px;
    line-height: 35px;
  }

  .breadcrumb-title {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .container {
    width: 90% !important;
    margin: auto;
  }

  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6 {
    display: grid;
    grid-template-columns: 1fr;
  }

  .breadcrumb-title {
    font-size: 32px;
    margin-top: 0.5em;
    line-height: 34px;
  }
}

/* ------------------ global button starts ------------------ */
.global-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 1px 45px;
  background-color: var(--color-blue);
  color: #ffffff;
  font-size: 14px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: 0.07px;
  transition: all 0.3s linear;
  z-index: 1;
  text-decoration: none;
  border-radius: 4px;
}

.global-btn:hover,
.global-btn:focus {
  color: #ffffff;
}

.global-btn .txt {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 3;
  height: 44px;
}

.global-btn:before,
.global-btn:after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  content: "";
  transition-duration: 800ms;
  z-index: 2;
}

.global-btn:before {
  left: 0;
  transform: translateX(-100%);
  background-color: var(--color-black-2);
}

.global-btn:after {
  right: 0;
  transform: translateX(100%);
  background-color: var(--color-black-2);
}

.global-btn:hover:before,
.global-btn:hover:after {
  transform: translateX(0);
}

/* ------------------ global button ends ------------------ */

/* ------------------ global card one starts  ------------------ */

.global-card-one {
  position: relative;
  background: #fff;
  min-width: 270px;
  height: 400px;
  transition: transform 0.4s ease-in-out;
  overflow: hidden;
  border-radius: 4.06px;
  box-shadow: 0px 0px 3px 0px #00000040;
}
.global-card-one:hover {
  transform: translateY(-10px);
}
.global-card-one:hover .global-card-one-content {
  background-color: #011627;
  transition:background-color 0.5s ease-in;
}
.global-card-one-img {
  height: 250px;
  overflow: hidden;
  width: 100%;
}
.global-card-one-img img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.global-card-one-content {
  position: absolute;
  bottom: 0;
  background: #fff;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  transition: all 0.4s ease;
}
.global-card-one-title {
  margin: 0;
  padding-bottom: 10px;
  color: #011627;
  font-size: 24px;
  font-weight: 600;
      display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.global-card-one-para {
  color: #14142b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8em;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
.global-card-one:hover p {
  height: auto;
  opacity: 1;
}
.global-card-one-btn {
  display: flex;
  align-items: center;
  gap: 10px; /* space between icon and text */
  margin-top: 15px;
}
.card-one-image-hover {
  width: 30px;
  height: 30px;
  background-image: url("images/defaultcardstate.png");
  background-size: contain;
  background-repeat:no-repeat;
  transition: background-image 0.4s;
}
.read-more-text {
  color: #007bff;
  font-weight: 400;
  margin: 0;
  transition: color 0.3s ease;
}
.global-card-one:hover .card-one-image-hover {
  background-image: url("images/e-logo.png");
}
.global-card-one:hover .read-more-text {
  color: #fff;
}
.global-card-one:hover .global-card-one-title {
  color: #fff;
}
.global-card-one:hover .global-card-one-para {
  color: #fff;
}
@media (max-width: 768px) {
  .global-card-one-content p {
    height: auto !important;
    opacity: 1 !important;
  }
  .global-card-one:hover {
    transform: none;
  }
  .global-card-one:hover .global-read-more-icon {
    transform: none;
    background-color: #e2e8ef;
    border-radius: 8px;
  }
  .global-card-one:hover .global-read-more-icon img {
    filter: none;
  }
    .global-card-one {
    height: 470px;
  }
}

/* ------------------ global card 1 ends  ------------------ */

/* ------------------ global card 2 starts ------------------ */

.global-card-2 .grid-item {
  background-color: #fff;
  color: #011627;
  border-radius: 4px;
  padding: 40px 20px;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 0px 3px 0px #00000040;
}

.global-card-2 .grid-item:hover {
  background-color: #011627;
  color: #fff;
  transform: scale(0.95);
}

.global-card-2 .grid-item img {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  transition: filter 0.3s;
}

.global-card-2 .grid-item span {
  font-size: 22px;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.global-card-2 .grid-item p {
  color: #011627;
  font-size: 16px;
}

.global-card-2 .grid-item:hover p {
  color: #fff;
}

/* ------------------ global card 2 end ------------------ */





/* -------------------- topbar -------------------- */
   #topbar {
      transition: opacity 0.3s ease, visibility 0.3s ease;
      opacity: 1;
      visibility: visible;
    }
    
    #topbar.hidden {
      opacity: 0;
      visibility: hidden;
      height: 0;
      padding: 0;
    }

.topbar {
  background-color: #2062a0;
  padding: 10px 0;
  margin-bottom: 1rem;
}

.topbarinfo {
  display: flex;
  justify-content: space-between;
  color: var(--color-white);
  align-items: center;
}

.topLeft p {
  font-size: 14px;
  font-weight: 600;
}

.topRight a {
  background: none;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .topLeft {
    width: 70%;
  }
}

/* -------------------- header -------------------- */
.header {
    padding: 0;
    position: sticky;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease;
}

 
/*.header {*/
  /*background-color: #464646;*/
  /* box-shadow: 0 10px 20px rgb(0, 0, 0/5%), 0 6px 6px rgb(0, 0, 0/6%); */
/*  padding: 16px 0;*/
/*  position: sticky;*/
/*  top:0;*/
/*    width: 100%;*/
/*    height: 100px;*/
/*    z-index: 999;*/
/*     transition: margin-top 0.1s ease, background 0.3s ease;*/
/*}*/

/*.header.sticky {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
/*  background: #011627;*/
/*     width: 100vw !important;*/
/*    overflow: hidden;*/
/*     z-index: 9999;*/
/*}*/
/* .header.sticky a {
  color: #000000 !important;
} */


.header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  width: 12%;
}
.logo a img {
   width: 100%; 
  height: 3.2em;
}

.bartoggle,
#menubrop {
  display: none;
}

.NavMenu {
  list-style: none;
  position: relative;
  display: flex;
  justify-content: end;
  gap: 18px;
}


@media(min-width:1024px)and (max-width:1480px){
   .NavMenu {
      gap:5px;
   }
   .header .logo {
  width: 12%;
}
}


.NavMenu li {
  display: inline-block;
}

.NavMenu li input {
  display: none;
}

.NavMenu li a {
  display: flex;
  padding: 20px 14px;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
  position: relative;
  font-weight: 500;
}

.NavMenu li a label {
  cursor: pointer;
  appearance: none;
  display: block;
  position: relative;
  width: 100%;
}

.anchorHeader{
    align-items: center;
}
 .anchorHeaderSub{
        display: block !important;
    }
    .anchorHeaderSubMob{
        display: none !important;
    }

/* .NavMenu li a label::after {
  content: url("./images/down-chevron.png");
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  font-size: 0.5em;
} */

.NavMenu li a label::after {
  content: "";
  display: inline-block;
  background-image: url(./images/down-chevron.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  width: 21px;
  height: 21px;
}
/*.NavMenu > li > a label::after {*/
/*  right: -27px;*/
/*  top: 2px;*/
/*}*/

.NavMenu .subIcon a label::after {
  content: "";
  display: inline-block;
  background-image: url(./images/down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  width: 21px;
  height: 21px;
  transition: transform 0.3s ease;
}

.NavMenu .subIcon a:hover label::after {
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}

.NavMenu li ul {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  min-width: 200px;
  border-bottom: 2px solid #2874f0;
  top: 118%;
  box-shadow: 0 3px 5px rgb(0 0 0/20%);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
   z-index: 10000;
}

.NavMenu li ul li {
  position: relative;
  max-width: 300px;
}

.NavMenu li ul li a {
  min-width: 290px;
  color: #011627;
  padding: 15px 25px;
  display: block;
  border-left: 2px solid transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.NavMenu li ul li ul {
  position: absolute;
  left: 100%;
  top: 0;
}

@media (min-width: 992px) {
  .NavMenu li ul li a:hover {
    border-left: 2px solid #2874f0;
  }

  .NavMenu li:hover > ul,
  .NavMenu li ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .header {
    /*padding: 6px 5%;*/
    height:unset;
  }
  .header .logo {
    width: 25%;
}

  .logo {
    /*flex: 6;*/
  }

  .bartoggle {
    display: flex;
    justify-content: center;
    font-size: 24px;
    align-items: center;
    background-color: #fff;
    padding: 1px 10px;
    cursor: pointer;
    line-height: 25px;
  }

  .NavMenu {
    width: 500px;
    flex: 12;
    position: fixed;
    flex-direction: column;
    background-color: #011627;
    left: 0;
    top: 60px;
    height: 100vh;
    z-index: -1;
    padding: 15px 10px 50px 10px;
    justify-content: start;
    overflow-y: scroll;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
  }

  .NavMenu li ul,
  .NavMenu li ul li ul {
    position: initial;
    left: 0;
    visibility: visible;
    opacity: 1;
    top: 0;
    display: none;
  }

  .NavMenu li a {
    padding: 8px 15px;
    border-bottom: 1px solid #888888;
    width:100%;
  }

  .NavMenu li ul li ul {
    background: #2874f0;
    position: inherit;
    margin-top: -10px;
  }

  .NavMenu li ul li ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    text-transform: initial;
    padding: 12px 15px 12px 30px;
  }

  /*.NavMenu li a label::after {*/
  /*  right: 10px;*/
  /*}*/

  .NavMenu li input:checked + ul,
  .NavMenu li ul li input:checked + ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
  }

  input:checked + .NavMenu {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    z-index: 999;
  }

  .NavMenu li ul li {
    max-width: unset;
  }
  
  .anchorHeader {
        justify-content: space-between;
    }
    .anchorHeaderSub{
        display: none !important;
    }
    .anchorHeaderSubMob{
        display: block !important;
    }
}

@media (max-width: 768px) {
  .NavMenu {
    width: 100%;
  }
      .header .logo {
        width: 35%;
    }
}

.toggle-icon {
  cursor: pointer;
  display: inline-block;
  margin-left: -5px;
}

.toggle-icon img {
  width: 22px; /* Adjust size as needed */
  height: auto;
  vertical-align: middle;
}
 
input[type="checkbox"] {
  display: none;
}
/*input[type="checkbox"]:checked + ul {*/
/*  display: block;*/
/*}*/
/*ul {*/
/*  display: none;*/
/*}*/
 .has-submenu{
     display:flex !important;
     align-items:center;
 }
 .subimg img{
     margin-left:-30px;  
 }
 
 @media (max-width:990px){
/*     input[type="checkbox"]:checked + ul {*/
/*  display: unset !important;*/
/*}*/
 }

/* button slide css  */

.header-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0px 30px;
  background-color: #226ce000;
  color: #ffffff;
  font-size: 14px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: 0.07px;
  transition: all 0.3s linear;
  z-index: 1;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #1a57b3;
}

.header-btn:hover,
.header-btn:focus {
  color: #ffffff;
}

.header-btn .txt {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 3;
  height: 44px;
  font-weight: 400; 
}

.header-btn:before,
.header-btn:after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  content: "";
  transition-duration: 800ms;
  z-index: 2;
}

.header-btn:before {
  left: 0;
  transform: translateX(-100%);
  background-color: #226ce0;
}

.header-btn:after {
  right: 0;
  transform: translateX(100%);
  background-color: #226ce0;
}

.header-btn:hover:before,
.header-btn:hover:after {
  transform: translateX(0);
}

/* Prevent global-btn animation from breaking */
#contactToggle .txt {
  position: relative;
  z-index: 2;
  z-index: 3;
}

a#contactToggle {
  display: flex;
  align-items: center;
  gap: 20px;
}
img.btn-icon {
  height: 1.8em;
  object-fit: contain;
  z-index: 3;
}

.contact-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

.contact-popup.show {
  opacity: 1;
  pointer-events: all;
}

/* Slide-in animation */
.popup-inner {
  background: #fff;
  width: 380px;
  height: fit-content;
  margin: 80px 20px 20px;
  border-radius: 4px;
  box-shadow: -2px 2px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow: hidden;
}

.contact-popup.show .popup-inner {
  transform: translateX(0);
}

/* Header */
.popup-header {
  padding: 16px 20px;
  background: #f3f3f3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

/* Close button */
.close-btn {
  cursor: pointer;
  font-size: 18px;
}

/* Content blocks */
.popup-content {
  padding: 20px;
  font-family: sans-serif;
}

.popup-block {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e9e9e9;
}

.popup-block p {
  margin: 0 0 15px;
  font-size: 16px;
  color: #838383;
}

.popup-block a {
  text-decoration: none;
  color: #226ce0;
  font-weight: 500;
}

@media (max-width: 991px) {
  .header-btn {
    display: none !important;
  }
  .header{
      width:100vw;
  }
  .header.sticky{
      width:100vw;
  }
  .contact-popup{
      display:none;
  }
}


/*fade in up effect Global */

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);

}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/*fade in up effect 2 */


.fade-in-up-2 {
  opacity: 0;
  transform: translateY(80px);
}

.fade-in-up-2.visible {
  opacity: 1;
  transform: translateY(0);
}


a#contactToggle {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #00000087;
    border: 1px solid white;
}


@media(min-width:995px)and (max-width:1280px){
    
  .navMenudesk li a{
    padding: 15px 7px;
    font-size: 14px;
  }  
}










