@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif!important;
  font-size: 16px!important;
  font-weight: normal!important;
  color: #37383A!important;
  font-style: normal!important;
  line-height: 26px!important;
  background-color: #14294B !important;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
}

button {
  outline: 0 !important;
}

dl,
ol,
ul {
  padding: 0 !important;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: none!important;
}
.navbar-toggler{background: #162a51 !important;}
/*.navbar-collapse.show { background: #fff;}*/
/*.navbar-collapse.show .nav-link { color:#000 !important }*/


@media (max-width: 991.98px) {
  #mainNavbar .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: 0.5rem;
  }

  #mainNavbar .nav-link {
    color: #000 !important; /* Ensure links are visible on white */
  }
}
.section{padding: 100px 0px;}


/* Default navbar (top position) */
#mainNavbar {
  transition: all 0.9s ease;
  background: transparent;
}
#mainNavbar .nav-link {
  color: white;
  transition: color 0.9s ease;
}
#mainNavbar .btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  transition: background 0.3s ease, color 0.3s ease;
}
#mainNavbar .btn:hover {
  background: white;
  color: black;
}

/* When scrolled */
#mainNavbar.scrolled {
  background: white !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
#mainNavbar.scrolled .nav-link {
  color: #000 !important;
}
#mainNavbar.scrolled .btn {
  background: #0d1b4c; /* Dark navy like image */
  color: white;
}


/* Navbar */
.navbar {
  padding: 1rem 2rem;
}

.navbar-brand img {
  height: 100px;
}

.navbar-nav .nav-link {
  color: white ;
  margin-left: 30px;
  font-weight: 500;
  font-size: 17px;
}


/* Hero Section */
.hero-content {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  /*background-image: url("https://itagency-demo.web.app/assets/images/backgrounds/hand-ia-bgremove.png");*/
    background-image: url("../images/hand-bgremove.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  z-index: 1;
  background-attachment: fixed; 
}


.hero-content::before
 {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .2;
    background-color: #052b62;
    /*background: linear-gradient(to bottom, #5B86E5, #36D1DC);*/
}

#particles-js {
     position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;

}

.hero-content h2 {  
      color: #fff;
    font-size: 60px;
    font-weight: 600;
    line-height: 70px;
    letter-spacing: -1px;
    margin: 30px 0;
}

.hero-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #3f91ff;
}

