@import "normalize.css";
@import "grid.css";
@import "fonts.css";

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
span {
  margin: 0;
  padding: 0;
}

/* -- DARK THEME COLORS SWITCH  -- */
:root[light-mode="dark"] {
  --text-color: rgb(149, 165, 198);
  --app-bg-color: #161d26;
  --section-bg-color: #1f2935;
  --border-light: rgba(149, 165, 198, 0.1);
  --border-lighter: rgba(149, 165, 198, 0.05);
  --hover-color: rgba(255, 255, 255, 2%);
}

/* -- LIGHT THEME COLORS SWITCH -- */
:root {
  --primary-color: #0abead;
  --secondary-color: #f57f17;
  --text-color: #333333;
  --shadow-color-first: rgba(96, 233, 255, 0.27);
  --shadow-color-second: rgba(19, 182, 255, 0.24);
  --shadow-color-third: rgba(4, 195, 255, 0.16);
  --app-bg-color: #fff;
  --section-bg-color: #fff;
  --hover-color: rgba(0, 0, 0, 2%);
  --border-light: rgba(0, 0, 0, 0.1);
  --border-lighter: rgba(0, 0, 0, 0.05);
}

:root[light-mode="dark"] .header,
:root[light-mode="dark"] .mobile-menu__btn,
:root[light-mode="dark"] .home__photo,
:root[light-mode="dark"] .about-us-wrapper,
:root[light-mode="dark"] .resume,
:root[light-mode="dark"] .resume__list,
:root[light-mode="dark"] .pricing,
:root[light-mode="dark"] .Packages,
:root[light-mode="dark"] .mobile-resume,
:root[light-mode="dark"] .mobile-resume__title,
:root[light-mode="dark"] .Contact-us__form,
:root[light-mode="dark"] .Contact-us__input,
:root[light-mode="dark"] .package-wrapper {
  box-shadow: none;
}

:root[light-mode="dark"] .home {
  background-image: url("../images/shapes/header-shape-dark.svg");
  background-repeat: no-repeat;
  background-position: bottom;
}

:root[light-mode="dark"] .resume-content__title {
  color: #f57f17;
}

:root[light-mode="dark"] .Contact-us__Wrapper {
  background-image: url(../images/map-dark.jpg);
}

html {
  font-size: 10px;
}

body {
  font-family: "Ravi";
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: var(--app-bg-color);
  color: var(--text-color);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
  padding: 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
}

input[type="number"] {
  -moz-appearance: none;
  appearance: none;
}

/* helper classes */

.align-center {
  align-items: center;
}
.skew-reset {
  transform: translateZ(0) skewY(6deg);
}
.full-h {
  height: 100%;
}

/* component */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  font-family: "Ravi SemiBold";
  color: #fff;
  width: 16rem;
  height: 5rem;
  border-radius: 3rem;
  transition: all 0.3s ease-in;
}

.btn--teal {
  box-shadow: 0 1.6rem 2.8rem rgba(11, 190, 173, 0.24);
}

.btn--orange {
  background-color: var(--secondary-color);
  box-shadow: 0 1.6rem 2.8rem rgba(245, 127, 23, 0.24);
}

.btn--purple {
  background-color: #803afb;
  box-shadow: 0 1.6rem 2.8rem rgba(128, 58, 251, 0.24);
}

.btn--pink {
  background-color: #f5276c;
  box-shadow: 0 1.6rem 2.8rem rgba(245, 39, 108, 0.24);
}

.btn--tiger {
  background-color: #ff6331;
  box-shadow: 0 1.6rem 2.8rem rgba(255, 99, 49, 0.24);
}

.btn:hover {
  transform: translateY(-0.7rem);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 7rem;
}
.section-head__title {
  font-family: "Ravi Bold";
  font-size: 4.8rem;
  color: var(--primary-color);
}
.section-head__caption {
  color: var(--text-color);
  letter-spacing: 0.2rem;
}
.section-head__line {
  margin-top: 2rem;
  width: 24rem;
  height: 0.2rem;
  background-color: var(--primary-color);
  position: relative;
}

