:root {
  --primary-color: #FEC509;
  --secondary-color: #ffffff;
  --tertiary-color: #000000;
  --primary-title-color: #FEC509;
  --secondary-title-color: #000000;
  --paragraph: #000000;
  --font-12: 12px;
  --font-13: 13px;
  --font-14: 14px;
  --font-15: 15px;
  --font-16: 16px;
  --font-17: 17px;
  --font-18: 18px;
  --font-19: 19px;
  --font-20: 20px;
  --font-21: 21px;
  --font-22: 22px;
  --font-23: 23px;
  --font-24: 24px;
  --font-25: 25px;
  --font-26: 26px;
  --font-27: 27px;
  --font-28: 28px;
  --font-29: 29px;
  --font-30: 30px;
  --font-31: 31px;
  --font-32: 32px;
  --font-33: 33px;
  --font-34: 34px;
  --font-35: 35px;
  --font-36: 36px;
  --font-37: 37px;
  --font-38: 38px;
  --font-39: 39px;
  --font-40: 40px;
  --font-41: 41px;
  --font-42: 42px;
  --font-43: 43px;
  --font-44: 44px;
  --font-45: 45px;
  --font-46: 46px;
  --font-47: 47px;
  --font-48: 48px;
  --font-49: 49px;
  --font-50: 50px;

  --font-115: 115px;
  --font-116: 116px;
  --font-117: 117px;
  --font-118: 118px;
  --font-119: 119px;
  --font-120: 120px;
}

body {
  padding-top: 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

img {
  max-width: 100%;
}

p {
  font-size: var(--font-20);
}

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

.primary-color {
  color: var(--primary-color);
}

header .navbar {
  padding: 0;
  border-bottom: 1px solid #282828;
}

header .navbar a.navbar-brand {
  padding: 34px 40px 20px;
  background: #fff;
  transform: skewx(-25deg);
  -moz-transform: skewx(-25deg);
  -webkit-transform: skewx(-25deg);
}

header .navbar a.navbar-brand img {
  transform: skewx(25deg);
  -moz-transform: skewx(25deg);
  -webkit-transform: skewx(25deg);
  position: relative;
  z-index: 1;
}

header .navbar a.navbar-brand::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: repeating-linear-gradient(to right, var(--primary-color) 2.62em, #b58b00 5.25em, var(--primary-color) 7.87em, #ffdf77 10.5em, var(--primary-color) 15.75em, var(--primary-color) 18.75em);
  background-size: 125em;
  animation: scrollBorder 10s linear infinite
}

header .navbar a.navbar-brand::after {
  content: "";
  position: absolute;
  background-color: #fff;
  height: 94%;
  width: 94%;
  top: 0;
  left: 3%;
  border-radius: 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1.2em;
  letter-spacing: 0.3em;
  display: grid;
  place-items: center;
}

/* Keyframe to animate the gradient */
@keyframes scrollBorder {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -106.25em 0;
  }
}

header .navbar ul.navbar-nav li a.nav-link {
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Rajdhani';
  font-weight: 700;
  padding: 0 15px;
  color: #fff;
  position: relative;
}

header .navbar ul.navbar-nav li a.nav-link:hover {
  color: var(--primary-color);
}

header .navbar ul.navbar-nav li.contact-btn {
  margin-left: 30px;
}

header .navbar ul.navbar-nav li.contact-btn a.nav-link {
  padding: 18px 48px;
}

header .navbar .contact-btn {
  margin-left: 30px;
}

header .navbar .contact-btn a.contact-btn-link {
  padding: 18px 48px;
  line-height: 24px;
  display: inline-block;
  background-color: var(--primary-color);
  color: #000;
  transform: skew(-25deg);
  text-decoration: none;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  font-size: 20px;
  font-family: 'Rajdhani';
  text-transform: uppercase;
}

header .navbar .contact-btn a.contact-btn-link span {
  display: inline-block;
  transform: skew(25deg);
}

header .navbar .contact-btn a.contact-btn-link:hover {
  background: #fff;
  color: #000;
}

canvas {
  display: block;
  vertical-align: bottom;
}

