@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
  color: #000;
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  position: relative;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #111;
  margin-left: -50px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.solid {
  background-color: #3b2ce3;
  color: white;
  border: none;
}

.btn.outline {
  background-color: transparent;
  color: #3b2ce3;
  border: 2px solid #3b2ce3;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100vh;
  background-color: rgba(34, 34, 34, 0.9);
  color: white;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  transition: left 0.3s ease;
}

.mobile-menu a,
.mobile-menu button {
  color: white;
  text-align: left;
  text-decoration: none;
  background: none;
  border: none;
  font-size: 1rem;
}

.close-btn {
  align-self: flex-end;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 900;
}

@media screen and (max-width: 768px) {
  .nav-links,
  .auth-buttons {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

/* =========================== */

.services-section {
  /* height: 400px; */
  height: auto;
  /* border: 2px solid black; */
  display: flex;
  align-items: center;
  /* padding: 60px 15px;*/
}

/* TEXT SECTION */
.text-rotate-wrapper {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.rotating-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(50px);
  text-align: left;
  transition: all 0.8s ease;
}

.rotating-text.active {
  opacity: 1;
  transform: translateY(0);
}

.rotating-text h2 {
  font-size: 58px;
  font-weight: bold;
  color: #111;
}

.rotating-text p {
  font-size: 20px;
  color: #444;
  margin-top: 10px;
}

/* CIRCLE SECTION */
.circle-container {
  position: relative;
  width: 400px;
  height: 400px;
  margin: auto;
}

.circle-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px; /* adjust size as needed */
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 50%; /* optional: make it circular */
}

.dotted-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed #ccc;
  position: absolute;
  top: 0;
  left: 0;
}

/* Properly rotate the dot around */
.rotating-dot-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  animation: rotateWrapper 6s linear infinite;
}

.moving-dot {
  width: 20px;
  height: 20px;
  background-color: hotpink;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rotateWrapper {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  /* .services-section {
    flex-direction: column;
    text-align: center;
    margin-bottom: 130px;
  } */


   .services-section {
    flex-direction: column;
    text-align: center;
    margin-bottom: 0px; /*Adjusted spacing*/
    padding-bottom: 60px;
  }
 

  /* .circle-container {
    margin-top: -180px;
    width: 300px;
    height: 300px;
  } */

  /* .text-rotate-wrapper { */
    /* margin-bottom: 40px; */
  /* } */
/* 
  .rotating-text h2 {
    font-size: 38px;
    font-weight: bold;
    color: #111;
    padding: 0px 17px;
  } */

  /* .rotating-text p {
    font-size: 18px;
    padding: 17px;
    color: #444;
    margin-top: 0px 0px;
  } */

  .circle-container {
    margin-top: -100px;
    width: 220px;
    height: 220px;
  }

  .rotating-text h2 {
    font-size: 30px;
    padding: 0 15px;
  }

  .rotating-text p {
    font-size: 16px;
    padding: 0 20px;
    margin-top: 10px;
  }
}

@media (max-width: 320px) {
  .services-section {
    flex-direction: column;
    text-align: center;
    margin-bottom: 130px;
  }

  .circle-container {
    margin-top: -110px;
    width: 200px;
    height: 200px;
  }

  .text-rotate-wrapper {
    margin-bottom: 50px;
  }

  .rotating-text h2 {
    font-size: 38px;
    font-weight: bold;
    color: #111;
    padding: 0px 17px;
  }

  .rotating-text p {
    font-size: 18px;
    padding: 17px;
    color: #444;
    margin: 0px 0px;
  }
}


/* =========================== */

.custom-service-section {
  overflow: hidden;
  position: relative;
  padding: 80px 0;
}

.custom-subheading {
  color: #ff2d55;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.custom-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  z-index: 1;
  position: relative;
}

.service-category-title {
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  margin-bottom: 10px;
  color: #111;
  position: relative;
  z-index: 1;
}

.custom-service-list {
    color: #444;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.custom-service-list li {
  font-weight: 600;
  /*font-size: clamp(1rem, 1.8vw, 1.1rem);*/
  font-size: 1rem;
  margin-bottom: 12px;
  border-bottom: 2px dotted #000;
  display: inline-block;
  padding-bottom: 2px;
}

.circle-bg {
  position: absolute;
  top: 20px;
  left: 30%;
  width: 300px;
  height: 300px;
  /* background-color: #f99ab3; */
  background-color: #5bc0f8;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.3;
  transform: translateX(-50%);
}

.circle-bg.animate {
  animation: bounceCircle 3s ease-in-out infinite;
}

@keyframes bounceCircle {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

/* Responsive dot size */
@media (max-width: 767px) {
  .circle-bg {
    width: 130px;
    height: 130px;
    top: 20px;
    left: 50%;
  }
}

/* How we do it */
.project-approach-section {
  background: transparent;
}

.project-subtitle {
  color: #ff3366;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}

.project-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}

.project-step {
  padding: 0;
}

.project-icon {
  height: 90px;
  width: auto;
}

.project-heading {
  font-weight: 700;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.project-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 576px) {
  .project-title {
    font-size: 1.5rem;
  }

  .project-desc {
    font-size: 0.95rem;
  }

  .project-icon {
    height: 72px;
  }
}


/* tools start  */

    .tools-section {
      padding: 60px 0;
      background-color: #fff;
      text-align: center;
    }

    .tools-section h2 {
      color: #f82c62;
      font-weight: 700;
      margin-bottom: 40px;
    }

    .tool-box {
      background-color: #fafafa;
      padding: 30px;
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
    }

    .tool-box img {
      max-height: 80px;
      width: auto;
    }

    @media (max-width: 576px) {
      .tool-box {
        height: 140px;
        padding: 20px;
      }

      .tool-box img {
        max-height: 50px;
      }

      .tools-section h2 {
        font-size: 20px;
        margin-bottom: 30px;
      }
    }
/* tools end */
/* footer  */

.footer {
  background-color: #02033B;
  color: white;
  font-family: Arial, sans-serif;
}

.newsletter-box {
  background-color: #FFC247;
  border-radius: 25px;
  padding: 2rem;
  background-image: url('../assets/Icons/certo-dark-yellow.svg.png');
  /* Replace with actual image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  max-width: 400px;
}

.newsletter-box h5 {
  font-weight: 700;
  color: #1D1D1D;
}

.newsletter-box p {
  font-size: 0.9rem;
  color: #1D1D1D;
}

.newsletter-input {
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 1rem;
}

.newsletter-input input {
  flex: 1;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.newsletter-input button {
  background-color: #02004D;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.footer-links h6 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.contact-info p {
  font-size: 0.9rem;
  margin: 0.2rem 0;

}

.contact-info p a {
  text-decoration: none;
  color: white;
}

.social-icons a {
  color: white;
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid white;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 768px) {
  .newsletter-box {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .newsletter-input input {
    padding: 0.5rem;
  }

  .newsletter-input button {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }
}
