/**
* Template Name: Rapid
* Template URL: https://bootstrapmade.com/rapid-multipurpose-bootstrap-business-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

@property --angle {
  syntax: "<angle>";
  initial-value: 90deg;
  inherits: true;
}

:root {
  --angle: 90deg;
}

body {
  background: #1a1a1a;
  color: #ffffff;
  font-family: "Cabin", sans-serif;
}

a {
  color: #1bb1dc;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0a98c0;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cabin", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #00aaf7;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #39c0e7;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header.header-transparent {
  background: #ffffff;
}

#header.header-scrolled {
  background: #1d1d1d;
  height: 90px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header .logo {
  font-size: 36px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo a {
  color: #413e66;
}

/* #header .logo img {
  max-height: 40px;
} */

#header .social-links {
  margin: 0 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#header .social-links a {
  color: #00aaf7;
  transition: 0.3s;
  line-height: 0;
  margin-left: 15px;
}

#header .social-links a i {
  line-height: 0;
}

/* #header .social-links a:hover {
  color: #1bb1dc;
} */

@media (max-width: 992px) {
  #header .social-links {
    margin: 0 15px 0 0;
  }
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

.twitter i:hover {
  color: #1da1f2;
}

.facebook i:hover {
  color: #316ff6;
}

.linkedin i:hover {
  color: #0077b5;
}

.instagram i:hover {
  background-image: linear-gradient(90deg,
      rgba(131, 58, 180, 1) 0%,
      rgba(253, 29, 29, 1) 50%,
      rgba(252, 176, 69, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 24px;
  font-family: "Cabin", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #00aaf7;
}

.navbar .dropdown ul {
  flex-direction: column;
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #00bcd4;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(45, 43, 70, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #413e66;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #1bb1dc;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #1bb1dc;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  position: relative;
  background: #f5f8fd url("../img/intro-bg.webp") center top no-repeat;
  background-size: cover;
  padding-top: 70px;
  display: flex;
  align-items: center;
}

#hero.logo-design {
  width: 100%;
  height: 90vh;
  position: relative;
  background: #f5f8fd url("../img/logodesign-bg.webp") center top no-repeat;
  background-size: cover;
  padding-top: 110px;
}

#hero.appDevelopment {
  width: 100%;
  height: 90vh;
  position: relative;
  background: #0000008f url(../img/appdevelopment-bg.webp) center top no-repeat;
  background-size: cover;
  padding-top: 110px;
  background-blend-mode: multiply;
}

#hero.email-banner {
  width: 100%;
  height: 90vh;
  position: relative;
  background: #f5f8fd url("../img/email\ marketing-bg.webp") center top no-repeat;
  background-size: cover;
  padding-top: 110px;
}

#hero.webDeveloper-banner {
  width: 100%;
  height: 90vh;
  position: relative;
  background: #f5f8fd url("../img/webdevelopment-bg.webp") center top no-repeat;
  background-size: cover;
  padding-top: 110px;
}

#hero.contact-us {
  width: 100%;
  height: 90vh;
  position: relative;
  background: #f5f8fd url("../img/contact\ us-bg.webp") center top no-repeat;
  background-size: cover;
  padding-top: 110px;
}

@media (max-width: 991px) {
  #hero {
    height: auto;
    padding: 100px 0 60px 0;
  }

  #hero .container {
    height: auto !important;
  }

  #hero .intro-img {
    width: 80%;
  }
}

@media (min-width: 992px) {
  #hero .intro-info {
    padding-top: 50px;
  }
}

@media (max-width: 991px) {
  #hero .intro-info {
    text-align: center;
    padding-top: 40px;
  }
}

#hero .intro-info h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 45px;
  font-weight: 800;
  text-transform: uppercase;
  /* font-family: 'Cabin'; */
}

#hero .intro-info h2 span {
  color: #1bb1dc;
}

@media (max-width: 991px) {
  #hero .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

.console-underscore {
  display: inline-block;
  position: relative;
  top: -0.14em;
  left: 10px;
  color: #1bb1dc;
  visibility: hidden;
}

#hero .intro-info .btn-get-started,
#hero .intro-info .btn-services {
  font-family: "Cabin", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #00aaf7;
  color: #fff;
  -webkit-animation: jello-vertical 1.4s infinite both;
  animation: jello-vertical 1.4s infinite both;
}

#hero .intro-info .btn-get-started:hover,
#hero .intro-info .btn-services:hover {
  background: #0a98c0;
}

