/* TABLE OF CONTENTS */
/* ------------------
1. General
2. Navbar
3. Banner
4. About
5. Services
6. Portfolio
6. Contact
7. Footer
-------------------- */

/* 1 General */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  box-sizing: border-box;
  margin: 0%;
  padding: 0%;
  background-color: var(--secondary-color);
}

body {
  margin: 0;
  font-family: var(--primary-font);
  background-color: var(--secondary-color);
}

:root {
  /* Background Color */
  --font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --primary-color: #59aef8;
  --secondary-color: #181a1b;
  --bg-dark-blue: #091020;
  --bg-white: #fff;
  --gray-color: #c6c9d8bf;
  --gradient-color: linear-gradient(
    -224deg,
    var(--primary-color) 0,
    #337dff 100%
  );
  --gradient-text: linear-gradient(
    120deg,
    #1c99fe 20.69%,
    #7644ff 50.19%,
    var(--primary-color) 79.69%
  );
  /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='var(--primary-color)', endColorstr='var(--secondary-color)', GradientType=1); */

  /* Text Color */
  --primary-font: "Poppins", sans-serif;
  --primary-text: #fd4766;
  --text-gray: #c6c9d8bf;
  --text-white: #fff;
}

a {
  text-decoration: none;
}

/* custom css 01 */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark-blue);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

::-webkit-scrollbar-corner {
  background: var(--gray-color);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

section {
  padding: 50px 0px;
}

.main-btn {
  display: inline-block;
  border-radius: 50px;
  transition: all 0.4s ease-in-out;
  padding: 10px 27px;
  background-color: transparent;
  border: 2px solid var(--gray-color);
  color: var(--text-gray);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
}

.main-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
}

h1 {
  font-size: 49px !important;
  line-height: 65px !important;
  font-weight: 700 !important;
  color: var(--text-white) !important;
  margin-bottom: 20px !important;
  letter-spacing: 1.4px;
}

h1 span {
  color: var(--primary-color);
  font-size: 40px;
}

h2 {
  font-size: 50px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: px;
  color: var(--text-white) !important;
  margin-bottom: 15px;
}

h3 {
  margin-bottom: 19px;
  font-weight: 600;
  font-size: 23px !important;
  color: rgb(226, 226, 226) !important;
}

h6 {
  color: var(--text-gray) !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  letter-spacing: 4px !important;
  display: block !important;
  margin-bottom: 20px !important;
}

p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1px;
  font-weight: 400;
}

.subtitle {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 18px;
  background: -webkit-linear-gradient(
    120deg,
    var(--primary-color) 20.69%,
    #ff5675 79.69%
  );
  font-size: 16px;
  margin-bottom: 12px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

input:hover,
input:focus,
textarea:focus,
textarea:hover,
button {
  outline: none !important;
  box-shadow: none !important;
}

/* 2 navbar */

.header_wrapper .navbar {
  padding: 15px 0;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.header_wrapper .navbar-brand img {
  max-width: 120px;
  height: auto;
}

.header_wrapper .navbar-toggler {
  border: 0;
  color: var(--gray-color);
  line-height: 2;
}

.header_wrapper .navbar-toggler:focus {
  box-shadow: none;
}

.header_wrapper .nav-item {
  margin: 0 10px;
}

.header_wrapper .nav-item .nav-link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-gray);
  display: inline-block;
}

.header_wrapper .nav-item .nav-link::after {
  position: absolute;
  content: "";
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: 0.3s;
  bottom: 0;
}

.header_wrapper .nav-item .nav-link.active::after,
.header_wrapper .nav-item .nav-link:hover::after {
  width: 100%;
}

.header_wrapper .nav-item .nav-link.active,
.header_wrapper .nav-item .nav-link:hover {
  color: var(--text-white);
}

.header-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--secondary-color);
  -webkit-box-shadow: 0 6px 10px 0 rgba(222, 216, 238, 0.05);
  box-shadow: 0 6px 10px 0 rgba(239, 234, 255, 0.05);
}

.header-scrolled .nav-item .nav-link.active,
.header-scrolled .nav-item .nav-link:hover {
  color: var(--primary-text);
}

/* 3 banner */

.banner_wrapper {
  width: 100%;
  height: auto;
  min-height: 657px;
  background: var(--secondary-color);
  /*image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 200px 0 100px 0;
}

.col-md-8 {
  position: relative;
  padding: 0;
}

.col-md-8::before,
.col-md-8::after {
  content: "";
  position: absolute;
  top: 95px;
  bottom: 0;
  height: 160px;
  width: 10px;
  /* Adjust the width of the bars as needed */
  background-color: blue;
}

