* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #ededed;
  background: #061521;
  overflow-x: hidden;
  width: 100vw;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10px;
  background: rgba(6, 21, 33, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: background 0.3s;
}

.logo {
  position: relative;
  font-size: 25px;
  color: #ededed;
  text-decoration: none;
  font-weight: 600;
  z-index: 1001;
}

.navbar {
  display: flex;
  margin-right: 30px;
}

.navbar a {
  font-size: 18px;
  color: #ededed;
  text-decoration: none;
  font-weight: 500;
  margin-left: 35px;
  transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #a1b5ff;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #ededed;
  margin: 3px 0;
  transition: 0.3s;
}

/* Home Section */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 10% 50px;
  position: relative;
  overflow: hidden;
}

.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #061521;
  z-index: -2;
}

.my-img {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 800px;
  height: 80vh;
  background: url("Images/DSC_1819.jpg") no-repeat;
  background-size: 50% auto;
  background-position: top;
  transform: scaleX(-1);
}

.home-imghover::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  animation: showRight 1s ease forwards;
  animation-delay: 3s;
  z-index: 100;
}

.home-imghover:hover {
  background: #061521;
  opacity: 0.8;
}

.home-content {
  max-width: 600px;
  width: 100%;
}

.home-content h1 {
  position: relative;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.home-content h3 {
  position: relative;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #a1b5ff;
  margin-bottom: 15px;
}

.home-content p {
  position: relative;
  font-size: 16px;
  margin: 20px 0 40px;
  line-height: 1.6;
}

.btn-box {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-box a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  background: #a1b5ff;
  border: 2px solid #a1b5ff;
  border-radius: 8px;
  font-size: 18px;
  color: #061521;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s;
  min-width: 250px;
}

.button-icon {
  margin-right: 8px;
  font-size: 1.2rem;
}

.btn-box a:nth-child(2) {
  background: transparent;
  color: #a1b5ff;
}

.btn-box a:hover {
  background: #061521;
  color: #a1b5ff;
}

.contact-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  height: 3rem;
  margin: 0 5rem 0 5rem;
}

.home-social {
  margin-left: 8rem;
  position: absolute;
  bottom: 1.8rem;
  left: 0;
  display: flex;
  align-items: center;
  column-gap: 3rem;
}
.home-social-follow {
  font-weight: 500;
  position: relative;
}
.home-social-follow::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 2px;
  background-color: #ededed;
  right: -40%;
  top: 50%;
}
.home-social-links {
  display: inline-flex;
  column-gap: 1rem;
}
.home-social-link {
  font-size: 1.08rem;
  color: #ffffff;
  transition: 0.4s;
}
.home-social-link:hover {
  transform: translateY(0.25rem);
  color: #a1b5ff;
}
/* .my-info {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
}

.info-title,
.info-subtitle {
  font-size: 14px;
}

.info-title {
  font-weight: 600;
}

.info-icon {
  font-size: 1.8rem;
  color: #a1b5ff;
  margin-right: 0.6rem;
} */

/* About Section */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.about-container {
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: 1rem;
}

.about-img-border {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0.2rem;
  border: 2px solid #05263e;
  border-radius: 0.75rem;
  background-color: #0b2435;
  max-width: 300px;
  max-height: 380px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  border-radius: 0.75rem;
  height: 100%;
}

.about-data {
  flex: 1;
  margin: 2rem;
}

.about-heading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #a1b5ff;
}

.about-description {
  text-align: justify;
  margin: 2rem;
  line-height: 1.6;
}

.about-info {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.about-box {
  text-align: center;
  border-radius: 0.25rem;
  padding: 1rem 1.25rem;
  background-color: #061521;
  flex: 1;
  min-width: 140px;
}

.about-icon {
  font-size: 1.5rem;
  color: #a1b5ff;
  margin-bottom: 0.5rem;
}

.about-title {
  font-size: 1.1rem;
}

.about-subtitle {
  font-size: 0.875rem;
}

.contact-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  height: 3rem;
}