@-webkit-keyframes jello-vertical {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  40% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  50% {
    -webkit-transform: scale3d(0.85, 1.15, 1);
    transform: scale3d(0.85, 1.15, 1);
  }

  65% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  75% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes jello-vertical {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  40% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  50% {
    -webkit-transform: scale3d(0.85, 1.15, 1);
    transform: scale3d(0.85, 1.15, 1);
  }

  65% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  75% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

#hero p {
  color: #fff;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 36px;
  color: #00a8f8;
  text-align: center;
  font-weight: 700;
  position: relative;
  text-transform: capitalize;
  font-family: "Cabin", sans-serif;
}

.section-header h4 {
  color: #00aaf7;
  text-align: center;
  position: relative;
  text-transform: capitalize;
  font-family: "Cabin", sans-serif;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #fff;
  width: 50%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #1d1d1d;
}

/* About Us Section
--------------------------------*/
#about {
  padding: 180px 0px 30px;
  background: #1d1d1d;
}

#about .about-content {
  padding-top: 40px;
}

#about .about-content h2 {
  color: #fff;
  font-family: "Cabin", sans-serif;
  font-weight: 700;
}

#about .about-content h3 {
  color: #00aaf7;
  font-weight: 400;
  font-size: 22px;
  font-style: italic;
}

#about .about-content ul {
  list-style: none;
  padding: 0;
}

#about .about-content ul li {
  padding-bottom: 10px;
}

#about .about-content ul li i {
  font-size: 20px;
  padding-right: 4px;
  color: #00aaf7;
}

#about .about-img {
  position: relative;
  margin: 30px 30px 30px 30px;
}

#about .about-img img {
  width: 100%;
  border: 8px solid #091d73;
  transition: 0.5s;
}

#about .about-img img:hover {
  width: 100%;
  transform: scale(1.03);
}

#about .about-img::before {
  position: absolute;
  left: -31px;
  top: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: #02abf8;
  transition: 0.5s;
}

#about .about-img::after {
  position: absolute;
  right: -31px;
  bottom: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: "";
  background-color: #00a8f8;
  transition: 0.5s;
}

/* Services Section
--------------------------------*/
#services {
  padding: 30px 0 40px 0;
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  height: 100%;
  border: 3px solid;
  border-image: conic-gradient(from var(--angle),
      #1bb2dc00,
      #ffffffbd 0.1turn,
      #ffffffbd 0.15turn,
      #1bb2dc00 0.25turn) 30;
  animation: borderRotate 5000ms linear infinite forwards;
}

@keyframes borderRotate {
  100% {
    --angle: 420deg;
  }
}

#services .box:hover {
  transform: scale(1.1);
  border: 3px solid #00aaf7;
}

#services .icon {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.bg1 {
  background: #e1eeff;
}

.bg1 i {
  color: #2282ff;
}

.bg2 {
  background: #e1eeff;
}

.bg2 i {
  color: #2282ff;
}

.bg3 {
  background: #e1eeff;
}

.bg3 i {
  color: #2282ff;
}

.bg4 {
  background: #e1eeff;
}

.bg4 i {
  color: #2282ff;
}

#services .icon i {
  font-size: 36px;
  line-height: 0;
}

#services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services h5 {
  font-size: 18px;
  font-weight: 600;
  color: #00aaf7;
}

#services .title a {
  color: #fff;
}

#services .box:hover .title a {
  color: #00aaf7;
}

#services .description {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
}

/* Why Us Section
--------------------------------*/
#why-us {
  padding: 20px 0 15px;
}

@media (max-width: 991px) {
  #why-us .why-us-content {
    padding-top: 30px;
  }
}

#why-us .why-us-content .features {
  margin: 0 0 15px 0;
  padding: 0;
}

#why-us .why-us-content .features i {
  font-size: 36px;
  float: left;
}

#why-us .why-us-content .features h4 {
  font-size: 24px;
  font-weight: 600;
  margin-left: 56px;
  color: #00a8f8;
  margin-bottom: 5px;
}

#why-us .why-us-content .features p {
  font-size: 16px;
  margin-left: 56px;
  color: #ffffff;
}

.fi-1 {
  color: #2282ff;
}

.fi-2 {
  color: #2282ff;
}

.fi-3 {
  color: #2282ff;
}

.fi-4 {
  color: #2282ff;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Cabin", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #00aaf7;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Cabin", sans-serif;
  font-size: 14px;
  color: #00aaf7;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background-color: #555186;
  background: url(../img/footer.webp) no-repeat, #01374f;
  background-position: top right;
  background-size: cover;
  padding: 40px 0;
  background-blend-mode: multiply;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-title {
  color: #2e89ff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-title2 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

#call-to-action .cta-text {
  color: #ffffff;
}

@media (min-width: 991px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #1bb1dc;
  border: 3px solid #1bb1dc;
}

/* Features Section
--------------------------------*/
#features {
  padding: 40px 0px 30px;
}