.col-md-8::before {
  left: 0px;
}

.col-md-8::after {
  right: 0px;
}

/* 4 about */

#me {
  color: rgb(163, 163, 163);
}

.about_wrapper ul li .nav-link {
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.45s cubic-bezier(0, 0, 0.2, 1);
  display: inline-block;
  color: var(--text-gray);
  border: 0;
  transition: 0.3s;
}

.about_wrapper ul li .nav-link.active {
  background-color: var(--primary-color);
}

.about_wrapper .single-progress {
  margin-top: 26px;
  position: relative;
  overflow: hidden;
}

.about_wrapper .single-progress .progress {
  height: 4px;
  border-radius: 50px;
  box-shadow: none;
  background-color: var(--bg-white);
  overflow: visible;
}

.about_wrapper .progress-bar {
  background-color: var(--primary-color);
  background-image: var(--gradient-color);
}

.about_wrapper .single-progress h6 {
  text-align: left;
}

.about_wrapper .single-progress .label {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--text-gray);
  font-size: 15px;
}

.about_wrapper .tab-pane li {
  color: var(--gray-color);
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 300;
  list-style: none;
}

.about_wrapper .tab-pane li a {
  font-weight: 500;
  display: block;
  color: var(--text-gray);
}

/* 4 Services */
.services_wrapper .card {
  background-color: var(--bg-dark-blue);
  cursor: pointer;
  transition: transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  box-shadow: 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
}

.services_wrapper .card:hover {
  box-shadow: 0px 2px 70px 0px rgb(253 71 102 / 5%);
  transform: translateY(-5px);
}

/* 2 services */
.services_wrapper .card {
  background-color: var(--bg-dark-blue);
  cursor: pointer;
  transition: transform 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  box-shadow: 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
}

.services_wrapper .card:hover {
  box-shadow: 0px 2px 70px 0px rgb(253 71 102 / 5%);
  transform: translateY(-5px);
}

/* 5 portfolio */
.portfolio_wrapper .card {
  height: 100%;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid rgb(145, 156, 160);
  cursor: pointer;
  box-shadow: 0 0 26px 5px var(--bg-dark-blue);
}

.portfolio_wrapper .card span {
  transition: background-position 4s ease-in-out 0s;
  width: 100%;
  height: 100%;
  background-position: top center;
  background-size: cover;
}

.portfolio_wrapper .card:hover span {
  background-position: bottom center;
}

/* 6 contact */

input {
  background-color: #181a1b !important;
  color: white !important;
}

.contact_wrapper .form-control,
.contact_wrapper textarea {
  background: transparent;
  border-color: var(--gray-color);
  color: var(--text-gray);
  font-size: 15px;
  font-weight: 400;
  padding: 10px 20px;
}

.contact_wrapper .form-control:hover,
.contact_wrapper textarea:hover,
.contact_wrapper .form-control:focus,
.contact_wrapper textarea:focus {
  border-color: var(--primary-color);
}

.contact_wrapper .call_details {
  color: var(--text-gray);
}

.contact_wrapper .call_details a {
  font-weight: 700;
  color: var(--text-gray);
}
::-webkit-input-placeholder {
  color: #666;
}
:-moz-placeholder {
  color: #666;
}
::-moz-placeholder {
  color: #666;
}
:-ms-input-placeholder {
  color: #666;
}

/* 7 footer */

.footer_wrapper {
  padding: 20px 0;
  border: solid 4px var(--text-gray);
  border-bottom: none;
  border-left: none;
  border-right: none;
}

.footer_wrapper .footer-logo img {
  width: 50px;
}

.footer_wrapper .social-icon li {
  margin: 6px;
}

.footer_wrapper .social-icon a {
  width: 35px;
  height: 35px;
  line-height: 30px;
  font-size: 14px;
  display: inline-block;
  border: 2px solid var(--text-gray);
  color: var(--text-gray);
  text-align: center;
  border-radius: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-icon a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  box-shadow: 0 10px 15px 0 rgb(0 0 0 / 10%);
  transform: translateY(-3px);
}
.footer_wrapper .copyright-text p {
  font-size: 13px;
  line-height: 20px;
}
.footer_wrapper .copyright-text a {
  color: var(--primary-color);
}

/* --------scroll button-------- */

#scroll-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  opacity: 0.8;
}

#scroll-btn.show {
  display: block;
}