* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: var(--text);
}
:root {
  --bg: #ffffff;
  --text: #111111;
  --accent: #3db78b; /* change anytime */
  --font: "Inter", sans-serif;
  --max-width: 1200px;
  --blur: backdrop
}
.lazy-section {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.lazy-section.show {
  opacity: 1;
  transform: translateY(0);
}
@font-face {
  font-family: "blackfuture";
  src: url("/assets/fonts/font-blackfuture.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
  max-width: 1200px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  background-image: url(/assets/images/background.png);
    backdrop-filter: blur(2px);
    background-size: 600px;
  animation-name: MOVE-BG;
  animation-duration: 500s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

}
@keyframes MOVE-BG {
   from { background-position: 0% 0%; }
  to { background-position: 80% -20%; }
}
img {
  max-width: 100%;
  display: block;
}
/* HEADER */
header {
  width: 100%;
  padding: 20px 0;
  background: var(--bg);
  position: relative;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 5px;
  width: 20%;
  font-family: "blackfuture" ;

}
.logo a{
  
  color: var(--accent);
}
/* NAV DESKTOP */
nav {
  display: flex;
  gap: 30px;
  width: 60%;
  place-content: center;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: var(--accent);
}

/* HAMBURGER BASE */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px; /* slightly taller for spacing */
  cursor: pointer;
  z-index: 10000;
  position: fixed; /* stays top-right */
  top: 20px;
  right: 20px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: center; /* center rotation */
}

/* HAMBURGER → X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0; /* middle bar disappears */
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -13px);
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {

  .logo {
    font-size: 1.2rem;
  }
  .hamburger {
    display: flex;
    z-index: 9999;
    top: auto;
    position: absolute;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s ease;
    z-index: 9999;
  }

  nav.active {
    right: 0;
    opacity: .95;
    align-items: flex-start;
    padding: 16px;
    gap: 0.7rem;
    justify-content: flex-start;
    padding-top: 5rem;
  }

  nav a {
    font-size: 1.5rem;
  }
}
.button-letstalk {
  margin: auto;
}
.letstalk {
  background: #3db78b;
  border: none;
  padding: 10px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .button-letstalk {
    margin-right: 2.5rem;
  }
}
.letstalk a {
  text-decoration: none;
  color: white;
}
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
  display: block;
  object-position: right;
}

/* Overlay text container */
.hero-content {
  position: absolute;
    top: 30%;
    left: 3%;
  text-align: left;
  color: #333;
  z-index: 2;
  max-width: 50%;
  text-transform: capitalize;
}

/* Optional text styling */
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1rem;
  opacity: 0.9;
}

.hero-content .name {
color: #3db78b;
font-weight: 600;
font-size: 1.4rem;
}