#features h4 {
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}

.features h6 {
  font-size: 20px;
  color: #00aaf7;
}

/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 20px 0 15px;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonials-carousel,
#testimonials .testimonials-slider {
  overflow: hidden;
}

@media (max-width: 767px) {
  #testimonials .testimonial-item {
    text-align: center;
  }
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

@media (max-width: 767px) {
  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #00aaf7;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 767px) {

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

#testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #fff;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

/* Team Section
--------------------------------*/
#team {
  padding: 20px 0 15px;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

#team .member .member-info {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
  padding: 11px 0;
  background: rgba(29, 28, 41, 0.6);
}

#team .member .member-info-content {
  transition: margin 0.2s;
  height: 36px;
  transition: height 0.4s;
}

#team .member:hover .member-info {
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  height: 70px;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 20px 0 15px;
}

#clients img {
  opacity: 0.5;
  transition: 0.3s;
}

#clients img:hover {
  opacity: 1;
}

#clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1bb1dc;
}

#clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1bb1dc;
}

/* Frequently Asked Questions Section
--------------------------------*/
#faq {
  padding: 20px 0 15px;
  overflow: hidden;
  background: #1a1a1a;
}

#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq .faq-list li {
  border-bottom: 1px solid #edecf4;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

#faq .faq-list .question {
  display: block;
  position: relative;
  font-family: "Cabin", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #00aaf7;
  transition: 0.3s;
}

#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

#faq .faq-list p {
  margin-top: 8px;
  margin-bottom: 0;
  padding: 10px 25px 10px 25px;
  background-color: #1A1A1A !important;
  border: 1px dashed #00AAF7;
  border-radius: 10px;
}

#faq .faq-list .icon-show {
  display: none;
}

#faq .faq-list .collapsed {
  color: #ffffff;
}

#faq .faq-list .collapsed:hover {
  color: #00aaf7;
}

#faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

#faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f9f9fb;
  min-height: 40px;
  margin-top: 90px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #555186;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 10px 0;
  font-size: 14px;
  background: #1a1a1a;
}

#footer .footer-top {
  padding: 60px 60px 30px 60px;
  background: #1a1a1a;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Cabin", sans-serif;
  color: #413e66;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Cabin", sans-serif;
  color: #ffffff;
}

#footer .footer-top .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00aaf7;
  color: #fff;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a i {
  line-height: 0;
  font-size: 16px;
}

#footer .footer-top .social-links a:hover {
  background: #444444;
  color: #fff;
}

@media (max-width: 574px) {
  #footer .footer-top .social-links a {
    margin-bottom: 25px;
  }
}

#footer .footer-top h4 {
  font-size: 28px;
  font-weight: bold;
  color: #00aaf7;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  font-size: 20px;
}

#footer .footer-top .footer-links ul a:hover {
  color: #00aaf7;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
  border: 1px solid #d9dde6;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #1bb1dc;
  border: 1px solid #1bb1dc;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #0a98c0;
}

#footer .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#footer .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#footer .php-email-form .error-message br+br {
  margin-top: 25px;
}

#footer .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#footer .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#footer .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

#footer .php-email-form input,
#footer .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #dce1ec;
  font-size: 14px;
}

#footer .php-email-form input:focus,
#footer .php-email-form textarea:focus {
  border-color: #1bb1dc;
}

#footer .php-email-form input {
  padding: 10px 15px;
}

#footer .php-email-form textarea {
  padding: 12px 15px;
}

#footer .php-email-form button[type="submit"] {
  background: #1bb1dc;
  border: 0;
  border-radius: 3px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#footer .php-email-form button[type="submit"]:hover {
  background: #0a98c0;
  cursor: pointer;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

#footer .copyright {
  text-align: center;
  padding-top: 10px;
  color: #fff;
  font-size: 15px;
  text-align: end;
}

#footer .copyright strong {
  color: #1bb1dc;
}

#footer .foot-logo {
  text-align: center;
  padding-top: 10px;
  color: #fff;
  font-size: 15px;
  text-align: start;
  display: flex;
}

#footer .credits {
  text-align: center;
  font-size: 14px;
  padding-top: 4px;
  color: #fff;
}

#footer .credits a {
  color: #1bb1dc;
}

#footer .credits a:hover {
  color: #0a98c0;
}

/* Contact */
.contact {
  background: linear-gradient(131deg, #000000c4 40%, #000000c4 100%), url(../img/contact-11.webp) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 0px;
}

.contact .form {
  width: 100%;
  max-width: 820px;
  background-color: #1d1d1d;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact .contact-form {
  background-color: #0d1f74;
  position: relative;
}

.contact .circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #0085ab);
  position: absolute;
}

