/********** Template CSS **********/
html {
  overflow-x: hidden;
  height: 100%;
  margin: 0;
}
:root {
  --primary: #14087a;
  --secondary: #34ad54;
  --light: #ffffff;
  --dark: #0d0e75;
}

/*** Spinner ***/
@-webkit-keyframes sk-rotateplane {
  0% {
      -webkit-transform: perspective(120px);
  }
  50% {
      -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
      -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
      transform: perspective(120px) rotateX(0deg) rotateY(0deg);
      -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
      transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
      -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
      transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
      -webkit-transform: perspective(120px) rotateX(-180deg)
          rotateY(-179.9deg);
  }
}


.spinner {
  width: 5%;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}


#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/

h1,
h2,
.fw-bold {
  color: #0e1c83;
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}
p{
  text-align: justify;
}
/*** Button ***/

.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
  text-align: center;
  background-color: #0E1C83;
  color: white;
}
.btn:hover{
  background-color: #14087a;
  color: #ffffff;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 5%;
  height: 36px;
}

.btn-sm-square {
  width: 10%;
  height: 30px;
}

.btn-lg-square {
  width: 8%;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/*** Navbar ***/






/*** Carousel ***/

.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(46, 46, 46, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
      font-size: 14px;
      font-family: Helvetica;
      font-weight: 500 !important;
  }
  .carousel-caption h1 {
      font-size: 30px;
      font-family: Helvetica;
      font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20%;
  height: 3rem;
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 25%;
  height: 5px;
  left: 0;
  bottom: 0;
  background: #0E1C83;
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 43%;
  margin-left: -75px;
}



.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 10s infinite linear;
  animation: section-title-run 10s infinite linear;
}



.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}
@media (max-width: 576px) {
  .section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #ffffff;
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
  }

  .section-title::before{
    width: 65%;
    margin-left: -75px;

  }
}



@-webkit-keyframes section-title-run {
  0% {
      left: 0;
  }
  50% {
      left: 145px;
  }
  100% {
      left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
      left: 50%;
      margin-left: -75px;
  }
  50% {
      left: 50%;
      margin-left: 45px;
  }
  100% {
      left: 50%;
      margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
      left: 0;
  }
  50% {
      left: 85px;
  }
  100% {
      left: 0;
  }
}



/*** Service ***/

@media (max-width: 1200.98px) {
  .service-item {
    font-size: 13px;
  }
}

.service-item {
  position: relative;
  height: 400px;
  padding: 0 20px;
  transition: 0.1s;
  border: 1px solid #0e1c83;
}
.service-item:hover{
  /* border: 2px solid var(--primary) */
  box-shadow: 0px 0px 10px #0e1c83;


}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 18%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0E1C83;
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}



/*** Testimonial ***/

.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 5%;
  height: 15px;
  background: #ffffff;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 10%;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}

/*** Team ***/

.team-item {
  transition: 0.5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
  background: #020d5b;
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}
.blog-item .blog-img .img-fluid{
  width: 100%;
  height: auto;
}
.blog-item{
  border:2px solid #0e0d0d46
}
.blog-item:hover{
  border:2px solid var(--primary)
}
/*** Miscellaneous ***/

@media (min-width: 991.98px) {
  .facts {
      position: relative;
      margin-top: -75px;
      z-index: 1;
  }
}


.bg-header {
  background: url(../../landingPageAssets/img/landing-page/img/business_1_1.jpg) center center no-repeat;
  background-size: cover;
}

