/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* Custom CSS Styles */

/* Common CSS Styles Start*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
body {
  width: 100%;
  height: 100%;
}

.dark-theme {
  --sp-color: rgb(17, 117, 203);
  --ssp: rgb(169, 215, 255);
  --pps: rgb(255, 176, 242);
  --primery-color: #fff;
  --secondary-color: #000000;
  --gray-color: #bebbbb;
}

:root {
  --sp-color: rgb(226, 135, 6);
  --pps: rgb(169, 215, 255);
  --ssp: rgb(255, 176, 242);
  --primery-color: #000000;
  --secondary-color: #fff;
  --gray-color: #bebbbb;
}

body::-webkit-scrollbar {
  display: none;
}

section {
  height: 100%;
  width: 100%;
  background-color: var(--primery-color);
  border: 1px solid var(--secondary-color);
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

i {
  font-size: 1.6rem;
  color: var(--secondary-color);
  cursor: pointer;
}

.image {
  position: relative;
  width: 400px;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
}

.image::before {
  content: "";
  position: absolute;
  inset: -10px 120px;
  background: -o-linear-gradient(135deg, rgb(255, 149, 0), rgb(0, 136, 255));
  background: linear-gradient(315deg, rgb(255, 149, 0), rgb(0, 136, 255));
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: animate 4s linear infinite;
  animation: animate 4s linear infinite;
}

.image:hover::before {
  inset: -20px 0px;
}

.image::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: #162052;
  border-radius: 50%;
  z-index: 1;
}

.content {
  position: absolute;
  inset: 30px;
  border: 6px solid #070a1c;
  z-index: 3;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  pointer-events: none;
  z-index: 3;
  text-transform: uppercase;
}

.content h2 {
  position: relative;
  font-size: 1.5em;
  text-align: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.content h2 span {
  font-weight: 600;
  font-size: 0.75em;
  color: var(--sp-color);
}

.image:hover .content img {
  opacity: 0;
}

@-webkit-keyframes animate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  0% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  0% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Common CSS Styles End*/

/* Header Styles Start*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 8%;
  background-color: var(--primery-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--secondary-color);
  z-index: 10000;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(
    left,
    transparent,
    var(--gray-color),
    transparent
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(var(--gray-color)),
    to(transparent)
  );
  background: linear-gradient(
    90deg,
    transparent,
    var(--gray-color),
    transparent
  );
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.header:hover::before {
  left: 100%;
}

.logo {
  color: var(--sp-color);
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: default;
}

.logo_img {
  width: 2rem;
}

.navbar a {
  color: var(--secondary-color);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-left: 35px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: none;
}

.navbar a:hover {
  color: var(--sp-color);
}

#menu-icon {
  font-size: 1.8rem;
  color: var(--secondary-color);
  display: none;
}

header .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Header Styles End*/

/* Hero Section Start */

.hero {
  min-height: 100vh;
  width: 100%;
  padding: 0 8%;
  padding-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  background-color: var(--primery-color);
}

/* Hero Section End */

/* About Section End */
.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 5%;
  gap: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.social-icons .icon i:hover {
  scale: 1.1;
  color: var(--sp-color);
}

.content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 55%;
  padding: 0 20px;
  z-index: 111;
}

.content-wrapper h1 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  line-height: 2.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--secondary-color);
}

.content-wrapper h1 span {
  color: var(--sp-color);
}

.content-wrapper h2 {
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--secondary-color);
}

.content-wrapper p {
  margin: 10px 0;
  margin-bottom: 10px;
  width: 100%;
  color: var(--secondary-color);
  font-size: 1rem;
  text-align: justify;
}

.content-wrapper h3 {
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--secondary-color);
}

.content-wrapper a {
  margin-top: 10px;
  padding: 8px 30px;
  width: 200px;
  height: 50px;
  background-color: var(--sp-color);
  outline: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primery-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 1.5px;
  position: relative;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  cursor: pointer;
}

.content-wrapper a:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  bottom: -5px;
  right: -5px;
  background-color: var(--secondary-color);
  z-index: -1;
}

.content-wrapper a:hover {
  background-color: var(--secondary-color);
}

.content-wrapper a:hover::after {
  background-color: var(--sp-color);
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 8%;
}

/* About Section End */