.section-head__line::after {
  content: "";
  position: absolute;
  background-color: var(--primary-color);
  width: 3.9rem;
  height: 1.1rem;
  border-radius: 0.55rem;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* ================ */
/*   header start   */
/* ================ */

.header {
  background-color: var(--section-bg-color);
  box-shadow: 0 3px 59px var(--shadow-color-third);
  position: fixed;
  right: 0;
  left: 0;
  z-index: 50;
}

/* Nav Menu */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}

.nav__logo {
  width: 22rem;
  height: 6rem;
  margin: 0;
}
/* Darkmode toggle */

.light-mode-button {
  background: 0;
  border: 0;
  box-sizing: border-box;
  cursor: pointer;
  height: 3rem;
  width: 8rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0);
}

.light-mode-button:focus {
  outline: none; /* Not ideal for accessibility */
}

.light-mode-button span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 8rem;
  height: 3rem;
  border-radius: 20px;
  background-color: #d6d7db;
  box-shadow: inset 1px 1px 3px 0 rgb(0 0 0 / 40%);
  transition: 0.3s;
}

.light-mode-button span:nth-child(2) {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 2rem;
  height: 2rem;
  background-color: #141516;
  border-radius: 50%;
  box-shadow: 1px 1px 2px 0 rgb(0 0 0 / 40%);
  transition: 0.3s;
}

:root[light-mode="dark"] .light-mode-button span:nth-child(1) {
  background-color: var(--app-bg-color);
  color: #141516;
}

:root[light-mode="dark"] .light-mode-button span:nth-child(2) {
  left: 5.5rem;
  background-color: #d6d7db;
}

.sun {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: none;
}

