/* public/style.css */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Product Sans',sans-serif;
  background:#fff;
  color:#202124;
  overflow-x:hidden;
}

/* HEADER */

.header{
  height:72px;
  display:flex;
  align-items:center;
  padding:0 20px;
  border-bottom:1px solid #e5e5e5;
  position:sticky;
  top:0;
  background:#fff;
  z-index:1000;
}

.header-left{
  display:flex;
  align-items:center;
  gap:14px;
}

.menu-btn{
  width:44px;
  height:44px;
  border:none;
  background:none;
  border-radius:50%;
  cursor:pointer;
  transition:0.3s;
  font-size:18px;
}

.menu-btn:hover{
  background:#f1f3f4;
}

.logo{
  width:200px;
}

/* SIDEBAR */

.sidebar{
  width:420px;
  max-width:85%;
  height:100vh;
  background:#fff;
  position:fixed;
  left:-100%;
  top:0;
  z-index:2000;
  overflow-y:auto;
  transition:0.4s;
  border-right:1px solid #e5e5e5;
}

.sidebar.active{
  left:0;
}

.sidebar-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px;
}

.sidebar-logo{
  width:250px;
}

.close-sidebar{
  border:none;
  background:none;
  font-size:24px;
  cursor:pointer;
}

.sidebar-menu{
  display:flex;
  flex-direction:column;
  padding:10px;
}

.sidebar-menu a{
  text-decoration:none;
  color:#202124;
  padding:14px 18px;
  border-radius:16px;
  display:flex;
  align-items:center;
  gap:14px;
  transition:0.3s;
  margin-bottom:6px;
}

.sidebar-menu a:hover{
  background:#e8f0fe;
  color:#1a73e8;
}

.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.4);
  display:none;
  z-index:1500;
}

.overlay.show{
  display:block;
}

/* HERO */

.hero{
  padding:140px 60px;
}

.hero-chip{
  display:inline-block;
  background:#e8f0fe;
  color:#1a73e8;
  padding:10px 18px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
}

.hero h1{
  font-size:78px;
  line-height:1.05;
  margin-top:30px;
  max-width:1100px;
}

.hero p{
  font-size:22px;
  line-height:1.9;
  color:#5f6368;
  margin-top:35px;
  max-width:950px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  margin-top:40px;
}

.primary-btn,
.secondary-btn{
  padding:16px 34px;
  border-radius:999px;
  border:none;
  cursor:pointer;
  transition:0.3s;
}

.primary-btn{
  background:#1a73e8;
  color:#fff;
}

.primary-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 40px rgba(26,115,232,0.3);
}

.secondary-btn{
  background:#fff;
  border:1px solid #dadce0;
}

.secondary-btn:hover{
  background:#f8f9fa;
}

/* PARTNERS */

.partners{
  padding:0 60px 100px;
}

.partners h2{
  font-size:40px;
  margin-bottom:40px;
}

.partners-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:40px;
}

.partners-grid img{
  width:100%;
  height:70px;
  object-fit:contain;
  filter:grayscale(100%);
  transition:0.3s;
}

.partners-grid img:hover{
  filter:none;
  transform:scale(1.05);
}

/* SERVICES */

.services-grid{
  padding:0 60px 120px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.service-card{
  padding:40px;
  border-radius:34px;
  transition:0.4s;
  cursor:pointer;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

.blue{
  background:#A2C7FC;
}

.red{
  background:#FFE2E2;
}

.pink{
  background:#FFD0EA;
}

.yellow{
  background:#FFE9BA;
}

.service-icon{
  width:80px;
  height:80px;
  background:#fff;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
}

.service-card h3{
  margin-top:28px;
  font-size:30px;
}

.service-card p{
  margin-top:20px;
  line-height:1.8;
  font-size:16px;
}

/* INFO SECTION */

.huge-info-section{
  padding:120px 60px;
}

.info-block{
  margin-bottom:150px;
  max-width:1100px;
}

.info-block span{
  color:#1a73e8;
  font-weight:600;
}

.info-block h2{
  font-size:72px;
  margin-top:20px;
  line-height:1.1;
}

.info-block p{
  font-size:22px;
  line-height:1.9;
  color:#5f6368;
  margin-top:30px;
}

/* CONTACT */

.contact{
  padding:120px 60px;
  text-align:center;
}

.contact h2{
  font-size:64px;
}

.contact p{
  max-width:950px;
  margin:auto;
  margin-top:30px;
  font-size:22px;
  line-height:1.9;
  color:#5f6368;
}

.contact a{
  display:inline-block;
  margin-top:40px;
  background:#1a73e8;
  color:#fff;
  text-decoration:none;
  padding:18px 38px;
  border-radius:999px;
  transition:0.3s;
}

.contact a:hover{
  transform:translateY(-4px);
}

/* FOOTER */

.footer{
  padding:60px;
  border-top:1px solid #e5e5e5;
}

.footer-logo{
  width:170px;
}

.footer-links{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
  margin-top:35px;
}

.footer-links a{
  text-decoration:none;
  color:#5f6368;
}

.footer-links a:hover{
  color:#1a73e8;
}

.footer-bottom{
  margin-top:35px;
  color:#5f6368;
}

/* MOBILE */

@media(max-width:992px){

  .hero{
    padding:80px 20px;
  }

  .hero h1{
    font-size:42px;
  }

  .hero p{
    font-size:18px;
  }

  .partners{
    padding:0 20px 80px;
  }

  .partners h2{
    font-size:28px;
  }

  .services-grid{
    padding:0 20px 80px;
    grid-template-columns:1fr;
  }

  .huge-info-section{
    padding:80px 20px;
  }

  .info-block h2{
    font-size:42px;
  }

  .info-block p{
    font-size:18px;
  }

  .contact{
    padding:80px 20px;
  }

  .contact h2{
    font-size:42px;
  }

  .contact p{
    font-size:18px;
  }

  .footer{
    padding:40px 20px;
  }

}
/* =========================
ALL SERVICES GRID
========================= */

.all-services{
  padding:120px 60px;
}

.all-services h2{
  font-size:48px;
  margin-bottom:40px;
}

.all-services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

@media(max-width:768px){
  .all-services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

.service-box{
  padding:18px;
  border-radius:16px;
  text-align:center;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  transition:0.2s;
}

.service-box:hover{
  transform:translateY(-5px);
}

.c1{background:#FFE2E2;}
.c2{background:#A2C7FC;}
.c3{background:#FFD0EA;}
.c4{background:#FFE9BA;}