/* Services Section */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.services-content {
  position: relative;
  background-color: #0b2435;
  padding: 6rem 0 2rem 2.5rem;
  border-radius: 0.25rem;
  text-align: left;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-icon {
  display: block;
  font-size: 1.8rem;
  color: #a1b5ff;
  margin-bottom: 1rem;
}

.services-title {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.services-button {
  color: #a1b5ff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  cursor: pointer;
}

.services-button-icon {
  font-size: 1rem;
  transition: 0.4s;
}

.services-button:hover .services-button-icon {
  transform: translateX(0.25rem);
}

.services-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.active-modal {
  opacity: 1;
  visibility: visible;
}

.services-modal-content {
  width: 90%;
  max-width: 500px;
  position: relative;
  background-color: #0b2435;
  padding: 4.5rem 2.5rem 2.5rem;
  border-radius: 0.5rem;
  max-height: 90vh;
  overflow-y: auto;
}

.services-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #a1b5ff;
  cursor: pointer;
}

.services-modal-title,
.services-modal-description {
  text-align: center;
}

.services-modal-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.services-modal-description {
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.services-modal-services {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.services-modal-service {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.services-modal-icon {
  color: #a1b5ff;
  font-size: 1.1rem;
}

.services-modal-info {
  font-size: 0.875rem;
}

/* Main - Work */
.work {
  background-color: #061521;
  padding: 4rem 0;
}

.work-container {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  padding-top: 1rem;
  flex-wrap: wrap;
}
.work-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.75rem;
  margin-bottom: 2rem;
}
.work-item {
  cursor: pointer;
  color: #ededed;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
  border-radius: 0.5rem;
}
.work-card {
  background-color: #0b2435;
  padding: 1.25rem;
  border-radius: 0.5rem;
  width: 300px;
  height: 250px;
}
.portfolio-item-details {
  display: none;
}
.work-img {
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  width: 200px;
}
.work-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.work-button {
  color: #a1b5ff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  cursor: pointer;
}
.work-button-icon {
  font-size: 1rem;
  transition: 0.4s;
}
.work-button:hover .work-button-icon {
  transform: translateX(0.25rem);
}
.active-work {
  background-color: #a1b5ff;
  color: #05263e;
}

.portfolio-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(28, 27, 66, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: 0.4s;
}
.portfolio-popup.open {
  opacity: 1;
  visibility: visible;
}
.portfolio-popup-inner {
  background-color: #05263e;
  width: 900px;
  height: 400px;
  border-radius: 0.5rem;
  padding: 2.5rem;
  position: relative;
}
.portfolio-popup-content {
  display: flex;
  align-items: center;
  column-gap: 3rem;
}
.portfolio-popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #a1b5ff;
  cursor: pointer;
}
.portfolio-popup-img {
  border-radius: 0.5rem;
  width: 360px;
  height: 300px;
}
.portfolio-popup-subtitle {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.details-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.details-description {
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.details-info li {
  margin-bottom: 0.75rem;
  text-transform: capitalize;
  font-size: 0.875rem;
  display: flex;
  column-gap: 0.5rem;
}
.details-info li:last-child {
  margin-bottom: 0;
}
.details-info li span {
  font-weight: normal;
}
.details-info li a {
  text-transform: lowercase;
  color: #a1b5ff;
}

/* Main - Testimonials */

.testimonials-container {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.swiper {
  width: 100%;
  height: 100%;
  padding: 30px 10px 60px;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.testimonial-card {
  background-color: #0b2435;
  margin: 3rem;
  padding: 2rem;
  border-radius: 0.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
  display: inline-flex;
  font-size: 1.5rem;
  color: #a1b5ff;
  margin-bottom: 1rem;
}

.testimonial-description {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  text-align: justify;
  line-height: 1.6;
  flex-grow: 1;
}

.testimonial-date {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #a1b5ff;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #a1b5ff;
}

.testimonial-profile-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: #a1b5ff;
}

.testimonial-profile-detail {
  font-size: 0.875rem;
  display: block;
  color: #ccc;
}

.testimonial-profile-data {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: #a1b5ff;
  background: rgba(161, 181, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(161, 181, 255, 0.2);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background-color: #05263e;
  opacity: 1;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background-color: #a1b5ff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .testimonials-container {
    padding: 0 10px;
  }

  .swiper {
    padding: 20px 5px 50px;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .swiper {
    padding: 30px 40px 60px;
  }
}

/* Contact Section */
#contact {
  background-color: #061521;
  padding: 4rem 0;
}

.contact-container {
  display: flex;
  column-gap: 3rem;
  justify-content: center;
  align-items: center;
}
.contact-info {
  display: grid;
  row-gap: 1rem;
}
.contact-card {
  background-color: #0b2435;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}
.contact-card-icon {
  font-size: 1.8rem;
  color: #a1b5ff;
  margin-bottom: 0.25rem;
}
.contact-card-title,
.contact-card-data {
  font-size: 0.875rem;
}
.contact-card-title {
  font-weight: 500;
}
.contact-card-data {
  display: block;
  margin-bottom: 0.75rem;
}
.contact-button {
  color: #a1b5ff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.25rem;
  cursor: pointer;
  text-decoration: none;
}
.contact-button-icon {
  font-size: 1rem;
  transition: 0.4s;
}
.contact-button:hover .contact-button-icon {
  transform: translateX(0.25rem);
}

.input-container {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1.9rem;
}
.input {
  width: 100%;
  border: 2px solid #05263e;
  background-color: transparent;
  padding: 0.6rem 1.2rem;
  color: #a1b5ff;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-radius: 0.5rem;
  outline: none;
  transition: 0.4s;
}
textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 140px;
  border-radius: 0.5rem;
  resize: none;
  font-family: "Times New Roman", Times, serif;
}
.input-container label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #a1b5ff;
  font-size: 1rem;
  font-weight: 500;
  pointer-events: none;
  z-index: 15;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}
.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.875rem;
  padding: 0 0.4rem;
  pointer-events: none;
  z-index: 15;
  color: transparent;
}
.input-container span::before,
.input-container span::after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  height: 5px;
  background-color: #a1b5ff;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
.input-container span::before {
  left: 50%;
}
.input-container span::after {
  right: 50%;
}
.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.75rem;
}
.input-container.focus span::before,
.input-container.focus span::after {
  width: 50%;
  opacity: 1;
}
/* Responsive Design */
@media screen and (max-width: 992px) {
  .about-container {
    flex-direction: column;
    gap: 2rem;
  }

  .about-img-border {
    max-width: 400px;
    width: 100%;
  }

  .portfolio-popup-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .portfolio-popup-img {
    width: 100%;
  }

  .portfolio-popup-inner {
    width: 80%;
    height: 650px;
    border-radius: 0.5rem;
    padding: 2.5rem;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .header {
    padding: 15px 10px;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #061521;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    margin-right: 0;
  }

  .navbar.active {
    right: 0;
  }

  .navbar a {
    margin: 15px 0;
    font-size: 1.2rem;
  }

  .home {
    padding: 100px 5% 50px;
    text-align: center;
  }

  .my-img {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto 30px;
    transform: scaleX(-1);
    top: auto;
    right: auto;
  }

  .home-content {
    max-width: 100%;
  }

  .btn-box {
    justify-content: center;
  }

  .my-info {
    justify-content: center;
  }

  .about-info {
    justify-content: center;
  }

  .services-modal-content {
    padding: 3.5rem 1.5rem 1.5rem;
  }

  .services-modal-description {
    padding: 0;
  }
}

@media screen and (max-width: 576px) {
  body {
    font-size: 14px;
  }

  main {
    padding: 10px;
    align-items: center;
  }

  .home {
    padding: 80px 5% 30px;
    bottom: 10%;
  }

  .home-content {
    position: absolute;
    bottom: 5%;
    padding: 0.5rem;
    z-index: 1;
  }

  .home-bg {
    background: #18486f;
    opacity: 0.9;
    height: 250px;
    width: 250px;
    z-index: -1;
    border-radius: 150% 0% 0% 150%;
    left: 52%;
    overflow: hidden;
    top: 5%;
    margin-right: -2px;
  }

  .my-img {
    width: 400px;
    height: 450px;
    top: auto;
    right: auto;
  }

  .home-content h1 {
    font-size: 2rem;
  }

  .home-content h3 {
    align-items: baseline;
    font-size: 1.3rem;
    text-align: left;
    margin-left: 20px;
  }

  .home-social {
    margin-left: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2rem;
    column-gap: 2rem;
  }

  .btn-box {
    flex-direction: column;
    align-items: center;
  }

  .btn-box a {
    width: 100%;
    max-width: 250px;
  }

  .my-info {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .info-item {
    justify-content: center;
  }

  .about-img-border {
    position: relative;
    right: 10%;
    max-width: 100%;
    overflow: hidden;
    padding: 0.1rem;
    border-width: 1.5px;
    height: 300px;
  }

  .about-data {
    position: relative;

    margin: 0rem;
  }

  .about-data h3 {
    font-size: 1.3rem;
  }

  .about-description {
    max-width: 100%;
    text-align: left;
  }

  .about-img {
    height: 400px;
  }

  .about-box {
    min-width: 100%;
  }

  .work-filters {
    gap: 0.5rem;
  }

  .work-item {
    font-size: 0.9rem;
    padding: 0.2rem 0.5rem;
  }

  .portfolio-popup-inner {
    padding: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem 1rem;
  }

  .testimonial-profile {
    flex-direction: column;
    text-align: center;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 350px) {
  .home-content h1 {
    font-size: 1.8rem;
  }

  .home-content h3 {
    font-size: 1.2rem;
  }

  .services-content {
    padding: 4rem 1rem 1.5rem;
  }

  .work-container {
    grid-template-columns: 1fr;
  }

  .work-card {
    height: auto;
  }
}

@media (min-width: 400px) and (max-width: 600px) and (max-height: 1000px) {
  .home-bg {
    width: 300px;
    height: 300px;
    left: 40.5%;
    top: 10%;
  }

  .my-img {
    top: 10%;
  }

  .home-content {
    bottom: 10%;
  }

  .home-content h1 {
    bottom: 2rem;
    left: -1rem;
  }

  .home-content h3 {
    bottom: 1.5rem;
  }

  .home-content p {
    bottom: 1rem;
  }

  .home-social {
    bottom: -3rem;
    left: 90px;
  }
}

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #ededed;
  background: #061521;
  overflow-x: hidden;
  width: screen-width;
}

body,
button,
input {
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  position: relative;
  font-size: 25px;
  color: #ededed;
  text-decoration: none;
  font-weight: 600;
}

.logo::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #061521;
  animation: showRight 1s ease forwards;
  animation-delay: 0.4s;
}
.navbar {
  margin-right: 30px;
}
.navbar a {
  font-size: 18px;
  color: #ededed;
  text-decoration: none;
  font-weight: 500;
  margin-left: 35px;
  transition: 3s;
}

.navbar a:hover,
.navbar a.active {
  color: #a1b5ff;
}

.home {
  height: 100vh;

  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #061521;
}
.my-img {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 800px;
  height: 80vh;
  background: url("Images/DSC_1819.jpg") no-repeat;
  background-size: 50% auto;
  background-position: top;
  transform: scaleX(-1);
}

.home-content {
  background: transparent;
  max-width: 600px;
}

.home-content h1 {
  position: relative;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

.home-content h1::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #061521;
  animation: showRight 1s ease forwards;
  animation-delay: 1s;
}

.home-content h3 {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #a1b5ff;
}

.home-content h3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #061521;
  animation: showRight 1s ease forwards;
  animation-delay: 1.3s;
}

.home-content p {
  position: relative;
  font-size: 16px;
  margin: 20px 0 40px;
}

.home-content p::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #061521;
  animation: showRight 1s ease forwards;
  animation-delay: 1.6s;
}

.home-content .btn-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 346px;
  height: 50px;
}