.moon {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

:root[light-mode="dark"] .sun {
  display: block;
}

:root[light-mode="dark"] .moon {
  display: none;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
}

.nav__menu-item {
  margin-right: 4rem;
  transition: all 0.3s ease;
  border-bottom: 0.3rem solid transparent;
  border-radius: 5px;
}

.nav__menu-link {
  padding-bottom: 0.5rem;
}

.nav__menu-item.active,
.nav__menu-item:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

/* Mobile Menu */

.mobile-menu {
  display: none;
  z-index: 100;
}

.mobile-menu__btn {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  height: 4.5rem;
  width: 4.5rem;
  text-align: center;
  background: var(--app-bg-color);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: right 0.3s ease;
  box-shadow: 0 0.8rem 1.5rem var(--border-light);
}

.mobile-menu__btn.click {
  right: 252px;
}

.mobile-menu__btn span {
  color: var(--primary-color);
  font-size: 28px;
  line-height: 45px;
  transition: all 0.3s ease-in;
}

.mobile-menu__btn.click span:before {
  content: "\f00d";
  color: var(--secondary-color);
}

.sidebar {
  position: absolute;
  width: 250px;
  height: 100vh;
  top: 2rem;
  right: -250px;
  background: var(--app-bg-color);
  transition: right 0.3s ease;
  direction: rtl;
  border-top-left-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar.show {
  right: 0px;
}

.sidebar .text {
  color: var(--text-color);
  font-size: 25px;
  font-weight: 600;
  line-height: 65px;
  text-align: center;
  background: var(--app-bg-color);
  letter-spacing: 1px;
  position: relative;
}

.sidebar ul {
  background: var(--app-bg-color);
  height: 65%;
  width: 100%;
}

.sidebar ul li {
  line-height: 60px;
  border-top: 1px solid var(--border-light);
}

.sidebar ul li:last-child {
  border-bottom: 1px solid var(--border-lighter);
}

.sidebar ul li a {
  position: relative;
  color: var(--text-color);
  text-decoration: none;
  font-size: 18px;
  padding-right: 55px;
  font-weight: 500;
  display: flex;
  align-items: center;
  width: 100%;
  border-right: 0.5rem solid transparent;
}

.sidebar ul li a span {
  padding-right: 0.5rem;
}

.mobile-menu__items.select a {
  color: var(--primary-color);
  background: var(--app-bg-color);
  border-right-color: var(--primary-color);
  transition: all 0.3s ease;
}

.sidebar ul .feat-show.show {
  display: block;
}

.sidebar ul .serv-show.show1 {
  display: block;
}

.sidebar ul li a:hover {
  color: var(--primary-color) !important;
  background: var(--hover-color) !important;
}

.light-mode-button--mobile {
  display: none;
}

/* ============== */
/*   header End   */
/* ============== */

/* ============== */
/*   home start   */
/* ============== */
.main {
  padding-top: 12rem;
}
.home {
  margin-top: 10rem;
  background-image: url("../images/shapes/header-shape.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  min-height: 93rem;
}
.home__name {
  font-size: 2.8rem;
  font-family: "Ravi SemiBold";
  color: var(--primary-color);
}

.home__name span {
  color: var(--secondary-color);
}

.home__title {
  font-size: 5rem;
  font-family: "Ravi Bold";
  color: var(--primary-color);
  margin: 0;
}
.home__caption {
  opacity: 71%;
}
.home-links {
  display: flex;
  margin-top: 4rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  justify-content: start;
}

.home__photo {
  background-image: url("../images/header-avatar.jpg");
  height: 57rem;
  width: 57rem;
  background-size: cover;
  border-radius: 100%;
  border: 2rem solid var(--section-bg-color);
  box-shadow: 0 0 5.9rem var(--shadow-color-first);
}

/* ============ */
/*   home End   */
/* ============ */

/* ================== */
/*   About us Start   */
/* ================== */

.about-us {
  margin-top: 8rem;
}

.about-us-wrapper {
  box-shadow: 0 0 5.9rem var(--shadow-color-first);
  background-color: var(--section-bg-color);
  display: flex;
  border-radius: 2rem;
  overflow: hidden;
}
.about-us__photo {
  flex-basis: 50%;
}
.about-us__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-us__content {
  flex-basis: 50%;
  color: var(--text-color);
  padding: 5rem 4.2rem 5rem 2rem;
}
.about-us__title {
  font-family: "Ravi SemiBold";
  font-size: 24px;
}
.about-us__description {
  margin-top: 1.7rem;
  margin-bottom: 6rem;
  padding-left: 2rem;
}
.about-us__list-title {
  font-family: "Ravi SemiBold";
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 1.4rem;
}
.about-us__list {
  margin-right: 1rem;
}
.about-us__list-item {
  position: relative;
  padding-right: 1.5em;
  margin-bottom: 0.8rem;
}

.about-us__list-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  background-color: var(--secondary-color);
}
.about-us-links {
  display: flex;
  margin-top: 3rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

/* ================ */
/*   About us End   */
/* ================ */

/* ================== */
/*   Services Start   */
/* ================== */

.services {
  margin-top: 8rem;
}

.service {
  padding: 8rem 3.5rem 6rem 3.5rem;

  text-align: center;
  color: #fff;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.service:hover {
  transform: scale(1.1);
}

.service__content {
  z-index: 1;
  position: relative;
}

.service__title {
  font-family: "Ravi Bold";
  font-size: 2.4rem;
  padding: 2.4rem 0 1.5rem 0;
}

.service__shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  margin: auto;
}

.service--purple {
  background-color: #8540ff;
  box-shadow: 0 0 3.5rem rgba(118, 113, 255, 0.35);
}
.service--yellow {
  background-color: #ffc50c;
  box-shadow: 0 0 3.5rem rgba(255, 197, 12, 0.35);
}
.service--pink {
  background-color: #ec407a;
  box-shadow: 0 0.3rem 3.5rem rgba(236, 64, 122, 0.35);
}
.service--orange {
  background-color: #ff6331;
  box-shadow: 0 0 2.8rem rgba(255, 99, 49, 0.35);
}
.service--blue {
  background-color: #13b6ff;
  box-shadow: 0 0 3.5rem rgba(19, 182, 255, 0.35);
}
.service--green {
  background-color: #49af46;
  box-shadow: 0 0 3.5rem rgba(73, 175, 70, 0.35);
}

/* ================ */
/*   Services End   */
/* ================ */

/* ================ */
/*   Resume Start   */
/* ================ */

.resume {
  background-color: var(--section-bg-color);
  box-shadow: 0 0 8rem rgba(19, 182, 255, 0.24);
  transform: translateZ(0) skewY(-6deg);
  padding: 10rem 0 15rem 0;
  margin-top: 8rem;
}

.resume__list {
  background-color: var(--app-bg-color);
  box-shadow: 0 0 6rem rgba(96, 233, 255, 0.27);
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  overflow: hidden;
}

.resume__list::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4rem;
  background: var(--primary-color);
  z-index: -1;
}

.resume__list-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0.8rem 0;
  cursor: pointer;
}

