/* General  */
:root {
  /* Colors  */
  --text-color: #000;
  --dark-bg: #fff;
  --secondary-dark-bg: #fff;
  --about-us-bg: #f9f6fc;
  --about-us-h3: #181818;
  --about-us-p: #777777;
  --portfolio-bg: #f7f7f7;
  --blog-title: #464255;
  --hireus-bg: #f9f6fc;
}
body.dark {
  --text-color: #fff;
  --dark-bg: #464255;
  --secondary-dark-bg: #625e6e;
  --about-us-bg: #625e6e;
  --about-us-h3: #fff;
  --about-us-p: #fff;
  --portfolio-bg: #625e6e;
  --blog-title: #fff;
  --hireus-bg: #625e6e;
}
body {
  font-family: "DM Sans";
  color: #444444;
  z-index: 0;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  color: #000000;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans";
}
.brand-color {
  color: #e76eff;
}
.daiz-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 200px;
  transition: 0.5s;
  margin-top: 20px;
  color: #fff;
  background-color: #8d4ecc;
  cursor: pointer !important;
  pointer-events: all;
  width: max-content;
  border: none;
}
.daiz-btn:hover {
  color: #8d4ecc;
  background-color: #fff;
}
/* Back to top  */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #8d4ecc;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #7b27d8;
  color: #fff;
}

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

/* Dark Mode Styles  */
.dark-mode {
  top: 50%;
  right: 3px;
  z-index: 99991;
  position: fixed;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.dark-mode .switch {
  width: 60px;
  height: 34px;
  position: relative;
  display: inline-block;
}

.dark-mode .switch input {
  width: 0;
  height: 0;
  opacity: 0;
}

.dark-mode .slider {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #ffffff;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.dark-mode .slider:before {
  top: 0;
  bottom: 0;
  width: 30px;
  left: 2.5px;
  content: "";
  height: 30px;
  margin: auto 0;
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 0px 15px #2020203d;
  box-shadow: 0 0px 15px #2020203d;
  background: #333333 url("../img/sun.png");
  background-position: center;
  background-repeat: no-repeat;
}

.dark-mode input:checked + .slider {
  background: #333333;
}

.dark-mode input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  transform: translateX(24px);
  background: white url("../img/night-mode.png");
  background-repeat: no-repeat;
  background-position: center;
}

.dark-mode .slider.round {
  border-radius: 50px;
}

.dark-mode .slider.round:before {
  border-radius: 50%;
}

/* Preloader  */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #5846f9;
  border-top-color: #e7e4fe;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

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

/* AOS disable small Devices  */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Header  */
#header {
  transition: all 0.5s;
  z-index: 17;
  padding: 16px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  padding: 16px 0;
}

#header .logo {
  height: 70px;
  width: 200px;
}

#header .logo a {
  color: #fff;
}

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

/* Navbar  */
.navbar {
  padding: 10px 0px;
}

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

.navbar li {
  position: relative;
}

.navbar > ul > li {
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: -5px;
  left: 0;
  background-color: #7b27d8;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

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

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

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 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;
  height: 330px;
}

.navbar-mobile > ul > li {
  padding: 0;
}

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

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

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

/*  Hero Section  */
#hero {
  width: 100%;
  height: 20vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1 !important;
}

#hero .container,
#hero .container-fluid {
  padding-top: 84px;
}

#hero h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 20px;
}

@media (min-width: 1200px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  }

  #hero .container,
  #hero .container-fluid {
    padding-top: 68px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 26px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 575px), (max-height: 600px) {
  #hero {
    height: 20px;
  }
}

/*  Sections General */
section {
  padding: 100px 0;
  /* overflow: hidden; */
}

.section-bg {
  background-color: #f9f8ff;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 5px;
  position: relative;
}

.section-title p {
  margin-bottom: 0;
}

/*   About    */
#about-us {
  background-color: var(--about-us-bg);
  padding: 90px 10px;
  color: var(--text-color) !important;
}
.about .about-service-wrapper .about-service {
  padding: 20px 0px;
}
.about .about-service-wrapper .about-service h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: var(--about-us-h3);
  padding: 0px 10px;
}
.about .about-service-wrapper .about-service p {
  color: var(--about-us-p);
  padding: 0px 10px;
}
.about .about-service-wrapper .about-service-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .our-mission-container {
  /* overflow: hidden; */
  width: 100%;
  position: relative;
}