.home-content .btn-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #061521;
  animation: showRight 1s ease forwards;
  animation-delay: 1.9s;
  z-index: 2;
}

.btn-box a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 100%;
  background: #a1b5ff;
  border: 2px solid #a1b5ff;
  border-radius: 8px;
  font-size: 19px;
  color: #061521;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
}

.btn-box a:nth-child(2) {
  background: transparent;
  color: #a1b5ff;
}

.btn-box a:nth-child(2):hover {
  color: #061521;
}
.btn-box a:nth-child(1):hover {
  color: #a1b5ff;
}

.btn-box a:nth-child(2)::before {
  background: #a1b5ff;
}
.btn-box a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #061521;
  z-index: -1;
  transition: 0.5s;
}

.btn-box a:hover::before {
  width: 100%;
}

.home-imghover {
  position: absolute;
  top: 0;
  right: 30px;
  width: 500px;
  height: 100%;
  background: transparent;
  transition: 3s;
  animation: manipActiveHover 0.1s forwards;
}

.my-info {
  display: flex;
  column-gap: 1.8rem;
  position: absolute;
  left: 10%;
  bottom: 1.8rem;
}
.info-item {
  display: flex;
  align-items: center;
}
.info-title,
.info-subtitle {
  font-size: 14px;
}
.info-title {
  font-weight: 200;
}
.info-icon {
  font-size: 1.8rem;
  color: #a1b5ff;
  margin-right: 0.6rem;
}

