*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  color:#222;
  background:#fff;
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* =========================
   HEADER
========================= */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:rgba(0,0,0,0.92);
  backdrop-filter:blur(6px);
  z-index:1000;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
}

.logo img{
  width:220px;
  height:auto;
}

nav ul{
  display:flex;
  gap:35px;
  list-style:none;
}

nav ul li a{
  color:#fff;
  font-weight:500;
  transition:0.3s;
}

nav ul li a:hover{
  color:#6dbb52;
}

.btn-call{
  background:#5fae45;
  color:#fff;
  padding:12px 22px;
  border-radius:40px;
  font-weight:600;
  transition:0.3s;
}

.btn-call:hover{
  background:#4b9135;
}

/* =========================
   HERO
========================= */

.hero{
  min-height:100vh;

  background:
  linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.60)),
  url('../images/logoCV.png');

  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;

  display:flex;
  align-items:center;

  color:#fff;

  padding-top:100px;
}

.hero-content{
  max-width:700px;
}

.hero h1{
  font-size:4rem;
  line-height:1.1;
  margin-bottom:20px;
}

.hero h1 span{
  color:#79d15b;
}

.hero p{
  font-size:1.15rem;
  margin-bottom:35px;
  color:#f2f2f2;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn-primary{
  background:#69b74d;
  color:#fff;
  padding:15px 30px;
  border-radius:50px;
  font-weight:600;
  transition:0.3s;
}

.btn-primary:hover{
  background:#4f9437;
}

.btn-secondary{
  border:2px solid #fff;
  color:#fff;
  padding:15px 30px;
  border-radius:50px;
  font-weight:600;
  transition:0.3s;
}

.btn-secondary:hover{
  background:#fff;
  color:#000;
}

/* =========================
   SERVICES
========================= */

.services{
  padding:100px 0;
  background:#f8f8f8;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:2.7rem;
  margin-bottom:15px;
}

.section-title p{
  color:#666;
  max-width:700px;
  margin:auto;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
}

.service-card{
  background:#fff;
  border-radius:20px;
  padding:35px 25px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-8px);
}

.service-icon{
  font-size:3rem;
  margin-bottom:20px;
}

.service-card h3{
  margin-bottom:15px;
}

/* =========================
   ABOUT
========================= */

.about{
  padding:100px 0;
}

.about-content{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about img{
  border-radius:25px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.about-text h2{
  font-size:2.5rem;
  margin-bottom:20px;
}

.about-text p{
  margin-bottom:20px;
  color:#555;
}

/* =========================
   CONTACT
========================= */

.contact{
  padding:100px 0;
  background:#111;
  color:#fff;
}

.contact .section-title h2{
  color:#fff;
}

.contact .section-title p{
  color:#ccc;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
}

.contact-box{
  background:rgba(255,255,255,0.05);
  padding:35px;
  border-radius:20px;
  text-align:center;
}

.contact-box h3{
  margin-bottom:15px;
  color:#79d15b;
}

/* =========================
   FOOTER
========================= */

footer{
  background:#000;
  color:#bbb;
  text-align:center;
  padding:25px;
  font-size:0.9rem;
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle{
  display:none;
  color:#fff;
  font-size:2rem;
  cursor:pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

  nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#000;
    display:none;
  }

  nav.active{
    display:block;
  }

  nav ul{
    flex-direction:column;
    padding:25px;
  }

  .menu-toggle{
    display:block;
  }

  .btn-call{
    display:none;
  }

  .hero h1{
    font-size:2.8rem;
  }

  .about-content{
    grid-template-columns:1fr;
  }

}

@media(max-width:600px){

  .hero h1{
    font-size:2.2rem;
  }

  .hero p{
    font-size:1rem;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
    text-align:center;
  }

  .section-title h2{
    font-size:2rem;
  }

}