@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-drag: none;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background: #0a0a0a;
  width: 100% !important;
  height: 100%;
  color: white;
  font-family: "Poppins", sans-serif;
}

section {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #2d3748;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #3f518b, #5573d5);
  border-radius: 4px;
}

::-moz-selection {
  background: #3e65b8;
  color: #fff;
}

::selection {
  background: #3e65b8;
  color: #fff;
}

@media screen and (max-width: 480px) {
  * {
    cursor: default !important;
  }
}

.gradient-text {
  background: linear-gradient(122.4deg, #40b3ff 9.03%, #407bff 86.36%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.gradient-fill {
  background: linear-gradient(122.4deg, #40b3ff 9.03%, #407bff 86.36%);
}

.section-heading-text {
  font-family: "Nunito", "Poppins", sans-serif;
  color: #8495b642;
  text-transform: uppercase;
  font-size: 72px;
  font-style: normal;
  font-weight: 900;
  line-height: 70px;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 80px;
}

.primary-text {
  font-family: "Nunito", "Poppins", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: left;
}

.secondary-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: left;
  color: #8495b6;
}

@media screen and (max-width: 768px) {
  .section-heading-text {
    font-size: 60px;
    margin-bottom: 40px;
  }
  .primary-text {
    font-size: 32px;
  }
  .secondary-text {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .section-heading-text {
    font-size: 50px;
  }
  .primary-text {
    font-size: 28px;
  }
  .secondary-text {
    font-size: 14px;
    line-height: 24px;
  }
}

section {
  padding: 100px 20px;
}

.container {
  height: 100%;
  max-width: 1200px;
  margin: auto;
}

#logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: fill 0.5s ease forwards 3.5s;
          animation: fill 0.5s ease forwards 3.5s;
}

#logo path:nth-child(1) {
  stroke-dasharray: 556.74px;
  stroke-dashoffset: 556.74px;
  -webkit-animation: line-anim 3s ease forwards;
          animation: line-anim 3s ease forwards;
}

#logo path:nth-child(2) {
  stroke-dasharray: 517.28px;
  stroke-dashoffset: 517.28px;
  -webkit-animation: line-anim 3s ease forwards 0.3s;
          animation: line-anim 3s ease forwards 0.3s;
}

#logo path:nth-child(3) {
  stroke-dasharray: 428.81px;
  stroke-dashoffset: 428.81px;
  -webkit-animation: line-anim 3s ease forwards 0.6s;
          animation: line-anim 3s ease forwards 0.6s;
}

#logo path:nth-child(4) {
  stroke-dasharray: 568.1px;
  stroke-dashoffset: 568.1px;
  -webkit-animation: line-anim 3s ease forwards 0.9s;
          animation: line-anim 3s ease forwards 0.9s;
}

#logo path:nth-child(5) {
  stroke-dasharray: 490.2px;
  stroke-dashoffset: 490.2px;
  -webkit-animation: line-anim 3s ease forwards 1.2s;
          animation: line-anim 3s ease forwards 1.2s;
}

#logo path:nth-child(6) {
  stroke-dasharray: 260.77px;
  stroke-dashoffset: 260.77px;
  -webkit-animation: line-anim 3s ease forwards 1.5s;
          animation: line-anim 3s ease forwards 1.5s;
}

@-webkit-keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes fill {
  from {
    fill: transparent;
  }
  to {
    fill: lightskyblue;
  }
}

@keyframes fill {
  from {
    fill: transparent;
  }
  to {
    fill: lightskyblue;
  }
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100vh;
  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;
  background: black;
  z-index: 1000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-animation: removePreloader 0.5s ease;
          animation: removePreloader 0.5s ease;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

#logo {
  width: 100%;
  padding: 0 20px;
}

@-webkit-keyframes removePreloader {
  from {
    opacity: 1;
    pointer-events: all;
  }
  to {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes removePreloader {
  from {
    opacity: 1;
    pointer-events: all;
  }
  to {
    opacity: 0;
    pointer-events: none;
  }
}

nav .nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 10vh;
  background-color: #161616;
  -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 100%;
  z-index: 100;
}

nav .nav-container .logo a {
  color: #8495b6;
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}

nav .nav-container .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 40%;
}

