:root {
  --blue: #336aea;
  --sky-blue: #0C71C3;
  --dark-blue: #000c1c;
  --white: #ffffff;
  --light-bg: #F5F6F8;
  --text: #333333;
  --text-link: #62b9ff;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Thin.woff2") format("woff2"),
    url("fonts/Montserrat-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-ExtraBold.woff2") format("woff2"),
    url("fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Black.woff2") format("woff2"),
    url("fonts/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.woff2") format("woff2"),
    url("fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Light.woff2") format("woff2"),
    url("fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Medium.woff2") format("woff2"),
    url("fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-ExtraLight.woff2") format("woff2"),
    url("fonts/Montserrat-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.woff2") format("woff2"),
    url("fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Italic.woff2") format("woff2"),
    url("fonts/Montserrat-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lato Hairline';
  src: url('fonts/Lato-Hairline.woff2') format('woff2'),
      url('fonts/Lato-Hairline.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Black.woff2') format('woff2'),
      url('fonts/Lato-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Light.woff2') format('woff2'),
      url('fonts/Lato-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Regular.woff2') format('woff2'),
      url('fonts/Lato-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('fonts/Lato-Bold.woff2') format('woff2'),
      url('fonts/Lato-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


body {
  margin: 0;
  font-size: 16px;
  font-family: 'Lato';
  line-height: 1.6;
  color: var(--text);
  letter-spacing: 0.2px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
  line-height: 1.1;
}
h1 {
  font-size: 4.5rem;
}
h2 {
  font-size: 3rem;
}
h3 {
  font-size: 1.8rem;
}
h4 {
  font-size: 1.5rem;
}
a {
  text-decoration: none;
  transition: 0.3s;
}
button{border: none; cursor: pointer;}
button:focus{border: none; outline: none;}
.abc-btn {
  padding: 15px 40px;
  background: var(--sky-blue);
  color: var(--white);
  font-family: "Montserrat";
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  letter-spacing: 1px;
  display: inline-block;
}
.abc-btn:hover {
  background: var(--dark-blue);
}
/* .abc-btn::before{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  content: "";
  background-color: var(--dark-blue);
  transform: scaleY(0);
  transform-origin: bottom left;
  transition: transform .5s cubic-bezier(.86,0,.07,1);
  transition-timing-function: cubic-bezier(.86,0,.07,1);
  z-index: -1;
}
.abc-btn:hover{
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}
.abc-btn:hover:before{transform-origin: top center;
  transform: scale(1);} */
.center-all {
  align-items: center;
  align-content: center;
  justify-items: center;
  justify-content: center;
  text-align: center;
}
* {
  box-sizing: border-box;
  text-decoration: none;
  padding: 0;
  margin: 0;
}
.container {
  max-width: 1330px;
  width: 100%;
  padding: 0 20px;
  margin: auto;
}
.full-container{
  width: 100%;
  padding: 0 20px;
}
.abc-header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9;
  padding: 20px 0;
}
.abc-header .logo a{
  display: flex;
}
.abc-header.sticky{
  /* background: var(--white); */
  background: var(--sky-blue);
  box-shadow: 0 4px 20px 20px rgba(0,0,0,0.1);
}
.abc-header.sticky nav ul li a{
  /* color: var(--dark-blue); */
  color: var(--white);
}
.abc-header.sticky nav ul li a.header-menu-btn{
  color: var(--white);
}
.abc-header.sticky nav ul li a.header-menu-btn:hover{
  background: var(--dark-blue);
}

.abc-header .row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.abc-header nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.abc-header nav ul li{
  padding: 10px 0;
}
.abc-header nav ul.sub-menu li {
  padding: 0;
}
.abc-header nav ul li a{
  color: var(--white);
  font-size: 14px;
  position: relative;
}
.abc-header nav ul li a::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  transition: 0.3s;
}
.abc-header nav ul li a:hover:before{
  background: var(--text-link);
}
.abc-header nav ul li a:hover{
  color: var(--text-link);
}
.abc-header.sticky nav ul li a:hover{
  color: var(--white);
}
.abc-header .logo img{
  max-width: 120px;
}
.abc-header nav{display: flex; align-items: center; gap: 30px;}
.header-menu-btn{font-size: 14px; background: var(--sky-blue); font-weight: 600; padding: 10px 25px; display: inline-block; color: var(--white);}
.header-menu-btn:hover{background: var(--white); color: #000;}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.abc-header .sub-menu{
  position: absolute;
  left: 20px;
  top: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--dark-blue);
  gap: 0;
  display: none;
}
.abc-header .sub-menu a{
  color: var(--dark-blue);
  padding: 8px 25px;
  width: 100%;
  display: block;
  border-bottom: 1px solid #eee;
}
.abc-header .sub-menu a::before{
  display: none;
}
.abc-header .sub-menu a:hover{
  background: var(--sky-blue);
  color: var(--white
  );
}
.abc-header .has-children{
  position: relative;
}
.abc-header .has-children:hover .sub-menu{
  display: block;
}
.abc-header.sticky .header-menu-btn{
  background: var(--dark-blue);
  color: var(--white);
}
.abc-header.sticky .header-menu-btn:hover{
  background: var(--white);
  color: var(--dark-blue);
}



.hero-banner {
  background: url(./images/business.webp) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 10rem 0;
  min-height: 100vh;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-banner::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 12, 28, 0.9);
}
.hero-banner .row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.hero-content {
  max-width: 1000px;
  margin: auto;
  color: var(--white);
}
.hero-content p {
  margin-bottom: 20px;
}
.hero-content p a{
  color: var(--text-link);
  font-weight: 600;
  transition: 0.3s;
}
.hero-content p a:hover{
  text-decoration: underline;
}

