/* ====== Colors ====== */
:root {
  --primary-color: #008bd1;
  --dark: #000000;
  --white: #ffffff;
  --grey: #516263;
  --bg-color: #b9b3b354;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

iframe,
video {
  width: 100%;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

.back-link {
  color: #0196c8 !important;
  font-weight: 600;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 12px;
  height: 15px;
}

::-webkit-scrollbar-track {
  background-color: var(--white);
  border: 1px solid var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}

::-webkit-scrollbar-corner {
  background-color: #00a2ff;
}

a:hover {
  text-decoration: none;
}

h1 {
  font-family: "dosis" sans-serif;
}

.modal-body {
  padding: 0;
}

 body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
} 

strong {
  font-weight: 400;
}

/* header-section-start */

.header-section .menu-bar {
  width: 100%;
  padding: 5px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.096);
  background-color: var(--white);
  position: relative;
  z-index: 9999999;
}

.header-section .is-sticky-menu {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 3px;
  animation: slideInDown 0.4s ease-in;
  padding: 5px 0;
  background-color: var(--white);
}

.header-section .navbar-brand img {
  width: 100px;
  height: auto;
}

.header-section .menu-bar .nav-link {
  margin: 0px 5px;
  text-transform: capitalize;
  color: var(--dark);
  font-weight: 500;
  font-size: 16px;
  position: relative;
}

.header-section .nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
}

.header-section .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-section .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.header-section .dropdown-menu {
  background-color: var(--white);
  color: var(--dark);
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  padding: 0;
  display: none;
  border: 1px solid rgb(116, 116, 116);
  overflow: hidden;
  border: 0;
  transition: 0.5s;
  position: absolute;
  box-shadow:
    rgba(0, 0, 0, 0.09) 0px 2px 1px,
    rgba(0, 0, 0, 0.09) 0px 4px 2px,
    rgba(0, 0, 0, 0.09) 0px 8px 4px,
    rgba(0, 0, 0, 0.09) 0px 16px 8px,
    rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.header-section .dropdown:hover .dropdown-menu {
  display: block;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: 0.5s;
}

.header-section .sibar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
}

.header-section .dropdown-menu .dropdown-item {
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary-color);
  margin-bottom: 2px;
  position: relative;
  transition: all 0.2s;
  z-index: 1;
}

.header-section .dropdown-menu .dropdown-item:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

.header-section .dropdown-menu .dropdown-item:first-child {
  margin-top: 15px;
}

.header-section .dropdown i {
  transition: 0.6s;
}

.header-section .dropdown:hover i {
  transform: rotate(180deg);
  transition: 0.6s;
}

.header-section .navbar-toggler {
  background-color: var(--dark);
  color: var(--white);
  margin: 0px;
  line-height: 30px;
  border-radius: 5px;
  border: none;
  padding: 2px 10px;
  border: 1px solid white;
}

.header-section .offcanvas-header {
  background-color: var(--primary-color);
}

.header-section .navbar-toggler:focus {
  box-shadow: none;
}

.header-section .sidbar-toggle {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-right: 10px;
  font-size: 16px;
  padding: 3px 8px;
}

.header-section .sid .header-section .nav-link:hover {
  color: var(--primary-color);
  transition: 0.2s;
}

.header-section .conatact-btn {
  color: var(--white);
  text-decoration: none;
  background-color: var(--primary-color);
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: ease-in-out 0.5s;
  margin: 0px 10px;
  border: 1px solid var(--primary-color);
  position: relative;
  z-index: 1;
}

.header-section .conatact-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background-color: var(--white);
  transition: 0.5s;
  border-radius: 5px;
  z-index: -1;
}

.header-section .conatact-btn:hover:before {
  width: 100%;
  transition: 0.5s;
}

.header-section .conatact-btn:hover {
  color: var(--primary-color);
  transition: 0.5s;
}

.header-section .offcanvas-header .btn-close {
  color: var(--white);
  opacity: 1;
  background-image: none;
  line-height: 10px;
  border-radius: 5px;
  border: none;
  border: 1px solid white;
  font-size: 16px;
  padding: 6px 8px;
  background-color: var(--dark);
}

.header-section .offcanvas-header .btn-close:focus {
  transform: rotate(180deg);
  transition: 0.5s;
}

/* header-section-end */

/* hero-section-start */

.hero-section {
  position: relative;
  background: url(../images/bg-pattern.png);
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding: 90px 0px;
  height: auto;
  min-height: 400px;
}

.hero-section::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #07466dec;
  z-index: -1;
}

.hero-section .hero-image {
  animation-duration: 4s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: bounce-1;
  animation-timing-function: linear;
  text-align: center;
}

.hero-section .hero-section-image {
  position: relative;
  z-index: 1;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: bounce-1;
  animation-timing-function: linear;
}

@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-section .hero-caption h1 {
  font-size: 40px;
  color: var(--white);
  text-shadow:
    0 0 3px #000000,
    0 0 5px #00090e;
  font-weight: 500;
}

.hero-caption .text {
  display: inline-block;
  color: yellow;
  font-family: "Carlito", sans-serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow:
    0 0 3px #ecc203,
    0 0 5px #000000;
  margin: 10px 0px;
}

.hero-caption .typed-cursor {
  display: none;
}

.hero-section .hero-caption p {
  color: var(--white);
  margin: 20px 0px 40px 0px;
}

.hero-section .hero-caption span {
  color: var(--primary-color);
  font-weight: 700;
  padding: 0px 5px;
  border-radius: 3px;
  background-color: var(--white);
}

.hero-section .hero-caption .contact-link {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.5s;
  border: 1px solid var(--white);
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: inline-block;
}

.hero-section .hero-caption .contact-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--white);
  z-index: -1;
  width: 0;
  transition: 0.5s;
  border-radius: 5px;
}

.hero-section .hero-caption .contact-link:hover::before {
  width: 100%;
}

.hero-section .hero-caption .contact-link:hover {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

/* hero-section-end */

/* service-section-start */

.service-section {
  padding: 90px 0px;
  background-color: var(--bg-color);
  overflow: hidden;
}

.service-section .section-title {
  text-align: center;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.service-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.service-section .section-title span::before {
  position: absolute;
  content: "";
  background-color: var(--dark);
  height: 2px;
  width: 115px;
  bottom: -13px;
  left: 0;
  right: 0;
  border-radius: 10px;
}

.service-section .section-title span::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 8px;
  width: 20px;
  bottom: -16px;
  left: 25px;
  right: 0;
  border-radius: 2px;
  animation: nudge1 5s linear infinite;
}

@keyframes nudge1 {
  0%,
  100% {
    transform: translateX(85px);
  }

  80% {
    transform: translate(-35px);
  }
}

.service-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--dark);
}

.service-section .service-item {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.8s ease;
  box-shadow:
    rgba(3, 186, 231, 0.363) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.199) 0px 0.25em 1em;
  height: 100%;
  background: url(../images/element-2.svg);
  background-size: cover;
  background-position: center;
  background-color: white;
}

.service-section .service-item::before {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  z-index: -1;
  border-radius: 10px;
  content: "";
  display: block;
  inset: 0 0 0 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.8s ease;
}

.service-section .service-item::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  clip-path: polygon(
    0% 0%,
    0% 100%,
    25% 100%,
    25% 25%,
    75% 25%,
    75% 75%,
    25% 75%,
    25% 100%,
    100% 100%,
    100% 0%
  );
  bottom: -50px;
  right: -30px;
  height: 100px;
  width: 100px;
  z-index: -1;
  border-radius: 10px;
  transform: rotate(45deg);
  transition: 1.5s;
}

.service-section .service-item:hover h2,
.service-section .service-item:hover p,
.service-section .service-item:hover a {
  color: var(--white);
}

.service-section .service-item:hover i {
  padding-left: 5px;
  transition: 1s;
}

.service-section .service-item:hover:before {
  transform: scaleX(1);
  transform-origin: bottom left;
  transition: transform 0.8s ease;
}

.service-section .service-item:hover::after {
  background-color: var(--white);
  transition: 1s;
  transform: rotate(400deg);
}

.service-section .service-icon {
  margin-bottom: 20px;
  background-color: #fdfdfd;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  position: relative;
  z-index: 1;
  /* border: 1px dashed rgba(0, 0, 0, 0.342); */
  border: 1px dashed #008bd170;
}

.service-section .service-icon::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0%;
  right: 0;
  bottom: 0;
  border-radius: 73px;
  width: 100px;
  height: 100px;
  line-height: 0;
  color: var(--primary-color);
  z-index: 1;
  font-weight: 900;
  font-size: 8px;
}

.service-section .service-icon::after {
  content: "\f111";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  color: var(--primary-color);
  z-index: 1;
  inset: 0;
  line-height: 0;
  transform: rotate(180deg);
  font-weight: 900;
  font-size: 8px;
}

.service-section .service-item .service-icon::before {
  animation: round-two 4s linear infinite;
}

@keyframes round-two {
  from {
    transform: rotate(180deg);
  }

  to {
    transform: rotate(540deg);
  }
}

@keyframes round-one {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.service-section .service-item .service-icon::after {
  animation: round-one 4s linear infinite;
}

.service-section .service-item h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}

.service-section .service-item p {
  font-size: 14px;
  color: var(--grey);
}

.service-section .service-item a {
  font-size: 16px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  color: var(--primary-color);
  position: relative;
}

.service-section .service-item a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 3px;
  background-color: var(--white);
  width: 0px;
  border-radius: 10px;
  transition: 0.5s;
}

.service-section .service-item a:hover:before {
  width: 85px;
  transition: 0.5s;
}

/* service-section-end */

/* eCommerce-account-Management-start  */

.ecommerce-account-management {
  padding: 90px 0px;
  background-color: #e8e6e6;
  overflow: hidden;
}

.ecommerce-account-management .section-title {
  text-align: center;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.ecommerce-account-management .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.ecommerce-account-management .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--dark);
}

.ecommerce-account-management .section-title p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
  color: var(--dark);
}

.ecommerce-account-management .service-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow:
    rgba(3, 185, 231, 0.466) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.438) 0px 0.25em 1em;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ecommerce-account-management .service-card::before {
  transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--white);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
  border-radius: 10px;
}

.ecommerce-account-management .service-card:hover::before {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  background-color: var(--primary-color);
}