nav .nav-container .nav-links li {
  list-style: none;
}

nav .nav-container .nav-links a {
  color: #8495b6;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 8px;
}

nav .nav-container .nav-links a:hover {
  color: #e8e3e3;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #8495b6;
  margin: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  margin: auto;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 1024px) {
  nav .nav-links {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: absolute;
    right: 0px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    top: 8vh;
    background-color: #161616;
    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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100% !important;
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
    -webkit-transition: -webkit-transform 0.3s ease-in;
    transition: -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in;
    transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
    z-index: -4;
    padding: 20px 0;
  }
  .nav-links a {
    font-size: 20px;
    padding: 10px 30px;
  }
  .nav-links li {
    position: relative;
    opacity: 0;
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
    margin-bottom: 14px;
  }
  .nav-cover {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #161616;
    z-index: -3;
    -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.4);
  }
  .nav-links li.nav-active {
    opacity: 1;
  }
  .nav-overlay.nav-active {
    opacity: 1;
    pointer-events: auto;
  }
  .burger {
    display: block;
  }
}

.nav-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.toggle .line1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
          transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  -webkit-transform: rotate(45deg) translate(-5px, -6px);
          transform: rotate(45deg) translate(-5px, -6px);
}

#home {
  height: 100vh;
}

.hero {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero .hero-text h1 {
  font-size: 42px;
  color: #8495b6;
  font-family: "Nunito", "Poppins", sans-serif;
  line-height: 60px;
}

.hero .hero-text span {
  font-size: 72px;
}

.hero .hero-text p {
  color: #8495b6;
  margin: 20px 0;
}

.hero .hero-text p .gradient-text {
  font-size: 20px;
  font-weight: 600;
}

.hero .hero-text button {
  padding: 8px 20px;
  color: #e8e3e3;
  background-color: #161616;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

.hero .hero-text button:focus {
  outline: none;
}

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

#about {
  background-color: #161616;
}

#about .about {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#about .about .about-image {
  text-align: center;
}

#about .about .about-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#about .about .about-text p {
  color: #8495b6;
}

.experience-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.experience-heading .timeline {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
}

.experience-heading .timeline .line {
  width: 1px;
  height: 100%;
  background: linear-gradient(122.4deg, #40b3ff 9.03%, #407bff 86.36%);
}

.experience-heading p {
  margin-bottom: 20px;
}

.work-experience {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.work-experience .experience {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.work-experience .experience .timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.work-experience .experience .timeline img {
  background: linear-gradient(122.4deg, #40b3ff 9.03%, #407bff 86.36%);
  padding: 1px;
  border-radius: 4px;
}

.work-experience .experience .timeline .line {
  width: 1px;
  height: 100%;
  background: linear-gradient(122.4deg, #40b3ff 9.03%, #407bff 86.36%);
}

.work-experience .experience .details {
  background-color: #161616;
  padding: 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  border-radius: 8px;
}

.work-experience .experience .details p {
  color: #8495b6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.work-experience .experience .details p:nth-child(1) {
  color: #e8e3e3;
  font-size: 20px;
}

.work-experience .experience .details p:nth-child(4) {
  margin-top: 10px;
}

.services-section {
  padding: 0 20px;
  margin-bottom: -220px;
}

.services-section .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.services-section .container .services {
  background-color: #212121;
  padding: 40px;
  border-radius: 8px;
}

.services-section .container .services img {
  width: 100px;
}

.services-section .container .services p {
  margin-top: 20px;
}

.services-section .owl-dot span {
  opacity: 0.8;
  background-color: transparent !important;
  border: 1px solid #8495b6 !important;
}

.services-section .owl-dot:focus {
  outline: none !important;
}

.services-section .owl-dot.active span {
  border: none !important;
  background-color: #8495b6 !important;
}

#projects {
  background-color: #161616;
  position: relative;
}

#projects .section-heading-text {
  margin-top: 200px;
}

#projects .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}

#projects .container .project {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

#projects .container .project .project-text .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}

#projects .container .project .project-text .tags p {
  padding: 4px 15px;
  border-radius: 4px;
  height: 100%;
  background-color: #0a0a0a;
}

#projects .container .project .project-text button {
  padding: 10px 20px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
  color: #e8e3e3;
  cursor: pointer;
}

#projects .container .project .project-text button:focus {
  outline: none;
}