.my-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #061521;
  animation: showRight 1s ease forwards;
  animation-delay: 1.3s;
}

.home-imghover::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #061521;
  animation: showRight 1s ease forwards;
  animation-delay: 3s;
  z-index: 100;
}

.home-imghover:hover {
  background: #061521;
  opacity: 0.8;
}

/*KEYFRAMES ANIMATIONS*/
/* @keyframes showRight {
  100% {
    width: 0;
  }
}

@keyframes manipActiveHover {
  100% {
    pointer-events: auto;
  }
} */

/* .about {
  padding: 100px 10%;
  background: #0b2435;
  position: relative;
  overflow: hidden;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-img {
  position: absolute;
  width: 45%;
  height: 400px;
  background: url("Images/DSC_1819.jpg") no-repeat;
  background-size: cover;
  background-position: top;
  border-radius: 10px;
} */

/* Main - About
#about {
  background-color: #061521;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.about-container {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4rem;
  align-items: center;
  background-color: #061521;
}
.about-img-border {
  display: flex;
  justify-content: center;
  top: 10%;
  width: fit-content;
  height: 500px;
  padding: 0.5rem;
  border: 2px solid #05263e;
  border-radius: 0.75rem;
  background-color: #0b2435;
}
.about-img {
  width: 100%;
  border-radius: 0.75rem;
  justify-self: center;
  object-fit: cover;
  height: 100%;
  background-size: cover;
  background-position: 50% 10%;
}

.about-data {
  width: 50%;
  position: absolute;
  right: 5%;
  top: 25%;
  background-color: #061521;
}

.about-heading {
  font-size: 20px;
  margin-bottom: 1rem;
  color: #a1b5ff;
}
.about-description {
  text-align: justify;
  padding-right: 6rem;
  margin-bottom: 2rem;
}
.about-info {
  display: flex;
  grid-template-columns: repeat(3, 140px);
  column-gap: 0.5rem;
  margin-bottom: 2.5rem;
  color: #a1b5ff;
}
.about-box {
  text-align: center;
  border-radius: 0.25rem;
  padding: 1rem 1.25rem;
  background-color: #061521;
}
.about-icon {
  font-size: 1.5rem;
  color: #a1b5ff;
  margin-bottom: 0.5rem;
}
.about-title {
  font-size: 1.25rem;
}
.about-subtitle {
  font-size: 0.875rem;
}

.contact-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  height: 3rem;
  width: 300px;
  right: -10%;
}

/* Main - Services */

