@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;

  outline: none;
  border: none;
  text-decoration: none;
  text-transform: none;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
  box-sizing: border-box;
}

body{
	background: #050833;
}


html{
	font-size: 62.5%;
	overflow-x: hidden;
	scroll-behavior: smooth;
	scroll-padding-top: 5rem;
}
html::-webkit-scrollbar{
		width:1rem;
	}

html::-webkit-scrollbar-track{
		background-color: white;
	}

html::-webkit-scrollbar-thumb{
		background-color: gray;
	}


section{
	padding: 5rem 9%;
}


.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 1.5rem 5rem;
  font-size: 1.4rem;
  background: #3540BE;
  border: 3px solid #3540BE;
  border-radius: 5rem;
  cursor: pointer;
  color: #d9d9d9;
  font-weight: 500;
}

.btn:hover {
  background: none;
  color: #d9d9d9;
  font-weight: bold;
  
}




.wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
}
.round {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #01b4f9;
	border: 5px solid #01b4f9;
	opacity: 0;
	box-shadow: 0 0 100px #01b4f9, 0 0 10px #01b4f9, 0 0 20px #01b4f9;
	animation: animate 4s linear infinite, ani-2 2s linear infinite;
}
.round:nth-child(1) {
	left: 5%;
	animation-delay: 0.5s;
}
.round:nth-child(2) {
	left: 65%;
	animation-delay: 1s;
}
.round:nth-child(3) {
	left: 90%;
	animation-delay: 1.5s;
}
.round:nth-child(4) {
	left: 18%;
	animation-delay: 2s;
}
.round:nth-child(5) {
	left: 93%;
	animation-delay: 2.5s;
}
.round:nth-child(6) {
	left: 52%;
	animation-delay: 3s;
}
.round:nth-child(7) {
	left: 65%;
	animation-delay: 3.5s;
}
.round:nth-child(8) {
	left: 35%;
	animation-delay: 4s;
}
.round:nth-child(9) {
	left: 85%;
	animation-delay: 4.5s;
}
.round:nth-child(10) {
	left: 45%;
	animation-delay: 5s;
}
.round:nth-child(11) {
	left: 36%;
	animation-delay: 5.5s;
}
.round:nth-child(12) {
	left: 72%;
	animation-delay: 6s;
}
.round:nth-child(13) {
	left: 14%;
	animation-delay: 6.5s;
}
.round:nth-child(14) {
	left: 70%;
	animation-delay: 7s;
}
@keyframes animate {
	0% {
		top: 0;
		opacity: 1;
	}
	20% {
		top: 20%;
		opacity: 0.8;
	}
	40% {
		top: 40%;
		opacity: 0.6;
	}
	60% {
		top: 60%;
		opacity: 0.4;
	}
	80% {
		top: 80%;
		opacity: 0.2;
	}
	100% {
		top: 100%;
		opacity: 0;
	}
}
@keyframes ani-2 {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(2.5);
	}
}




nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: rgba(0, 6, 92, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo img {
  height: 100px;
  width: 120px;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  margin-left: 2rem;
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: rgba(0, 6, 92, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3540BE;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3540BE;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3540BE;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 400px;
    width: 100%;
    background:  rgba(0, 6, 92, 1);
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #fff;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}


.home{

  min-height: 100vh;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
    
}

.home .content h3{
  text-align: center;
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 5rem;
    margin-bottom: 3rem;
    color: #eee;
}

.home .content h2{
  text-align: center;
  font-size: 1.7rem;
  font-weight: normal;
  margin-bottom: 3rem;
  color: #eee;
}


.services{
    min-height: 100vh;
    margin-bottom: 5rem;
  }
  .services .heading h1{
    text-align: center;
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 4rem;
    color: #fcfcfc;
  }

  .services .box-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(32rem, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
  }
  
  .services .box-container .box {
    background: rgba(0, 6, 92, 1);
    
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    border: 0.2rem solid #111;
  }
  
  .services .box-container .box:hover {
    border: 0.2rem solid #000AA3;
     box-shadow: 0 4px 20px rgba(0, 6, 92, 0.5);
  }
  
  
  .services .box-container .box h3{
    font-size: 2rem;
    color: #D9DBFF;
  }
  
  .services .box-container .box p {
    padding: 1rem 0;
    font-size: 1.4rem;
    color: #aaa;
    line-height: 2;
  }

    .banner {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0.7)), to(rgba(17, 17, 17, 0.7))), url(../images/banner-bg.jpg) no-repeat;
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)), url(../images/cold\ email.jpeg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 3rem 2rem;
    background-attachment: fixed;
    text-align: center;
  }
  
  .banner .content span {
    font-size: 2rem;
    color: #D9DBFF;
  }
  
  .banner .content h3 {
    font-size: 4rem;
    color: #fff;
    margin-top: 1rem;
  }
  
  .banner .content p {
    max-width: 60rem;
    margin: 1rem auto;
    font-size: 1.4rem;
    color: #d9d9d9;
    line-height: 2;
  }


   .banner2 {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 17, 17, 0.7)), to(rgba(17, 17, 17, 0.7))), url(../images/banner-bg.jpg) no-repeat;
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(17, 17, 17, 0.7)), url(../images/linkedin\ lead.\ gen.jpeg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 3rem 2rem;
    background-attachment: fixed;
    text-align: center;
    margin: 7rem 0;
  }
  
  .banner2 .content span {
    font-size: 2rem;
    color: #D9DBFF;
  }
  
  .banner2 .content h3 {
    font-size: 4rem;
    color: #fff;
    margin-top: 1rem;
  }
  
  .banner2 .content p {
    max-width: 60rem;
    margin: 1rem auto;
    font-size: 1.4rem;
    color: #d9d9d9;
    line-height: 2;
  }



  .problem .heading h2{
    color: #eee;
    text-align: center;
    font-weight: 400;
    margin-top: 5rem;
  }

    .problem .heading h1{
    color: #eee;
    text-align: center;
    font-size: 4rem;
    margin-top: 2rem;
  }

  .problem .heading span{
    color: red;
  }


 .problem .grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 4 columns */
  gap: 25px;
  margin-top: 4rem;
}

.problem .grid-item {
  
  color: white;
  padding: 40px;
  text-align: start;
  border-radius: 10px;
  font-size: 1.4rem;
  background: rgba(0, 6, 92, 1);
  box-shadow: 0 4px 20px rgb(0, 1, 12, 0.7);
  padding: 4rem;
}


.problem .grid-item i {
  margin-right: 1rem;
  color: red;
}

/* Mobile responsive */
@media (max-width: 768px) {
 .problem .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  }
}


 .sol .heading h2{
    color: #eee;
    text-align: center;
    font-weight: 400;
    margin-top: 5rem;
  }

    .sol .heading h1{
    color: #eee;
    text-align: center;
    font-size: 4rem;
    margin-top: 2rem;
  }

  .sol .heading span{
    color: rgb(0, 11, 170);
  }


 .sol .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 columns */
  gap: 25px;
  margin-top: 4rem;
}

.sol .grid-item {
  
  color: #eee;
  padding: 20px;
  text-align: justify;
  border-radius: 10px;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 300;
  background: rgba(0, 6, 92, 1);
  box-shadow: 0 4px 20px rgb(0, 1, 12, 0.7);
  padding: 2rem;
}


.sol .grid-item i  {
  margin-bottom: 2rem;
  color: rgb(173, 0, 0);
}

/* Mobile responsive */
@media (max-width: 768px) {
 .sol .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  }
}

.client{
  min-height: 100vh;
  background-color: #ffff;
}

.client .btext h3{
  text-align: center;
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 5rem;
    margin-bottom: 3rem;
    color: #050833;
}

.client .btext h2{
  text-align: center;
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 7rem;
  color: #050833;
}

.client .btext span{
  
  font-size: 3rem;
  font-weight: 700;
  margin: 10px;
  color: #007bd8;
}

.client .grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 4 columns */
  gap: 20px;
}