.contact .circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.contact .circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact .contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #00aaf7;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

.contact-form .input::placeholder {
  color: #fff;
}

.contact form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.contact .title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.contact .input-container {
  position: relative;
  margin: 1rem 0;
}

.contact .input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

.contact textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 125px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.contact .input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.contact .input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.contact .btn {
  padding: 0.6rem 1.3rem;
  background-color: #00aaf7;
  border: 2px solid #00aaf7;
  font-size: 20px;
  font-weight: 500;
  color: #0d1f74;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.contact .btn:hover {
  background-color: transparent;
  color: #fff;
}

.contact .input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.contact .input-container span:before,
.contact .input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #1bb1dc;
  top: 50%;
  transform: translateY(-50%);
}

.contact .input-container span:before {
  left: 50%;
}

.contact .input-container span:after {
  right: 50%;
}

.contact .input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.contact .input-container.focus span:before,
.contact .input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact .contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact .contact-info .title {
  color: #00aaf7;
  text-transform: uppercase;
}

.contact-info h4 {
  color: #c0c1c3;
  font-size: 20px;
}

.contact .text {
  color: #ffffff;
  margin: 1.5rem 0 2rem 0;
}

.contact .information {
  display: flex;
  color: #555;
  margin: 0 0;
  align-items: center;
  font-size: 0.95rem;
}

.contact .information i {
  color: #00aaf7;
  margin-bottom: 30px;
}

.contact .icon {
  width: 28px;
  margin-right: 0.7rem;
}

.contact .social-media p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0px;
}

.contact .social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.contact .social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: #00aaf7;
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.contact .social-icons a:hover {
  transform: scale(1.05);
}

.contact .contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #1bb1dc;
  border-radius: 50%;
  bottom: 0px;
  right: 0px;
  opacity: 0.3;
}

.contact .big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1bb1dc, #0085ab);
  bottom: -17%;
  right: 50%;
  transform: translate(-40%, 38%);
  z-index: -1;
}

.contact .big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.contact .square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .contact .form {
    grid-template-columns: 1fr;
  }

  .contact .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .contact .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .contact .contact .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .contact .text {
    margin: 1rem 0 1.5rem 0;
  }

  .contact .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {

  .our-portfolio .portfolio-left-dec img {

    display: none;
  }

  .banner-image img {

    display: none;
  }

  .contact .contact-info:before {
    display: none;
  }

  .contact .square,
  .contact .big-circle {
    display: none;
  }

  .contact form,
  .contact .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .contact .text,
  .contact .information,
  .contact .social-media p {
    font-size: 0.8rem;
  }

  .contact .title {
    font-size: 1.15rem;
  }

  .contact .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .contact .icon {
    width: 23px;
  }

  .contact .input {
    padding: 0.45rem 1.2rem;
  }

  .contact .btn {
    padding: 0.45rem 1.2rem;
  }
}

/* Contact */
/* Portfolio Section */
.swiper-pagination-bullet-active {
  background: #00aaf7;
}