.ecommerce-account-management .icon {
  margin-bottom: 20px;
  background-color: #fdfdfd;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  position: relative;
  z-index: 1;
  border: 1px dashed #008bd170;
}

.ecommerce-account-management .icon::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0%;
  right: 0;
  bottom: 0;
  border-radius: 73px;
  width: 100px;
  height: 100px;
  line-height: 0;
  color: var(--primary-color);
  z-index: 1;
  font-weight: 900;
  font-size: 8px;
}

.ecommerce-account-management .icon::after {
  content: "\f111";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  color: var(--primary-color);
  z-index: 1;
  inset: 0;
  line-height: 0;
  transform: rotate(180deg);
  font-weight: 900;
  font-size: 8px;
}

.ecommerce-account-management .icon::before {
  animation: round-two 4s linear infinite;
}

@keyframes round-two {
  from {
    transform: rotate(180deg);
  }

  to {
    transform: rotate(540deg);
  }
}

@keyframes round-one {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.ecommerce-account-management .icon::after {
  animation: round-one 4s linear infinite;
}

.ecommerce-account-management .service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.ecommerce-account-management .service-card p {
  font-size: 16px;
  color: var(--grey);
}

.ecommerce-account-management .service-card:hover p {
  color: var(--white);
}

/* eCommerce-account-Management-end */

/* platforms-section-start */

.platforms-section {
  padding: 45px 0px;
  background-color: var(--white);
  text-align: center;
}

.platforms-section .section-title {
  margin-bottom: 45px;
}

.platforms-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--dark);
}

.platforms-section .platforms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.platforms-section .platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
  width: 150px;
  background-color: var(--primary-color);
  border-radius: 10px;
}

.platforms-section .platform-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s;
  background-color: var(--white);
  padding: 10px;
  border-radius: 10px;
}

.platform-item span {
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
}

.platforms-section .platform-item:hover img {
  transform: scale(1.1);
}

/* platforms-section-end */

/* who-section-start  */

.who-section {
  padding: 45px 0px;
  background: var(--bg-color);
}

.who-section .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.who-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--dark);
}

.who-section .who-item {
  background-color: var(--white);
  padding: 20px;
  height: 100%;
  box-shadow:
    rgba(3, 185, 231, 0.466) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.438) 0px 0.25em 1em;
  border-radius: 10px;
  text-align: center;
}

.who-section .who-item .icon {
  margin-bottom: 20px;
}

.who-section .who-item p {
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
}

/* who-section-end  */

/* why-choose-section-start */

.why-choose-section {
  padding: 45px 0px;
  background-color: var(--white);
}

.why-choose-section .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.why-choose-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--dark);
}

.why-choose-section .why-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.why-choose-section .why-item {
  text-align: center;
  gap: 12px;
  background-color: var(--primary-color);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 300px;
  flex: 1 1 300px;
  transition: transform 0.3s;
}

.why-choose-section .why-item:hover {
  transform: translateY(-5px);
}

.why-choose-section .icon {
  background-color: var(--white);
  box-shadow:
    #e0f0032d 0px 0px 0.25em,
    rgba(213, 236, 3, 0.253) 0px 0.25em 1em;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.why-choose-section .why-item P {
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
  margin-top: 20px;
}

/* why-choose-section-end */

/* why-choose-section-start */
.ecom-portfolio {
  padding: 45px 0px;
  background-color: var(--bg-color);
}

.ecom-portfolio .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.ecom-portfolio h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--dark);
}

.ecom-portfolio .ecom-portfolio-box {
  background-color: var(--white);
  margin-bottom: 25px;
  box-shadow:
    rgba(3, 185, 231, 0.466) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.438) 0px 0.25em 1em;
  border-radius: 10px;
}

.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 100%;
  height: 500px;
  margin-top: 10px;
  object-fit: contain;
}

.modal-content img {
  object-fit: cover;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

/* why-choose-section-end */

/* wocta-sections-start */

.wocta-section {
  padding: 45px 0px;
  background: url(../images/ecom-bg.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
  z-index: 1;
  position: relative;
}

.wocta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #01132bbd;
  z-index: -1;
}

.wocta-section h2 {
  font-size: 40px;
  font-weight: 500;
  margin-top: 10px;
  color: var(--white);
}

.wocta-section p {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin: 0;
}

.wocta-section .cta-btn {
  margin-top: 30px;
}

.wocta-section .cta-button {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  border: 1px solid var(--white);
  cursor: pointer;
  margin: 0px 5px;
  position: relative;
  display: inline-block;
  z-index: 1;
  transition: 0.5s;
}

.wocta-section .cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--white);
  color: var(--primary-color);
  z-index: -1;
  width: 0;
  transition: 0.5s;
  border-radius: 5px;
}

.wocta-section .cta-button:hover::before {
  width: 100%;
  transition: 0.5s;
}

.wocta-section .cta-button:hover {
  color: var(--white);
  color: var(--primary-color);
  transition: ease-in-out 0.5s;
  border: 1px solid var(--primary-color);
}

/* wocta-sections-end */

/* .ecom-testimonial-section-start */

.ecom-testimonial {
  padding: 45px 0px;
}

.ecom-testimonial .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.ecom-testimonial h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  color: var(--dark);
}

.ecom-testimonial .ecom-testimonial-box {
  padding: 20px;
  background-color: var(--primary-color);
  border-radius: 10px;
  height: 80%;
}

.ecom-testimonial .ecom-testimonial-box p {
  font-size: 16px;
  color: var(--white);
}

.ecom-testimonial .ecom-testimonial-box h3 {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
}

.ecom-testimonial .ecom-testimonial-box span {
  font-size: 14px;
  color: #131212;
}

.ecom-testimonial .author {
  background-color: var(--white);
  padding: 10px;
  border-radius: 5px;
  width: 250px;
}

.ecom-testimonial button.owl-dot {
  border: none;
  height: 40px;
  width: 40px;
  background-color: var(--primary-color);
  font-size: 18px;
  color: var(--dark);
  border-radius: 5px;
  pointer-events: all;
  color: var(--white);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition:
    background 0.3s,
    color 0.3s;
}

.ecom-testimonial .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.ecom-testimonial .owl-dots .owl-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #b6b5b5;
  border-radius: 50%;
  transition: background 0.3s;
}

.ecom-testimonial .owl-dots .owl-dot.active {
  background: var(--primary-color);
}

/* .ecom-testimonial-section-end */

/* portfolio-section-start */

.portfolio-section {
  padding: 90px 0px;
  background-color: var(--white);
  overflow: hidden;
}

.portfolio-section .section-title {
  text-align: center;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.portfolio-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.portfolio-section .section-title span::before {
  position: absolute;
  content: "";
  background-color: var(--dark);
  height: 2px;
  width: 125px;
  bottom: -13px;
  left: 0;
  right: 0;
  border-radius: 10px;
}

.portfolio-section .section-title span::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 8px;
  width: 20px;
  bottom: -16px;
  left: 25px;
  right: 0;
  border-radius: 2px;
  animation: nudge2 5s linear infinite;
}

@keyframes nudge2 {
  0%,
  100% {
    transform: translateX(85px);
  }

  80% {
    transform: translate(-35px);
  }
}

.portfolio-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--dark);
}

.portfolio-section .nav {
  margin-bottom: 45px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: 0.5s;
}

.nav-pills .nav-link {
  color: var(--primary-color);
  transition: 0.5s;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.nav-pills .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--dark);
  z-index: -1;
  width: 0;
  transition: 0.5s;
  border-radius: 5px;
}

.nav-pills .nav-link:hover::before {
  width: 100%;
  transition: 0.5s;
}

.nav-pills .nav-link:hover {
  color: var(--white);
  transition: 0.5s;
}

.portfolio-section .filter-item-main {
  display: flex;
}

.portfolio-section .filter-item {
  border-radius: 5px;
  margin-bottom: 25px;
  box-shadow:
    rgba(3, 186, 231, 0.363) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.199) 0px 0.25em 1em;
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--dark);
}

.portfolio-section .filter-item .discription {
  position: absolute;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.89);
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 5px;
  transition: 1s;
  inset: 0;
  transform: translateY(-100%);
}

.portfolio-section .filter-item .discription span {
  font-size: 20px;
  color: var(--white);
  text-shadow:
    0 0 3px #01b6fd,
    0 0 5px #01b6fd;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.portfolio-section .filter-item:hover .discription {
  transform: translatey(0px);
  transition: 1s;
}

.portfolio-section .filter-item img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-section .modal-header .btn-close {
  background-color: var(--primary-color);
  box-shadow: none;
  opacity: 1;
  background-image: none;
  color: var(--white);
  font-size: 16px;
  line-height: 10px;
}

.portfolio-section .modal-header .btn-close:focus {
  transform: rotate(180deg);
  transition: 0.5s;
}

.portfolio-section .modal-content {
  margin-top: 100px;
  animation: zoomIn;
  animation-duration: 0.5s;
  overflow: scroll;
}

.portfolio-section .modal-header .modal-title {
  font-size: 20px;
  font-weight: 700;
}

/* portfolio-section-end */

/* funfact-section-start */

.funfact-section {
  padding: 90px 0px;
  position: relative;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

.funfact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #01132be5;
  z-index: 0;
}

.funfact-section .funfact-item {
  padding: 20px 0px;
  transition: 0.5s linear;
  position: relative;
  overflow: hidden;
  background: url(../images/learning-bg.svg);
  background-size: cover;
  background-position: center;
  background-color: #03427562;
  border-radius: 4px;
  margin: 15px 0px;
}

.funfact-section .funfact-item:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(100%);
}

.funfact-section .funfact-item:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(-100%);
}

.funfact-section .funfact-item:hover {
  box-shadow:
    rgba(3, 186, 231, 0.363) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.199) 0px 0.25em 1em;
}

.funfact-section .funfact-item:hover:before {
  border-color: var(--primary-color);
  height: 100%;
  transform: translateX(0);
  transition:
    0.3s transform linear,
    0.3s height linear 0.3s;
  border-radius: 5px;
}

.funfact-section .funfact-item:hover:after {
  border-color: var(--primary-color);
  height: 100%;
  transform: translateX(0);
  transition:
    0.3s transform linear,
    0.3s height linear 0.5s;
  border-radius: 5px;
}

.funfact-section .funfact-item .icon img {
  width: 70px;
  height: 70px;
}

.funfact-section .funfact-item:hover {
  animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-2px);
  }

  60% {
    transform: translateY(-2px);
  }
}