header.header {background-color: var(--tertiary-color);}
header.header .navbar { border-bottom: none;}
.home-banner { background-color: var(--tertiary-color); padding: 20px 0; height: calc(100vh - 130px);}
.home-banner .home-banner-content {
	height: calc(100vh - 150px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.home-banner h2 {
  font-size: 120px;
  line-height: 120px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.home-banner h2 span {
  display: block;
}

.home-banner .banner-desc {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  max-width: 1208px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 30px;
}

.home-banner .skew-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: #000;
  transform: skew(-20deg);
  text-decoration: none;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Rajdhani';
}

.home-banner .skew-button span {
  display: inline-block;
  transform: skew(20deg);
  /* unskew the text */
}

.home-banner .skew-button:hover {
  background-color: #fff;
  transform: skew(-20deg) scale(1.05);
}

/* ---- particles.js container ---- */
/* #particles-js {
  width: 100%;
  height: 100vh;
  background-color: #030412;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  margin-top: -130px;
} */

#particles-js {
  width: 100%;
  height: 100vh;
  background-color: #030412;
  background-image: url('');
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
}

.bar {
  margin-left: 45px;
}

.bar button.btn {
  padding: 0;
  border: none;
}

.contact-offcanvas {
  max-width: 275px;
  background: var(--primary-color);
  border: none !important;
}

.offcanvas-backdrop {
  display: none;
}

body.offcanvas-open {
  transform: translateX(-300px);
  transition: transform 0.3s ease;
}

.offcanvas-end.push {
  transform: translateX(100%);
  transition: transform 0.3s ease;
  visibility: visible;
}

.offcanvas-end.push.show {
  transform: translateX(0);
}

.hero-banner-sec {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -100vh;
	text-align: center;
	background: #030412;
}

.banner-inner-content {
  margin-top: 130px;
}

.hero-banner-sec h2 {
  font-size: 120px;
  line-height: 120px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.hero-banner-sec h2 span {
  display: block;
}

.hero-banner-sec .banner-desc {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  max-width: 1208px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 30px;
}

.skew-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: #000;
  transform: skew(-20deg);
  text-decoration: none;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease;
  font-size: 20px;
  text-transform: uppercase;
  font-family: 'Rajdhani';
}

.skew-button span {
  display: inline-block;
  transform: skew(20deg);
  /* unskew the text */
}

.skew-button:hover {
  background-color: #fff;
  transform: skew(-20deg) scale(1.05);
}

.about-sec {
  height: auto;
  padding: 70px 0;
  position: relative;
  display: flex;
  align-items: center;
}

.about-sec .watermark-txt {
  font-size: 250px;
  line-height: 350px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  left: 0;
}

.about-sec h3 {
  font-size: var(--font-30);
  color: var(--primary-title-color);
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
}

.about-sec h2 {
  font-size: var(--font-50);
  color: var(--secondary-title-color);
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
}

.about-sec .counter-section {
  display: flex;
  padding: 0;
  background: none;
  width: auto;
}

.about-sec .counter-box {
  flex: 0 auto;
  margin: 0;
  font-family: "Rajdhani", sans-serif;
  display: flex;
  align-items: center;
  border-bottom: 5px solid #EEEEEE;
  position: relative;
}

.about-sec .counter-box::after {
  content: "";
  background-color: var(--primary-color);
  height: 5px;
  width: 58px;
  position: absolute;
  bottom: -5px;
}

.about-sec .counter {
  font-size: var(--font-50);
  font-weight: bold;
  color: var(--secondary-title-color);
}

.about-sec .plus {
  font-size: var(--font-50);
  font-weight: bold;
  color: var(--secondary-title-color);
  margin-left: 5px;
}

.about-sec .counter-box p {
  margin: 0 0 0 20px;
  font-size: var(--font-30);
  font-weight: bold;
  color: var(--paragraph);
  line-height: 26px;
}

.logo-slider {
  background-color: var(--tertiary-color);
  width: 100%;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.logo-slider .slider {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}

.logo-slider .slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.logo-slider .slider .slide {
  display: flex;
  align-items: center;
  margin-right: 70px;
}

.logo-slider p {
  font-size: var(--font-40);
  font-weight: bold;
  font-family: "Rajdhani", sans-serif;
  color: #ffffff;
  margin-bottom: 0;
  text-transform: uppercase;
}

.services {
  text-align: center;
}

.services h3 {
  font-size: var(--font-30);
  color: var(--primary-title-color);
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
}

.services h2 {
  font-size: var(--font-50);
  color: var(--secondary-title-color);
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
}

.services .services-column {
  text-align: center;
  min-height: 490px;
  padding: 70px 20px;
  box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.1);
}

.services .services-column.grey {
  background-color: #F5F5F5;
  box-shadow: none;
}

.services .services-column h3 {
  font-size: var(--font-30);
  font-weight: bold;
  text-transform: uppercase;
  color: var(--secondary-title-color);
  margin: 10px 0;
}

.services .services-column p {
  font-size: var(--font-18);
  margin: 0;
}

.testimonial-section .testimonial-left {
  padding-right: 120px;
}

.testimonial-section {
	background: linear-gradient(to right, #0d0d0d 50%, #f8c400 50%);
	padding: 150px 20px;
}

.testimonial-section .testimonial-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
}

.testimonial-section .testimonial-left h5 {
  color: #f8c400;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: var(--font-30);
}

.testimonial-section .testimonial-left h2 {
  font-size: var(--font-50);
  font-weight: bold;
  line-height: 1.3;
  color: var(--secondary-color);
}

.testimonial-section .testimonial-left p {
  margin-top: 20px;
  color: #ddd;
  line-height: 1.6;
}

.testimonial-section .testimonial-card {
  background-color: #111;
  padding: 100px 30px 70px 30px;
  border-radius: 0;
  position: relative;
  box-shadow: none;
  margin-left: -100px;
}

.testimonial-section .favourite {
  color: var(--primary-color);
}

.testimonial-section .favourite i {
  margin-right: 5px;
}

.testimonial-section .testimonial-card::before {
  content: "";
  background-color: var(--primary-color);
  width: calc(100% - 20px);
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  margin: 10px;
}

.testimonial-section .stars {
  color: gold;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-section .testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}

.testimonial-section .testimonial-footer {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-section .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #f8c400;
}

.testimonial-section .name {
  color: #f8c400;
}

.testimonial-section .role {
  font-size: 12px;
  color: #aaa;
}

.testimonial-section .testimonial-nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.testimonial-section .nav-btn {
  background: #f8c400;
  border: none;
  padding: 6px 10px;
  margin-left: 5px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
}

/*=========Testimonial Slider Start=========*/
.testimonial-section .testimonial-slider {
  max-width: 100%;
  width: 100%;
  background-color: var(--light-color);
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.testimonial-section .testimonial-list {
  display: flex;
  overflow: hidden;
}

.testimonial-section .testimonial {
  flex: 1 0 100%;
  text-align: left;
  padding: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-section .testimonial .bi-quote {
  font-size: 4rem;
  color: var(--sunglow);
  opacity: 0.75;
}

.testimonial-section .testimonial blockquote {
  font-size: var(--font-20);
  margin-inline: 0;
  color: var(--secondary-color);
}

.testimonial-section .user-info {
  margin-top: 30px;
  display: flex;
  align-items: left;
  justify-content: left;
  gap: 10px;
}

.testimonial-section .user-info img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
}

.testimonial-section .user-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonial-section .user-details .name {
  font-size: var(--font-20);
  color: var(--primary-title-color);
  margin-bottom: 0;
}

.testimonial-section .user-details .company {
  font-size: var(--font-16);
  color: var(--secondary-color);
  margin-bottom: 0;
}

.testimonial-section .testimonial-buttons {
  display: flex;
  align-items: end;
  justify-content: end;
}

.testimonial-section .testimonial-buttons i {
  margin: 0 auto;
}

/* button navigation */

.testimonial-section .nav {
  position: inherit;
  height: 42px;
  font-size: 1.5rem;
  border-radius: 50%;
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-color);
  background-color: var(--primary-color);
}

.testimonial-section .nav:hover {
  border: 2px solid var(--primary-color);
}

.testimonial-section .testimonial-buttons .nav:hover i {
  color: var(--primary-color);
}

.testimonial-section .testimonial-slider:hover .nav {
  opacity: 1;
  transition: 0.6s;
}

.testimonial-section .nav:hover {
  background-color: var(--dark-cyan);
  color: var(--light-color);
}

.testimonial-section .nav.prev {
  margin-right: 10px;
}

.testimonial-section .nav.next {
  margin: 0;
}

/* dot navigation */

.testimonial-section .dots-container {
  text-align: center;
  display: none;
}

.testimonial-section .dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 5px;
  margin-inline: 5px;
  background-color: var(--dot-color);
  transition: width 0.5s;
}

