@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --primary: #149dff;
  --secondary: #0561e7;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #000;
  overflow-x: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

.df {
  display: flex;
}

.aic {
  align-items: center;
}
.ais {
  align-items: flex-start;
}
.aie {
  align-items: flex-end;
}

.jcc {
  justify-content: center;
}
.jcfs {
  justify-content: flex-start;
}
.jcfe {
  justify-content: flex-end;
}
.jcsb {
  justify-content: space-between;
}

.frr {
  flex-direction: row-reverse;
}

.fw {
  flex-wrap: wrap;
}

.fnw {
  flex-wrap: nowrap;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

@media (min-width: 1700px) {
  .container {
    max-width: 1380px;
  }
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Poppins", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

figure {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.navbar-brand img {
  max-height: 150px;
  transition: 0.3s ease-in-out;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  transition: 0.3s ease-in-out;
  background: linear-gradient(180deg, #000000 0%, #80808000 100%);
}

header.sticky {
  position: fixed;
}

header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav {
  gap: 1rem 1.25rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}
.navbar-nav .nav-item .nav-link::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--secondary);
  transform-origin: center;
  transform: scaleX(0);
}
.navbar-nav .nav-item.active .nav-link::before,
.navbar-nav .nav-item .nav-link:hover::before {
  transform: scaleX(1);
}

.form-inline {
  margin-left: 2rem;
}

.themeBtn {
  display: inline-block;
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  padding: 1.125em 1.25em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--white);
}
.themeBtn:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

header .themeBtn,
.main-slider .themeBtn {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

header .themeBtn:hover,
.main-slider .themeBtn:hover {
  color: var(--secondary);
  background: var(--white);
}
.secHeading {
  font-size: 4.8125rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  position: relative;
  text-transform: uppercase;
}

.secHeading span {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
}
.aboutSec {
  padding-top: 28rem;
  margin-top: -20rem;
  background: url(../images/abtBg.png) center/cover no-repeat;
}

.aboutSec .abt2 {
  margin-bottom: -10rem;
}
.aboutSec .secHeading {
  font-size: 4.375rem;
}
/* serviceSec */
.serviceSec {
  background: url(../images/serviceBg.png) left top/auto no-repeat,
    url(../images/servsBg.png) top center/cover no-repeat;
}

.servCard figure {
  overflow: hidden;
}
.servCard figure img {
  transition: 0.3s ease-in-out;
}
.servCard:hover figure img {
  transform: scale(1.125);
}
.servCard a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
  padding: 1rem 0;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}
.servCard a i {
  font-size: 2rem;
  transition: 0.3s ease-in-out;
}
.servCard:hover a {
  color: var(--primary);
}
.servCard:hover a i {
  transform: translateX(-1rem);
}
.serviceSec .swiper-prev,
.serviceSec .swiper-next {
  height: 3.5rem;
  width: 3.5rem;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  border: 1px solid var(--white);
}
.serviceSec .swiper-prev:hover,
.serviceSec .swiper-next:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.serviceSec .wrapper {
  position: relative;
}
.serviceSec .btn-group {
  position: absolute;
  left: -6rem;
  gap: 0.5rem;
  top: 40%;
  transform: translateY(-50%);
  flex-direction: column;
}

/* clientSec */
.clientSec {
  margin-top: -15rem;
  padding: 13rem 0;
  background: url(../images/clientBg.png) top center/cover no-repeat;
}
.reviewCard {
  padding-right: 2rem;
}
.reviewCard ul {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  align-items: center;
}
.reviewCard ul li {
  font-size: 11px;
  font-weight: 400;
  color: var(--white);
}
.reviewCard ul li i {
  font-size: 1rem;
  color: #eac15c;
}
.reviewCard h3 {
  font-family: "Roboto", sans-serif;
  color: var(--white);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.clientSec figure {
  z-index: 1;
  position: relative;
  text-align: right;
}
.clientSec figure::before {
  content: "";
  width: 596px;
  height: 572px;
  position: absolute;
  z-index: -1;
  top: 4rem;
  left: 0;
  animation: pulse infinite 5s;
  border: 8px solid var(--secondary);
}
.clientSec figure img:last-child {
  display: block;
  top: 8rem;
  left: -1.5rem;
  position: absolute;
}
.clientSec .btn-group {
  gap: 1rem;
}
.clientSec .swiper-btn-prev,
.clientSec .swiper-btn-next {
  height: 3.5rem;
  width: 3.5rem;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  border: 1px solid var(--white);
}
.clientSec .swiper-btn-prev:hover,
.clientSec .swiper-btn-next:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.main-wrapper {
  background: url(../images/servsBg.png) center/cover no-repeat;
}
.caseStudySec {
  padding-top: 3rem;
}
/* studyCard */
.studyCard {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(139, 139, 139, 0.16);
}
.studyCard figure {
  overflow: hidden;
}
.studyCard figure img {
  transition: 0.3s ease-in-out;
}
.studyCard:hover figure img {
  transform: scale(1.125);
}
.studyCard .content {
  background: var(--white);
  padding: 1rem;
  border: 1px solid #e8e8e8;
}
.studyCard .content a {
  margin: 0;
  font-weight: 600;
  display: block;
  color: var(--black);
  line-height: 1;
  text-transform: uppercase;
  font-size: 1.625rem;
}

/* Footer CSS */
footer {
  background: #061530;
  padding-top: 8rem;
}
footer p {
  font-size: 1.125rem;
}
footer h3 {
  color: var(--white);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
footer .links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.75rem;
  height: 200px;
}
footer .links li a {
  display: inline-block;
  font-size: 0.9375rem;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
}
.cntctInfo li a:hover,
footer .links li a:hover {
  color: var(--primary);
}

.cntctInfo li a {
  font-size: 1.125rem;
  font-weight: 500;
  gap: 1rem;
  display: inline-flex;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.cntctInfo li a i {
  margin-top: 5px;
  display: inline-block;
  font-size: 1.5rem;
  color: var(--secondary);
}
.cntctInfo li a span {
  display: block;
  font-size: 1.375rem;
}

.copyRight {
  margin-top: 4rem;
  border-top: 1px solid rgba(112, 112, 112, 0.5);
  align-items: center;
  padding: 1rem 0;
}
.copyRight p {
  margin: 0;
  font-size: 1.375rem;
}
.copyRight .socialList {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}
.copyRight .socialList li a {
  height: 2.5rem;
  width: 2.5rem;
  display: inline-grid;
  place-items: center;
  font-size: 1.25rem;
  border-radius: 10px;
  color: var(--white);
}

.copyRight .socialList li .fb {
  background: #4b69b0;
}

.copyRight .socialList li .insta {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.copyRight .socialList li .ytube {
  background: #e83f3a;
}
.copyRight .socialList li .twitter {
  background: #37b1e1;
}

/* Inner Pages CSS */
.inner-slider {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  max-height: 800px;
  background: url(../images/banner-1.png) bottom/cover no-repeat;
}
.inner-slider h2 {
  font-size: 4.5rem;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
}

.aboutInner figure .about2 {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: -10rem;
  margin-left: auto;
}

.serviceInner .secHeading {
  font-size: 3.125rem;
  font-weight: 600;
}

.testimonialCard {
  display: flex;
  gap: 1.5rem;
}
.testimonialCard figure {
  width: 25%;
}
.testimonialCard .content {
  width: 75%;
}
.testimonialCard .para-wrap {
  padding: 2rem 4rem 2rem 2rem;
  gap: 0.5rem;
  background: var(--secondary);
  margin-bottom: 2rem;
  position: relative;
  display: flex;
}
.testimonialCard .para-wrap i {
  display: block;
  font-size: 1.5rem;
  color: var(--white);
}
.testimonialCard .fa-quote-right {
  align-self: flex-end;
}
.testimonialCard h3 {
  font-family: "Roboto", sans-serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: 1.275rem;
}
.testimonialCard .para-wrap:before {
  content: "";
  height: 30px;
  width: 30px;
  background: var(--secondary);
  position: absolute;
  bottom: -15px;
  z-index: -1;
  transform: rotate(45deg);
}

.testimonialInner .row + .row {
  margin-top: 6rem;
}

.testimonialCard ul {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  align-items: center;
}
.testimonialCard ul li {
  font-size: 11px;
  font-weight: 400;
  color: var(--white);
}
.testimonialCard ul li i {
  font-size: 1rem;
  color: #eac15c;
}

.testimonialCard.secondCard .para-wrap,
.testimonialCard.secondCard .para-wrap:before {
  background: var(--primary);
}

.blogCard figure {
  overflow: hidden;
}
.blogCard figure img {
  width: 100%;
  transition: 0.3s ease-in-out;
}
.blogCard:hover figure img {
  transform: scale(1.05);
}
.blogCard .content {
  margin-top: 1rem;
}
.blogCard .content ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.blogCard .content ul li {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 11px;
  gap: 0.5rem;
  font-weight: 500;
}
.blogCard .content h3 {
  font-family: "Roboto", sans-serif;
  font-size: 3.125rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  text-transform: uppercase;
}

.infoBox {
  display: flex;
  gap: 1rem;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
}
.infoBox figure {
  height: 6rem;
  width: 6rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
}
.infoBox a {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
}
.infoBox a span {
  display: block;
  font-size: 1.375rem;
  font-weight: 600;
  text-transform: uppercase;
}

.contactInner .secHeading {
  font-size: 3.125rem;
}
.contactInner .form-group {
  position: relative;
  display: flex;
  border: 1px solid #efefef;
  background-color: #f1f1f1;
}
.contactInner .form-group i {
  display: grid;
  place-items: center;
  color: #7e7e7e;
  font-size: 1.25rem;
  background-color: #dedede;
  width: 58px;
  height: 58px;
}
.contactInner .form-group .form-control {
  border-radius: 0;
  background-color: transparent;
  height: 58px;
  border: 0;
  font-size: 16px;
  color: var(--black);
  transition: 0.4s ease-in-out;
  line-height: 1;
}
.contactInner .form-group .form-control::placeholder {
  color: #9f9f9f;
}
.contactInner .form-group textarea.form-control {
  height: 180px;
  padding-top: 1rem;
}
.contactInner .form-group .form-control:focus {
  background-color: var(--theme-color);
}
.contactInner .themeBtn {
  background: var(--secondary);
  color: var(--white);
  padding: 1em 2em;
  font-size: 1.125rem;
  border-color: var(--secondary);
}
.contactInner .themeBtn:hover {
  background-color: var(--white);
  color: var(--secondary);
}
.contactInner .row + .row {
  margin-top: 6rem;
}

.contactMap {
  min-height: 780px;
  width: 100%;
  filter: grayscale(1);
}

#cursor-follow {
  width: 15px;
  height: 15px;
  border: 0;
  background: #fff;
  box-shadow: 0 0 80px 45px rgb(0 255 255 / 75%);
  border-radius: 100%;
  position: absolute;
  transition-duration: 50ms;
  transition-timing-function: linear;
  pointer-events: none;
  z-index: 1111;
}