@keyframes bounce2 {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-2px);
  }

  60% {
    transform: translateY(-2px);
  }
}

.funfact-section .funfact-item .content {
  padding-top: 15px;
}

.funfact-section .funfact-item .content .counter-value,
.funfact-section .funfact-item .content span {
  color: var(--white);
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  position: relative;
}

.funfact-section .funfact-item .content p {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding-top: 10px;
}

.funfact-section .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.funfact-section .video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* funfact-section-start */

/* Team-section-start */

.team-section {
  background-color: var(--bg-color);
  padding: 90px 0px;
  overflow: hidden;
}

.team-section .section-title {
  text-align: center;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.team-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.team-section .section-title span::before {
  position: absolute;
  content: "";
  background-color: var(--dark);
  height: 2px;
  width: 133px;
  bottom: -13px;
  left: 0;
  right: 0;
  border-radius: 10px;
}

.team-section .section-title span::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 8px;
  width: 20px;
  bottom: -16px;
  left: 25px;
  right: 0;
  border-radius: 2px;
  animation: nudge4 5s linear infinite;
}

@keyframes nudge4 {
  0%,
  100% {
    transform: translateX(105px);
  }

  80% {
    transform: translate(-35px);
  }
}

.team-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--dark);
}

.team-section .team-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  height: 100%;
}

.team-section .team-image {
  overflow: hidden;
}

.team-section .team-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: 0.4s;
}

.team-section .team-item:hover img {
  transform: scale(1.05);
}

.team-section .team-content {
  text-align: center;
  padding: 15px;
}

.team-section .team-content span {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.team-section .slider-2 {
  position: relative;
}

.team-section .owl-dots {
  text-align: center;
  padding-top: 15px;
}

.team-section .owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #36363680;
  margin: 0 3px;
  transition: 0.5s;
}

.team-section .owl-dots button.owl-dot.active {
  background-color: var(--primary-color);
  height: 15px;
  width: 40px;
  border-radius: 10px;
  transition: 0.5s;
}

/* Team-section-end */

/* hire-section-start */

.hire-section {
  position: relative;
  background: url(../images/hire-bg.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0px;
  text-align: center;
  z-index: 1;
  background-position: top;
  overflow: hidden;
}

.hire-section::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #030303d8;
  z-index: -1;
}

.hire-section .section-title {
  text-align: center;
  text-transform: capitalize;
}

.hire-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.hire-section .section-title span::before {
  position: absolute;
  content: "";
  background-color: var(--white);
  height: 2px;
  width: 210px;
  bottom: -13px;
  left: 0;
  right: 0;
  border-radius: 10px;
}

.hire-section .section-title span::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 8px;
  width: 20px;
  bottom: -16px;
  left: 25px;
  right: 0;
  border-radius: 2px;
  animation: nudge5 5s linear infinite;
}

@keyframes nudge5 {
  0%,
  100% {
    transform: translateX(170px);
  }

  80% {
    transform: translate(-35px);
  }
}

.hire-section .section-title h2 {
  font-size: 40px;
  font-weight: 500;
  margin-top: 30px;
  color: var(--white);
  margin-top: 40px;
}

.hire-section .hire-caption p {
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-top: 15px;
  padding: 0px 100px;
}

.hire-section .contact {
  margin-top: 40px;
}

.hire-section .hire-caption .Services-link {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  border: 1px solid var(--white);
  cursor: pointer;
  margin: 0px 5px;
  position: relative;
  display: inline-block;
  z-index: 1;
  transition: 0.5s;
}

.hire-section .hire-caption .Services-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-color);
  z-index: -1;
  width: 0;
  transition: 0.5s;
  border-radius: 5px;
}

.hire-section .hire-caption .Services-link:hover::before {
  width: 100%;
  transition: 0.5s;
}

.hire-section .hire-caption .Services-link:hover {
  color: var(--white);
  border: 1px solid var(--white);
  transition: 0.5s;
}

.hire-section .hire-caption .Services-link:hover {
  color: var(--white);
  background-color: var(--primary-color);
  transition: ease-in-out 0.5s;
}

.hire-section .hire-caption .contact-link {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: ease-in-out 0.5s;
  border: 1px solid var(--white);
  cursor: pointer;
  margin: 0px 5px;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.hire-section .hire-caption .contact-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--white);
  z-index: -1;
  width: 0;
  transition: 0.5s;
  border-radius: 5px;
}

.hire-section .hire-caption .contact-link:hover::before {
  width: 100%;
  transition: 0.5s;
}

.hire-section .hire-caption .contact-link:hover {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  transition: 0.5s;
}

/* hire-section-end */

/* footer-section-start */

.footer-section {
  position: relative;
  z-index: 1;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background: url(../images/Animated\ Shape-2.svg);
  background-size: cover;
  padding: 50px 0px 0px 0px;
  overflow: hidden;
}

.footer-section::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #05273aa4;
  z-index: -1;
}

.footer-section .footer-item {
  padding: 10px;
}

.footer-section .footer-item img {
  width: 130px;
  height: auto;
  border-radius: 2px;
}

.footer-section .footer-item p {
  font-size: 14px;
  color: var(--white);
  font-weight: 300;
  margin: 20px 0px;
  text-align: justify;
}

.footer-section .footer-item .social-icons ul {
  list-style: none;
  padding: 0;
  display: flex;
}

.footer-section .footer-item span {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 20px;
  padding: 0px 10px;
  border-radius: 5px;
  box-shadow:
    rgba(0, 0, 0, 0.07) 0px 1px 2px,
    rgba(0, 0, 0, 0.07) 0px 2px 4px,
    rgba(0, 0, 0, 0.07) 0px 4px 8px,
    rgba(0, 0, 0, 0.07) 0px 8px 16px,
    rgba(99, 86, 86, 0.07) 0px 16px 32px,
    rgba(0, 0, 0, 0.07) 0px 32px 64px;
  position: relative;
  font-weight: 600;
  background: var(--white);
  border: 1px solid var(--primary-color);
}

.footer-section .footer-item h3 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
  border-radius: 2px;
  position: relative;
  margin-top: 15px;
}

.footer-section .footer-item .service-links i,
.footer-section .footer-item .pages-links i,
.footer-section .footer-item .contact-kota i,
.footer-section .footer-item .contact-indore i {
  margin-right: 5px;
}

.footer-section .footer-item .social-icons ul .facebook {
  background-color: #1877f2;
  color: #ffffff;
}

.footer-section .footer-item .social-icons ul .instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: white;
}

.footer-section .footer-item .social-icons ul .linkedin {
  background-color: #0a66c2;
  color: #ffffff;
}

.footer-section .footer-item .social-icons ul .whatsapp {
  background-color: #25d366;
  color: #ffffff;
}

.footer-section .footer-item .social-icons ul li a {
  color: var(--white);
}

.footer-section .footer-item .social-icons ul li {
  margin-right: 10px;
  background-color: var(--white);
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 25px;
  border-radius: 5px;
  line-height: 40px;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-align: center;
}

.footer-section .footer-item .social-icons ul li:hover {
  transform: translateY(-8px);
  transition: 0.5s;
}

.footer-section .footer-item .social-icons ul li:hover a {
  color: var(--white);
  transition: 0.5s;
}

.footer-section .footer-item .services-link,
.footer-section .footer-item .page-link,
.footer-section .footer-item .contact-kota,
.footer-section .footer-item .contact-indore {
  list-style: none;
  padding: 0;
  margin: 15px 0px;
}

.footer-section .footer-item .services-link li,
.footer-section .footer-item .page-link li,
.footer-section .footer-item .contact-kota li,
.footer-section .footer-item .contact-indore li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 300;
  transition: 0.2s;
}

.footer-section .footer-item .services-link li:hover,
.footer-section .footer-item .page-link li:hover,
.footer-section .footer-item .contact-kota li:hover,
.footer-section .footer-item .contact-indore li:hover {
  margin-left: 5px;
  transition: 0.2s;
}

.footer-section .footer-item .services-link li a,
.footer-section .footer-item .page-link li a,
.footer-section .footer-item .contact-kota a,
.footer-section .footer-item .contact-indore a {
  color: var(--white);
  text-decoration: none;
  position: relative;
}

.footer-section .footer-item .services-link li a::before,
.footer-section .footer-item .page-link li a::before,
.footer-section .footer-item .contact-kota a::before,
.footer-section .footer-item .contact-indore a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  bottom: -5px;
  border-radius: 5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 1s;
}

.footer-section .footer-item .services-link li a:hover:before,
.footer-section .footer-item .page-link li a:hover:before,
.footer-section .footer-item .contact-kota a:hover:before,
.footer-section .footer-item .contact-indore a:hover:before {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 1s;
}

.footer-section .copy-right {
  text-align: center;
  color: var(--white);
  font-size: 14px;
  margin-top: 20px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.63);
}

.footer-section .copy-right p {
  padding: 10px 0px;
  margin: 0;
  font-size: 14px;
  font-weight: 300;
}

.footer-section .top-button .top {
  animation: bounce-in 2s ease infinite;
}

.footer-section .top-button .top {
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  color: white;
  right: -0.2em;
  bottom: 4em;
  position: fixed;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--white);
}

.footer-section .call-button .call {
  background-color: var(--primary-color);
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  color: white;
  right: -0.2em;
  bottom: 7.5em;
  position: fixed;
  font-size: 20px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--white);
}

/* .footer-section .call-button .call:before {
  position: absolute;
  content: "";
  animation: phone-wave 2s linear infinite;
  inset: 0;
  border-radius: 5px;
} */

/* @keyframes phone-wave {
  from {
    box-shadow: 0 0 0 0 var(--white);
  }

  to {
    box-shadow: 0 0 0 5px var(--primary-color);
    opacity: 0;
  }
} */

.footer-section .whatsapp-button .whatsapp {
  background-color: #25d366;
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  color: white;
  right: -0.2em;
  bottom: 9em;
  position: fixed;
  font-size: 22px;
  line-height: 38px;
  text-align: center;
  z-index: 9999;
  margin-bottom: 10px;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid var(--white);
}

/* footer-section-end */

/* breadcrumb-section-start */

.breadcrumb-section {
  padding: 50px 0px;
  position: relative;
  background: url(../images/breadcrumb-background.jpg) center center repeat
    no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-color: #005485cb; */
  background-color: #003351cb;
  z-index: -1;
}