.blob img {
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.portfolio-description h2 {
  color: #fff;
  font-weight: 700;
}

/* Portfolio Section */
/* 
---------------------------------------------
Portfolio
--------------------------------------------- 
*/

.our-portfolio .portfolio-left-dec img {
  width: 342px;
  height: 311px;
  left: 45px;
  top: 70px;
  position: absolute;
  z-index: 1;
}

.our-portfolio {
  padding-top: 120px;
  margin-top: 0px;
  position: relative;
}

.our-portfolio .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.our-portfolio .section-heading h2 {
  text-align: center;
  margin: 0px 60px 0px 60px;
  margin-bottom: -5px;
  position: relative;
  z-index: 1;
}

.our-portfolio {
  margin: 0px 15px;
}

.our-portfolio .item .thumb {
  position: relative;
}

.our-portfolio .item .thumb:hover .hover-effect {
  bottom: 30px;
}

.our-portfolio .item .thumb:hover img {
  opacity: 0.7;
}

.our-portfolio .item .hover-effect {
  position: absolute;
  background-image: url(../img/hover-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s;
  bottom: -240px;
  right: 30px;
  width: 239px;
  height: 210px;
}

.our-portfolio .item .hover-effect .inner-content {
  position: absolute;
  right: 30px;
  bottom: 30px;
  text-align: right;
}

.our-portfolio .item .hover-effect .inner-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.our-portfolio .item .hover-effect .inner-content span {
  font-size: 15px;
  color: #fff;
}

.our-portfolio .item .thumb img {
  border-radius: 20px;
  transition: all 0.3s;
}

.owl-portfolio .owl-nav {
  position: absolute;
  top: 42%;
  width: 100%;
}

.owl-portfolio .owl-nav .owl-prev {
  position: absolute;
  left: 25px;
}

.owl-portfolio .owl-nav .owl-next {
  position: absolute;
  right: 30px;
}

.owl-portfolio .owl-nav .owl-prev span {
  color: transparent;
}

.owl-portfolio .owl-nav .owl-prev span:hover::after {
  opacity: 1;
}

.owl-portfolio .owl-nav .owl-prev span:after {
  width: 46px;
  height: 46px;
  background-color: #1bb1dc;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  color: #fff;
  content: "\f104";
  font-size: 22px;
  font-family: "FontAwesome";
  transition: all 0.5s;
  opacity: 0.5;
}

.owl-portfolio .owl-nav .owl-next span {
  color: transparent;
}

.owl-portfolio .owl-nav .owl-next span:hover::after {
  opacity: 1;
}

.owl-portfolio .owl-nav .owl-next span:after {
  width: 46px;
  height: 46px;
  background-color: #1bb1dc;
  display: inline-block;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  color: #fff;
  content: "\f105";
  font-size: 22px;
  font-family: "FontAwesome";
  transition: all 0.5s;
  opacity: 0.5;
}

.owl-portfolio .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.owl-portfolio .owl-dots .owl-dot {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.3;
  margin: 0px 5px;
}

.owl-portfolio .owl-dots .active {
  opacity: 1;
  width: 10px;
  height: 10px;
}

.section-header h3 em {
  font-style: normal;
  color: #ffffff;
}

.section-header h3 span {
  color: #ffffff;
  font-weight: 700;
  opacity: 1;
  text-transform: capitalize;
}

.banner-image img {
  width: 100%;
}

.g-recaptcha {
  padding-top: 20px;
}

.contact {
  position: relative;
  overflow: hidden;
}


#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* HEIGHT FIX: 100% ki bajaye thodi zyada height dein */
  height: 105%;
  /* Ya 110% tak bhi de sakte hain */
  z-index: 0;
  pointer-events: none;
}



.container,
.form {
  position: relative;
  z-index: 1;
}

.contact-info,
.contact-form {
  position: relative;
  z-index: 1;
}

.glass-header {
  position: fixed;
  top: 20px;
  /* Slightly below top edge for capsule look */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgb(0 0 0 / 40%);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-radius: 50px;
  border: 1px solid #00aaf799;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  padding: 10px 30px;
  transition: all 0.3s ease;
}

/* On scroll - smaller capsule */
.glass-header.scrolled {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transform: translateX(-50%) scale(0.98);
}

/* Nav links */
.glass-header .navbar ul {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  /* padding: 0; */
  /* align-items: center; */
  /* justify-content: center; */
  /* align-content: center; */
  /* flex-direction: column; */
  /* flex-wrap: wrap; */
}

.glass-header .navbar a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.glass-header .navbar a:hover {
  color: #00bcd4;
}

/* Dropdown styling */
.glass-header .dropdown ul {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  padding: 10px 0;
}

.glass-header .dropdown ul li a {
  color: #ffffff;
  padding: 0px 20px;
  display: flex;
  justify-content: center;
}

/* Social links */
.glass-header .social-links a {
  color: #000000;
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s;
}

.glass-header .social-links a:hover {
  color: #00bcd4;
}

/* Logo */
.glass-header .logo img {
  height: 70px;
  transition: transform 0.3s;
}

.glass-header .logo img:hover {
  transform: scale(1.05);
}

/* Mobile adjustments */
@media (max-width: 992px) {
  .glass-header {
    width: 95%;
    padding: 10px 20px;
  }
}

/* =======================================================================PORTFOLIO====================================================================== */
.spacing__x {
  padding: 40px 0px 20px 0px;
  top: -70px;
}

.portfolio {
  position: relative;
  overflow: hidden;
}

.spacing__x.top {
  padding-top: 90px;
  padding-bottom: 0;
}

.headingstyle1 {
  text-align: center;
  margin-bottom: 40px;
}

.headingstyle1 h6 {
  font-weight: 600;
  color: #00a8f8;
  font-size: 24px;
}

.headingstyle1 h3 {
  font-weight: 750;
  color: #ffffff;
  font-size: 50px;
  text-transform: capitalize;
}

.headingstyle1 p {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 16px;
  margin: 0;
}

.custom-tab-list ul {
  font-size: 0;
  border: none;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.portfolio-box ul {
  font-size: 0;
  text-align: center;
}

.custom-tab-list ul li {
  display: inline-block;
  margin-right: 30px;
}

.custom-tab-list ul li:last-child {
  margin-right: 0;
}

.portfolio-box ul li {
  display: inline-block;
  width: 24%;
  margin-bottom: 15px;
  margin-right: 15px;
}

.custom-tab-list ul li a {
  border: none;
}

.custom-tab-list ul li a {
  color: #ffffff;
  font-size: 14px;
  position: relative;
  padding: 5px 20px;
}

.custom-tab-list ul li.active a {
  color: #00a8f8;
}

.custom-tab-list ul li a::before {
  content: '';
  width: 0;
  transition: all 0.5s ease-in-out;
}

.custom-tab-list ul li:hover a::before,
.custom-tab-list ul li.active a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #00a8f8;
  height: 2px;
  width: 100%;
}

.custom-tab-list ul li:hover a,
.custom-tab-list ul li.active a {
  color: #00a8f8;
}

.custom-tab-list ul li:hover a,
.custom-tab-list ul li.active a {
  color: #00a8f8;
}

.portfolio__img {
  width: 100%;
  height: 250px;
  border-radius: 0.75rem;
  cursor: pointer;
  overflow: hidden;
  margin: 1rem 0;
  position: relative;
  box-shadow: 0 0 20px 1px rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.portfolio__img:after {
  content: "\f002";
  font-family: "Font Awesome 5";
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  inset: 0;
  color: rgb(255, 255, 255);
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-in-out;
}

.portfolio-box ul li:hover .hover-effect {
  opacity: 1;
  height: 100%;
  width: 100%;
}

.portfolio__img>img {
  object-fit: cover;
  overflow: hidden;
  transition: transform 1s ease-in-out;
  width: 100%;
}

.imgFluid.lazy.loaded {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  border-style: none;
}

.portfolio__img:hover img {
  transform: translateY(calc(-100% + 200px));
  transition: transform 5s ease-in-out;
}

.box-webdesign,
.box-ecommerceweb,
.box-logodesign,
.box-videoanimation,
.box-illustration,
.box-branding {
  display: none;
}

.box-webdesign.showfirst {
  display: block;
}

/* ===================================================================================== */
.main-marq {
  position: relative;
  padding: 0;
}

.main-marq:after {
  position: absolute;
  top: -30px;
  bottom: -30px;
  left: -30px;
  right: -30px;
  pointer-events: none;
  background: -webkit-linear-gradient(right,
      #181818,
      rgba(255, 255, 255, 0) 220px,
      rgba(255, 255, 255, 0) calc(100% - 220px),
      #181818);
  background: -o-linear-gradient(right,
      #181818,
      rgba(255, 255, 255, 0) 220px,
      rgba(255, 255, 255, 0) calc(100% - 220px),
      #181818);
  background: linear-gradient(to left,
      #181818,
      rgba(255, 255, 255, 0) 220px,
      rgba(255, 255, 255, 0) calc(100% - 220px),
      #181818);
}

.main-marq.lrg .box .item h4 {
  font-size: 6vw;
  font-weight: 700;
}

.main-marq.xlrg .box .item {
  padding: 0 30px;
}

.main-marq.xlrg .box .item h4 {
  font-size: 10vw;
  font-weight: 800;
}

.main-marq .slide-har {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-marq .strok .item h4 {
  color: transparent !important;
  -webkit-text-stroke: 0.5px #fff;
}

.main-marq .strok .item h4 a {
  color: transparent !important;
  -webkit-text-stroke: 0.5px #fff;
}

.main-marq .non-strok .item h4 {
  color: #4d4b4b8f !important;
  -webkit-text-stroke: 4px #00aaf7 !important;
}

.main-marq .non-strok .item h4 a {
  color: #fff !important;
  -webkit-text-stroke: 0 !important;
}

.main-marq .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-marq .box .item {
  padding: 0 30px;
}

.main-marq .box .item h4 {
  white-space: nowrap;
  line-height: 1;
  margin: 0;
}

.main-marq .box .item h4 .icon {
  font-family: "Sora", sans-serif;
  margin-bottom: -15px;
}

.main-marq .box .item h2 {
  line-height: 1;
  margin: 0;
}

.main-marq .box .item:nth-of-type(even) h4 {
  color: transparent;
  -webkit-text-stroke: 0.5px #fff;
}

.main-marq .box .item:nth-of-type(even) h4 a {
  color: transparent;
  -webkit-text-stroke: 0.5px #fff;
}

.main-marq .box:last-of-type .item:nth-of-type(even) h4 {
  color: #fff;
  -webkit-text-stroke: 0;
}

.main-marq .box:last-of-type .item:nth-of-type(even) h4 a {
  color: #fff;
  -webkit-text-stroke: 0;
}

.main-marq .box:last-of-type .item:nth-of-type(odd) h4 {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.main-marq .box:last-of-type .item:nth-of-type(odd) h4 a {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}

.main-marqv {
  position: relative;
  padding: 0;
}

.main-marqv:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: -webkit-linear-gradient(bottom,
      #1a1a1a,
      rgba(255, 255, 255, 0) 80px,
      rgba(255, 255, 255, 0) calc(100% - 80px),
      #1a1a1a);
  background: -o-linear-gradient(bottom,
      #1a1a1a,
      rgba(255, 255, 255, 0) 80px,
      rgba(255, 255, 255, 0) calc(100% - 80px),
      #1a1a1a);
  background: linear-gradient(to top,
      #1a1a1a,
      rgba(255, 255, 255, 0) 80px,
      rgba(255, 255, 255, 0) calc(100% - 80px),
      #1a1a1a);
  pointer-events: none;
}

.main-marqv .slide-vertical {
  overflow: hidden;
  height: 600px;
  margin: 0 auto;
  position: relative;
}

.main-marqv .slide-vertical:hover .box {
  -webkit-animation-play-state: paused !important;
  animation-play-state: paused !important;
}

.main-marqv .slide-vertical .box {
  position: relative;
  -webkit-animation: slide-vertical 50s linear infinite;
  animation: slide-vertical 50s linear infinite;
}

@-webkit-keyframes slide-vertical {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes slide-vertical {
  0% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }

  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.main-marq {
  text-transform: uppercase;
}

.main-marq .slide-har {
  position: relative;
}

.main-marq .slide-har.st1 .box {
  -webkit-animation: slide-har 150s linear infinite;
  animation: slide-har 150s linear infinite;
}

.main-marq .slide-har.st2 .box {
  -webkit-animation: slide-har-revers 150s linear infinite;
  animation: slide-har-revers 150s linear infinite;
}

.serv-marq .main-marq:after {
  display: none;
}

.serv-marq.skew .main-marq {
  -webkit-transform: rotate(-2deg);
  -ms-transform: rotate(-2deg);
  transform: rotate(-2deg);
}

.portfolio .work-row .item:hover .main-marq .box {
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.portfolio .work-row .item .main-marq {
  position: absolute;
  width: 100%;
  top: 15px;
  left: -50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0.05;
  z-index: -1;
}

.portfolio .work-row .item .main-marq .box {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.portfolio .work-row .item .main-marq .box .item {
  padding: 0 60px;
}

.maz-serv .main-marq {
  position: absolute;
  bottom: 20%;
  left: 0;
}

.team-crev .swiper-slide .item .main-marq {
  position: absolute;
  bottom: 0;
  padding: 15px 0;
}

.team-crev .swiper-slide .item .main-marq .item {
  padding: 0 15px !important;
}

.team-crev .swiper-slide .item .main-marq .item h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 !important;
}

.team-crev .swiper-slide .item .main-marq.team-position {
  background: #1d1d1d;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotateZ(-5deg);
  -ms-transform: translateX(-50%) rotate(-5deg);
  transform: translateX(-50%) rotateZ(-5deg);
}

.team-crev .swiper-slide .item .main-marq.team-name {
  background: #fff;
  left: 0;
}

.team-crev .swiper-slide .item .main-marq.team-name h4 {
  color: #1d1d1d !important;
}

.testim-vrt .main-marqv .item {
  padding: 30px;
  background: #222;
}

.slide-har {
  position: relative;
}

.slide-har.st1 .box {
  position: relative;
  -webkit-animation: slide-har 80s linear infinite;
  animation: slide-har 80s linear infinite;
}

.slide-har.st2 .box {
  position: relative;
  -webkit-animation: slide-har-revers 80s linear infinite;
  animation: slide-har-revers 80s linear infinite;
}

@-webkit-keyframes slide-har {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes slide-har {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes slide-har-revers {
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes slide-har-revers {
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.stroke {
  color: transparent;
  -webkit-text-stroke: 4px #013ca0;
}

.dark-text .stroke,
.text-dark .stroke {
  color: transparent;
  -webkit-text-stroke: 1px #1d1d1d;
}

.element {
  position: absolute;
}

.element-3 {
  left: 1rem;
  top: 4rem;
  animation: rotateElement 6000ms infinite linear;
}

.element-4 {
  right: 2rem;
  top: 4rem;
  animation: rotateElement 6000ms infinite linear;
}

.element-5 {
  bottom: 4rem;
  left: 2rem;
  animation: rotateElement 6000ms infinite linear;
}

.element-6 {
  bottom: 4rem;
  right: 2rem;
  z-index: -1;
  animation: rotateElement 6000ms infinite linear;
}

.headingstyle1 {
  text-align: center;
  margin-bottom: 40px;
}

.custom-tab-list {
  text-align: center;
  margin-bottom: 50px;
}

section.area-service.spacing_x {
  background: #1D1D1D;
  padding: 40px 0;
}

.area-service .service-type-listing {
  font-size: 0;
  text-align: center;
}

.area-service .service-type-listing>li {
  margin-bottom: 20px;
  margin-right: 15px;
  width: 23.5%;
  display: inline-block;
  vertical-align: middle;
}

.area-service .service-type-listing li>a {
  display: block;
}

.service-type-box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  height: 221px;
  border: 1px solid #cccccc;
  transition: all 0.7s ease-in-out;
  cursor: pointer;
}

/* .area-service .service-type-listing li.active .service-type-box {
  box-shadow: 0px 29px 62px 0px rgba(255, 255, 255, 0.19);
} */

.service-type-box:hover {
  box-shadow: 0px 29px 62px 0px rgba(0, 168, 248, 0.19);
}

/* .area-service .service-type-listing li.active .service-type-box {
  box-shadow: 0px 29px 62px 0px rgba(255, 255, 255, 0.19);
} */

.service-type-box * {
  transition: all 0.4s ease-in-out;
}

.service-type-box h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-align: center;
  padding-top: 25px;
  color: #000;
}

.area-service .service-type-listing li.active .service-type-box h4:hover {
  color: #ffffff;
}


@keyframes rotateElement {
  0% {
    transform: rotate(0);
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.ready h1 {
  font-size: 54px;
  font-weight: 750;
  /* left: 108px; */
  position: relative;
  color: #01aaf7;
  padding: 70px 0 0;
}

.ready h1 span:before {
  content: '';
  position: absolute;
  background: url(../images/y_bg.webp);
  width: 55px;
  height: 203px;
  background-size: cover;
  top: -140px;
  left: 22px;
  z-index: -1;
}

.ready h1 span {
  color: #01aaf9;
  position: relative;
  right: 0px;
  z-index: 1;
}

.whtblk {
  color: transparent;
  background: -webkit-linear-gradient(90deg, #00aaf7 35%, rgba(255, 255, 255, 1) 0%);
  background: linear-gradient(90deg, #01aaf7 35%, rgba(255, 255, 255, 1) 0%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hide desktop navbar below 768px */
@media (max-width: 769px) {
  #navbar {
    display: none !important;
  }

  .social-links {
    display: none !important;
  }

  .custom-tab-list ul li {
    margin-right: 10px;
  }

  .custom-tab-list ul li a {
    padding: 0px;
  }
}

/* Dark overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9998;
}

/* Overlay active */
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Sidebar Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  /* slide from left */
  width: 280px;
  height: 100vh;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
  transition: left 0.35s ease;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px) saturate(180%);
  padding-top: 90px;
}

/* Sidebar active */
.mobile-menu.active {
  left: 0;
}

/* Close (X) icon */
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #000;
}

/* Links */
.mobile-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 17px;
  color: #ffffff;
  /* border-bottom: 1px solid #eee; */
  text-decoration: none;
}

.mobile-menu a:hover {
  color: #0d6efd;
}

/* Dropdown inside mobile */
.mobile-dropdown .submenu {
  display: none;
  padding-left: 15px;
}

.mobile-dropdown.open .submenu {
  display: block;
}

/* Mobile toggle button */
.mobile-nav-toggle {
  background: none;
  border: none;
  font-size: 30px;
  padding: 5px;
}

/* Desktop View */
#services {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

#services li {
  list-style: none;
  flex: 0 0 calc(25% - 20px);
  text-align: center;
}

#services .box img {
  width: 70px;
  height: auto;
}

.foot-bottom .row {
  display: flex;
  align-items: center;
  min-height: 80px;
  /* Optional: adjust height */
  border-top: 2px solid #00aaf7;
}

/* Responsive at 768px and below */
@media (max-width: 768px) {
  #services {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  #services::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar on mobile */
  }

  #services li {
    flex: 0 0 140px;
    /* Width of each item */
    scroll-snap-align: center;
    background: #181818;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  }

  #services .box img {
    width: 60px;
  }

  #services h4 {
    font-size: 14px;
    margin-top: 8px;
  }

  #footer {
    text-align: center;
  }
}

@media (max-width: 425px) {
  .custom-tab-list ul li a {
    font-size: 12px;
  }

  .custom-tab-list ul {
    padding-left: 10px;
  }

  .custom-tab-list ul li {
    margin-right: 5px;
  }
}