.testimonial-section .dot.active {
  width: 30px;
  background-color: var(--paynes-gray);
}

/*=========Testimonial Slider Start=========*/


/*=============Projects Start===========*/

.projects {
  text-align: center;
}

.projects h3 {
  font-size: var(--font-30);
  color: var(--primary-title-color);
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
}

.projects h2 {
  font-size: var(--font-50);
  color: var(--secondary-title-color);
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
}

.projects .aia-project {
  margin-bottom: 20px;
}

.projects .aia-project .project-bg {
  background-color: #FFF0BD;
  padding: 30px;
  border-radius: 50px;
  margin-bottom: 15px;
  box-shadow: 0px 4px 15px -5px rgba(0, 0, 0, 0.1);
}

.projects .aia-project.odd .project-bg {
  background-color: #EEEEEE;
}

.projects .aia-project {
  text-align: left;
}

.projects .aia-project p {
  color: #4E4E4E;
  font-size: var(--font-18);
  font-weight: normal;
  margin-bottom: 0;
}

.projects .aia-project h3 {
  text-align: left;
  color: var(--secondary-title-color);
  font-weight: bold;
}

.projects .tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
}

.projects .tabs button {
  padding: 10px 20px;
  border: none;
  background-color: var(--primary-color);
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s;
}