.breadcrumb-section .element .right {
  position: absolute;
  top: 10%;
  background-color: var(--primary-color);
  height: 50px;
  width: 200px;
  left: 0;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.breadcrumb-section .element .right {
  animation: bounceInRight;
  animation-duration: 2s;
}

.breadcrumb-section .element .left {
  position: absolute;
  right: 0;
  bottom: 10%;
  background-color: var(--white);
  height: 50px;
  width: 200px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.breadcrumb-section .element .left {
  animation: bounceInLeft;
  animation-duration: 2s;
}

.breadcrumb-section .breadcrumb-heading h1 {
  font-size: 30px;
  color: var(--white);
  font-weight: 600;
  z-index: 1;
}

.breadcrumb-section .breadcrumb li {
  font-size: 16px;
  color: var(--white);
  z-index: 1;
}

.breadcrumb-section .breadcrumb li i {
  padding: 0px 10px;
}

.breadcrumb-section .breadcrumb li a {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
}

.breadcrumb-section .breadcrumb li a:hover {
  color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--white);
}

/* breadcrumb-section-end */

/* about-section-start */

.about-section {
  padding: 90px 0px;
  background-color: var(--white);
  overflow: hidden;
}

.about-section .about-image img {
  border-radius: 10px;
  margin: 0 auto 25px;
  height: 350px;
  display: flex;
  object-fit: cover;
}

.about-section .section-title {
  text-transform: capitalize;
}

.about-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.about-section .section-title span::before {
  position: absolute;
  content: "";
  background-color: var(--dark);
  height: 2px;
  width: 75px;
  bottom: -13px;
  left: 0;
  right: 0;
  border-radius: 10px;
}

.about-section .section-title span::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 8px;
  width: 20px;
  bottom: -16px;
  left: 25px;
  right: 0;
  border-radius: 2px;
  animation: nudge1 5s linear infinite;
}

@keyframes nudge1 {
  0%,
  100% {
    transform: translateX(35px);
  }

  80% {
    transform: translate(-35px);
  }
}

.about-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--dark);
}

.about-section p {
  font-size: 16px;
  color: var(--dark);
  text-align: justify;
  font-weight: 400;
}

.about-section .our-mission h3,
.about-section .our-vision h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

/* about-section-end */

/* whychooseus-section-start  */

.whychooseus-section {
  padding: 90px 0px;
  background-color: var(--bg-color);
  overflow: hidden;
}

.whychooseus-section .section-title {
  text-align: center;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.whychooseus-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.whychooseus-section .section-title span::before {
  position: absolute;
  content: "";
  background-color: var(--dark);
  height: 2px;
  width: 140px;
  bottom: -13px;
  left: 0;
  right: 0;
  border-radius: 10px;
}

.whychooseus-section .section-title span::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 8px;
  width: 20px;
  bottom: -16px;
  left: 25px;
  right: 0;
  border-radius: 2px;
  animation: nudge2 5s linear infinite;
}

@keyframes nudge2 {
  0%,
  100% {
    transform: translateX(85px);
  }

  80% {
    transform: translate(-35px);
  }
}

.whychooseus-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--dark);
}

.whychooseus-section .why-choose {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  overflow: hidden;
  transition: transform 0.8s ease;
  box-shadow:
    rgba(3, 186, 231, 0.363) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.199) 0px 0.25em 1em;
  height: 100%;
  background-color: var(--white);
  text-align: center;
}

.whychooseus-section .why-choose .icon {
  margin-bottom: 20px;
  background-color: var(--primary-color);
  height: 80px;
  width: 80px;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  position: relative;
  z-index: 1;
  margin: 0 auto 20px auto;
}

.whychooseus-section .why-choose .icon i {
  font-size: 40px;
  color: var(--white);
}

.whychooseus-section .why-choose h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}

.whychooseus-section .why-choose p {
  font-size: 14px;
  color: var(--grey);
}

/* whychooseus-section-end  */

/* our-approach-section-start */

.our-approach-section {
  padding: 45px 0px;
  background-color: var(--white);
  overflow: hidden;
}

.our-approach-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.our-approach-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 30px 0px 20px 0px;
  color: var(--dark);
}

.our-approach-section .section-title p {
  text-align: center;
  margin: 0;
  font-weight: 400;
  color: var(--dark);
}

/* our-approach-section-end */

/* seo-service-section-start */

.seo-services-section {
  padding: 90px 0px;
  background-color: var(--bg-color);
  position: relative;
  background: url(../images/seo-bg-min.jpg);
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
  overflow: hidden;
}

.seo-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #090c0dea;
  z-index: -1;
}

.seo-services-section .section-title {
  text-align: center;
}

.seo-services-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--white);
}

.seo-services-section .section-title h2 span {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--primary-color);
}

.seo-services-section .section-title p {
  text-align: center;
  margin-bottom: 45px;
  color: var(--white);
}

.seo-services-section .seo-services {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  background: url(../images/element-2.svg);
  background-size: cover;
  background-position: center;
  background-color: white;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.8s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.219);
  width: 100%;
  height: 350px;
  overflow: hidden;
  box-shadow:
    rgba(3, 186, 231, 0.363) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.199) 0px 0.25em 1em;
}

.seo-services-section .seo-services::before {
  transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--white);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
  border-radius: 10px;
}

.seo-services-section .seo-services h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}

.seo-services-section .icon-image {
  margin-bottom: 20px;
  background-color: #fdfdfd;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  position: relative;
  z-index: 1;
  border: 1px dashed #008bd170;
}

.seo-services-section .icon-image::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0%;
  right: 0;
  bottom: 0;
  border-radius: 73px;
  width: 100px;
  height: 100px;
  line-height: 0;
  color: var(--primary-color);
  z-index: 1;
  font-weight: 900;
  font-size: 8px;
}

.seo-services-section .icon-image::after {
  content: "\f111";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  color: var(--primary-color);
  z-index: 1;
  inset: 0;
  line-height: 0;
  transform: rotate(180deg);
  font-weight: 900;
  font-size: 8px;
}

.seo-services-section .icon-image::before {
  animation: round-two 4s linear infinite;
}

@keyframes round-two {
  from {
    transform: rotate(180deg);
  }

  to {
    transform: rotate(540deg);
  }
}

@keyframes round-one {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.seo-services-section .icon-image::after {
  animation: round-one 4s linear infinite;
}

.seo-services-section .seo-content p {
  font-size: 14px;
  color: var(--grey);
  text-align: justify;
}

.seo-services-section .seo-services:hover h3,
.seo-services-section .seo-services:hover p {
  color: var(--white);
  transition: transform 0.5s ease-in-out;
}

.seo-services-section .seo-services:hover::before {
  transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  background-color: var(--primary-color);
}

/* seo-service-section-end */

/* why-choose-for-seo-section-start */

.why-choose-for-seo {
  padding: 90px 0px;
  background-color: var(--bg-color);
  overflow: hidden;
}

.why-choose-for-seo .seo-content h2 {
  font-size: 30px;
  color: var(--primary-color);
  -webkit-text-stroke-color: rgba(4, 5, 5, 0.521);
  font-weight: 700;
  margin: 50px 0px 30px 0px;
}

.why-choose-for-seo .seo-content p span {
  font-size: 16px;
  color: var(--dark);
  font-weight: 700;
}

.why-choose-for-seo .seo-content p {
  font-size: 16px;
  color: var(--dark);
  font-weight: 400;
  margin-bottom: 30px;
}

/* why-choose-for-seo-section-end */

/* Web-Development-section-start */

.Web-Development-section {
  background-color: var(--white);
  overflow: hidden;
}

.Web-Development-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.Web-Development-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--dark);
}

.Web-Development-section .web-services-content p {
  color: var(--dark);
  text-align: justify;
}

/* Web-Development-section-end */

/* Web-Development-services-section-start */

.web-secvices-section {
  overflow: hidden;
  padding: 45px 0px;
  background-color: var(--bg-color);
}

.web-secvices-section .web-service-category {
  padding: 20px;
}

.web-secvices-section .category-content h2 {
  font-size: 30px;
  color: var(--primary-color);
  -webkit-text-stroke-color: rgba(4, 5, 5, 0.808);
  font-weight: 700;
  margin-bottom: 15px;
}

.web-secvices-section .category-image {
  text-align: center;
}

.web-secvices-section .category-image img {
  height: 500px;
  object-fit: contain;
}

.web-secvices-section .category-content p {
  font-size: 16px;
  color: var(--dark);
  margin: 0;
  text-align: justify;
}

.web-secvices-section .category-content ul {
  list-style: none;
  padding: 0;
}

.web-secvices-section .category-content ul li {
  color: var(--dark);
  margin-bottom: 10px;
}

.web-secvices-section .category-content ul li i {
  color: var(--primary-color);
  margin-right: 5px;
  font-size: 18px;
}

.web-secvices-section .category-content span {
  color: var(--dark);
  font-weight: 700;
}

.web-secvices-section .web-services-main h2 {
  color: var(--primary-color);

  font-size: 30px;
  font-weight: 700;
}

.web-secvices-section .web-services-main p {
  color: var(--dark);
}

.web-secvices-section .web-services-main ul li,
.web-secvices-section .web-services-main span {
  color: var(--dark);
}

.web-secvices-section .web-services-main .category-content ul li i {
  color: var(--primary-color);
  margin-right: 5px;
  font-size: 18px;
}

/* Web-Development-services-section-end */

/* social-media-section-start */

.social-media-section {
  background-color: var(--white);
  overflow: hidden;
  padding: 45px 0px;
}

.social-media-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.social-media-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 30px 0px 20px 0px;
  color: var(--dark);
}

.social-media-section .section-title p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  margin: 0;
}

.social-media-section .web-services-content p {
  color: var(--dark);
  text-align: justify;
}

/* social-media-section-end */

/* Web-Development-section-start */

.Web-Development-section {
  padding: 45px 0px;
  background-color: var(--white);
  overflow: hidden;
}

.Web-Development-section .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.Web-Development-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 30px 0px 20px 0px;
  color: var(--dark);
}

.Web-Development-section .web-services-content p {
  color: var(--dark);
  text-align: justify;
  margin: 0;
}

/* Web-Development-section-end */

/* Social Media Marketing-section-start */

.Social-Media-Marketing {
  background-color: var(--bg-color);
  padding-top: 45px;
  overflow: hidden;
}