#projects .container .project .project-image img {
  width: 100%;
}

#projects .more-projects {
  padding: 40px 0;
  margin: auto;
  text-align: center;
}

#projects .more-projects p {
  text-align: center;
  margin-bottom: 15px;
}

#projects .more-projects button {
  padding: 12px 40px;
  border-radius: 8px;
  border: none;
  color: #e8e3e3;
  cursor: pointer;
  background-color: #0a0a0a;
}

#projects .more-projects button:focus {
  outline: none;
}

#testimonials .testimonials .testimonial {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  gap: 20px;
}

#testimonials .testimonials .testimonial .testimonial-image {
  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;
}

#testimonials .testimonials .testimonial .testimonial-text p {
  margin-bottom: 20px;
}

#testimonials .testimonials .testimonial .testimonial-text .author-description .author-name {
  margin-bottom: 8px;
  font-size: 20px;
}

#testimonials .testimonials .testimonial .testimonial-text .author-description p {
  font-size: 14px;
  width: 50%;
}

footer {
  background-color: #161616;
}

footer .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

footer .container .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

footer .container .left .send-mail h1 {
  font-size: 42px;
  line-height: 50px;
  color: #8495b6;
}

footer .container .left .send-mail h1 span {
  color: #e8e3e3;
}

footer .container .left .send-mail button {
  padding: 12px 40px;
  border-radius: 8px;
  border: none;
  color: #e8e3e3;
  cursor: pointer;
  margin: 15px 10px 0 0;
  background-color: #0a0a0a;
}

footer .container .left .send-mail button:focus {
  outline: none;
}

footer .container .left .social-links h1 {
  color: #8495b6;
}

footer .container .left .social-links .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

footer .container .left .social-links .socials .icon {
  margin: 10px 0;
  padding: 10px;
  background: linear-gradient(122.4deg, #40b3ff 9.03%, #407bff 86.36%);
  border-radius: 50%;
  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;
}

footer .container .right {
  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;
}

footer .footer-text hr {
  margin: 80px auto 40px;
  text-align: center;
  border: 2px solid #0a0a0a;
}

footer .footer-text .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .hero {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .hero .hero-text h1 span {
    font-size: 50px;
  }
  .hero .hero-image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .hero .hero-image img {
    width: 100%;
  }
  .about {
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
  }
  .work-experience {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .project {
    -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
  }
  #testimonials .testimonials .testimonial {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  #testimonials .testimonials .testimonial .testimonial-text .author-description p {
    width: 100%;
  }
  footer .container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  footer .container .right {
    display: none;
  }
  footer .footer-text .container p:nth-child(3) {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .about-image img {
    width: 80%;
  }
  .experience-heading .timeline img {
    width: 20px;
  }
  .experience .timeline img {
    width: 40px;
  }
  .testimonial-image img {
    width: 50%;
  }
}

/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.contact-input,
.contact-textarea {
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #2d3748;
  background: #0a0a0a;
  color: #e8e3e3;
  font-family: "Poppins", sans-serif;
}
.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #407bff;
}
.contact-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-submit {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
  color: #e8e3e3;
  cursor: pointer;
  background: linear-gradient(122.4deg, #40b3ff 9.03%, #407bff 86.36%);
  transition: background 0.2s;
}
.contact-submit:hover {
  background: linear-gradient(122.4deg, #407bff 9.03%, #40b3ff 86.36%);
}
/*# sourceMappingURL=style.css.map */