/* #services {
  background-color: #061521;
  padding: 4rem 0;
} */

/* .services-container {
  display: flex;
  justify-content: center;
  column-gap: 1.8rem;
  row-gap: 2rem;
  flex-wrap: wrap;
  width: 100%;
}
.services-content {
  position: relative;
  background-color: #0b2435;
  padding: 6rem 0 2rem 2.5rem;
  border-radius: 0.25rem;
  text-align: left;
  width: 300px;
  height: 320px;
  display: flex;
  flex-direction: column;
}
.services-icon {
  display: block;
  font-size: 1.8rem;
  color: #a1b5ff;
  margin-bottom: 1rem;
}
.services-title {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 600;
}
.services-button {
  color: #a1b5ff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  cursor: pointer;
}
.services-button-icon {
  font-size: 1rem;
  transition: 0.4s;
}
.services-button:hover .services-button-icon {
  transform: translateX(0.25rem);
}
.services-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.active-modal {
  opacity: 1;
  visibility: visible;
}
.services-modal-content {
  width: 500px;
  position: relative;
  background-color: #0b2435;
  padding: 4.5rem 2.5rem 2.5rem;
  border-radius: 0.5rem;
}
.services-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #a1b5ff;
  cursor: pointer;
}
.services-modal-title,
.services-modal-description {
  text-align: center;
}
.services-modal-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.services-modal-description {
  font-size: 0.875rem;
  padding: 0 3.5rem;
  margin-bottom: 2rem;
}
.services-modal-services {
  row-gap: 0.75rem;
}
.services-modal-service {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
.services-modal-icon {
  color: #a1b5ff;
  font-size: 1.1rem;
}
.services-modal-info {
  font-size: 0.875rem;
} */