.Social-Media-Marketing .category-content h2 {
  font-size: 30px;
  color: var(--primary-color);
  -webkit-text-stroke-color: rgba(4, 5, 5, 0.521);
  font-weight: 700;
  margin: 30px 0px 30px 0px;
}

.Social-Media-Marketing .Social-Media-category {
  padding: 20px 0px;
}

.Social-Media-Marketing .category-image {
  text-align: center;
  object-fit: contain;
}

.Social-Media-Marketing .category-image img {
  height: 500px;
  object-fit: contain;
}

.Social-Media-Marketing .category-content ul {
  list-style: none;
  padding: 0;
}

.Social-Media-Marketing .category-content ul li {
  color: var(--dark);
  margin-bottom: 15px;
}

.Social-Media-Marketing .category-content ul li i {
  color: var(--primary-color);
  margin-right: 5px;
  font-size: 18px;
}

.Social-Media-Marketing .category-content span {
  color: var(--dark);
  font-weight: 700;
}

.web-services-main {
  background-color: var(--bg-color);
}

.Social-Media-Marketing .web-services-main h2 {
  color: var(--primary-color);
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.521);
  font-size: 30px;
  font-weight: 700;
}

.Social-Media-Marketing .web-services-main p {
  color: var(--dark);
}

.Social-Media-Marketing .web-services-main ul li,
.Social-Media-Marketing .web-services-main span {
  color: var(--dark);
}

.Social-Media-Marketing .web-services-main .category-content ul li i {
  color: var(--primary-color);
  margin-right: 5px;
  font-size: 18px;
}

/* Social Media Marketing-section-end */

/* ppc-section-start */

.ppc-section {
  padding: 45px 0px;
  background-color: var(--white);
  overflow: hidden;
}

.ppc-section .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.ppc-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  margin: 0px 150px;
}

.ppc-section .ppc-item {
  padding: 20px;
  text-align: center;
  box-shadow:
    rgba(3, 186, 231, 0.363) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.199) 0px 0.25em 1em;
  height: 180px;
  background: url(../images/element-2.svg);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  transition: 1s;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  height: 200px;
}

.ppc-section .ppc-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-color);
  z-index: -1;
  transform: translatey(100%);
  transition: 1s;
}

.ppc-section .ppc-item:hover:before {
  transform: translateY(0);
  transition: 1s;
}

.ppc-section .ppc-item:hover .ppc-content h3 {
  color: var(--white);
  transition: 0.5s;
}

.ppc-section .ppc-item .ppc-icon {
  margin-bottom: 25px;
  box-shadow:
    rgba(1, 178, 190, 0.795) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  text-align: center;
  margin: 0 auto;
  background-color: var(--white);
}

.ppc-section .ppc-item .ppc-icon img {
  height: 50px;
  width: 50px;
  margin-top: 15px;
}

.ppc-section .ppc-item .ppc-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 20px;
  transition: 0.5s;
}

.ppc-section .ppc-item:hover .ppc-icon {
  transform: scale(1.2);
  transition: 1s;
  background-color: var(--white);
}

/* ppc-section-end */

/* ppc-services-section-start */

.ppc-services-section {
  padding: 45px 0px;
  background-color: var(--white);
  overflow: hidden;
  text-align: center;
}

.ppc-services-section .section-title {
  margin-bottom: 45px;
  text-align: center;
}

.ppc-services-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 30px 0px 20px 0px;
  color: var(--dark);
}

.ppc-services-section .section-title p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  margin: 0px 150px;
}

.ppc-services-section .ppr-secvices {
  padding: 20px 30px;
  box-shadow:
    rgba(3, 186, 231, 0.363) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.199) 0px 0.25em 1em;
  margin-bottom: 25px;
  border-radius: 10px;
  background-color: var(--white);
  min-height: 700px;
  border-bottom: 5px solid var(--primary-color);
  border-top: 5px solid var(--primary-color);
}

.ppc-services-section .ppr-secvices:hover .logo-image {
  transform: translateY(-10px);
  transition: 0.5s;
}

.ppc-services-section .ppr-secvices .logo-image {
  background-color: #039fec8a;
  box-shadow:
    rgba(3, 186, 231, 0.363) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.199) 0px 0.25em 1em;
  padding: 20px 0px;
  border-radius: 50%;
  transition: 0.5s;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.ppc-services-section .ppr-secvices .logo-image img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  text-align: center;
  margin-top: 5px;
}

.ppc-services-section .ppr-secvices h3 {
  font-size: 24px;
  color: var(--dark);
  font-weight: 600;
  margin: 30px 0px;
}

.ppc-services-section .ppr-secvices p {
  font-size: 16px;
  color: var(--grey);
  margin-top: 20px;
  margin-bottom: 0;
  text-align: justify;
}

/* ppc-services-section-end */

/* logo-desigine-section-start */

.logo-desigine,
.packaging-design,
.company-profile {
  padding: 90px 0px;
  background-color: var(--white);
  overflow: hidden;
}

.logo-desigine .section-title,
.branding-desigine .section-title,
.packaging-design .section-title,
.video-editing .section-title,
.company-profile .section-title,
.useful-tools .section-title {
  margin-bottom: 25px;
  text-align: center;
}

.logo-desigine .section-title h2,
.branding-desigine .section-title h2,
.packaging-design .section-title h2,
.video-editing .section-title h2,
.company-profile .section-title h2,
.useful-tools .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  margin: 0px 200px;
  text-transform: capitalize;
}

.logo-desigine h2 span,
.branding-desigine h2 span,
.packaging-design h2 span,
.video-editing h2 span,
.company-profile h2 span {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--primary-color);
}

.logo-desigine .logo-main,
.branding-desigine .branding-main,
.packaging-design .packaging-main,
.video-editing .editing-main,
.company-profile .company-main {
  margin-bottom: 45px;
}

.logo-desigine .logo-main p,
.branding-desigine .branding-main p,
.packaging-design .packaging-main p,
.video-editing .editing p,
.company-profile .company-main p,
.video-editing p {
  font-size: 16px;
  color: var(--grey);
  text-align: center;
  font-weight: 400;
}

.logo-desigine .logo-examples,
.branding-desigine .branding-examples,
.packaging-design .packaging-examples,
.video-editing .packaging-examples,
.company-profile .company-main .packaging-examples {
  margin: 10px 5px;
  border-radius: 10px;
  transition: 0.5s;
  overflow: hidden;
  box-shadow:
    rgba(3, 186, 231, 0.363) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.199) 0px 0.25em 1em;
}

.logo-desigine .logo-examples img {
  border-radius: 10px;
  transition: 0.5s;
  border: 2px solid var(--dark);
}

.logo-desigine .logo-examples:hover,
.branding-desigine .branding-examples:hover {
  transform: translateY(-5px);
  transition: 0.5s;
  overflow: hidden;
}

/* logo-desigine-section-end */

/* branding-desigine-section-start */

.branding-desigine,
.video-editing {
  padding: 90px 0px;
  background-color: var(--bg-color);
  overflow: hidden;
}

.branding-desigine .branding-examples {
  box-shadow:
    rgba(3, 186, 231, 0.363) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.199) 0px 0.25em 1em;
}

.branding-desigine .branding-examples img {
  padding: 10px;
  border-radius: 20px;
  transition: 0.5s;
  height: auto;
  width: 100%;
  object-fit: cover;
}

.branding-desigine .branding-examples:hover {
  transform: translateY(-5px);
  transition: 0.5s;
  overflow: hidden;
}

.branding-desigine .modal-header .btn-close {
  background-color: var(--primary-color);
  box-shadow: none;
  opacity: 1;
  background-image: none;
  color: var(--white);
  font-size: 16px;
  line-height: 10px;
}

.branding-desigine .modal-header .btn-close:focus {
  transform: rotate(180deg);
  transition: 0.5s;
}

.branding-desigine .modal-content {
  margin-top: 100px;
  animation: zoomIn;
  animation-duration: 0.5s;
  overflow: scroll;
}

/* branding-desigine-section-end */

/* packaging-design -section-end */

.packaging-design {
  overflow: hidden;
}

.packaging-design .packaging-examples {
  margin: 10px 5px;
  border-radius: 10px;
  transition: 0.5s;
  background-color: var(--white);
  box-shadow:
    rgba(3, 186, 231, 0.363) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.199) 0px 0.25em 1em;
}

.packaging-design .packaging-examples img {
  object-fit: cover;
  padding: 10px;
  border-radius: 10px;
  transition: 1s;
}

.packaging-design .packaging-examples:hover img {
  transform: translateY(-5px);
  transition: 0.5s;
  overflow: hidden;
}

.packaging-design .owl-dots {
  text-align: center;
  padding-top: 15px;
}

.packaging-design .owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  background: #36363680;
  margin: 0 3px;
  transition: 0.5s;
}

.packaging-design .owl-dots button.owl-dot.active {
  background-color: var(--primary-color);
  height: 15px;
  width: 40px;
  border-radius: 10px;
  transition: 0.5s;
}

.packaging-design .modal-header .btn-close {
  background-color: var(--primary-color);
  box-shadow: none;
  opacity: 1;
  background-image: none;
  color: var(--white);
  font-size: 16px;
  line-height: 10px;
}

.packaging-design .modal-header .btn-close:focus {
  transform: rotate(180deg);
  transition: 0.5s;
}

.packaging-design .modal-content {
  margin-top: 100px;
  animation: zoomIn;
  animation-duration: 0.5s;
  overflow: scroll;
}

/* packaging-design-section-end */

/* company-profile-section-start */

.company-profile {
  overflow: hidden;
  background-color: var(--white);
}

.company-profile .packaging-examples {
  margin: 10px 5px;
  border-radius: 10px;
  transition: 0.5s;
  background-color: var(--white);
  box-shadow:
    rgba(3, 186, 231, 0.363) 0px 0px 0.25em,
    rgba(4, 123, 170, 0.199) 0px 0.25em 1em;
  overflow: hidden;
}

.company-profile .packaging-examples img {
  padding: 10px;
  border-radius: 10px;
  transition: 1s;
}

.company-profile .packaging-examples:hover {
  transform: translateY(-5px);
  transition: 0.5s;
  overflow: hidden;
}

.company-profile .modal-header .btn-close {
  background-color: var(--primary-color);
  box-shadow: none;
  opacity: 1;
  background-image: none;
  color: var(--white);
  font-size: 16px;
  line-height: 10px;
}