.hero-content .abc-btn:hover{
  background: var(--white);
  color: var(--dark-blue);
}
/* services section css */
.services{
  background: var(--light-bg);
}
.services .card {
  background: #fff;
  border-top: 5px solid var(--sky-blue);
    position: relative;
    overflow: hidden;
    height: 100%;
    background-color: #fff;
    text-align: center;
    min-height: 175px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, .07);
    transition: all .3s linear;
}
.services .card h4{
  color: #000c1c;
}
.services .card a{
  position: relative;
  z-index: 1;
}
.services .card::before, .services .card::after {
  position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    content: "";
    transition: all .3s linear;
}
.services .card:before {
  height: 0;
  background-color: var(--sky-blue);
}
.services .inner-card{
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.services .card:after {
  height: 100%;
  background-image: url(images/particles-main.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  z-index: 0;
  filter: brightness(0) saturate(100%) invert(79%) sepia(58%) saturate(503%) hue-rotate(180deg) brightness(105%) contrast(102%);
  opacity: 0.8;
}
.services .card:hover {
  transform: translateY(-10px);
}
.services .card:hover:after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(356deg) brightness(103%) contrast(105%);
  opacity: 0.3;
}
.services .card:hover:before {
  height: 100%;
}
.services .card:hover .icon img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(356deg) brightness(103%) contrast(105%);
}
.services .card:hover h4, .services .card:hover p{
  color: var(--white);
}
.services .card .abc-btn {
  padding: 12px 30px;
}
.services .card:hover .abc-btn {
  background: var(--white);
  color: #000;
}
.section-subtitle::before{
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--sky-blue);
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.section-subtitle::after{
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  background: var(--sky-blue);
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.section-subtitle{
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--sky-blue);
  font-family: "Montserrat";
  font-weight: 600;
  position: relative;
  letter-spacing: 2px;
}
.services .section-header{
  max-width: 700px;
  margin: auto;
}
.section-header{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.section-spacing{
  padding: 6rem 0;
}
.services .container{
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.services p{
  color: var(--text);
}
.services h2{
  color: var(--dark-blue);
  text-transform: capitalize;
}
.services .row{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.services .card .icon img{
  width: 80px;
  height: 80px;
  object-fit: contain;
}
/* footer css */
.footer{background: var(--dark-blue); padding: 70px 0;}
.footer .row{
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.footer .logo img{max-width: 150px; width: 100%;}
.footer .footer-title{position: relative; border-bottom: 2px solid #ffffff1a;     padding-bottom: 18px; margin-bottom: 25px; color: #fff;}
.footer .footer-title::before{content: ''; position: absolute; width: 50px; height: 3px; left: 0; bottom: -1px; background: var(--sky-blue);}
.footer ul li{margin-bottom: 15px;}
.footer ul li a{color: #fff; display: flex; gap: 10px; align-items: flex-start;}
.footer ul li a:hover{color: var(--sky-blue);}
.footer ul li a img{width: 28px; height: 28px; object-fit: contain;}
.footer .social-media img{width: 40px; height: 40px; object-fit: contain; transition: 0.3s;}
.footer .social-media img:hover{filter: brightness(0) saturate(100%) invert(100%) sepia(99%) saturate(0%) hue-rotate(147deg) brightness(108%) contrast(100%);}
.footer .social-media{margin-top: 30px;}
.mobile-navbar{display: none;}

/* mobile menu css */
#mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-width: 320px;
  background: var(--sky-blue);
  z-index: 9999;
  text-align: center;
  transform: translateX(-100%);
  transition: transform 300ms linear;
  will-change: transform;
  padding: 15px;
}
#mobileMenu a{color: #fff;}
#mobileMenu.open {
  transform: none;
  transition: transform 300ms linear;
}
#mobileMenu .logo-wrap{display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px;}
#mobileMenu .logo-wrap .mobile-logo{max-width: 150px;}
#closeToggle img{width: 25px;}

img{
  max-width: 100%;
  height: auto;
}
#mobileMenuTrigger img{
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%) hue-rotate(320deg) brightness(103%) contrast(101%);
  width: 25px;
}
.abc-header.sticky #mobileMenuTrigger img{
  filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7463%) hue-rotate(23deg) brightness(111%) contrast(103%);
}
.mobile-menu{
  text-align: left;
}
.mobile-menu ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
ul.mobile-sub-menu {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  padding-left: 20px;
  transition: max-height 0.3s linear;
  will-change: max-height;
  
}
ul.mobile-sub-menu.open {
  max-height: 400px;
  opacity: 1;
  visibility: visible;
  transition: max-height 0.3s linear;
}
.mobile-header-btn{text-align: left; margin-top: 30px;}
.mobile-header-btn a{background: var(--dark-blue); color: var(--white);}
#mobileMenuTrigger{display: none;}