.hero-content p {
     margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 17px;
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header p {
  font-size: 1.125rem;
  color: #777;
}

.section-header p {
  font-size: 1rem;
  color: #777;
  text-align: center;
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-icon i:hover {
  transform: scale(1.1);
}

.section-header h2 {
  font-size: 55px;
    font-weight: 700;
    line-height: 65px;
    letter-spacing: -1px;
    color: #253745;
}

.section-header p {
  font-size: 1.125rem;
  color: #777;
}

/* Service Cards */
.service-card {
  position: relative;
  padding: 2rem;
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

.service-card:hover{background: #09A6DD;color: #fff;}

/* Rotated Cards */
/*.card-rotated {
  transform: rotate(-4deg);
}

.card-rotated-2 {
  transform: rotate(4deg);
}
*/
.service-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  background-color: #3aa7df17;
  border-radius: 50%;
  margin-bottom: 1rem;
  padding: 0;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
}
.service-card:hover .service-icon i {
     background: #fff;    border-radius: 50%;
}

.service-card:hover p,
.service-card:hover a,
.service-card:hover a i {
  color: #fff !important;
}
.service-icon i {
  width: 80px;
  height: 80px;
  line-height: 2.5;
  font-size: 30px;
  color:#09A6DD;text-align: center;
}

.service-title {
  font-size:20px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.service-description {
  font-size: 1rem;
  color: #777;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}


/* Responsive */
@media (max-width: 992px) {



  .service-card {
    padding: 1.5rem;
  }

  .service-title {
    font-size: 1.3rem;
  }

  .service-description {
    font-size: 0.9rem;
  }
}

#services {
  position: relative;
  overflow: hidden;
}

.sub-title{display: inline-block;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    color: #09A6DD;
    margin-bottom: 16px;}
.about-images {
  position: relative;
}
.about-section h2{font-size: 55px;
    font-weight: 700;
    line-height: 65px;
    letter-spacing: -1px;
    margin: 5px 0;
    color: #253745;}

.small-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.large-img {
  width: 100%;
  border-radius: 8px;
}

.info-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #0d6efd;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  max-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-card h5 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.info-card p {
  font-size: 0.85rem;
  margin: 0;
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

.check-list li i {
  color: #0d6efd;
  margin-right: 8px;
}

.btn-get-quotes {
  background: #14294B;
  box-shadow: 0 6px 20px #3aa7dd33;
  color: #fff;
  padding: 17px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  text-decoration: none;    border: 2px solid #14294B;  
}
.btn-get-quotes:hover{background: #3aa7dd; border: 2px solid #fff; color: #fff;
  padding: 17px 40px;}
.btn-get-outline {
 box-shadow: 0 6px 20px #3aa7dd33;
    color: #ffff;
    padding: 12px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    text-decoration: none;
    border: 2px solid #fff;    background: #14294B;
}
.btn-get-outline:hover{background: #09A6DD; border: 2px solid #09A6DD;}


.about-section .about-image {
    position: relative;}
   .about-section .about-image .image1 {
    position: absolute;
    left: 0;
    top: 0;
}

.about-section .about-image .image2 {
    margin-left: 150px;
}
.image-anime {
    position: relative;
    overflow: hidden;
}
.about-section .about-image .icon-box p {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #fff;
}
.about-section .about-image .icon-box h4 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    color: #fff;
    padding: 16px 0px;
}
.about-section .about-image .icon-box {
    background-color:#14294B;
    padding: 16px 20px;
    border-radius: 7px;
    width: 230px;
    text-align: center;
    position: absolute;
    bottom: 50px;
}
.read-more{    color: #09A6DD;
    font-size: 16px;
    font-weight: 600;
    transition: all 400ms ease-out;
    text-decoration: none;}



      .testimonial-card {
      background: #f8f9fa;
      border-radius: 20px;
      padding: 50px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    .client-img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
    }
    .arrow-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #111c42;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
    }
 /*   .arrow-btn:hover {
      background-color: #dce1f5;
    }*/
.testimonials_sec h2{        font-size: 55px;
    font-weight: 700;
    line-height: 65px;
    letter-spacing: -1px;
    color: #253745;}

   .testimonials_sec h4{    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    color: #0D0E10;}

    .testimonials_sec p{    font-size: 24px;
    line-height: 40px;
    font-weight: 400;
    color: #676879;
    padding: 20px 0px;}

   .testimonials_sec .right-side{ padding-right: 100px;}

   /*.testimonials_sec  .right-side h6{color: #3aa7df;}*/


.testimonials_sec .tes1-arrows{    position: absolute;
    left: 50%;
    bottom: 50px;
    margin-left: -55px;}


/*   footer {
    background-color: #0a1f3d;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url(../images/hand-bgremove.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    z-index: 1;
    background-attachment: fixed;
    }

   footer::before
 {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .2;
    background-color: #052b62;
}
*/


   footer {
      background-color: #0a1f3d;
      color: #fff;
    }
    footer a {
      color: #ccc;
      text-decoration: none;
    }
    footer a:hover {
      color: #fff;
    }
    .footer-title {
      font-weight: bold;
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 15px 0px;
      font-size: 0.9rem;
      text-align: center;
      color: #aaa;
    }

    .contact-info i {
      color: #00aaff;
      margin-right: 8px;
      font-size: 1.1rem;
    }
    .footer_sec li{padding-bottom: 18px;
    list-style-type: none;}

    .footer_sec  .footer-info-contact i {
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
}.footer_sec  .footer-heading {
    margin-bottom: 25px;
}.footer_sec  .footer-info-contact {
    position: relative;
    padding-left: 35px;
    margin-bottom: 16px;
}.footer_sec  .footer-info-contact h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin: 0 0 10px 0;
}.footer_sec  .footer-info-contact span {
    color: #ececec;
    font-size: 15px;
    font-weight: 400;
}



.go-top {color: #ffffff;position: fixed;z-index: 4;top: 0;right: 30px;width: 45px;height: 45px;opacity: 0;visibility: hidden;text-align: center;line-height: 45px;border-radius: 3px;background-color:#09A6DD;transition: .9s;cursor: pointer;}
.go-top.active {top: 95%;transform: translateY(-98%);opacity: 1;visibility: visible;}
.go-top i {position: absolute;top: 50%;left: 0;right: 0;transform: translateY(-50%);transition: 0.4s;margin: 0 auto;}
.go-top i:last-child {top: 60%;opacity: 0;visibility: hidden;}
.go-top::before {content: '';position: absolute;z-index: -1;top: 0;left: 0;width: 100%;height: 100%;opacity: 0;visibility: hidden;border-radius: 3px;background-color:#09A6DD;transition: 0.4s;}
.go-top:hover, .go-top:focus {color: #ffffff;}
.go-top:hover::before, .go-top:focus::before {opacity: 1;visibility: visible;}
.go-top:hover i:first-child, .go-top:focus i:first-child {top: 0;opacity: 0;visibility: hidden;}
.go-top:hover i:last-child, .go-top:focus i:last-child {top: 50%;opacity: 1;visibility: visible;}



.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #2f57ef;
}


.testimonial-hero{
 position: relative;
 min-height: 400px;
  display: flex;
  align-items: center;
  background-image: url("https://itagency-demo.web.app/assets/images/backgrounds/hand-ia-bgremove.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  z-index: 1;
  background-attachment: fixed; 

}

.testimonial-hero::before
 {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .2;
    background-color: #052b62;
    /*background: linear-gradient(to bottom, #5B86E5, #36D1DC);*/
}

.testimonial-hero #particles-js {
     position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 100vh;*/
    height: 400px !important;
    pointer-events: none;

}

.contact-form-wrapper  .form-control{    padding: 16px;
    border: none;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 4px;
    width: 100%;
    color: #676879;}

.Contact_us .contact-boxs {
    padding-right: 60px;
}

.Contact_us h2{    font-size: 55px;
    font-weight: 700;
    line-height: 65px;
    letter-spacing: -1px;
    margin: 5px 0;
    color: #253745;}

 .contact-info-box {
      background: #F8F9FA;
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
    }
    .contact-icon {
      background: #3aa7df17;
      color: #09A6DD;
      font-size: 24px;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
    }
    .contact-form-wrapper {
     background-color: #F8F9FA;
    padding: 32px;
    border-radius: 7px;
    }


 .about-article .article-content {
    border-radius: 4px;
    background-color: #fff;
    padding: 25px;
    border: 1px solid #e5e5e5;
}.about-article .article-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
}.about-article .article-content p {
    margin-bottom: 20px;
    line-height: 26px;}
    .about-article img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.about-article .article-content i {
    font-size: 30px;
    color: #09A6DD;
    margin-bottom: 15px;
}


@media only screen and (min-width: 300px) and (max-width: 1368px) {
  .hero-content h2{    font-size: 35px;    line-height: 50px;}
  .about-section h2{    font-size: 35px;}
  .section-header h2{    font-size: 35px;}
  .testimonials_sec h2{    font-size: 35px;}
  .Contact_us h2{    font-size: 35px;}
  .testimonials_sec .right-side{    padding-right: 0px;}
  .sub-title{margin-bottom: 0px;}
  .section {padding: 50px 0px;}
  .testimonials_sec h4{    font-size: 25px;}
  .testimonial-card{    padding: 30px;}

}
@media only screen and (min-width: 300px) and (max-width: 930px) {
  .about-section .about-image .icon-box{    width: 100%;position: relative;bottom: 0px;margin-top: 20px;}
   .about-section .about-image .image2{    margin-left: 0px;}
   .about-section .about-image .image2 img{width: 100%;}
   .Contact_us .contact-boxs{    padding-right: 0px;}

}

@media only screen and (max-width: 767px) {
   #mainNavbar {
        -webkit-box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.11);
        box-shadow: 0 5px 40px 0 rgba(0, 0, 0, 0.11);
    }
}