.company-profile .modal-header .btn-close:focus {
  transform: rotate(180deg);
  transition: 0.5s;
}

.company-profile .modal-content {
  margin-top: 100px;
  animation: zoomIn;
  animation-duration: 0.5s;
  overflow: scroll;
}

/* company-profile -section-start */

/* useful-tools-section-start */

.useful-tools {
  text-align: center;
  padding: 45px 0px;
  background-color: var(--bg-color);
}

.useful-tools .tools-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.useful-tools .slide-item {
  display: flex;
  justify-content: center;
}

.useful-tools .tool-image {
  box-shadow:
    rgba(3, 167, 243, 0.877) 0px 5px 5px 0px,
    rgba(2, 131, 148, 0.733) 0px 2px 0px 1px;
  border-radius: 50%;
  transition: 0.5s;
  margin: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  height: 100px;
  width: 100px;
}

.useful-tools .tool-image img {
  transition: 0.5s;
  text-align: center;
  height: 100px;
  width: 100px;
  object-fit: contain;
}

.useful-tools .tool-image:hover {
  transform: translateY(-10px);
  transition: 0.5s;
}

/* useful-tools-section-end */

/* packaging-design-section-end */

/* contact-us-section-start */

.contact-section {
  padding: 90px 0px;
  background-color: var(--white);
  overflow: hidden;
}

.contact-section .section-title {
  text-align: center;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.contact-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.contact-section .section-title span::before {
  position: absolute;
  content: "";
  background-color: var(--dark);
  height: 2px;
  width: 100px;
  bottom: -13px;
  left: 0;
  right: 0;
  border-radius: 10px;
}

.contact-section .section-title span::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 8px;
  width: 20px;
  bottom: -16px;
  left: 25px;
  right: 0;
  border-radius: 2px;
  animation: nudge3 5s linear infinite;
}

@keyframes nudge3 {
  0%,
  100% {
    transform: translateX(70px);
  }

  80% {
    transform: translate(-35px);
  }
}

.contact-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--dark);
}

.contact-section .contact-item {
  margin-bottom: 25px;
}

.contact-section .contact-form-item {
  background-color: var(--bg-color);
  border-radius: 5px;
}

.contact-section .contact-item img {
  height: 520px;
  display: flex;
  justify-content: center;
  text-align: center;
  margin: auto;
  object-fit: contain;
}

/* contact-us-section-end */

/* contact-info-section-start */

.contact-info {
  padding: 90px 0px;
  background-color: var(--bg-color);
  overflow: hidden;
}

.contact-info .section-title {
  text-align: center;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.contact-info .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.contact-info .section-title span::before {
  position: absolute;
  content: "";
  background-color: var(--dark);
  height: 2px;
  width: 100px;
  bottom: -13px;
  left: 0;
  right: 0;
  border-radius: 10px;
}

.contact-info .section-title span::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 8px;
  width: 20px;
  bottom: -16px;
  left: 25px;
  right: 0;
  border-radius: 2px;
  animation: nudge3 5s linear infinite;
}

@keyframes nudge3 {
  0%,
  100% {
    transform: translateX(70px);
  }

  80% {
    transform: translate(-35px);
  }
}

.contact-info .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--dark);
}

.contact-info .section-title h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--dark);
}

.contact-info .service-inner-item {
  margin-bottom: 20px;
  background-color: var(--primary-color);
  padding: 20px 10px;
  border-radius: 5px;
}

.contact-info .service-inner-item h2 {
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
}

.contact-info .service-inner-item .icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  transition: 0.5s;
}

.contact-info .service-inner-item:hover .icon {
  transform: scale(1.2);
  transition: 0.5s;
}

.contact-info .contact-item p {
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  margin: 0;
}

.contact-info .service-inner-item i {
  font-size: 24px;
  color: var(--primary-color);
  line-height: 50px;
  transition: 1s;
}

.contact-info .service-inner-item a {
  color: var(--white);
  text-decoration: none;
}

/* ===contact-info-gumanpura=== */
.contact-gp-info {
  margin-bottom: 45px;
}

.contact-gp-info .section-title h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.contact-gp-info .contact-gp-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-gp-info .contact-gp-container .service-item {
  background: var(--primary-color);
  border-radius: 5px;
  padding: 20px;
  flex: 1 1 300px;
  max-width: 350px;
  box-sizing: border-box;
  transition: transform 0.3s;
}

.contact-gp-info .contact-gp-container .service-item:hover {
  transform: translateY(-5px);
}

.contact-gp-info .contact-gp-container .service-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-gp-info .contact-gp-container .icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: var(--white);
  color: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-gp-info .contact-gp-container .text-content h2 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
}

.contact-gp-info .contact-gp-container .text-content a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  word-break: break-word;
  display: inline-block;
}

/* Tablet breakpoint */
@media (max-width: 768px) {
  .contact-gp-container {
    flex: none;
  }
}

@media (max-width: 480px) {
  .contact-gp-container .service-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-gp-container .text-content a {
    font-size: 14px;
  }

  .contact-gp-container .service-item {
    flex: 1 1 100%;
  }
}

/* contact-info-section-end */

/* carrier-section-start */

.career-section {
  padding: 90px 0px;
  background-color: var(--white);
  overflow: hidden;
}

.career-section .section-title {
  text-align: center;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.career-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.career-section .section-title h3 {
  font-size: 24px;
  font-weight: 700;
}

.career-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--dark);
}

.career-section .carrier-box span {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

.career-section .carrier-box h3 img {
  height: 40px;
  margin-right: 5px;
}

.career-section .carrier-box span {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

.career-section .carrier-box .section-title {
  text-align: left;
}

.career-section .carrier-item {
  padding: 40px;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  height: 100%;
  border-radius: 10px;
}

.career-section .carrier-item .job-icon {
  width: 75px;
  height: 75px;
  margin-bottom: 25px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-section .carrier-item .job-icon i {
  font-size: 35px;
  color: var(--white);
}

.career-section .carrier-item ul {
  margin-top: 20px;
  padding: 0;
}

.career-section .carrier-item li {
  font-size: 16px;
  color: var(--dark);
  margin: 10px 0px;
}

.career-section .apply-btn {
  margin-top: 40px;
}

.career-section .apply-btn a {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
}

.career-section .apply-btn a:hover {
  background-color: var(--white);
  border: 1px solid rgba(0, 132, 255, 0.479);
  color: var(--primary-color);
}

/* email-marketing-start */

.email-marketing {
  padding: 90px 0px;
  background-color: var(--white);
  overflow: hidden;
}

.email-marketing .section-title {
  text-align: center;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.email-marketing .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--dark);
}

.email-marketing .section-title p {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
  margin: 25px 0px;
}

.email-marketing .email-marketing-item {
  padding: 20px 10px;
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s;
  border-bottom: 8px solid var(--primary-color);
  margin-bottom: 25px;
}

.email-marketing .email-marketing-item:hover {
  transform: translateY(-10px);
  transition: 0.3s;
}

.email-marketing .email-marketing-item .icon {
  margin-bottom: 25px;
  box-shadow:
    rgba(1, 178, 190, 0.795) 0px 0px 5px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  text-align: center;
  margin: 0 auto;
  transition: 1s;
  background-color: var(--white);
}

.email-marketing .email-marketing-item:hover .icon {
  transform: scale(1.1);
}

.email-marketing .email-marketing-item img {
  height: 40px;
  width: 40px;
  margin-top: 15px;
}

.email-marketing .email-marketing-item h2 {
  font-size: 18px;
  font-weight: 600;
}

.email-marketing .email-marketing-item p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

/* .email-marketing-start */

.email-services h3 {
  font-size: 20px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 25px;
}

.email-services .marketing-points span {
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
}

/* .email-marketing-end */

/* email-services-start*/

.email-services {
  background-color: var(--white);
  padding-top: 90px;
  overflow: hidden;
}

.email-services .email-services-item {
  margin-bottom: 45px;
  text-transform: capitalize;
}

.email-services .email-services-item h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--dark);
}

.email-services .email-services-item p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 30px;
  color: var(--dark);
  margin: 10px 0px;
  text-align: justify;
}

/* email-services-end*/

/* .marketing-benifits-start */

.marketing-benifits {
  padding: 90px 0px;
  overflow: hidden;
}