/* About page css */
.abc.about .abc-header{position: unset; top: unset; right: unset; bottom: unset; left: unset; background: var(--sky-blue);}
.abc.about .abc-header .header-menu-btn{background: var(--dark-blue); color: var(--white);}
.abc.about .abc-header .header-menu-btn:hover{background: var(--white); color: var(--dark-blue);}

.inner-hero-sec h1{color: #fff;}
.inner-hero-sec .container{position: relative;}
.inner-hero-sec{background: url(./images/business.webp) no-repeat; background-size: cover; padding: 100px 0; position: relative; background-position: center; display: flex; min-height: 330px;}
.inner-hero-sec:before{position: absolute; top: 0; left: 0; right: 0; bottom: 0; content: ""; width: 100%; height: 100%; background: rgba(0, 12, 28, 0.9);}

.about-abc-sec .row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-abc-sec .img-col img{width: 100%;}
.about-abc-sec .img-col .inner-col {
  position: relative;
  padding-right: 110px;
}
.about-abc-sec .img-col .img-1 {
  position: relative;
  margin-bottom: 0;
  width: 100%;
}
.about-abc-sec .img-col .img-2 {
  position: absolute;
  right: 0;
  top: 60px;
  margin-bottom: 0;
  border: 5px solid #fff;
  box-shadow: 0 10px 60px rgba(0, 0, 0, .1);
  height: 300px;
  max-width: 215px;
  width: 100%;
}
.about-abc-sec .img-col .img-1 img{
  height: 600px;
  object-fit: cover;
}
.about-abc-sec .img-col .img-2 img{
  height: 100%;
  object-fit: cover;
}
.about-abc-sec h2{
  color: var(--dark-blue);
}
.about-abc-sec .abc-btn{
  background: var(--sky-blue);
}
.about-abc-sec .abc-btn:hover{
  background: var(--dark-blue);
}
.inner-col{
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.section-subtitle.left::before{
  display: none;
}
.section-header.left{
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}


/* contact page css */
.contact-form-sec .row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.abc-contact-form{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.contact-form-sec .form-control{
  height: 60px;
  background: var(--light-bg);
  border: none;
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  font-family: 'Lato';

}
.contact-form-sec .form-control::placeholder{
  color: #666666;
}
.contact-form-sec .form-control:focus, .contact-form-sec textarea:focus{
  outline: none;
}

.contact-form-sec textarea{
  height: 160px;
  background: var(--light-bg);
  border: none;
  width: 100%;
  font-family: 'Lato';
  font-size: 16px;
  color: #666666;
  padding: 10px 20px;
}
.field-group-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form-sec input[type="submit"]{
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form-sec .icon-box{
  display: inline-flex;
  gap: 15px;
  align-items: center;
  color: var(--dark-blue);
  transition: 0.3s;
}
.contact-form-sec .icon-box .text span{
  color: var(--text);
  line-height: 1.4;
  display: inline-block;
}
.contact-form-sec .icon-box:hover .icon{
  background: var(--dark-blue);
}
.contact-form-sec .icon-box .icon{
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  background: var(--sky-blue);
  display: flex;
  align-items: center;
  transition: 0.3s;
  justify-content: center;
}
.contact-form-sec .icon-box .icon img{
  width: 30px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.contact-form-sec .icon-box h6{
  font-size: 20px;
  margin-bottom: 5px;
}
.contact-form-sec .icon-box span{
  font-size: 20px;
}
.contact-info-box{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.map-sec{background: var(--light-bg);}
.map-sec .row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.inner-col{
  width: 100%;
}






















/* responsive css */
@media(max-width: 1366px){
  .abc-header nav ul{
    gap: 20px;
  }
  .abc-header nav{
    gap: 20px;
  }
  /* .abc-header .logo img {
    max-width: 200px;
  } */
}
@media(max-width: 1220px){
  .abc-header nav{display: none;}
  .mobile-navbar{display: block;}
  #mobileMenuTrigger{display: block;}
}
@media(max-width: 1024px){
  .services .row {
    grid-template-columns: 1fr 1fr;
  }
  h1 {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  .full-container {
    padding: 0 20px;
  }
  .hero-banner{
    min-height: 0;
    padding: 10rem 0 5rem;
  }
  .footer .row{
    flex-direction: column;
  }
  .section-spacing {
    padding: 5rem 0;
  }
  .about-abc-sec .row{
    gap: 40px;
  }
  .about-abc-sec .img-col .inner-col {
    padding-right: 60px;
  }
}
@media(max-width: 991px){
  .contact-form-sec .row {
    grid-template-columns: 1fr;
  }
}
@media(max-width: 767px){
  .services .row {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .about-abc-sec .row{
    grid-template-columns: 1fr;
  }
  .about-abc-sec .img-col .img-1 img{
    height: 430px;
  }
  .inner-hero-sec{
    min-height: 0;
  }
  .section-spacing {
    padding: 3rem 0;
  }
  .map-sec .row {
    grid-template-columns: 1fr;
  }
  .field-group-wrap{
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .abc-contact-form{
    gap: 15px;
  }
  .contact-form-sec .form-control{
    height: 50px;
    padding: 10px 15px;
  }
  .contact-form-sec textarea{
    height: 140px;
    padding: 10px 15px;
  }
  .abc-header{
    padding: 15px 0;
  }
  .abc-header .logo img {
    max-width: 100px;
  }
  .footer{
    padding: 50px 0;
  }
}
@media(max-width: 480px){
  .about-abc-sec .img-col .img-2{
    display: none;
  }
  .about-abc-sec .img-col .inner-col {
    padding-right: 0;
  }
  .about-abc-sec .img-col .img-1 img {
    height: 200px;
  }
  .contact-form-sec .icon-box .icon{
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
  }
  .contact-form-sec .icon-box h6 {
    font-size: 16px;
    margin-bottom: 0;
  }
  .contact-form-sec .icon-box span {
    font-size: 14px;
  }
}