.client .grid-container .grid-item {
 
  color: white;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
}

.client .grid-container .grid-item img{
  height: 90px;
  width: auto;
}


/* Mobile responsive */
@media (max-width: 768px) {
 .client .grid-container {
    grid-template-columns: repeat(3, 1fr); /* 2 columns on mobile */
  }
}


.differences{
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 2rem;
  text-align: center;

}

.differences .btext h3{
  text-align: center;
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 5rem;
    margin-bottom: 3rem;
    color: #eee;
}

.differences .btext h2{
  text-align: center;
  font-size: 1.7rem;
  font-weight: normal;
  margin-bottom: 3rem;
  color: #eee;
}



.differences .content-left,
.content-right
{
  -webkit-box-flex: 1;
  -ms-flex: 1 1 42rem;
  flex: 1 1 42rem;
  margin-bottom: 2rem;
  background: rgba(0, 6, 92, 1);
  box-shadow: 0 4px 20px rgb(0, 1, 12, 0.7);
  padding: 4rem;
}


.differences .content-left h3,
.differences .content-right h3 {
  color: #fcfcfc;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.differences .content-left ul,
.content-right ul {
  list-style-type: none;
  padding: 1rem 0;
}

.differences .content-left ul li,
.content-right ul li {
  font-size: 1.5rem;
  color: #fcfcfc;
  padding: 5px 10px;
  text-align: start;
  margin-bottom: .7rem;
}

.differences .content-left ul li i {
  color: #b50303;
  padding-right: .5rem;
  margin-right: 1rem;
}

.differences .content-right ul li i {
  color: #0db259;
  padding-right: .5rem;
  margin-right: 1rem;
}


.process .btext h3{
  text-align: center;
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 5rem;
    margin-bottom: 3rem;
    color: #eee;
}

.process .btext h2{
  text-align: center;
  font-size: 1.7rem;
  font-weight: normal;
  margin-bottom: 7rem;
  color: #eee;
}


.process .grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 20px;
}

.process .grid-container .grid-item {
  background: #070B47;
  color: white;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
}

.process .grid-container .grid-item h1{
  font-size: 5rem;
  font-weight: 500;
  color: #b6b6b6;
}

.process .grid-container .grid-item h2{
  font-size: 2rem;
  font-weight: 400;
  color: #efefef;
  margin: 10px 0;
}

.process .grid-container .grid-item h3{
  font-weight: 300;
  color: #fcfcfc;

}

/* Mobile responsive */
@media (max-width: 768px) {
 .process .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  }
}



.about-us .btext h3{
  text-align: center;
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 5rem;
    margin-bottom: 3rem;
    color: #eee;
}

.about-us .btext h2{
  text-align: center;
  font-size: 1.7rem;
  font-weight: normal;
  margin-bottom: 7rem;
  color: #eee;
}