.marketing-benifits-points h3 {
  font-size: 20px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.marketing-benifits-points h3 span {
  font-size: 25px;
  color: var(--white);
  font-weight: 600;
  margin: 15px 5px;
  position: relative;
  padding: 0px 10px;
  background-color: var(--primary-color);
  border-radius: 5px;
}

.marketing-benifits-points p {
  font-size: 16px;
  color: var(--dark);
  font-weight: 400;
  text-align: left;
}

.marketing-benifits-points p span {
  font-size: 16px;
  color: var(--dark);
  font-weight: 600;
}

.marketing-benifits-points p span i {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0px 5px;
}

.marketing-benifits .marketing-benifits-main {
  box-shadow: rgba(16, 17, 17, 0.562) 0px 5px 15px;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  min-height: 430px;
  overflow: hidden;
}

/* .marketing-benifits-end */

/* carrier-section-end */

video::-webkit-media-controls-fullscreen-button {
  display: none;
}

/*===== 404-section-start ======*/

.page-404 {
  background-color: var(--white);
  padding: 90px 0px;
  overflow: hidden;
}

.page-404 .error-box {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.page-404 .error-box img {
  height: 400px;
  width: 400px;
  object-fit: contain;
}

.page-404 .error-box .title {
  color: var(--primary-color);
  margin-bottom: 0.4em;
  font-size: 24px;
  font-weight: 600;
}

.page-404 p {
  color: var(--grey);
  font-size: 16px;
  margin-top: 0;
}

.page-404 .error-box .back-link {
  margin-top: 25px;
}

.page-404 .error-box a {
  background-color: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: ease-in-out 0.5s;
}

.page-404 .error-box a:hover {
  background-color: var(--dark);
  transition: ease-in-out 0.5s;
}

/*===== 404-section-end ======*/

/*===== complete-blog-section-start ======*/

.complete-blog {
  background-color: var(--bg-color);
  padding: 90px 0px;
}

.complete-blog .blog-header {
  margin-bottom: 45px;
}

.complete-blog .blog-header h1 {
  font-size: 30px;
  color: var(--dark);
  font-weight: 600;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.complete-blog .blog-header p {
  font-size: 14px;
  color: var(--grey);
  font-weight: 500;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.complete-blog .blog-content p {
  font-size: 16px;
  color: var(--grey);
  font-weight: 400;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.complete-blog .blog-content h2 {
  font-size: 20px;
  color: var(--dark);
  font-weight: 600;
  margin-top: 50px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.complete-blog .blog-image {
  text-align: center;
}

.complete-blog .blog-image img {
  border-radius: 10px;
  padding-bottom: 40px;
}

.complete-blog .list-unstyled {
  display: grid;
}

.complete-blog .list-unstyled li {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.complete-blog .list-unstyled img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.complete-blog .comments-section {
  margin: 45px 0px;
}

.complete-blog .comments-section h3 {
  font-size: 20px;
  color: var(--dark);
  font-weight: 600;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.complete-blog .sidebar {
  margin-bottom: 45px;
}

.complete-blog .sidebar h3 {
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 30px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  background-color: var(--primary-color);
  padding: 10px;
  border-radius: 5px;
}

.complete-blog .catering-list {
  display: grid;
  list-style: none;
  padding: 0;
}

.complete-blog .catering-list li {
  background-color: var(--white);
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #008bd157;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.complete-blog .catering-list li a {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  padding: 5px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.complete-blog .tegs,
span a {
  background-color: var(--primary-color);
  padding: 10px;
  color: var(--white);
  margin: 0px 5px;
  border-radius: 50px;
  padding: 10px 15px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/*===== complete-blog-section-end ======*/

/*===== our-work-section-start ======*/
.our-logo-desigine,
.social-media-post,
.branding-design-section {
  padding: 45px 0px;
  background-color: var(--white);
}

.our-logo-desigine .section-title,
.social-media-post .section-title,
.branding-design-section .section-title {
  text-align: center;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.our-logo-desigine .section-title h2,
.social-media-post .section-title h2,
.branding-design-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-color);
  border-radius: 10px;
  padding: 5px 10px;
  margin: 20px auto 0px auto;
}

.social-media-post .nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.social-media-post .nav-pills .nav-link {
  transition: 0.5s;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.social-media-post .nav-pills .show > .nav-link {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  transition: 0.5s;
}

.social-media-post .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  transition: 0.5s;
}

.social-media-post .container-main,
.branding-design-section .container-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.social-media-post .box,
.branding-design-section .box {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 10px;
  padding: 5px;
  transition: 0.5s;
  cursor: pointer;
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: var(--primary-color);
}

.social-media-post .box img,
.branding-design-section .box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.social-media-post .box:hover,
.branding-design-section .box:hover {
  transform: scale(1.05);
  transition: 0.5s;
}

.social-media-post .btn-close,
.branding-design-section .btn-close {
  background-image: none;
  color: var(--dark);
  background-color: var(--primary-color);
  opacity: 1;
  border-radius: 5px;
  font-size: 20px;
  line-height: 5px;
  box-shadow: none;
}

.social-media-post .modal,
.branding-design-section .modal {
  z-index: 99999999;
}

.modal {
  z-index: 999999999;
}

.social-media-post .modal-header .btn-close:focus,
.branding-design-section .modal-header .btn-close:focus {
  transform: rotate(180deg);
  transition: 0.5s;
}

.social-media-post .modal-header .btn-close,
.branding-design-section .modal-header .btn-close {
  color: var(--white);
}

/*===== our-work-section-end ======*/

/*===== logo-design-requirements-start ======*/

.logo-design-requirements {
  padding: 90px 0px;
  background-color: #0b6ac29a;
}

.sticky-btn {
  position: fixed;
  bottom: 20rem;
  left: -80px;
  color: var(--white);
  padding: 15px 15px;
  background: #0892c9;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 9999;
  transition: all 0.1s ease;
  transform: rotate(270deg);
  border: 2px solid var(--white);
  line-height: 5px;
}

.sticky-btn:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.1s ease;
}

.geS5n {
  border: 2px solid var(--primary-color);
}

.logo-design-requirements iframe {
  width: 100%;
  height: 1995px;
  border: none;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*===== logo-design-requirements-end ======*/

/*===== pricing-section-start ======*/

.pricing-section {
  padding: 45px 0px;
  text-align: center;
  background-color: var(--primary-color);
}

.pricing-section .section-title {
  text-align: center;
  text-transform: capitalize;
}

.pricing-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
}

.pricing-section .pricing-item {
  background-color: #ffffff;
  border-radius: 30px;
  position: relative;
  z-index: 0;
  margin-top: 20px;
  height: 100%;
}

.pricing-section .pricing-item::before {
  content: "";
  position: absolute;
  background: rgb(9, 248, 249);
  background: radial-gradient(
    circle,
    rgba(9, 248, 249, 1) 4%,
    rgba(30, 91, 112, 1) 100%
  );
  z-index: -1;
  top: -20px;
  left: 35px;
  right: 35px;
  height: 20px;
  border-radius: 15px 15px 0 0;
}

.pricing-section .pricing-item::after {
  content: "";
  position: absolute;
  background: rgb(9, 248, 249);
  background: radial-gradient(
    circle,
    rgba(9, 248, 249, 1) 4%,
    rgba(30, 91, 112, 1) 100%
  );
  z-index: -1;
  bottom: -30px;
  left: 35px;
  right: 35px;
  height: 30px;
  border-radius: 0px 0px 20px 20px;
}

.pricing-section .pricing-item.pink::before,
.pricing-section .pricing-item.pink::after {
  background: rgb(196, 32, 151);
  background: linear-gradient(
    129deg,
    rgba(196, 32, 151, 0.9864320728291317) 0%,
    rgb(132, 35, 184) 100%
  );
}

.pricing-section .pricing-item.yellow::before,
.pricing-section .pricing-item.yellow::after {
  background: rgb(211, 249, 9);
  background: linear-gradient(
    129deg,
    rgba(211, 249, 9, 1) 0%,
    rgba(232, 118, 30, 1) 100%
  );
}

.pricing-section .pricing-item .price-heading h3 {
  font-size: 24px;
  font-weight: 800;
  padding-top: 30px;
  margin: 0;
  -webkit-text-stroke: 1px rgba(3, 146, 168, 0.685);
}

.seo-faq-section {
  padding: 70px 0;
  background: #f8fbfc;
}

.seo-faq-section .section-title {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.seo-faq-section .section-title h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.seo-faq-section .section-title p {
  color: #555;
  margin: 0;
}

.seo-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.seo-faq-list details {
  background: #fff;
  border: 1px solid rgba(3, 146, 168, 0.18);
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 18px 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.seo-faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.seo-faq-list p {
  margin: 12px 0 0;
  color: #555;
  line-height: 1.8;
}

.pricing-section .pricing-item .price-heading span {
  font-size: 14px;
  color: #8080807a;
}

.pricing-section .pricing-item .price {
  background: rgb(9, 248, 249);
  background: radial-gradient(
    circle,
    rgba(9, 248, 249, 1) 4%,
    rgba(30, 91, 112, 1) 100%
  );
  margin: 30px -15px;
  position: relative;
  z-index: 1;
}

.pricing-section .pricing-item .price::before {
  content: "";
  position: absolute;
  background: rgb(9, 248, 249);
  background: radial-gradient(
    circle,
    rgba(9, 248, 249, 1) 4%,
    rgba(30, 91, 112, 1) 100%
  );
  z-index: -1;
  height: 15px;
  width: 15px;
  left: 0.5px;
  top: -15px;
  clip-path: polygon(100% 0, 100% 100%, 100% 100%, 0 100%);
}

.pricing-section .pricing-item .price::after {
  content: "";
  position: absolute;
  background: rgb(9, 248, 249);
  background: radial-gradient(
    circle,
    rgba(9, 248, 249, 1) 4%,
    rgba(30, 91, 112, 1) 100%
  );
  z-index: -1;
  height: 15px;
  width: 15px;
  right: -0.5px;
  top: -15px;
  clip-path: polygon(1% 0, 100% 100%, 0 100%, 0 100%);
}

.pricing-section .pricing-item.pink .price {
  background: rgb(196, 32, 151);
  background: linear-gradient(
    129deg,
    rgba(196, 32, 151, 0.9864320728291317) 0%,
    rgb(132, 35, 184) 100%
  );
}

.pricing-section .pricing-item.pink .price::before,
.pricing-section .pricing-item.pink .price::after {
  background: rgb(196, 32, 151);
  background: linear-gradient(
    129deg,
    rgba(196, 32, 151, 0.9864320728291317) 0%,
    rgb(132, 35, 184) 100%
  );
}

.pricing-section .pricing-item.yellow .price {
  background: rgb(211, 249, 9);
  background: linear-gradient(
    129deg,
    rgba(211, 249, 9, 1) 0%,
    rgba(232, 118, 30, 1) 100%
  );
}

.pricing-section .pricing-item.yellow .price::before,
.pricing-section .pricing-item.yellow .price::after {
  background: rgb(211, 249, 9);
  background: linear-gradient(
    129deg,
    rgba(211, 249, 9, 1) 0%,
    rgba(232, 118, 30, 1) 100%
  );
}

.pricing-section h2 {
  font-size: 24px;
  color: var(--white);
  padding: 15px 0px;
  font-weight: 700;
  margin: 0;
}

.pricing-section .pricing-item .price-content ul li {
  list-style: none;
  color: var(--dark);
  font-size: 14px;
  position: relative;
  padding: 0px 0px 5px 20px;
  text-align: left;
  font-weight: 500;
  text-transform: capitalize;
}

.pricing-section .purple .price-content ul li::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #1693a1;
  margin-right: 10px;
  font-size: 14px;
}

.pricing-section .pink .price-content ul li::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ff0081;
  margin-right: 10px;
  font-size: 14px;
}

.pricing-section .yellow .price-content ul li::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffbc00;
  margin-right: 10px;
  font-size: 14px;
}

.pricing-section .pricing-item .price-content button {
  width: 170px;
  height: 50px;
  border-radius: 30px;
  border: none;
  margin-top: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
}

.pricing-section .purple button {
  background: radial-gradient(
    circle,
    rgba(9, 248, 249, 1) 4%,
    rgba(30, 91, 112, 1) 100%
  );
}

.pricing-section .pink button {
  background: rgb(196, 32, 151);
  background: linear-gradient(
    129deg,
    rgba(196, 32, 151, 0.9864320728291317) 0%,
    rgb(132, 35, 184) 100%
  );
}

.pricing-section .yellow button {
  background: rgb(211, 249, 9);
  background: linear-gradient(
    129deg,
    rgba(211, 249, 9, 1) 0%,
    rgba(232, 118, 30, 1) 100%
  );
}

/*===== pricing-section-end ======*/

/*===== testimonial-section-start ======*/

.testimonials {
  padding: 90px 0px;
  background-color: #ffffff;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/* section title */
.testimonials .section-title {
  text-align: center;
  margin-bottom: 45px;
}

.testimonials .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.testimonials .section-title span::before {
  position: absolute;
  content: "";
  background-color: var(--dark);
  height: 2px;
  width: 150px;
  bottom: -13px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 10px;
}

.testimonials .section-title span::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 8px;
  width: 20px;
  bottom: -16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 2px;
  animation: testimonials-nudge8 5s linear infinite;
}

@keyframes testimonials-nudge8 {
  0%,
  100% {
    transform: translateX(40px);
  }
  80% {
    transform: translateX(-30px);
  }
}

.testimonials .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 30px;
  line-height: 1.4;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* header with google rating & button */
.testimonials .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  background: #f5f7fc;
  padding: 18px 25px;
  border-radius: 16px;
}

.testimonials .google-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.testimonials .google-rating img {
  height: 32px;
  width: auto;
}

.testimonials .google-rating span {
  font-weight: 700;
  font-size: 22px;
  color: var(--dark);
}

.testimonials .star-rating {
  display: flex;
  list-style: none;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.testimonials .star-rating li {
  color: #fcbe03;
  font-size: 20px;
}

.testimonials .review-count {
  font-size: 15px;
  font-weight: 500;
  color: #5f6368;
}

.testimonials .review-button a {
  background-color: #007bff;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s;
  white-space: nowrap;
}

.testimonials .review-button a:hover {
  background-color: #0b5ed7;
}

/* ===== 2-ROW CONTINUOUS SLIDER ===== */
.testimonials .testimonial-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 15px;
}

/* Two row tracks */
.testimonials .slider-track-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  width: max-content;
  will-change: transform;
}

/* Both rows move left-to-right continuously */
.testimonials .slider-track-row.row-1 {
  animation: testimonials-slideLeftToRight 45s linear infinite;
}

.testimonials .slider-track-row.row-2 {
  animation: testimonials-slideLeftToRight 50s linear infinite;
}

@keyframes testimonials-slideLeftToRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* testimonial card */
.testimonials .testimonial {
  background: var(--white);
  border-radius: 10px;
  padding: 22px 20px;
  margin-top: 10px;
  width: 280px;
  flex-shrink: 0;
  box-shadow:
    rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  transition: all 0.25s;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.testimonials .testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 107, 43, 0.15);
}

.testimonials .testimonial .name {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--dark);
}

.testimonials .testimonial .name img:first-child {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0f0f0;
}

.testimonials .testimonial .name img.google-icon {
  height: 18px;
  width: 18px;
  margin-left: 4px;
  opacity: 0.8;
}

.testimonials .stars {
  margin: 6px 0 10px;
}

.testimonials .star-review {
  display: flex;
  list-style: none;
  gap: 2px;
  padding: 0;
  margin: 0;
}

.testimonials .star-review li {
  color: #fcbe03;
  font-size: 16px;
}

.testimonials .testimonial .content {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  transition: max-height 0.4s ease;
  margin-bottom: 8px;
  flex: 1;
}

.testimonials .testimonial.expanded .content {
  -webkit-line-clamp: unset;
  display: block;
}

.testimonials .read-more {
  color: #007bff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-top: 5px;
  align-self: flex-start;
  transition: color 0.2s;
}

.testimonials .read-more:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Pause animation on hover for better UX */
.testimonials .testimonial-slider-wrapper:hover .slider-track-row {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonials .testimonial {
    width: 250px;
    padding: 18px;
  }
  .testimonials .header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .testimonials .testimonial {
    width: 220px;
  }
}

/*=== testimonial-section-end ===*/

/*=== hire-hr-section-start ===*/

.hire-hr-section {
  background: linear-gradient(135deg, #f3f3f3, #ffffff);
  text-align: center;
  padding: 90px 20px;
  border-top: 4px solid #008bd1;
}

.hire-hr-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--dark);
}

.hire-hr-section p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.hire-hr-section .career-email {
  display: inline-block;
  background: #008bd1;
  color: #fff;
  padding: 12px 15px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hire-hr-section .career-email:hover {
  background: #000;
  border: 1px solid black;
  transform: scale(1.05);
}

.hire-hr-section .apply-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background: linear-gradient(30deg, #ffff00, #0892c9);
  color: #000;
  border: 1px solid black;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

@media (max-width: 600px) {
  .hire-hr-section .career-section h2 {
    font-size: 2em;
  }
  .hire-hr-section p {
    font-size: 1em;
  }
}

/*=== hire-hr-section-end ===*/
/* ===blog-section-start=== */

.blog-section {
  padding: 90px 0px;
  background-color: var(--white);
  overflow: hidden;
}

.blog-section .card-body {
  padding: 30px 30px;
}

.blog-section .section-title {
  text-align: center;
  margin-bottom: 45px;
  text-transform: capitalize;
}

.blog-section .section-title span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.blog-section .section-title span::before {
  position: absolute;
  content: "";
  background-color: var(--dark);
  height: 2px;
  width: 105px;
  bottom: -13px;
  left: 0;
  right: 0;
  border-radius: 10px;
}

.blog-section .section-title span::after {
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  height: 8px;
  width: 20px;
  bottom: -16px;
  left: 25px;
  right: 0;
  border-radius: 2px;
  animation: nudge8 5s linear infinite;
}

@keyframes nudge8 {
  0%,
  100% {
    transform: translateX(65px);
  }
  80% {
    transform: translate(-35px);
  }
}

.blog-section .section-title h2 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 30px;
  color: var(--dark);
}

.blog-section .card-title {
  font-size: 12px;
  color: rgb(66, 62, 62);
  font-weight: 600;
}

.blog-section .card-subtitle {
  font-size: 16px;
  color: rgb(43, 41, 41);
  font-weight: 700;
  padding-right: 25px;
  margin: 10px 0px;
}

.blog-section .card-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  font-size: 14px;
  margin-top: 5px;
}

.blog-section .card-text.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.blog-section .blog {
  padding: 30px 0px;
  transition: 0.5s;
  border-radius: 10px;
}

.blog-section .blog:hover {
  transform: translateY(-10px);
  transition: 0.5s;
}

.blog-section .blog:hover img {
  transition: 0.5s;
}

.blog-section .blog img {
  transition: 0.5s;
  height: 200px;
  object-fit: contain;
  width: 100%;
}

/* === EQUAL HEIGHT CARDS FIX === */
.blog-section .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-section .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-section .content-box {
  display: flex;
  margin-bottom: 15px;
}

.blog-section .content-box .icon p {
  font-size: 12px;
  font-weight: 500;
  padding-left: 5px;
}

.blog-section .content-box .icon i {
  padding-right: 5px;
}

.blog-section .content-box .icon:first-child {
  border-right: 2px solid rgb(188, 186, 186);
  padding: 0px 15px 0px 0px;
  height: 18px;
}

.blog-section .card-body {
  position: relative;
  border-radius: 10px;
}

.blog-section .card-body a {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 12px 0px;
  border-radius: 50px;
  font-size: 14px;
  transition: 0.3s ease-in-out;
}

.card-body::before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  border-radius: 10px;
}

.blog-section .card:hover .card-body::before {
  width: 100%;
  opacity: 1;
  transition: 1s;
  border-radius: 10px;
}

/* ===blog-section-end=== */

/* ===single-blog-section-start=== */

.complete-blog {
  background-color: var(--bg-color);
  padding: 90px 0px;
}

.complete-blog .blog-header {
  margin-bottom: 45px;
}

.complete-blog .blog-header h1 {
  font-size: 30px;
  color: var(--dark);
  font-weight: 600;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.complete-blog .blog-header p {
  font-size: 14px;
  color: var(--grey);
  font-weight: 500;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.complete-blog .blog-content p {
  font-size: 16px;
  color: var(--grey);
  font-weight: 400;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.complete-blog .blog-content h2 {
  font-size: 20px;
  color: var(--dark);
  font-weight: 600;
  margin-top: 50px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.complete-blog .blog-image {
  text-align: center;
}

.complete-blog .blog-image img {
  border-radius: 10px;
  padding-bottom: 40px;
}

.complete-blog .list-unstyled {
  display: grid;
}

.complete-blog .list-unstyled li {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.complete-blog .list-unstyled img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.complete-blog .comments-section {
  margin: 45px 0px;
}

.complete-blog .comments-section h3 {
  font-size: 20px;
  color: var(--dark);
  font-weight: 600;
}

.complete-blog .sidebar {
  margin-bottom: 45px;
}

.complete-blog .sidebar h3 {
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 30px;
  background-color: var(--primary-color);
  padding: 10px;
  border-radius: 5px;
}

.complete-blog .catering-list {
  display: grid;
  list-style: none;
  padding: 0;
}

.complete-blog .catering-list li {
  background-color: var(--white);
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #008bd157;
}

.complete-blog .catering-list li a {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  padding: 5px;
}

.complete-blog .tegs,
span a {
  background-color: var(--primary-color);
  padding: 10px;
  color: var(--white);
  margin: 5px;
  border-radius: 50px;
  padding: 10px 15px;
  display: inline-block;
}

/* ===single-blog-section-end=== */

/* ===office-location-section-start=== */

.footer-location {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.63);
  padding-top: 20px;
}

.footer-location h4 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.footer-location ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.footer-location ul li {
  font-size: 18px;
  color: #fff;
  margin: 0px 10px;
}

.footer-location ul li strong a {
  font-weight: 300;
  color: #fff;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-location {
    padding: 15px;
  }

  .footer-location h4 {
    font-size: 20px;
  }

  .footer-location ul li {
    font-size: 16px;
    font-weight: 300;
  }
}

@media (max-width: 480px) {
  .footer-location {
    padding: 10px;
  }

  .footer-location h4 {
    font-size: 18px;
  }

  .footer-location ul li {
    font-size: 14px;
    font-weight: 300;
  }
}

/* ===office-location-section-end=== */
