/* =========================
   GLOBAL
========================= */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  background: #000;
  color: #fff;
  overflow-x: hidden;
}


a{
  text-decoration: none;
}

ul{
  list-style: none;
}

/* =========================
   HEADER
========================= */

.header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s;
}

.navbar{
  max-width: 1350px;
  margin: auto;
  padding: 16px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =========================
   LOGO
========================= */

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

/* IMAGE */

.logo-img{
  width:42px;
  height:42px;
  object-fit:contain;
}

/* GREEN ICON */

.logo-icon{
  position:relative;
  width:28px;
  height:28px;
}

.logo-icon span{
  position:absolute;
  width:10px;
  background:#18b24b;
  border-radius:10px;
}

.logo-icon span:nth-child(1){
  height:26px;
  transform:rotate(30deg);
  left:2px;
}

.logo-icon span:nth-child(2){
  height:34px;
  transform:rotate(30deg);
  left:14px;
  top:-4px;
}

/* TEXT */

.logo h2{
  font: size 1.5rem;
  font-weight:700;
}

.logo h2 span{
  color:#18b24b;
}

/* =========================
   NAVIGATION
========================= */

.nav-links{
  display: flex;
  gap: 35px;
}

.nav-links a{
  color: white;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after{
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #18b24b;
  left: 0;
  bottom: -6px;
  transition: 0.4s;
}

.nav-links a:hover::after{
  width: 100%;
}

.nav-links a:hover{
  color: #18b24b;
}

/* =========================
   NAV BUTTON
========================= */

.nav-btn{
  background: #18b24b;
  color: white;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.4s;
}

.nav-btn:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(24,178,75,0.3);
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle{
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* =========================
   HERO SECTION
========================= */

.hero{
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 70px 80px;
  position: relative;
  overflow: hidden;
}

/* BACKGROUND BLUR */

.blur-circle{
  position: absolute;
  width: 450px;
  height: 450px;
  background: #18b24b;
  filter: blur(180px);
  opacity: 0.12;
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

/* HERO CONTENT */

.hero-content{
  max-width: 900px;
  z-index: 2;
}

/* BADGE */

.hero-badge{
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  color: #18b24b;
  background: rgba(255,255,255,0.03);
  margin-bottom: 35px;
  letter-spacing: 1px;
  animation: fadeUp 1s ease;
}

/* TITLE */

.hero-title{
  font-size: 5rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 28px;
  animation: fadeUp 1.2s ease;
}

.hero-title span{
  color: #18b24b;
}

/* TEXT */

.hero-text{
  font-size: 1.5rem;
  line-height: 1.8;
  color: #d2d2d2;
  max-width: 820px;
  margin-bottom: 50px;
  animation: fadeUp 1.4s ease;
}

/* BUTTONS */

.hero-buttons{
  display: flex;
  gap: 20px;
  animation: fadeUp 1.6s ease;
}

.primary-btn,
.secondary-btn{
  padding: 18px 36px;
  border-radius: 16px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: 0.4s;
}

.primary-btn{
  background: #18b24b;
  color: white;
}

.primary-btn:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(24,178,75,0.35);
}

.secondary-btn{
  border: 1px solid rgba(255,255,255,0.12);
  background: #111;
  color: white;
}

.secondary-btn:hover{
  background: #18b24b;
  transform: translateY(-5px);
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUp{

  from{
    opacity: 0;
    transform: translateY(40px);
  }

  to{
    opacity: 1;
    transform: translateY(0);
  }

}

/* =========================
   TABLET
========================= */

@media(max-width: 1024px){

  .hero-title{
    font-size: 4.8rem;
  }

  .hero-text{
    font-size: 1.2rem;
  }

  .nav-links{
    gap: 20px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width: 768px){

  .navbar{
    padding: 16px 20px;
  }

  .menu-toggle{
    display: block;
  }

  .nav-btn{
    display: none;
  }

  /* MOBILE NAV */

  .nav-links{
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    background: #000;
    flex-direction: column;
    text-align: center;
    padding: 30px 0;
    transition: 0.4s;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.active{
    left: 0;
  }

  .hero{
    padding: 140px 25px 80px;
  }

  .hero-title{
    font-size: 3.1rem;
  }

  .hero-text{
    font-size: 1rem;
    line-height: 1.8;
  }

  .hero-buttons{
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-btn,
  .secondary-btn{
    width: 220px;
    text-align: center;
  }

  .logo h2{
    font-size: 1.5rem;
  }

}


/* =========================
   SECTION 2 - SERVICES
========================= */

.services{
  width: 100%;
  padding: 120px 70px;
  background: #000;
  position: relative;
}

/* =========================
   HEADING
========================= */

.services-heading{
  text-align: center;
  margin-bottom: 80px;
}

.services-heading h2{
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  animation: fadeUp 1s ease;
}

.services-heading p{
  font-size: 1.2rem;
  color: #cfcfcf;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
  animation: fadeUp 1.2s ease;
}

/* =========================
   SERVICE CONTAINER
========================= */

.services-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* =========================
   SERVICE CARD
========================= */

.service-card{
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

  border: 1px solid rgba(255,255,255,0.05);

  border-radius: 22px;

  padding: 45px 35px;

  transition: 0.45s ease;

  position: relative;

  overflow: hidden;
}

/* TOP GREEN LINE */

.service-card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #18b24b;
  transition: 0.5s ease;
}

.service-card:hover::before{
  width: 100%;
}

/* HOVER EFFECT */

.service-card:hover{
  transform: translateY(-12px);
  border-color: rgba(24,178,75,0.35);

  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* =========================
   ICON
========================= */

.service-icon{
  width:70px;
  height:70px;
  display:flex;
  justify-content:center;
  align-items:center;
  background:rgba(24,178,75,0.08);
  border:1px solid rgba(24,178,75,0.2);
  border-radius:18px;
  margin-bottom:25px;
}

.service-icon img{
  width:38px;
  height:38px;
  object-fit:contain;
}

/* =========================
   TITLE
========================= */

.service-card h3{
  font-size: 2rem;
  margin-bottom: 22px;
  font-weight: 700;
  color: #fff;
}

/* =========================
   DESCRIPTION
========================= */

.service-card p{
  font-size: 1.05rem;
  line-height: 1.9;
  color: #cfcfcf;
  margin-bottom: 45px;
}

/* =========================
   LINK
========================= */

.service-card a{
  color: #18b24b;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}

.service-card a:hover{
  letter-spacing: 1px;
}

/* =========================
   ICON FLOAT ANIMATION
========================= */

@keyframes floatIcon{

  0%{
    transform: translateY(0px);
  }

  50%{
    transform: translateY(-8px);
  }

  100%{
    transform: translateY(0px);
  }

}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width: 1024px){

  .services{
    padding: 100px 40px;
  }

  .services-heading h2{
    font-size: 3rem;
  }

  .services-container{
    grid-template-columns: repeat(2, 1fr);
  }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width: 768px){

  .services{
    padding: 90px 20px;
  }

  .services-heading{
    margin-bottom: 55px;
  }

  .services-heading h2{
    font-size: 2.3rem;
    line-height: 1.3;
  }

  .services-heading p{
    font-size: 1rem;
  }

  .services-container{
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-card{
    padding: 35px 25px;
  }

  .service-card h3{
    font-size: 1.6rem;
  }

  .service-card p{
    font-size: 0.98rem;
  }

}


/* =========================
   SECTION 3 - TRUST
========================= */

.trust-section{
  width: 100%;
  padding: 120px 70px;
  background: #000;
  overflow: hidden;
}

/* MAIN CONTAINER */

.trust-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* =========================
   LEFT SIDE
========================= */

.trust-left{
  flex: 1;
  animation: fadeLeft 1s ease;
}

/* TITLE */

.trust-left h2{
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 30px;
  color: #fff;
}

.trust-left h2 span{
  color:#18b24b;
}

/* DESCRIPTION */

.trust-text{
  font-size: 1.15rem;
  color: #cfcfcf;
  line-height: 1.9;
  max-width: 700px;
  margin-bottom: 60px;
}

/* =========================
   FEATURES
========================= */

.trust-features{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* FEATURE BOX */

.feature-box{
  display: flex;
  align-items: flex-start;
  gap: 18px;

  padding: 20px;
  border-radius: 18px;

  transition: 0.4s ease;
}

.feature-box:hover{
  background: rgba(255,255,255,0.03);
  transform: translateY(-6px);
}

/* ICON */

.feature-icon{
  font-size: 2.2rem;
  color: #18b24b;
  min-width: 50px;

  animation: floatIcon 4s ease-in-out infinite;
}

/* CONTENT */

.feature-content h3{
  font-size: 1.6rem;
  margin-bottom: 14px;
  font-weight: 700;
  color: #fff;
}

.feature-content p{
  font-size: 1rem;
  color: #cfcfcf;
  line-height: 1.8;
}

/* =========================
   RIGHT SIDE
========================= */

.trust-right{
  flex: 1;
  animation: fadeRight 1s ease;
}

/* IMAGE */

.trust-right img{
  width: 100%;
  border-radius: 10px;
  height: 400px;
  transition: 0.5s ease;

  border: 1px solid rgba(255,255,255,0.08);
}

.trust-right img:hover{
  transform: scale(1.03);
}

/* =========================
   ANIMATIONS
========================= */

@keyframes fadeLeft{

  from{
    opacity: 0;
    transform: translateX(-60px);
  }

  to{
    opacity: 1;
    transform: translateX(0);
  }

}

@keyframes fadeRight{

  from{
    opacity: 0;
    transform: translateX(60px);
  }

  to{
    opacity: 1;
    transform: translateX(0);
  }

}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width: 1024px){

  .trust-section{
    padding: 100px 40px;
  }

  .trust-container{
    flex-direction: column;
  }

  .trust-left h2{
    font-size: 3rem;
  }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width: 768px){

  .trust-section{
    padding: 90px 20px;
  }

  .trust-left h2{
    font-size: 2.4rem;
  }

  .trust-text{
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .trust-features{
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-box{
    padding: 15px;
  }

  .feature-content h3{
    font-size: 1.3rem;
  }

  .feature-content p{
    font-size: 0.95rem;
  }

}

/* =========================
   SECTION 4 - PROJECTS
========================= */

.projects-section{
  width: 100%;
  padding: 120px 70px;
  background: #000;
  overflow: hidden;
}

/* =========================
   TOP AREA
========================= */

.projects-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

  margin-bottom: 70px;
}

/* HEADING */

.projects-heading h2{
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;

  animation: fadeUp 1s ease;
}

.projects-heading p{
  font-size: 1.15rem;
  color: #cfcfcf;
  line-height: 1.8;
  max-width: 600px;

  animation: fadeUp 1.2s ease;
}

/* BUTTON */

.project-btn{
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);

  color: #fff;

  padding: 18px 32px;

  border-radius: 16px;

  font-weight: 600;

  transition: 0.4s ease;
}

.project-btn:hover{
  background: #18b24b;
  transform: translateY(-5px);
}

/* =========================
   PROJECT CONTAINER
========================= */

.projects-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* =========================
   PROJECT CARD
========================= */

.project-card{
  position: relative;

  overflow: hidden;

  border-radius: 24px;

  cursor: pointer;

  opacity: 0;
  transform: translateY(60px);

  transition: 0.8s ease;
}

/* IMAGE */

.project-card img{
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: 0.6s ease;
}

/* OVERLAY */

.project-overlay{
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92),
    rgba(0,0,0,0.15)
  );

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 35px;

  transition: 0.5s ease;
}

/* SMALL LABEL */

.project-overlay span{
  color: #18b24b;
  font-size: 0.95rem;
  font-weight: 600;

  margin-bottom: 12px;

  letter-spacing: 1px;
}

/* TITLE */

.project-overlay h3{
  font-size: 2rem;
  font-weight: 700;

  margin-bottom: 14px;

  color: #fff;
}

/* DESCRIPTION */

.project-overlay p{
  color: #d6d6d6;
  font-size: 1rem;
  line-height: 1.8;
}

/* HOVER EFFECT */

.project-card:hover img{
  transform: scale(1.08);
}

.project-card:hover .project-overlay{
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.96),
    rgba(0,0,0,0.25)
  );
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width: 1024px){

  .projects-section{
    padding: 100px 40px;
  }

  .projects-top{
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-heading h2{
    font-size: 3rem;
  }

.projects-top h2 span{
  color:#18b24b;
}

  .projects-container{
    grid-template-columns: repeat(2, 1fr);
  }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width: 768px){

  .projects-section{
    padding: 90px 20px;
  }

  .projects-heading h2{
    font-size: 2.4rem;
    line-height: 1.3;
  }

  .projects-heading p{
    font-size: 1rem;
  }

  .projects-container{
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .project-overlay{
    padding: 25px;
  }

  .project-overlay h3{
    font-size: 1.6rem;
  }

  .project-overlay p{
    font-size: 0.95rem;
  }

  .project-btn{
    width: 100%;
    text-align: center;
  }

}

/* =========================
   CTA SECTION
========================= */

.cta-section{
  padding: 100px 20px;
  text-align: center;
  background: #000;

  animation: fadeUp 1s ease;
}

.cta-section h2{
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.cta-section h2 span{
  color: #18b24b;
}

.cta-section p{
  color: #cfcfcf;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 700px;
  margin: auto auto 40px;
}

.cta-btn{
  display: inline-block;

  padding: 18px 36px;

  background: #18b24b;
  color: #fff;

  border-radius: 14px;

  font-weight: 600;

  transition: 0.4s ease;
}

.cta-btn:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(24,178,75,0.35);
}

/* MOBILE */

@media(max-width:768px){

  .cta-section{
    padding: 80px 20px;
  }

  .cta-section h2{
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .cta-section p{
    font-size: 1rem;
  }

}

/* =========================
   FOOTER
========================= */

.footer{
  background: #050505;
  padding: 80px 70px 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* CONTAINER */

.footer-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;

  margin-bottom: 50px;
}

/* FOOTER TITLE */

.footer-box h2{
  font-size: 2rem;
  margin-bottom: 20px;
}

.footer-box h2 span{
  color: #18b24b;
}

.footer-box h3{
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #fff;
}

.footer-logo{
  display:flex;
  align-items:center;
  gap:12px;
}

/* IMAGE */

.logo-img{
  width:45px;
  height:45px;
  object-fit:contain;
}

/* TEXT */

.footer-logo h2{
  font-size:1.5rem;
  margin:0;
}

.footer-logo h2 span{
  color:#18b24b;
}

/* TEXT */

.footer-box p{
  color: #cfcfcf;
  line-height: 1.9;
  margin-bottom: 14px;
}

/* LINKS */

.footer-links li{
  margin-bottom: 14px;
}

.footer-links a,
.footer-policy a{
  color: #cfcfcf;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-policy a:hover{
  color: #18b24b;
}

/* WHATSAPP BUTTON */

.whatsapp-btn{
  display: inline-block;

  margin-top: 10px;

  padding: 14px 24px;

  background: #18b24b;
  color: #fff;

  border-radius: 12px;

  transition: 0.4s ease;
}

.whatsapp-btn:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(24,178,75,0.3);
}

/* BOTTOM */

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.08);

  padding-top: 25px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  flex-wrap: wrap;
}

.footer-bottom p,
.footer-policy{
  color: #cfcfcf;
  font-size: 0.95rem;
}

.footer-policy{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* MOBILE */

@media(max-width:768px){

  .footer{
    padding: 70px 20px 25px;
  }

  .footer-container{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom{
    flex-direction: column;
    text-align: center;
  }

}


/* =========================
   CODEC FONT
========================= */

@font-face{
    font-family:"Codec";

    src:url("../assets/fonts/CodecPro-Regular.ttf")
    format("truetype");
}

/* FULL WEBSITE */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;

    font-family:"Codec", sans-serif;
}