@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}

[data-bs-theme="dark"] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar[data-bs-theme="dark"] {
  --bs-navbar-hover-color: rgba(255, 255, 255, 1);
}

.head {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 500;
}

.navbar-toggler {
  color: black;
  outline: none;
  border: none;
}
.logo {
  width: 200px;
}

/* hero */
.heads {
  background-color: #000;
  color: #fff;
}
.hero {
  height: calc(70vh - 80px);
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 5rem;
  font-weight: bold;
  letter-spacing: 0.5rem;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

/* project pg */

.main-pg {
  background-color: #000;
  color: #fff;
}
.nav-link {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
}

/* .nav-link.active {
  color: #ff4500 !important;
} */

.portfolio-item {
  position: relative;
  overflow: hidden;
  height: 450px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .portfolio-item {
    height: 260px;
  }
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover img {
  transform: scale(1.04);
}

/* overlay */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.3) 55%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-content {
  transform: translateY(14px);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay-content {
  transform: translateY(0);
}

.portfolio-category {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-bottom: 6px;
}

.portfolio-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

/* circle arrow icon — top right */
.portfolio-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0) rotate(-45deg);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.08s;
}

.portfolio-item:hover .portfolio-icon {
  transform: scale(1) rotate(0deg);
}

.portfolio-icon i {
  color: #000;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .nav-link {
    font-size: 0.8rem;
  }
}

/* we would */

.main {
  background-color: #edebeb;
  color: #000;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section {
  text-align: center;
}

.cta-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.cta-button {
  color: #000;
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 2rem;
  }
}

.project-image {
  width: 100%;
  height: 450px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 30px;
  transition: transform 0.45s ease, filter 0.45s ease;
  display: block;
}
.project-image:hover {
  transform: scale(1.04);
  filter: brightness(1.08);
}

@media (max-width: 767px) {
  .project-image {
    height: 260px;
  }
}

/* footer */

.footer {
  background-color: #000;
  color: #fff;
  padding: 4rem 0 2rem;
}
.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.social-icons {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.social-icons a {
  color: #fff;
  margin-right: 1rem;
}
.footer-nav {
  list-style: none;
  padding: 0;
}
.footer-nav li {
  margin-bottom: 0.5rem;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
}
.footer-heading {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}
.footer-contact {
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-blog-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.footer-blog-link {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #888;
}
.links {
  text-decoration: none;
  color: #fff;
}