.resume__list-item:last-child {
  margin-bottom: 0;
}

.resume__list-item::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  width: 5.5rem;
  border-radius: 2.5rem;
  background: var(--primary-color);
  transition: all 0.3s ease-in;
  z-index: -1;
}

.resume__list-item--active span {
  color: #fff;
}

.resume__list-item--active::before {
  max-width: 27rem;
  width: 100%;
}

.resume__list-icon {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0 0.75rem;
}

.resume__list-name {
  font-family: "Ravi SemiBold";
  font-size: 1.8rem;
  color: var(--text-color);
  margin-right: 3.6rem;
  transition: all 0.3s ease-in;
}
.resume__content {
  border-right: 0.2rem solid var(--primary-color);
  padding-right: 4rem;
  padding-top: 1.5rem;
}

.resume__content,
.portfolio-content {
  visibility: hidden;
  opacity: 0;
  display: none;
}

.resume__content--show,
.portfolio-content--show {
  visibility: visible;
  opacity: 1;
  display: block;
  animation: FadeIn 1s ease-in-out;
}

@keyframes FadeIn {
  0% {
    display: block;
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.resume__content-wrapper {
  margin-bottom: 2rem;
  color: var(--text-color);
}

.resume__content-wrapper:last-child {
  margin-bottom: 0;
}

.resume__history {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.resume__content-title {
  color: #ff5823;
  font-family: "Ravi SemiBold";
  font-size: 2rem;
  position: relative;
}

.resume__content-title::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  top: 0;
  right: -4.9rem;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
  position: absolute;
  background: var(--primary-color);
}
.resume__content-date {
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 1.5rem;
  padding: 0.4rem 0.5rem;
  box-shadow: 0 0.3rem 0.7rem rgba(245, 127, 23, 0.24);
}
.resume__content-subtitle {
  padding: 1.4rem 0 0.7rem 0;
  font-family: "Ravi SemiBold";
  font-size: 1.6rem;
}

/* 

Resume Mobile Select

*/

.mobile-resume {
  display: none;
}

/* ============== */
/*   Resume End   */
/* ============== */

.Portfolio {
  margin-top: 8rem;
}

.Portfolio-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4.4rem;
  flex-wrap: wrap;
}
.Portfolio-list__item {
  color: var(--text-color);
  width: 15.5rem;
  height: 5rem;
  border-radius: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.Portfolio-list__item--active {
  color: #fff;
  background-color: var(--primary-color);
}

.swiper {
  height: 100%;
}

.slider_img {
  width: 100%;
  border-radius: 2rem;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px,
    rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.slider-btn {
  margin: 1rem auto 0 auto;
}

.swiper-pagination {
  position: static !important;
  margin-top: 3rem;
}

.swiper-pagination-bullet {
  width: 1.8rem !important;
  height: 1.8rem !important;
  background-color: #fff !important;
  border: 0.35rem solid #bfbebe;
  opacity: unset !important;
}

.swiper-pagination-bullet-active {
  border-color: var(--primary-color);
}

/* ================== */
/*   Packages Start   */
/* ================== */

.Packages {
  background-color: var(--section-bg-color);
  box-shadow: 0 0 8rem rgba(19, 182, 255, 0.24);
  transform: translateZ(0) skewY(-6deg);
  padding: 10rem 0 15rem 0;
  margin-top: 8rem;
}

.package-wrapper {
  box-shadow: 0 0 5.9rem var(--shadow-color-first);
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  overflow: hidden;
  background-color: var(--app-bg-color);
}
.package-wrapper__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 100%;
}
.orange--head {
  background-color: #ff6331;
}
.purple--head {
  background-color: #803afb;
}
.pink--head {
  background-color: #f5276c;
}
.package-wrapper__title {
  font-family: "Ravi SemiBold";
  font-size: 3.6rem;
  margin-top: 2.2rem;
}
.package-wrapper__price {
  font-family: "Ravi SemiBold";
  font-size: 1.8rem;
}
.package-wrapper__caption {
  margin-top: 0.9rem;
  margin-bottom: 3rem;
  font-size: 1.5rem;
}
.package-wrapper__options {
  margin-top: 4rem;
  margin-bottom: 3rem;
}
.package-wrapper__option {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-color);
}
.package-wrapper__option:last-child {
  margin-bottom: 0;
}
.Packages__btn {
  margin-bottom: 4.5rem;
}

/* ================ */
/*   Packages End   */
/* ================ */

/* ==================== */
/*   Contact Us Start   */
/* ==================== */

.Contact-us {
  margin-top: 8rem;
}

.Contact-us__Wrapper {
  background-image: url(../images/map-light.jpg);
  height: 80rem;
  position: relative;
  padding: 8rem 0;
}
.Contact-us__title {
  font-family: "Ravi Bold";
  font-size: 3.6rem;
  color: var(--primary-color);
  margin-bottom: 2.4rem;
}
.Contact-us__form {
  max-width: 50rem;
  max-height: 65rem;
  display: flex;
  flex-direction: column;
  padding: 4rem 4.5rem;
  background-color: var(--section-bg-color);
  box-shadow: 0 0 8.1rem rgba(19, 182, 255, 0.24);
  border-radius: 2rem;
  margin-left: auto;
}
.Contact-us__input,
.Contact-us__text {
  border: none;
  outline: none;
  padding: 1.5rem 3.4rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 5.9rem var(--shadow-color-first);
  border-radius: 1rem;
  color: var(--text-color);
}

.Contact-us__input::placeholder,
.Contact-us__text::placeholder {
  color: var(--text-color);
}

.Contact-us__text {
  resize: vertical;
  min-height: 5rem;
}
.Contact-us__btn {
  border: none;
  outline: none;
  background-color: var(--primary-color);
  padding: 1.5rem 3.4rem;
  border-radius: 1rem;
  color: #fff;
  font-family: "Ravi Bold";
  font-size: 1.8rem;
  cursor: pointer;
}
.Contact-us__pin {
  position: absolute;
  top: 34%;
  right: 63%;
  background: var(--app-bg-color);
  border-radius: 100%;
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Contact-us__pin-image {
  width: 2.5rem;
}

/* ================== */
/*   Contact Us End   */
/* ================== */

.footer {
  padding: 2.5rem 0;
}
.footer__Wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright {
  color: var(--text-color);
  font-family: "Ravi SemiBold";
  word-spacing: 0.3rem;
  letter-spacing: 0.2rem;
}
.footer__icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.footer__icon svg {
  fill: var(--text-color);
}

.footer__icon--wapp:hover {
  fill: #25d366;
  transition: all 0.3s ease;
}
.footer__icon--insta:hover {
  fill: #c13584;
  transition: all 0.3s ease;
}
.footer__icon--face:hover {
  fill: #1877f2;
  transition: all 0.3s ease;
}
.footer__icon--tele:hover {
  fill: #24a1de;
  transition: all 0.3s ease;
}
.footer__icon--youtube:hover {
  fill: #ff0000;
  transition: all 0.3s ease;
}