/* Main - Work */
/* .work {
  background-color: #061521;
  padding: 4rem 0;
}

.work-container {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  padding-top: 1rem;
  flex-wrap: wrap;
}
.work-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.75rem;
  margin-bottom: 2rem;
}
.work-item {
  cursor: pointer;
  color: #ededed;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
  border-radius: 0.5rem;
}
.work-card {
  background-color: #0b2435;
  padding: 1.25rem;
  border-radius: 0.5rem;
  width: 300px;
  height: 250px;
}
.portfolio-item-details {
  display: none;
}
.work-img {
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  width: 200px;
}
.work-title {
  font-size: 500;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.work-button {
  color: #a1b5ff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  cursor: pointer;
}
.work-button-icon {
  font-size: 1rem;
  transition: 0.4s;
}
.work-button:hover .work-button-icon {
  transform: translateX(0.25rem);
}
.active-work {
  background-color: #a1b5ff;
  color: #05263e;
}

.portfolio-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(28, 27, 66, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: 0.4s;
}
.portfolio-popup.open {
  opacity: 1;
  visibility: visible;
}
.portfolio-popup-inner {
  background-color: #05263e;
  width: 900px;
  height: 400px;
  border-radius: 0.5rem;
  padding: 2.5rem;
  position: relative;
}
.portfolio-popup-content {
  display: flex;
  align-items: center;
  column-gap: 3rem;
}
.portfolio-popup-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #a1b5ff;
  cursor: pointer;
}
.portfolio-popup-img {
  border-radius: 0.5rem;
  width: 360px;
  height: 300px;
}
.portfolio-popup-subtitle {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.details-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.details-description {
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.details-info li {
  margin-bottom: 0.75rem;
  text-transform: capitalize;
  font-size: 0.875rem;
  display: flex;
  column-gap: 0.5rem;
}
.details-info li:last-child {
  margin-bottom: 0;
}
.details-info li span {
  font-weight: normal;
}
.details-info li a {
  text-transform: lowercase;
  color: #a1b5ff;
} */

