* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

p li {
  font-family: "Source Sans 3", sans-serif;
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  /* background-image: url(../images/background.jpg); */
  background: white;
  /* margin-bottom: 100px; */
}

ul {
  list-style-type: none;
}


.page-banner-area {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0;
}




.page-banner-area::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  background: #032346de;
  height: 100%;
  width: 100%;
}

.page-banner-area .container-fluid {
  max-width: 1520px;
  margin: auto;
}

.page-banner-content {
  position: relative;
}


.page-banner-content h1 {
  font-size: 50px;
  color: white;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-banner-content ul {
  margin-left: 0;
  padding-bottom: 0;
}

.page-banner-content ul li {
  display: inline-block;
  position: relative;
  padding-right: 18px;
  font-size: 16px;
  font-weight: 500px;
  color: white;

}

.page-banner-content ul li a {
  text-decoration: none;
  color: white;
}

.page-banner-content ul li::before {
  position: absolute;
  content: "/";
  right: 2px;
  top: 0;
}

.page-banner-content ul li:last-child {
  color: var(--primary-color);
}

.page-banner-content ul li:last-child::before {
  display: none;
}

.bg-app-sys{
  background: url('../images/applications-and-systems-header.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.bg-multimedia{
  background: url('../images/multimedia-header.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.bg-security{
  background: url('../images/security-tech-header.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}







.header .container {
  display: flex;
  flex-direction: row;
  padding: 30px 10px;
  justify-content: space-between;
  /* align-items: center; */
}

.header .header-image img {
  max-width: 400px;
  margin: 0px 20px;

}

.heading h1 {
  font-size: 40px;
  margin: 20px 0px;
  line-height: 1.3;
}


.heading span {
  background: -webkit-linear-gradient(rgb(251, 221, 19) 0.1%, rgb(255, 153, 1) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading h1 {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
      transform: scale(1);
  }

  50% {
      transform: scale(1.1);
  }

  100% {
      transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Apply animation to header content */
.heading,
.header-image {
  animation: fadeInUp 1s ease-in-out;
}





.b1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  /* background: blue; */
  margin: 0px 20px;
  border-radius: 30px;
  /* border: 1px solid black; */
  padding: 20px;
  border-bottom: none;
  border-right: none;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.b2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  /* background: red; */
  margin: 0px 20px;
  border-radius: 30px;
  /* border: 1px solid black; */
  padding: 20px;
  border-bottom: none;
  border-left: none;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.b1 img {
  max-width: 300px;
}

.b2 img {
  max-width: 300px;
}

@keyframes slideInLeft {
  from {
      opacity: 0;
      transform: translateX(-100%);
  }

  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Apply animation to service blocks */
.b1,
.b2 {
  animation: slideInLeft 1s ease-in-out;
}

.button-contact button {
  /* width: 70px; */
  /* height: 30px; */
  padding: 5px 10px;
  border-radius: 10px;
  background: #174ea6;
  border: none;
  cursor: pointer;
  margin: 10px 0px;
  border: 1px solid #174ea6;
  transition: 0.5s;
  color: white;
}

.button-contact button:hover {
  background-color: transparent;
  color: #000;
}

.button-contact i {
  background: rgba(0, 0, 0, 0.238);
  padding: 5px 5px;
  margin: 5px 5px;
  color: white;
  border-radius: 5px;
}

.cbutton {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
}

.success .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 30px 10px;
}

.success h1 {
  text-align: center;
  font-size: 30px;
  margin: 20px 0px;
}


.b1s {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  /* background: blue; */
  margin: 0px 20px;
  border-radius: 30px;
  padding: 20px;
  /* background: #ffffe5; */
  /* border-bottom: none; */
  /* border-right: none; */
  text-align: center;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.53);
}

@keyframes slideInRight {
  from {
      opacity: 0;
      transform: translateX(100%);
  }

  to {
      opacity: 1;
      transform: translateX(0);
  }
}

/* Apply animation to success story blocks */

.b1s {
  animation: slideInRight 1s ease-in-out forwards;
}

.b2s {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  /* background: red; */
  margin: 0px 20px;
  border-radius: 30px;
  /* border: 1px solid black; */
  padding: 20px;
  /* border-bottom: none; */
  /* border-left: none;  */
  text-align: center;
}

.profile {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;

}

.profile img {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  margin-right: 10px;
}

.profile p {
  font-size: 20px;
  font-weight: bold;
}

.prob-solu {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 10px 0px;
  padding: 10px 0px;
}

.problem {
  display: flex;
  flex-direction: column;
  /* justify-content: start; */
  align-items: start;
  border-bottom: 1px solid black;
}

.problem h2 {
  color: #dd2424;
}

.problem p {
  text-align: left;
}

.solution {
  display: flex;
  flex-direction: column;
  /* justify-content: start; */
  align-items: start;
  border-bottom: 1px solid black;
  margin: 10px 0px;
}

.solution p {
  text-align: left;
}

.solution h2 {
  color: #dd2424;
}

.join-us .container {
  padding: 10px 20px;
}

.join {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 20px;

}

.join h2 {
  font-size: 40px;
  text-align: center;
  background: -webkit-linear-gradient(rgb(4, 4, 0) 0.1%, rgba(8, 5, 0, 0.516) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.join p {
  text-align: center;
  margin: 0px 20px;

}

.unlock {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.unlock p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0px;
  color: #dd2424;
}

.get-started-button {
  background-color: #174ea6;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.715);
  cursor: pointer;
}

.contact-sales-button {
  background-color: white;
  color: #174ea6;
  padding: 10px 15px;
  border: none;
  border-radius: 25px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.715);
  cursor: pointer;
}

.get-started-button:hover {
  box-shadow: none;
}

.get-started-button:active {
  opacity: 0.5;
}

.contact-sales-button:hover {
  box-shadow: none;
}

.contact-sales-button:active {
  opacity: 0.5;
}

.home ul,
.about-us ul,
.our-services ul,
.products ul {
  padding-left: 0 !important;
}

ul a {
  color: black;
}

ul a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  background-color: var(--primary-color);
  padding: 10px 0;
}

.social-media a i {
  margin-right: 7px;
  color: black;
  font-size: 20px;
}

.head {
  color: var(--main-color);
  /* font-size: 2px; */
  font-weight: 700;
}

.demo-form {
  display: flex;
  flex-direction: column;
}

.form-heading {
  font-size: 25px;
}

.form {
  display: flex;
  flex-direction: column;
  max-width: 250px;
}

.form input {
  padding: 10px;
  border: none;
  background-color: #0000001e;
  color: black;
  margin-bottom: 10px;
  border-bottom: 1px solid #000;
}

.form input:focus {
  outline: none;
  /* border: none; s*/
}


.form textarea {
  padding: 10px;
  color: black;
  border: none;
  background-color: #00000047;
  margin-bottom: 10px;
}

.form textarea:focus {
  outline: none;
  border: none;
}


.submit-button {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  font-size: 15px;
}

.submit-button:before {
  content: "";
  background: linear-gradient(45deg,
          #ff0000,
          #ff7300,
          #fffb00,
          #48ff00,
          #00ffd5,
          #002bff,
          #7a00ff,
          #ff00c8,
          #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
      background-position: 0 0;
  }

  50% {
      background-position: 400% 0;
  }

  100% {
      background-position: 0 0;
  }
}

.submit-button:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #174ea6;
  left: 0;
  top: 0;
  border-radius: 10px;
}

label {
  font-size: 17px;
}



@media(max-width:600px) {
  html {
      overflow: scroll;
      overflow-x: hidden;
  }

  .header .container {
      display: flex;
      flex-direction: column;
      padding: 0px 15px;
      align-items: center;
  }

  .header img {
      width: 100%;
      padding: 0px 15px;
  }




  .success .container {
      display: flex;
      flex-direction: column;
      padding: 0px 15px;
      align-items: center;
      /* justify-content: space-between; */
  }

  .b1s,
  .b2s {
      margin: 10px 0px;
  }

  .foot1 {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0px 15px;
  }

  .foot2 {
      display: flex;
      flex-direction: column;

  }

  .home,
  .about-us,
  .our-services,
  .products {
      margin: 10px 0px;
  }


}

@media(min-width:600px) {

  .html {
      overflow: scroll;
      overflow-x: hidden;
  }

  .header .container {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0px 20px;
  }


  .foot1 {
      display: flex;
      flex-direction: column;
      padding: 10px 0px;
  }

  .foot2 {
      display: flex;
      flex-direction: column;
      padding: 10px 25px;
  }

  .home,
  .about-us,
  .our-services,
  .products {
      margin: 10px 0px;
  }


}

@media(min-width:768px) {}

@media(min-width:992px) {
  .header .container {
      display: flex;
      flex-direction: row;
      padding: 10px 20px;
  }

  .foot1 {
      display: flex;
      flex-direction: row;
      padding: 0px 15px;
  }

  .foot2 {
      display: flex;
      flex-direction: row;
  }
}

.read-more {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
  margin-top: 30px;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.read-more:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.read-more:hover .icon {
  transform: translate(4px);
}

.read-more:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.read-more::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@media(max-width: 600px){
  .services-card{
    display: flex;
    flex-direction: column;
  }

  .services-card .service-img-card img{
    max-width: 300px;
  }
}

@media (min-width: 600px) and (max-width: 768px){
  .col-md-auto .services-card{
    display: flex ;
    flex-direction: column;
  }









}


@media (min-width:768px) and (max-width: 992px){
  .services-card{
    display: flex;
    flex-direction: column;

  }


  /* .after-header-area{
    display: flex;
    flex-direction: column;
  } */

  .services-card .service-img-card img{
    max-width: 300px;
  }
}

.services-card{
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .5s ease-in-out;
  /* height: 470px; */
}

.services-card:hover{
  background: linear-gradient(#080809, #222020);
  color: white;
  box-shadow: none;
}
.service-img-card img{
  max-width: 450px;
}

.services-card-content{
  padding: 20px;
}
.service-card-content-home{
  padding: 20px;
  /* top: 70%; */
}

.service-card-content-home h4 , .service-card-content h4{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.header h1{
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 700;
}

discuss {
  display: flex;
  flex-direction: row;
  padding: 0 180px;
  /* height: 500px; */
  align-items: center;
  margin-block: 50px;
  color: black;

}

.dis-cover{
  background-color:rgba(216, 40, 37,0.5);
  width:100%;
  border-radius: 10px;
}

.dis-cover h3,
.dis-cover a{
  color: #f9f9f9;
}

.dis-cover a:hover{
  color: gold;
}
.discuss-1 {
  flex: 2;
  border-right:2px solid red;
}

.discuss-1 h2 {
  font-family: "Source Sans 3";
  font-size: 35px;
  color: #dd2424;
}

.discuss-2 {
  display: flex;
  flex: 2;
  justify-content: end;
  background-image: url("../images/discuss.jpeg");
  width:300px;
  height: 200px;
  background-size: cover;
  margin-left:20px;
  border-radius: 10px;
  text-align: center;
}


.discuss-2 img {
  max-width: 400px;
  border-radius: 20px;
  margin-bottom: 20px;
}




.discuss-button {
  position: relative;
  overflow: hidden;
  border: none;
  color: white;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  padding: 15px 15px 14px;
  text-decoration: none;
  cursor: pointer;
  background: #dd2424;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-top: 10px;
}

.discuss-button span:first-child {
  position: relative;
  transition: color 600ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
}

.discuss-button span:last-child {
  color: white;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 500ms cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 100;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(225%) translateX(-50%);
  height: 14px;
  line-height: 13px;
}

.discuss-button:after {
  content: "";
  position: absolute;
  /* bottom: -50%; */
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  transform-origin: bottom center;
  transition: transform 600ms cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 50;
}

.discuss-button:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}

.discuss-button:hover span:last-child {
  transform: translateX(-50%) translateY(-60%);
  opacity: 1;
  transition: all 900ms cubic-bezier(0.48, 0, 0.12, 1);
}


@media(min-width:1200px) {}