.projects .tabs button.active {
  background-color: var(--tertiary-color);
  color: var(--secondary-color);
}

.projects .portfolio-items {
  display: block;
}

.projects .item {
  display: none;
}

.projects .item.show {
  display: block;
}

.projects .item img {
  width: 100%;
  border-radius: 5px;
}

.projects .item h4 {
  margin-top: 10px;
  font-size: 16px;
}

/*=============Projects End===========*/

/*=============Recent Blogs Start============*/

.recent-blog { background-image: url(../img/blog-bg.png); width: 100%;}

.recent-blog h3 {
  font-size: var(--font-30);
  color: var(--primary-title-color);
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.recent-blog h2 {
  font-size: var(--font-50);
  color: var(--secondary-color);
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.recent-blog p { text-align: center; color: var(--secondary-color);}

.recent-blog .blog-desc {
	background-color: #191919;
	padding: 65px 15px 15px 15px;
	position: relative;
	margin-top: -25px;
	width: 90%;
}
.recent-blog .blog-desc h2 {
  font-size: var(--font-20);
  color: var(--secondary-color);
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
}
.recent-blog .blog-desc a.read-more {
	color: var(--secondary-color);
	text-decoration: none;
	font-family: "Rajdhani", sans-serif;
	margin-top: 20px;
	display: block;
}
.recent-blog .blog-desc a.read-more:hover { color: var(--primary-color);}
.recent-blog .blog-desc a.read-more i { color: var(--primary-color); font-size: 18px;}
.recent-blog .blog-desc::before {
	content: "";
	background-color: var(--primary-color);
	width: calc(100% - 180px);
	height: 5px;
	position: absolute;
	top: 0;
	right: 0;
	margin: 10px;
}
.recent-blog .blog-desc .date {
	background-color: var(--primary-color);
	font-size: 20px;
	position: absolute;
	left: 0;
	top: 0;
	padding: 10px 15px;
}

/*=============Recent Blogs End============*/

/*===========Footer Start============*/
.footer { background-color: var(--primary-color); color: var(--tertiary-color);}
.footer ul {
	list-style: none;
	margin-bottom: 0;
	padding-left: 0;
	justify-content: end;
}
.footer ul li a { margin-left: 10px; color: var(--tertiary-color); text-decoration: none;}
.footer ul li:first-child a { margin-left: 0;}
.footer-xdinua { color: var(--tertiary-color); text-decoration: none;}
/*===========Footer End============*/


/*Responsive Start*/

@media only screen and (max-width: 991px) {
.home-banner { background-color: var(--tertiary-color); padding: 50px 0; height: auto;}
.home-banner .home-banner-content {
	height: auto;
	display: block;
	align-items: center;
	justify-content: center;
  text-align: center;
}
#particles-js {
  width: 100%;
  height: auto;
}
}

@media only screen and (max-width: 991px) {
  .about-sec .watermark-txt {
    font-size: 180px;
  }
}

@media only screen and (max-width: 850px) {
  .testimonial-section .testimonial-card {
    margin-left: 0;
  }

  .testimonial-section {
    background: var(--tertiary-color);
    padding: 80px 0;
  }

  .testimonial-section .testimonial-left {
    padding-right: 50px;
    padding-left: 50px;
  }

  .testimonial-section .testimonial-right {
    background-color: var(--primary-color);
    padding-right: 50px;
    padding-left: 50px;
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .testimonial-section .testimonial-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-section .testimonial-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-section .testimonial-footer {
    justify-content: center;
  }

  .testimonial-section .testimonial-nav {
    position: static;
    margin-top: 20px;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .about-sec .watermark-txt {
    display: none;
  }
}


@media only screen and (max-width: 650px) {
  .testimonial-section .testimonial-container {
    display: block;
    grid-template-columns:inherit;
    align-items: center;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
  }
  .home-banner h2 {
    font-size: 50px;
    line-height: normal;
  }
}


/*Responsive End*/