/* Main - Testimonials */

/* .testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.swiper {
  width: 100%;
  height: 100%;
  padding: 30px 10px 60px;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.testimonial-card {
  background-color: #0b2435;
  padding: 2rem;
  border-radius: 0.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
  display: inline-flex;
  font-size: 1.5rem;
  color: #a1b5ff;
  margin-bottom: 1rem;
}

.testimonial-description {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  text-align: justify;
  line-height: 1.6;
  flex-grow: 1;
}

.testimonial-date {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #a1b5ff;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #a1b5ff;
}

.testimonial-profile-name {
  font-size: 1.25rem;
  font-weight: 500;
  color: #a1b5ff;
}

.testimonial-profile-detail {
  font-size: 0.875rem;
  display: block;
  color: #ccc;
}

.testimonial-profile-data {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
} */

/* Swiper Navigation */
/* .swiper-button-next,
.swiper-button-prev {
  color: #a1b5ff;
  background: rgba(161, 181, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(161, 181, 255, 0.2);
}

/* Swiper Pagination */
/* .swiper-pagination-bullet {
  background-color: #05263e;
  opacity: 1;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background-color: #a1b5ff;
} */

/* Responsive Design */
/* @media screen and (max-width: 768px) {
  .testimonials-container {
    padding: 0 10px;
  }

  .swiper {
    padding: 20px 5px 50px;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .swiper {
    padding: 30px 40px 60px;
  }
}

/* Main - Contact */
/* #contact {
  background-color: #061521;
  padding: 4rem 0;
}

.contact-container {
  display: flex;
  column-gap: 3rem;
  justify-content: center;
  align-items: center;
}
.contact-info {
  display: grid;
  row-gap: 1rem;
}
.contact-card {
  background-color: #0b2435;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}
.contact-card-icon {
  font-size: 1.8rem;
  color: #a1b5ff;
  margin-bottom: 0.25rem;
}
.contact-card-title,
.contact-card-data {
  font-size: 0.875rem;
}
.contact-card-title {
  font-weight: 500;
}
.contact-card-data {
  display: block;
  margin-bottom: 0.75rem;
}
.contact-button {
  color: #a1b5ff;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.25rem;
  cursor: pointer;
  text-decoration: none;
}
.contact-button-icon {
  font-size: 1rem;
  transition: 0.4s;
}
.contact-button:hover .contact-button-icon {
  transform: translateX(0.25rem);
}  */
/* .input-container {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1.9rem;
}
.input {
  width: 100%;
  border: 2px solid #05263e;
  background-color: transparent;
  padding: 0.6rem 1.2rem;
  color: #a1b5ff;
  font-weight: 500;
  font-size: 500;
  letter-spacing: 0.5px;
  border-radius: 0.5rem;
  outline: none;
  transition: 0.4s;
}
textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 140px;
  border-radius: 0.5rem;
  resize: none;
  font-family: "Times New Roman", Times, serif;
}
.input-container label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #a1b5ff;
  font-size: 1rem;
  font-weight: 500;
  pointer-events: none;
  z-index: 15;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}
.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.875rem;
  padding: 0 0.4rem;
  pointer-events: none;
  z-index: 15;
  color: transparent;
}
.input-container span::before,
.input-container span::after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  height: 5px;
  background-color: #a1b5ff;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
.input-container span::before {
  left: 50%;
}
.input-container span::after {
  right: 50%;
}
.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.75rem;
} 
.input-container.focus span::before,
.input-container.focus span::after {
  width: 50%;
  opacity: 1;
}  */