.link-animated a {
  transition: 0.5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

.navbar-brand {
  color: #104d8a;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

@media (min-width: 499.98px) {
  .footer-about {
      margin-bottom: -75px;
  }
  #navbar {
      background: #ffffff;
      box-shadow: 0 1px 2px rgba(3, 4, 82, 0.05);
      justify-content: space-between !important;

  }
  #navbar li {
      padding-left: 5px;
  }
  /* #navbar .nav-link {
      font-family: "Poppins", sans-serif;
      font-weight: 750;
      color: #020d5b;
      text-transform: none;
      font-size: 18px;
      letter-spacing: 0.6px;
      transition: all 0.25s ease;

  }
  #navbar .btn-nav-link{
      font-family: "Poppins", sans-serif;
      font-weight: 750;
      color: #fff;
      text-transform: none;
      font-size: 18px;
      letter-spacing: 0.6px;
      transition: all 0.25s ease;
      text-decoration: none;
  }
  
  #navbar .nav-link:hover,
  #navbar .nav-link:focus {
      color: #f75757;
      border-bottom: 2px solid red;
  } */

  #navbar .nav-link {
    font-family: "Poppins", sans-serif;
    font-weight: 750;
    color: #020D5B;
    text-transform: none;
    font-size: 18px;
    letter-spacing: 0.6px;
    transition: all 0.25s ease;
    position: relative;
}

#navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 4px;
    color: red;
    background-color: #0E1C83;
    transition: width 0.25s ease;
}

#navbar .nav-link:hover::after,
#navbar .nav-link:focus::after {
    width: 100%;
}

#navbar .btn-nav-link {
      font-weight: 600;
    color: #fff;
    text-transform: none;
    font-size: 18px;
    letter-spacing: 0.6px;
    transition: all 0.25s ease;
    text-decoration: none;
}
  #navbar .btn {
      padding: 0.5rem 1.5rem;
      color: #fff;
  }
  #navbar .btn:hover {
      color: #fff;
      background: #020c5b83;
  }
  .header-top {
      background: #05114B;
      color: #f7f7f7;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .header-top .header-top-socials {
      border-right: 1px solid rgba(255, 255, 255, 0.05);
      padding: 12px 0px;
  }
  .header-top .header-top-socials a {
      color: #fbfbfd;
      margin-right: 15px;
      font-size: 16px;
  }
  .header-top .header-top-info {
      color: #ffffff;
      font-size: 16px;
  }
  .header-top .header-top-info a span {
      color: #fff;
  }
  .header-top .header-top-info a {
      margin-left: 35px;
      color: #ffffff;
  }
  




  .navbar-brand:hover{
    color: #104d8a;

  }
  .dropdown-menu {
      visibility: hidden;
      filter: alpha(opacity=0);
      opacity: 0;
      transition: all 0.2s ease-in, visibility 0s linear 0.2s,
          -webkit-transform 0.2s linear;
      transition: all 0.2s ease-in, visibility 0s linear 0.2s,
          transform 0.2s linear;
      transition: all 0.2s ease-in, visibility 0s linear 0.2s,
          transform 0.2s linear, -webkit-transform 0.2s linear;
      -webkit-transition: all 0.2s ease-in, visibility 0s linear 0.2s,
          -webkit-transform 0.2s linear;
      -o-transition: all 0.2s ease-in, visibility 0s linear 0.2s,
          -o-transform 0.2s linear;
      -ms-transition: all 0.2s ease-in, visibility 0s linear 0.2s,
          -ms-transform 0.2s linear;
      width: 150%;
      margin-top: 5px;
      padding: 0px;
      border-radius: 0px;
      display: block;
  }
  .dropdown-toggle::after {
      display: none;
  }
  .dropdown:hover .dropdown-menu {
      visibility: visible;
      transition: all 0.45s ease 0s;
      opacity: 1;
  }
  .dropdown-item {
      padding: 0.8rem 1.5rem;
      text-transform: uppercase;
      font-size: 14px;
      background: #0E1C83;
      color: #fff;

  }
  .dropdown-item:hover {
    background: #1a227eac;
    color: #fff;
  }
  ul.dropdown-menu li {
      padding-left: 0px !important;
  }
  #navbarsExample09{
    justify-content: end;
  }
  /* .card {
      background-color: #c5cae9;
  } */
  .id {
      color: #000080;
  }
  .log {
      background-color: #1a237e;
  }
  .form {
      background-color: #c5cae9;
  }
  .pwd {
      margin-bottom: 10px;
  }
  .error {
      color: red;
  }
  .diplay {
      font-family: Helvetica;
      font-size: 18px;
  }
  .collapse {
      text-align: right;
  }

  .diplays-4 {
      font-family: Helvetica;
      text-shadow: 7px 2px 5px rgb(27, 27, 209);
      transition: width 2s;
  }
  .texts{
      color: black;
      text-align: justify;
  }
  .call {
      width: 10%;
      height: 60px;
      background-color: #0e1c83;
  }
  .why-choose-content{
    margin-left: auto;
  }