.block {
	position: relative;
	margin: 5rem 0 0 0;
  margin-left: 25%;
	width: 500px;
	height: 120px;
	background: linear-gradient(0deg, #000, #272727);
	text-align: center;
	font-size: 3rem;
  font-weight: 600;

	padding: 3.5rem;
	line-height: 40px;
}

@media (max-width: 768px) {
 .block {
  margin: auto;
    display: block; 
  }
}


.about-us .block a{
    color: #8989f5;
}


.block:before, .block:after {
	content: '';
	position: absolute;
	left: -2px;
	top: -2px;
	background: linear-gradient(45deg, #0f1056, #0000ff, #81b1ce,#113065, #02006c, #090088, 
		#0000ff, #81b1ce,#113065, #02006c);
	background-size: 400%;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	z-index: -1;
	animation: steam 20s linear infinite;
}

@keyframes steam {
	0% {
		background-position: 0 0;
	}
	50% {
		background-position: 400% 0;
	}
	100% {
		background-position: 0 0;
	}
}

.block:after {
	filter: blur(50px);
}








.s-home{
    margin-top: 5rem;
}

.s-home .content{
  text-align: center;

}


.s-home .content h3{
  text-align: center;
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 5rem;
    margin-bottom: 3rem;
    color: #eee;
}

.s-home .content h2{
  text-align: center;
  font-size: 1.7rem;
  font-weight: normal;
  margin-bottom: 3rem;
  color: #eee;
}



.gallery .heading h1{
  color: #d9d9d9;
  font-size: 5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 7rem;

}

.gallery .heading span{
  color: #0582E3;
}

.gallery .heading h2{
  color: #d9d9d9;
  font-size: 3rem;
  text-align: center;
  font-weight: normal;
  margin-bottom: 2rem;
}

.gallery .box-container {
  -webkit-columns: 3 25rem;
          columns: 3 25rem;
  -webkit-column-gap: 1.5rem;
          column-gap: 1.5rem;
          margin-bottom: 7rem;
}

.gallery .box-container .box {
  margin-bottom: 1rem;
  -webkit-column-break-inside: avoid;
          break-inside: avoid;
}

.gallery .box-container .box img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.gallery .box-container .box span {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #aaa;
}

.gallery .box-container .box h3 {
  margin-top: .5rem;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
}



/* ccs project start*/

.ccs-home{
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 13, 72, 0.7)), to(rgba(17, 17, 17, 0.7))), url(../images/ccs2.JPG) no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
    
}

.ccs-home .content h3{
  text-align: center;
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 5rem;
    margin-bottom: 3rem;
    color: #eee;
}

.ccs-home .content h2{
  text-align: center;
  font-size: 1.7rem;
  font-weight: normal;
  margin-bottom: 3rem;
  color: #eee;
}


.ccs-services .btext h3{
  text-align: center;
    font-size: 5rem;
    font-family: 'Montserrat', sans-serif;
    margin-top: 5rem;
    margin-bottom: 3rem;
    color: #eee;
}

.ccs-services .btext h2{
  text-align: center;
  font-size: 1.7rem;
  font-weight: normal;
  margin-bottom: 7rem;
  color: #eee;
}


.ccs-services .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 4 columns */
  gap: 20px;
}

.ccs-services .grid-container .grid-item {
  background: #070B47;
  color: white;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
}

.ccs-services .grid-container .grid-item h1{
  font-size: 3.5rem;
  font-weight: 600;
  color: #b6b6b6;
}

.ccs-services .grid-container .grid-item h2{
  font-size: 2rem;
  font-weight: 400;
  color: #efefef;
  margin: 2rem 0;
}

.ccs-services.grid-container .grid-item h3{
  font-weight: 300;
  color: #fcfcfc;

}

/* Mobile responsive */
@media (max-width: 768px) {
 .ccs-services .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
  }
}


/* ccs project ends*/


@media only screen and (max-width: 768px){
	.overlap{
		flex-direction: column;
	}

	.overlap .left{
		width: 100%;
	}

	.overlap .right{
		width: 80%;
		margin: 0;
		margin-top: -100px;
	}
}