/* .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  min-height: 100vh;
  background: var(--primery-color);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.wrapper {
  width: 715px;
  background: var(--secondary-color);
  border-radius: 5px;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
.wrapper header {
  font-size: 22px;
  font-weight: 600;
  padding: 20px 30px;
  color: var(--primery-color);
  border-bottom: 1px solid var(--primery-color);
}
.wrapper form {
  margin: 35px 30px;
}
.wrapper form.disabled {
  pointer-events: none;
  opacity: 0.7;
}
form .dbl-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.dbl-field .field {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: calc(100% / 2 - 13px);
}
.wrapper form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: var(--sp-color);
  font-size: 17px;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 18px 0 48px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid var(--primery-color);
}
.field input::-webkit-input-placeholder,
.message textarea::-webkit-input-placeholder {
  color: #ccc;
}
.field input::-moz-placeholder,
.message textarea::-moz-placeholder {
  color: #ccc;
}
.field input:-ms-input-placeholder,
.message textarea:-ms-input-placeholder {
  color: #ccc;
}
.field input::-ms-input-placeholder,
.message textarea::-ms-input-placeholder {
  color: #ccc;
}
.field input::-webkit-input-placeholder,
.message textarea::-webkit-input-placeholder {
  color: #ccc;
}
.field input::-moz-placeholder,
.message textarea::-moz-placeholder {
  color: #ccc;
}
.field input:-ms-input-placeholder,
.message textarea:-ms-input-placeholder {
  color: #ccc;
}
.field input::-ms-input-placeholder,
.message textarea::-ms-input-placeholder {
  color: #ccc;
}
.field input::-webkit-input-placeholder,
.message textarea::-webkit-input-placeholder {
  color: #ccc;
}
.field input::-moz-placeholder,
.message textarea::-moz-placeholder {
  color: #ccc;
}
.field input:-ms-input-placeholder,
.message textarea:-ms-input-placeholder {
  color: #ccc;
}
.field input::-ms-input-placeholder,
.message textarea::-ms-input-placeholder {
  color: #ccc;
}
.field input::placeholder,
.message textarea::placeholder {
  color: #ccc;
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid var(--sp-color);
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: var(--sp-color);
}
form .message {
  position: relative;
}
form .message i {
  top: 30px;
  font-size: 20px;
}
form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 15px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
.message textarea:focus {
  padding-top: 14px;
}
form .button-area {
  margin: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.button-area button {
  color: var(--primery-color);
  border: none;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: var(--sp-color);
  -webkit-transition: background 0.8s ease-in-out;
  -o-transition: background 0.8s ease-in-out;
  transition: background 0.8s ease-in-out;
}
.button-area button:hover {
  background: transparent;
  border: 1px solid var(--sp-color);
}
.button-area span {
  font-size: 17px;
  margin-left: 30px;
  display: none;
}
@media (max-width: 600px) {
  .wrapper header {
    text-align: center;
  }
  .wrapper form {
    margin: 35px 20px;
  }
  form .dbl-field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0px;
  }
  form .dbl-field .field {
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
  }
  form .message textarea {
    resize: none;
  }
  form .button-area {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .button-area button {
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
  }
  .button-area span {
    margin: 20px 0 0;
    text-align: center;
  }
} */

/*Footer*/

/* Footer Section Start */

/* The footer is fixed to the bottom of the page */

.footer-distributed {
  background-color: var(--secondary-color);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px;
  padding: 50px 50px 60px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
  width: 30%;
}

.footer-distributed h3 {
  color: var(--primery-color);
  font-size: 2rem;
  margin: 0;
}

.footer-distributed h3 span {
  color: var(--sp-color);
}

/* Footer links */

.footer-distributed .footer-links {
  color: var(--primery-color);
  margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-company-name {
  color: var(--primery-color);
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
  width: 35%;
}

.footer-distributed .footer-center i {
  background-color: var(--primery-color);
  color: var(--secondary-color);
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: var(--primery-color);
  vertical-align: middle;
  margin: 0;
}

.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer-distributed .footer-center p a {
  color: var(--sp-color);
  text-decoration: none;
}

/* Footer Right */

.footer-distributed .footer-right {
  width: 30%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: var(--primery-color);
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: var(--primery-color);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons {
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: var(--primery-color);
  color: var(--secondary-color);
  border-radius: 2px;
  font-size: 20px;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 3px;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}

.footer-distributed .footer-icons a:hover {
  background-color: var(--sp-color);
}

.footer-links a:hover {
  color: var(--sp-color);
}

/* Footer Section End */

/* BREAKPOINTS */

/* Media Query Section Start */

@media (max-width: 991px) {
  .header {
    padding: 1.25rem 4%;
  }

  .hero {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
  }

  .content-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    margin: 0;
    padding: 0;
  }

  .social-icons {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .content-wrapper {
    margin-top: 40px;
    width: 70%;
  }
  .social-icons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 50px 0;
    width: 65%;
  }
}

@media (max-width: 880px) {
  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer-distributed .footer-center i {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  #menu-icon {
    display: block;
  }
  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0.5rem 4%;
    display: none;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid var(--secondary-color);
  }

  .image {
    width: 250px;
    height: 250px;
  }

  .image::before {
    inset: -10px 80px;
  }

  .navbar.active {
    display: block;
  }
  .navbar a {
    display: block;
    margin: 1.5rem 0;
    color: #000;
  }
  .content-wrapper {
    width: 100%;
  }

  .content-wrapper h1 {
    font-size: 1.7rem;
  }
}

@media (max-width: 500px) {
  .content-wrapper {
    width: 100%;
  }
}

/* Media Query Section End */