.about .our-mission-container .our-mission-text-container h2 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
}
.about .our-mission-container .our-mission-text-container p {
  opacity: 0.9;
}
@media screen and (max-width: 678px) {
  .about .our-mission-container {
    /* overflow: hidden; */
    width: 100%;
    position: relative;
    margin: 0 auto;
  }
  .about .our-mission-container {
    width: 100%;
    position: relative;
    padding: 0px 10px;
  }
  .about .our-mission-container .our-mission-img-container {
    display: flex;
    justify-content: center;
  }
  .about .our-mission-container .our-mission-img-container img {
    width: 100% !important;
  }
}

/* Services  */
#services {
  padding: 60px 10px;
  background-color: var(--dark-bg);
  color: var(--text-color);
}

.services .service-wrapper .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 40px;
  gap: 8px;
  background: var(--secondary-dark-bg);
  box-shadow: 0px 4px 17px rgba(141, 78, 204, 0.06),
    inset 0px 4px 4px rgba(0, 0, 0, 0.11);
  border-radius: 10px;
}
.services .service-wrapper .service-item:hover {
  background: #7b27d8;
  color: #fff;
  transition: 0.8s;
  animation: transition 2s ease-in;
}
.services .service-wrapper .service-item h2 {
  font-weight: 700;
  margin-bottom: 8px;
  margin: 0px;
}
/* Hire us Section  */
#hireus {
  background-color: var(--hireus-bg);
  color: var(--text-color);
  padding: 80px 10px;
}
.hireus .container {
  text-align: left !important;
}
.hireus .container .row .form-wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 10px;
}
.hireus .container .row .section-title h2 {
  text-align: left;
}

.hireus .container .row .form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hireus .container .row .form-wrapper form input,
.hireus .container .row .form-wrapper form textarea {
  border: 1px solid var(--text-color);
  background: none;
  width: 90%;
  border-radius: 5px;
  height: 42px;
  color: var(--text-color);
}
@media screen and (max-width: 678px) {
  .hireus .container .row .form-wrapper form input,
  .hireus .container .row .form-wrapper form textarea {
    border: 1px solid var(--text-color);
    background: none;
    width: 100%;
    border-radius: 5px;
    height: 42px;
    color: var(--text-color);
  }
}
.hireus .container .row .form-wrapper form textarea {
  height: 90px;
}
.hireus .container .row .form-wrapper form a {
  width: max-content;
}
.hireus .container .row .hireus-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Footer  */
#footer {
  padding: 0px 10px;
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #464255;
  color: #fff;
}
.footer .footer-container {
  margin: 0 auto;
}
.footer .footer-container .quick-links {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.footer .footer-container .quick-links li {
  list-style: none;
}
.footer .footer-container .quick-links a {
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
}
.footer .footer-container .quick-links a:hover {
  color: #8d4ecc;
}
@media screen and (max-width: 678px) {
  .footer .footer-container .quick-links {
    flex-direction: column;
  }
}

.footer .footer-container .daiz-socials {
  display: flex;
  width: max-content;
  margin: 0 auto;
  padding: 10px 0px;
  gap: 14px;
}
.footer .footer-container .daiz-socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  border-radius: 48px;
  background-color: #fff;
  transition: 0.6s;
}
.footer .footer-container .daiz-socials a i {
  font-size: 2rem;
}
.footer .footer-container .daiz-socials a:hover {
  background-color: #e7e4fe;
}
.footer .footer-container .address-and-phone-info {
  width: max-content;
  margin: 0 auto;
  text-align: center;
}
.footer .footer-container .address-and-phone-info p {
  margin: 0px;
}
.footer .footer-container p:last-child {
  width: auto;
  margin: 0 auto;
  text-align: center;
}
.footer button.daiz-btn {
  border: none;
}

/* team */
#team {
  background-color: var(--about-us-bg);
  padding: 70px 10px;
  color: var(--text-color) !important;
}
.member1 {
  background-image: url("/img/4fc3e0407479ed285e6764587b213d6a.jfif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
}
.member2 {
  background-image: url("/img/3b1e4f03c8d09d16d56adb5c8c647c21.jfif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
}
.member3 {
  background-image: url("/img/6af717d7d7f7de8af17e552060b08d50.jfif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
}