.why-choose{
  width: auto;
  transition: 0.5s;
  padding: 10px;
  height: 290px;
  border: 1px solid #0e1c83;
  border-radius: 2%;
}
.why-choose:hover{
  transition: 0.5s;
  transform: scale(0.1.1);
  border-radius: 10px;
  box-shadow: 0px 0px 10px #0e1c83;
}
.why-choose h4{
  text-align: center;
}
.why-choose-content .why-choose .choose {
  width: 20%;
  height: 60px;
  text-align: center;
}
.why-choose-content .why-choose .choose i{
  font-size: 40px;
  line-height: 60px;
  color: #0E1C83;
}


}

@media (max-width:500px){
  .why-choose{
    transition: 0.5s;
    padding: 10px;
    height: 290px;
    border: 1px solid #0e1c83;
    border-radius: 2%;
    font-size: 10px;
  }
  .why-choose-content .why-choose .choose {
    width: 20%;
    height: 60px;
    text-align: center;
  }
  .why-choose-content .why-choose .choose i{
    font-size: 40px;
    line-height: 60px;
    color: #0e1c83;
  }
  .why-choose:hover{
    transition: 0.5s;
    transform: scale(0.1.1);
    border-radius: 10px;
    box-shadow: 0px 0px 10px #0e1c83;
  }
  
  
}

  .fot {
      background: #061429;
  }
  .hyt {
      height: 75px;
  }
  .spin {
      margin-bottom: 90px;
  }
  .contact {
      color: #081b70;
  }
  .cont {
      background-color: #081b70;
  }
  .adm {
      color: white;
  }
  .text {
      color: black;
  }
  .colortexth6 {
      color: #686767;
  }
  .example2 {
      background-color: #c5cae9;
      width: 66.5%;
      height: 100px;
  }
  ::-ms-input-placeholder {
      /* Edge 12-18 */
      color: #dddddd;
      opacity: 50%;
      font-size: 1.2em;
  }
  .colo {
      background-color: #c5cae9;
      width: 100%;
      height: 100%;
  }
  .colos {
      background-color: #c5cae9;
      width: 100%;
      height: 50%;
  }
  .colhead {
      background-color: #1a237e;
  }
  .welcome {
      font-family: Helvetica;
  }
  .smmasatbl {
      color: #0e1c83;
  }
  .btndel {
      background-color: #ffcdf7;
  }
  .sp {
      color: white;
      font-size: 20px;
  }
  .reg {
      width: 100%;
  }
  .rege {
      width: 100%;
  }
  /* view */
  .salre {
      width: 125%;
  }
  .fas {
      font-size: 24px;
      color: rgb(23, 5, 112);
  }
  .fass {
      position: relative;
      left: 3px;
      font-size: 18px;
      color: rgb(23, 5, 112);
      margin-top: 8px;
      top: 0px;
  }
  .tablestext {
      color: black;
      width: 125%;
  }
  .body {
      width: 100%;
      animation: none;
  }
  .salebody {
      width: 100%;
  }
  .cols {
      color: #1a237e;
  }
  .colss {
      color: #1a237e;
  }

  .rounds {
      background-color: #081b70;
  }
  * {
      box-sizing: border-box;
  }
  ul {
      list-style-type: none;
  }
  body {
      font-family: Verdana, sans-serif;
  }
  .month {
      padding: 30px;
      width: 100%;
      background: #1a237e;
      text-align: center;
  }
  .month ul li {
      color: white;
      font-size: 20px;
      text-transform: uppercase;
      letter-spacing: 3px;
  }
  .calen {
      color: white;
      margin-top: 12px;
  }
  .calenclk {
      background-color: white;
      color: #1a237e;
  }
  .slow {
      display: inline-block;
      vertical-align: bottom;
      max-width: 0.5rem;
      overflow: hidden;
      animation: slow 2s ease forwards;
  }
  @keyframes slow {
    from {
        max-width: 0.5rem;
    }
    to {
        max-width: 3rem;
    }
}

  .container,
  .container-fluid,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
      margin-right: auto;
      margin-left: auto;
  }
  @media (min-width: 100%) {
      .container,
      .container-sm {
          max-width: 100%;
      }
  }
  @media (min-width: 100%) {
      .container,
      .container-sm,
      .container-md {
          max-width: 100%;
      }
  }
  @media (min-width: 100%) {
      .container,
      .container-sm,
      .container-md,
      .container-lg {
          max-width: 100%;
      }
  }
  @media (min-width: 100%) {
      .container,
      .container-sm,
      .container-md,
      .container-lg,
      .container-xl {
          max-width: 100%;
      }
  }
  .contact-form .help-block ul {
      margin: 0;
      padding: 0;
      list-style-type: none;
  }