.contact-us{
min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


.contact-section{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info{
  color: #000;
  max-width: 500px;
  line-height: 65px;
  padding-left: 50px;
  font-size: 18px;
}

.contact-info i{
  margin-right: 20px;
  font-size: 25px;
}

.contact-form{
  max-width: 700px;
  margin-right: 50px;
}

.contact-info, .contact-form{
  flex: 1;
}

.contact-form h2{
  color: Black;
  text-align: center;
  font-size: 35px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.contact-form .text-box{
  background: #000;
  color: black;
  border: none;
  width: calc(50% - 10px);
  height: 50px;
  padding: 12px;
  font-size: 15px;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-form .text-box:first-child{
  margin-right: 15px;
}

.contact-form textarea{
  background: #000;
  color: #fff;
  border: none;
  width: 100%;
  padding: 12px;
  font-size: 15px;
  min-height: 200px;
  max-height: 400px;
  resize: vertical;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-form .send-btn{
  float: right;
  background: #2E94E3;
  color: #fff;
  border: none;
  width: 120px;
  height: 40px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  transition-property: background;
}

.contact-form .send-btn:hover{
  background: #0582E3;
}

@media screen and (max-width: 950px){
  .contact-section{
    flex-direction: column;
  }

  .contact-info, .contact-form{
    margin: 30px 50px;
  }

  .contact-form h2{
    font-size: 30px;
  }

  .contact-form .text-box{
    width: 100%;
  }
}


.alert-success{
  z-index: 1;
  background: #D4EDDA;
  font-size: 18px;
  padding: 20px 40px;
  min-width: 420px;
  position: fixed;
  right: 0;
  top: 10px;
  border-left: 8px solid #3AD66E;
  border-radius: 4px;
}

.alert-error{
  z-index: 1;
  background: #FFF3CD;
  font-size: 18px;
  padding: 20px 40px;
  min-width: 420px;
  position: fixed;
  right: 0;
  top: 10px;
  border-left: 8px solid #FFA502;
  border-radius: 4px;
}



.sign-in{
	margin-top: 50px;
	min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover !important;
	background-position: center !important;
}


.login-box{
    display:flex;
    width: 400px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    flex-direction: column;
}
.login-box h2{
	font-size: 3rem;
    padding: 0;
    color: #fff;
    text-align: center;
}

.login-box .user-box input{
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}
.login-box .user-box label{
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}
.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label{
    top: -20px;
    left: 0;
    color: #03e9f4;
    font-size: 12px;
}
.login-box form a{
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #08E51A;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 40px;
    letter-spacing: 4px;
}
.login-box a:hover{
    background: #08E51A;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #08E51A,
                0 0 25px #08E51A,
                0 0 50px #08E51A,
                0 0 100px #08E51A;
}
.login-box a span{
    position: absolute;
    display: block;
}
.login-box a span:nth-child(1){
    top: 0;
    left: -100%;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg,transparent,#08E51A);
    animation: btn-anim1 1s linear infinite;
}
@keyframes btn-anim1{
    0%{
        left: -100%;
    }
    50%,100%{
        left: 100%;
    }
}
.login-box a span:nth-child(2){
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,transparent,#08E51A);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s;
}
@keyframes btn-anim2{
    0%{
        top: -100%;
    }
    50%,100%{
        top: 100%;
    }
}
.login-box a span:nth-child(3){
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg,transparent,#08E51A);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s;
}
@keyframes btn-anim3{
    0%{
        right: -100%;
    }
    50%,100%{
        right: 100%;
    }
}
.login-box a span:nth-child(4){
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg,transparent,#08E51A);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s;
}
@keyframes btn-anim4{
    0%{
        bottom: -100%;
    }
    50%,100%{
        bottom: 100% ;
    }
}
	

.member{
      min-height: 100vh;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      gap: 2rem; 
      margin-top: 4rem;
      
      
  }
  
 .member .content{
      -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
      flex: 1 1 42rem;
      margin-bottom: 7rem;
      
  }
  
.member .content h3{
      font-size: 2rem;
      font-family: 'Montserrat', sans-serif;
      margin-bottom: 2rem;
      color: #d9d9d9;
      font-weight: 500;
  }

 .member .content h2{
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #f2f2f2;
}

.member .content p{
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: #d9d9d9;
    text-align: justify;
}

.member .image-container{
  
      -webkit-box-flex: 1;
      -ms-flex: 1 1 42rem;
      flex: 1 1 42rem;
  }
  
.member .image-container img{
      width: 100%;
      padding: 6rem;
  }

  .member .box{
    margin-top: 2rem;
  }


.member .box .share {
      padding-top: 1rem;
    }
    
    .member .box .share a {
      height: 4.5rem;
      width: 4.5rem;
      line-height: 4rem;
      font-size: 2rem;
      border-radius: 50%;
      font-size: 1.7rem;
      border: 0.2rem solid #090088;
      color: #000AA3;
      margin-right: 1rem;
      text-align: center;
    }
    
    .member .box .share a:hover {
      background: #000AA3;
      color: #d9d9d9;
    }





.faq .c{
  position: relative;
  margin:2em;
}
.faq .c input{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity:0;
  visibility: 0;
}
.faq .c h1{
  font-size: 2rem;
  font-weight: 500;
  color:white;
  padding:1em;
  position: relative;
}
.faq .c label::before{
  content:"";
  display: inline-block;
  border: 10px solid transparent;
  border-left: 15px solid rgb(103, 154, 255);
  border-radius: 10px;
}
.faq .c label{
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.faq .c .p{
  max-height:0px;
  overflow: hidden;
  transition:max-height 0.5s;
  border: 1.5px solid #bebebe;
  border-radius: 10px;
  box-shadow:0 0 10px 0 rgba(0, 0, 0, 1);
}
.faq .c .p p {
  color: #d9d9d9;
  font-size: 1.5rem;
  font-weight: 500;
  padding:2em;
}
.faq input:checked ~ h1 label::before{
  border-left:10px solid transparent;
  border-top: 15px solid rgb(103, 154, 255);
  margin-top:12px;
  margin-right:10px;
}
.faq input:checked ~ h1 ~ div.p{
  max-height:100px;
}




.footer {
  background: linear-gradient(rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.9)), url(../images/linkedin\ lead.\ gen.jpeg) no-repeat;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer .box-container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box {
  padding: 1rem 0;
}



.footer .box-container .box h3 {
  font-size: 2rem;
  color: #d9d9d9;
  padding: 1rem 0;
  font-weight: 500;
  border-bottom: 1px solid #5a5a5a;
}


.footer .box-container .box p {
  font-size: 1.5rem;
  color: #d9d9d9;
  padding: 1rem 0;
  line-height: 2;
}

.footer .box-container .box p i {
  padding-right: .5rem;
  color:#007bd8;
}

.footer .box-container .box .share {
  padding-top: 1rem;
}

.footer .box-container .box .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4rem;
  font-size: 2rem;
  border-radius: 50%;
  font-size: 1.7rem;
  border: 0.2rem solid #007bd8;
  color: #007bd8;
  margin-right: 1rem;
  text-align: center;
}

.footer .box-container .box a {
  color: #d9d9d9;
  font-size: 2rem;
}

.footer .box-container .box .share a:hover {
  background: linear-gradient(to right, #007bd8, #4cb2ff);
  color: #d9d9d9;
  transition: .7s ease;
}

.footer .box-container .box .links {
  font-size: 1.6rem;
  color: #d9d9d9;
  padding: 1rem 0;
  display: block;
}

.footer .box-container .box .links:hover {
  color: #007bd8;
}

.footer .box-container .box .links:hover i {
  padding-right: 2rem;
}

.footer .box-container .box .links i {
  padding-right: .5rem;
  color: #007bd8;
}




.credit {
  text-align: center;
  font-size: 2rem;
  padding: 2rem 1rem;
  color: #d9d9d9;
}

.credit span {
  font-weight: 600;
  color: #007bd8;
}



@media (max-width: 1200px){

	section{
		padding: 3rem 2rem;
	}

}

@media (max-width: 991px){

	html{
		font-size: 55%;
	}

	section{
		padding: 3rem 2rem;
	}

}

@media (max-width: 768px){

	#menu-btn{
	display: inline-block;
	transition: .2s linear;
}
	
	#menu-btn.fa-times{
		transform: rotate(180deg);
	}

	.header .navbar{
		position: absolute;
		top: 99%; left: 0; right: 0;
		border-top: 2px lightblue;
		padding: 2rem;
		transition: .2s linear;
		clip-path: polygon(0 0, 100% 0, 0 0);
			background: black;
	}

	.header .navbar.active{
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}

	.header .navbar a{
		display: block;
		margin: 2rem;
		text-align: center;
	}
}

@media (max-width: 450px){

	html{
		font-size: 50%;
	}

}

  @media (max-width: 450px) {
    html {
      font-size: 50%;
    }
    .about .content h3 {
      font-size: 3.5rem;
    }
    .banner .content h3 {
      font-size: 2.7rem;
    }
  }