body {
  overflow-x: hidden;
}

.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;
  }
}

.custom-card-text{
  margin-top: -50px;
}


.custom-card-wrapper {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  overflow: hidden;
}

.custom-heading {
  font-size: 3.5rem;
  /* color: #1e1e1e; */
  /* color: #ff2d53a8; */
  color: #ff2d53a8;
}

.custom-description {
  font-size: 1rem;
  color: #02033B;
  max-width: 450px;
  margin: 0;
}

.custom-service-btn {
  /* background: #4335DE; */
  background: #ff2d53a8;
  /* background: #5bc0f8; */
  color: white;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-service-btn:hover {
  background: #5bc0f8;
  color: white;
}

/* .custom-img-shadow {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
} */

.circle-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: contain;
  padding: 10px;
  z-index: 2;
}

.rotating-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotateText 18s linear infinite;
  border-radius: 50%;
  z-index: 1;
}

.rotating-text span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
  font-size: 20px;
  /* Increased font size */
  color: #333;
  font-weight: 600;
  white-space: pre;
  letter-spacing: 2px;
}

@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


@media only screen and (max-width: 425px) {
  .custom-heading {
    text-align: left;
  }

  .custom-description {
    text-align: left;
  }


  .custom-card-services {
    text-align: left;
  }


}

.recent-posts-section {
  background-color: #f5f4ff;
}

.recent-posts-title {
  font-weight: 600;
  color: #2b2b2b;
}

.recent-post-card h6 {
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #21243D;

}

.recent-posts-link {
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
}

.work-section {
  padding: 2rem 1rem;
}

.project-box {
  display: flex;
  gap: 1rem;
  flex-direction: row;
  margin-bottom: 2rem;
}

.project-box img {
  border-radius: 10px;
  max-width: 240px;
  height: auto;
}

.project-info h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: left;
}

.project-both {
  text-align: left;
}

.project-badge {
  background-color: #593FFB;
  color: white;
  border-radius: 20px;
  padding: 2px 12px;
  font-size: 0.8rem;
  margin-right: 10px;
  text-align: left;
}

.project-category {
  font-size: 0.9rem;
  color: #757575;
  text-align: left;
}

.project-description {
  color: #6c757d;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  text-align: left;
  color: #21243D;
}

/* Mobile styles */
@media (max-width: 768px) {
  .project-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .project-box img {
    width: 100%;
    max-width: 100%;
  }

  .project-info {
    text-align: center;
  }
}


/* footer start  */
.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;
  }
}