.responsive-link {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 10px;
  transition: background-color 0.3s ease;
}

.alignrights {
  text-align: right;
  color: rgb(2, 3, 80);
}



@media (min-width: 1024px) {

  #navbarCollapse {
    display: none !important;
}

}

@media (max-width: 768px) {
  .header-top {
      background: #020d5b;
      box-shadow: 0 1px 2px rgba(3, 4, 82, 0.05);
      color: #fff;
  }
  .header-top span {
      color: #020d5b;
  }
  .header-top .fa {
      color: #fff;
  }
  .header-top a {
      color: #fff;
  }
  .header-top-info {
      display: flex;
      flex-direction: column;
  }
  .navbar {
      background: #ffffff;
      box-shadow: 0 1px 2px rgba(3, 4, 82, 0.05);
  }
  .fa-bars {
      background-color: #fff;
  }
  .navbar-brand {
      font-size: 26px;
      font-weight: 700;
      color: #020d5b;
  }

  .form {
      background-color: #979dc2;
  }
  .card-bodys {
      background: #979dc2;
  }
}
@media (max-width: 768px) {
  .colo {
      background-color: #c5cae9;
      width: 100%;
      height: 100%;
  }
  .colos {
      background-color: #c5cae9;
      width: 100%;
      height: 50%;
  }
  .colhead {
      background-color: #1a237e;
  }
  .text {
      color: black;
  }
  .colortexth6 {
      color: #686767;
  }
}
@media (max-width: 768px) {
  .cen {
      text-align: center;
      color: #020d5b;
      display: flex;
      justify-content: center;
      align-items: center;
      display: grid;
  }
}
.border-box {
  border: 2px solid #333;
  padding: 20px;
  max-width: 80%;
  text-align: center;
  box-sizing: border-box;
}

@media (min-width: 150px) {
  body {
      font-family: Helvetica;
  }
  .open-button {
      background-color: #1a237e;
      color: white;
      left: 200px;
      border: none;
      cursor: pointer;
      margin-left: 70px;
      width: 200px;
      height: 100px;
  }
  .form-popup {
      display: none;
      width: 200%;
  }
  .open-buttons {
      background-color: #1a237e;
      color: white;
      left: 400px;
      border: none;
      cursor: pointer;
      margin: 2px;
      margin-left: 80px;
      width: 200px;
      height: 100px;
  }
  .form-popups {
      display: none;
      width: 200%;
  }
  .txtsize {
      font-size: 12px;
  }
}
.number {
  font-size: 48px;
  text-align: center;
  color: red;
}
.service {
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
}
.align {
  text-align: center;
}
.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.marquee {
  position: relative;
  animation: marquee 25s linear infinite;
  text-align: center;
  color: #fff;
}
@keyframes marquee {
  0% { transform: translateX(-65%); }
  100% { transform: translateX(65%); }
}
/* @keyframes marquee {
  0% {
      left: -20em;
  }
  100% {
      left: 27em;
  }
} */
.marquee-container2 {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 60px;
  white-space: nowrap;
}
.marquee2 {
  display: inline-block;
  animation: marquee2 25s linear infinite;
  color: #fff;
}
@keyframes marquee2 {
  0% { transform: translateX(150%); }
  100% { transform: translateX(-150%); }
}
/* @keyframes marquee2{
  0% {
    left: 20em;
}
100% {
    left: -27em;
}
} */
 @media (max-width:319px){
  .marquee{
    font-size: 22px;
  }
 }

