:root {
  --primary-color: #4b70f5;
  --secondary-color: #2ecc71;
  --tertiary-color: #00020f;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #bababa;
  color: #666e78;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 50px;
  padding: 10px 40px;
  position: fixed;
  left: 0;
  right: 0;
  top: 3%;
  z-index: 1000;

  .logo {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
  }
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #666e78;
  text-decoration: none;
}

nav a.active {
  color: var(--primary-color);
  font-weight: bold;
  border-bottom: 2px solid var(--primary-color);
}

.hero {
  position: relative;
  background: url("../images/hero.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content div {
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: clamp(2rem, 7vw, 12rem);

  .monoColor {
    color: var(--primary-color);
  }
  .font-thin {
    font-weight: 100;
    font-style: italic;
  }
}

/* .hero .btn {
  padding: 10px 20px;
  background: #f00;
  color: white;
  text-decoration: none;
  margin-top: 20px;
  border-radius: 5px;
} */

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-text {
  animation: fadeInUp 1s ease-out forwards;
}

.about {
  background-color: var(--tertiary-color) !important;

  .aboutText {
    margin-top: 20px;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 auto;
    padding: 60px 20px 20px 20px;
    width: 80%;

    span {
      color: var(--primary-color);
    }
  }

  img {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    height: auto;
  }
}

.services {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;

  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.7);
  }

  .overlay-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 10%;
    line-height: 1.2;
  }

  .servicesText {
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(2rem, 7vw, 12rem);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);

    .monoColor {
      color: var(--primary-color);
    }

    .font-thin {
      font-weight: 100;
      font-style: italic;
    }
  }
}

/* 
////////////////////
//////////////// */

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  transform: rotate(0deg);
  padding: 30px 0;
  position: absolute;
  left: 0;
  top: 85%;
  height: 4%;
  object-fit: cover;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
}

.marquee-content {
  display: inline-block;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 24px;
  margin: 0 40px;
}

.icon {
  color: var(--primary-color);
  font-size: 24px;
}

.contact {
  background-color: var(--tertiary-color);
  color: #fff;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;

  .textArea {
    width: 60%;
    margin-left: 2%;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: clamp(2rem, 3vw, 4rem);

    .monoColor {
      color: var(--primary-color);
    }
    .font-thin {
      font-weight: 100;
      font-style: italic;
      text-align: center;
      display: block;
    }
  }

  .formArea {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;

    input,
    textarea {
      width: 100%;
      padding: 10px;
      border-radius: 5px;
      border: none;
      background-color: #fff;
      color: #000;
      font-size: 1rem;
      margin-bottom: 20px;
    }

    button {
      padding: 10px 20px;
      background-color: var(--primary-color);
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
  }
}

.services-section {
  text-align: center;
  padding: 2rem 1rem;
}

.services-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin: 0;
}

.services-section p {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.scroll-gallery {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}

.scroll-gallery img {
  height: 180px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: 8px;
}

.accordion {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: #f8f8f8;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.accordion-content {
  padding: 1rem 1rem;
  display: none;
  font-size: 0.95rem;
  color: #444;
}

.phrase-section {
  text-align: center;
  padding: 3rem 0rem 1rem;
}

.phrase-section h2 {
  font-size: 2rem;
  font-weight: 700;
}

.marquee-container01 {
  overflow: hidden;
  position: relative;
  height: 40px;
  margin: 20px 0;
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: scrollLeft 20s linear infinite;
}

.marquee.reverse {
  animation: scrollRight 20s linear infinite;
}

.phrase {
  margin: 0 1.5rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.phrase::before {
  content: "✦";
  color: var(--primary-color);
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.testimonial-section {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
}

.testimonial-section h1 {
  text-align: center;
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.testimonial-section h3 {
  text-align: center;
  font-weight: normal;
  margin-bottom: 3rem;
}

.testimonial-section h3 span {
  color: var(--primary-color);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-card p {
  margin: 0 0 1rem;
}

.testimonial-card .author {
  color: var(--primary-color);
  font-weight: 600;
}

.results-section {
      padding: 3rem 1rem;
      text-align: center;
    }

    .results-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 2rem;
    }

    .highlight-text {
      color: #3c4bd3;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      max-width: 1100px;
      margin: auto;
    }

    .project-tile {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .project-image {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .project-tile:hover .project-image {
      transform: scale(1.05);
    }

    .project-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 1rem;
      color: white;
    }

    .project-logo {
      width: 150px;
      margin-bottom: 1.5rem;
    }

    .project-tags {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .tag-pill {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      background-color: rgba(255, 255, 255, 0.1);
      border: 1px solid #fff;
      padding: 0.4rem 1rem;
      border-radius: 20px;
      font-size: 0.9rem;
      backdrop-filter: blur(4px);
      transition: background 0.3s;
    }

    .tag-pill:hover {
      background-color: #3c4bd3;
    }

    .tag-pill img {
      width: 18px;
      height: 18px;
    }

    @media (max-width: 768px) {
      .results-title {
        font-size: 1.8rem;
      }
    }

/* .footer {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  width: 100%;
  height: 5vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
} */

.footer {
  background: #fff;
  padding: 40px 20px;
  color: #000;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.footer-top .left h2 {
  font-size: 2.5rem;
}

.footer-top .left h2 span {
  color: var(--primary-color);
}

.footer-top .logo {
  max-width: 120px;
  margin-top: 20px;
}

.footer-top .right form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #ccc;
  padding: 5px;
  max-width: 300px;
}

.footer-top .right input {
  border: none;
  outline: none;
  flex: 1;
  padding: 10px;
  font-size: 1rem;
}

.footer-top .right button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #888;
}

.footer-section p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #333;
}

.footer-section i {
  color: var(--primary-color);
  margin-right: 8px;
}

.social-icons a {
  margin-right: 10px;
  color: #000;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--primary-color);
}