.hero {
  position: relative;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Social Icons Container */
.hero-socials {
  position: absolute;
  bottom: 45px;  /* move up or down */
  left: 30px;    /* move left or right */
  display: flex;
  gap: 12px;
}

/* Circle Icons */
.hero-socials .icon {
  width: 45px;
  height: 45px;
  border-radius: 25%;
  background: #ffffff;
  color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

/* Hover effect */
.hero-socials .icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.hero-socials .ig { background: #FF6B5B; color: #fff; }
.hero-socials .yt { background: #EB7C82; color: #fff; }
.hero-socials .pt { background: #9C64C4; color: #fff  ; }
.hero-socials .tt { background: #484FDD; color: #fff; }
.hero-socials .fb { background: #1877F2; color: #fff; }
.hero-socials .be { background: #2B87FF; color: #fff; }
.hero-socials .li { background: #DDB148; color: #fff; }

/* Optional brand colors */
.hero-socials .ig:hover { background: #f55c4b; color: #fff; }
.hero-socials .yt:hover { background: #ec6b71; color: #fff; }
.hero-socials .pt:hover { background: #9758c4; color: #fff; }
.hero-socials .tt:hover { background: #3e46db; color: #fff; }
.hero-socials .fb:hover { background: #106ee9; color: #fff; }
.hero-socials .be:hover { background: #1f7af1; color: #fff; }
.hero-socials .li:hover { background: #c99a2d; color: #fff; }


.hero-socials-name {
    position: absolute;
    bottom: 0px;
    left: 30px;
    padding: 6px;
    width: 32%;
    justify-content: center;
    display: flex;
    font-size: 1.5rem;
}
/* Responsive: move icons down under image on mobile */
@media (max-width: 768px) {
  .hero img {
    object-position: right;
    height: 91vw;
  } 
  
  .hero-content {
        max-width: 70vw;
        transform: none;
        left: 15vw;
        top: 51vw;
        background: white;
        padding: 3vw;
        border-radius: 2vw;

  }
  .hero-content h1 {
    font-size: 4.1vw;
  }
  .hero-content p {
    font-size: 2.3vw;
  }
.hero-content .name {
  font-size: 3.5vw;
}

  .hero-socials {
    bottom: auto;
    left: 6vw;
    width: auto;
    top: 0;
  }
  .hero-socials .icon {
    width: 8vw;
    height: 8vw;
    font-size: 4.5vw;
  }

  
.hero-socials-name {display: none;
}

}

.services {
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.services h2 {
  margin-bottom: 20px;
  color: #3db78b;
  font-weight: 400;
}

.services-wrapper {
  overflow-x: hidden;
}

.services-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.service-item {
  min-width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #919191;
  flex-shrink: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  padding: 10px;
}
.service-item img {
    position: absolute;
    max-width: 200px;
    border-radius: 10px;
}

.service-item a {
  z-index: 2;
    top: 42%;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: .5;
    mix-blend-mode: color-burn;
}
/* View More Button */
#viewMoreServices {
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  background: #3db78b;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
@media (max-width: 768px) {
.service-item {
  
    min-width: 150px;
    height: 150px;
}
.services-container {
  
    gap: 10px;
}
.service-item img {
  
    max-width: 150px;
}

}
.about-modern {
  padding: 0px 20px;
  display: flex;
  justify-content: center;
}

.about-modern-container {
  position: relative;
  max-width: 1100px;
  width: 100%;
}

.about-modern-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  height: auto;
}

/* Floating Card */
.about-modern-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #ffffff;
  padding: 25px 30px;
  width: 350px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-modern-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.about-modern-card h3 {
  font-size: 1.4rem;
  color:var(--text); /* highlight color */
}
.about-modern-card h2 {
  color: #e4405f;
  font-family: "blackfuture" , sans-serif;
  margin: 5px 0;
  font-size: 1.8rem
}
.about-modern-card p {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-modern-card {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}

.portfolio {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-header .small-title {
  color: #ff3d54;
  font-weight: 500;
  margin-bottom: 10px;
}

.portfolio-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.portfolio-filters button {
  background: none;
  border: none;
  color: #111;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 10px;
  transition: 0.3s;
}

.portfolio-filters button.active,
.portfolio-filters button:hover {
  color: #ff3d54;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.portfolio-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
}

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-item h3 {
  padding: 15px;
  font-size: 1.1rem;
  color: #111;
}

.portfolio-button button {
  margin-top: 40px;
  padding: 12px 30px;
  border: 2px solid #ff3d54;
  background: none;
  color: #ff3d54;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.portfolio-button button:hover {
  background: #ff3d54;
  color: #fff;
}


.footer-section {
  background: #008b9a;
  color: white;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #e3f8fa;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #dff8fa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-social a {
  background: white;
  color: #008b9a;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.footer-social a:hover {
  transform: translateY(-4px);
}

.newsletter-box {
  margin-top: 10px;
  display: flex;
}

.newsletter-box input {
  padding: 10px 15px;
  border: none;
  outline: none;
  border-radius: 6px 0 0 6px;
  flex: 1;
}

.newsletter-box button {
  background: #f7a10a;
  border: none;
  padding: 10px 15px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
  font-size: 0.9rem;
}

/* Responsive for mobile */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-box {
    justify-content: center;
  }
}