@media (max-width: 768px){
  .marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .marquee{
    animation: marquee 25s linear infinite;

  }
  .marquee2 {
    position: relative;
    animation: marquee2 25s linear infinite;
    color: #fff;
  }

  @keyframes marquee {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }

  @keyframes marquee2 {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
  
}

@media (max-width: 330px) {
  .marquee{
    font-size: 25px;
  }
}

@media (max-width: 845px) {
  .marquee{
    animation: marquee 25s linear infinite;

  }
  .marquee2 {
    position: relative;
    animation: marquee2 25s linear infinite;
    color: #fff;
    width: max-content;
  }
  @keyframes marquee2 {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
  


}

@media (max-width: 768px) {
  .header-top a span {
      color: #fff;
  }
}
.fas {
  color: rgb(255, 255, 255);
}
.images {
  background: url(../../landingPageAssets/img/landing-page/img/1.jpg) center center no-repeat;
  background-size: cover;
}
/* div.gallery {
  border: 4px solid #ffffff;
  background-color: #eeeeee;
  width: 300px;
  height: 150px;
  padding: 10px;
  border: 4px solid #eeeeee;
  overflow: hidden;
  position: relative; 
} */
/* Define the gradient animation */
/* div.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(111, 108, 108, 0.5));
  transition: height 0.3s ease-out; 
} */

/* Change the gradient on hover */
/* div.gallery:hover::before {
  height: 100%; 
} */

/* Change the border color on hover */
/* div.gallery:hover {
  border-color: var(--light);
} */

div.gallerys {
  background : linear-gradient(rgb(230, 225, 225),#f7f4f4);
  width: 350px;
  height: 230px;
  padding: 10px;
  box-shadow: 0 5px 18px #0e1c83;
  transition: 0.5s;
}

div.gallerys:hover {
  box-shadow: 0 5px 18px white ;
  transition: 0.5s;
}

.gallery {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 10px;
  text-align: center;
}

.gallery:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 100%;
  height: 100%;
  border: 1px solid #14087a; /* Adjust border properties as needed */
  box-sizing: border-box;
}
.gallery:hover::before{
  transform: translateX(-50%) rotate(135deg);
  border: 1px solid #0E1C83; /* Adjust border properties as needed */
  box-sizing: border-box;
  background: #0E1C83; /* Adjust background properties as needed */
  transition: 0.5s;
  box-sizing: border-box;
}
.gallery:hover{
  .heading{
    color: white;
  }
  .text{
    color: white;
  }
  .number{
    color: white;
  }
}


.gallery > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 990px) and (min-width: 768px) {
  .gallery:before {
    transform: translateX(-50%) rotate(0deg); /* Rotate to 0 degrees to show square */
  }

  .gallery:hover::before {
    transform: translateX(-50%) rotate(0deg); /* Rotate to 0 degrees to show square */
    background: #13087ad7; /* Adjust background properties as needed */
  }
}

.ftco-services .media {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ftco-services .media .icon {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 1;
  font-size: 28px;
  color: #fff;
  transition: 0.5s;
}

.ftco-services .media .icon span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* .ftco-services .media .gallery .number {
  font-size: 30px;
  color: red !important;
}

.ftco-services .media .gallery .heading {
  font-size: 50px;
  color: black !important;;
}


*/
.ftco-services .media .gallery .text {
  font-size: 30px;
} 

.ftco-services .media .gallery .number,
.ftco-services .media .gallery .heading,
.ftco-services .media .gallery .text {
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

@media (max-width: 1198px) {
  .gallery {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 10px;
    text-align: center;
    
  }
  .ftco-services .media .gallery .number,
 .ftco-services .media .gallery .heading,
 .ftco-services .media .gallery .text {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-size: 35px;
  }
  .ftco-services .media .icon {
    width: 80px;
    height: 80px;
    line-height: 1;
    font-size: 32px;
  }
  .ftco-services .media .icon span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
} 
@media (max-width: 768px){

  .ftco-services .media .gallery .heading {
     margin: 0;
     padding: 0;
     line-height: 1.2;
     font-size: 20px;
   }
   .ftco-services .media .gallery .number{
    font-size: 35px;
   }

   .ftco-services .media .gallery .text{
    font-size: 35px;
   }
   
 
}


/* Adjust other styles as needed */


/* contact us */

.btn-open-popup {
  padding: 10px 24px;
  font-size: 15px;
  background-color: rgb(8, 26, 82);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-open-popup:hover {
  background-color: #1286a3;
}

.overlay-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pop {
  color: rgb(5, 4, 88);
}
.popup-box {
  background: #fff;
  padding: 3px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  width: 420px;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInUp 0.5s ease-out forwards;
}

.form-container {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 10px;
  font-size: 16px;
  color: #000000;
  text-align: left;
}

.form-input {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.btn-submit,
.btn-close-popup {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-submit {
  background-color: rgb(7, 6, 88);
  color: #fff;
}

.btn-close-popup {
  margin-top: 12px;
  background-color: #e74c3c;
  color: #fff;
}

.btn-submit:hover,
.btn-close-popup:hover {
  background-color: #4caf50;
}
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}

  .modal {
    display: none; /* Hide the modal by default */
    position: fixed; /* Position the modal relative to the viewport */
    left: 0;
    top: 0;
    width: 100%;
    overflow: auto; /* Allow scrolling if modal content exceeds viewport */
    background-color: rgb(0, 0, 0 ,1); 
    }

  .modal-content {
    position: fixed; /* Change to fixed position */
    top: 50%; /* Position it in the center vertically */
    left: 50%; /* Position it in the center horizontally */
    transform: translate(-50%, -50%); /* Center it precisely */
    max-width: 80%; /* Adjust the max-width if needed */
    width: 80%; /* Allow the width to adjust based on content */
    padding: 20px;
  }

  .modal-content video {
    width: 100%; /* Set video width to fill its container */
    height: auto; /* Let the height adjust proportionally */
    display: block; /* Ensure it's displayed as a block element */
    background: cover;

  } 

  .close {
    color: #aaa; 
    text-align: right;
    font-size: 28px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer; 
  }

  @media screen and (max-width: 600px) {
    .modal-content {
        width: 90%; /* Adjust width for smaller screens */
        max-width: 100%; /* Allow modal to occupy full width */
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .close {
        top: 5px; /* Adjust top position for smaller screens */
        right: 5px; /* Adjust right position for smaller screens */
        font-size: 20px; /* Reduce font size for smaller screens */
    }
}
  
.cloud{
  padding: 10px;
  position: relative;
  transition:all 0.5s ease-in-out;
  border-radius: 10px;
  height: 230px;
  border: 1px solid #0e1c83;
}
.cloud:hover{
  transition:all 0.5s ease-in-out;
  box-shadow: 0px 0px 10px #0e1c83;
}


/* footer */
.footer-newsletter{
  background-image: url(../img/footer-bg.png);
}

.map{
  width: -webkit-fill-available;
  height: 405px;
  border: 1px solid black;
}
@media(max-width:600px){
  .map{
    width: 100%;
    height: 300px;
  }
}
@media(max-width:1399px){
  .map{
    width: 100%;
    height: 400px;
  }
}

/* whatsapp */
/* Container for the fixed icons */
.fixed-icons-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000; /* Ensure the icons stay on top of other elements */
}

.whatsapp-icon {
  font-size: 50px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #fff; /* Added background color for visibility */
}

.fa-icon{
  border-radius: 50%;
  color: green;
  font-size: 45px;
}

/* back to home button */
.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: #0A58CA; /* Added background color for visibility */
  color: white; /* Ensure the icon is visible */
}

.top-arrow {
  font-size: 26px;
}




