/* CLICKANERD LANDING HOME PAGE */
/* TEAMVIEWER INTEGRATION USA CANADA UK AU GERMANY */
/* COPYRIGHT 2025 NERDSOFT LLC */

html,body{
  height:100%;
  display:flex;
  flex-direction:column;
  margin:0;
}
body{
  font-family:sans-serif;
  background:#fff;
  color:#333;
  line-height:1.6;
}
a{text-decoration:none;color:inherit;}
body>*:not(#footer){flex-shrink:0;}
#footer{margin-top:auto;}

/* ================= HEADER ================= */
#header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:66px;
  background:transparent;
  opacity:0;
  pointer-events:auto;
  display:flex;
  align-items:center;
  padding:0 4px;
  z-index:1000;
  transition:
    opacity .6s,
    background .4s,
    height .4s,
    box-shadow .4s;
}

#header.scrolled{
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(8px);
  box-shadow:0 2px 10px rgba(0,0,0,.25);
  opacity:1;
  height:56px;
}

#header .logo-bar img{
  height:46px;
  opacity:0;
  transform:scale(.9);
  transition:opacity .4s,transform .4s,height .3s;
}

#header.scrolled .logo-bar img{
  opacity:1;
  transform:scale(1);
}

/* ================= MENU TOGGLE ================= */
.menuToggle{
  font-size:16px;
  font-weight:bold;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  cursor:pointer;
  padding:8px 18px;
  margin-left:auto;
  margin-right:4px;
  background:rgba(255,255,255,0.08);
  border-radius:6px;
  transition:background .3s,color .3s,transform .2s;
}

.menuToggle:hover{
  color:#00b7ff;
  background:rgba(255,255,255,0.15);
  transform:scale(1.05);
}

.menuToggle .icon{font-size:20px;}

/* ================= SLIDE MENU ================= */
#menu{
  position:fixed;
  top:0;
  right:-240px;
  width:220px;
  height:100%;
  background:rgba(20,20,20,.96);
  backdrop-filter:blur(10px);
  box-shadow:-3px 0 12px rgba(0,0,0,.4);
  transition:right .35s ease;
  z-index:999;
  display:flex;
  flex-direction:column;
}

#menu.active{right:0;}

#menu ul{
  list-style:none;
  padding:40px 5px 5px;
  margin:0;
  flex:1;
  overflow-y:auto;
}

#menu ul li{
  margin:10px 0;
  opacity:0;
  transform:translateX(15px);
  transition:all .3s;
}

#menu.active ul li{
  opacity:1;
  transform:translateX(0);
}

#menu ul li a{
  display:block;
  text-align:center;
  padding:12px 0;
  font-size:16px;
  font-weight:bold;
  border-radius:6px;
  color:#fff;
  background:rgba(255,255,255,0.05);
  letter-spacing:.5px;
  transition:background .3s,color .3s,transform .2s;
}

#menu ul li a:hover{
  background:rgba(0,183,255,0.25);
  color:#00b7ff;
  transform:scale(1.05);
}

/* Accent colors */
#menu ul li:first-child a{background:rgba(0,183,255,.35);}
#menu ul li:first-child a:hover{background:rgba(0,183,255,.55);}
#menu ul li:nth-child(2) a{background:rgba(255,193,7,.35);}
#menu ul li:nth-child(2) a:hover{background:rgba(255,193,7,.55);}
#menu ul li:nth-child(3) a{background:rgba(40,167,69,.35);}
#menu ul li:nth-child(3) a:hover{background:rgba(40,167,69,.55);}

/* ================= BANNER ================= */
#banner{
  height:100vh;
  background:
    linear-gradient(to top,rgba(0,0,0,.7),rgba(0,0,0,.2)),
    url('images/banner.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:0 16px;
  opacity:0;
  animation:fadeInBg 3s ease forwards;
}

@keyframes fadeInBg{to{opacity:1;}}

#banner h2{
  font-size:clamp(2.5em,6vw,5em);
  font-weight:800;
  line-height:1.2;
  margin-bottom:20px;
  text-shadow:3px 3px 15px rgba(0,0,0,.8);
}

#banner .more{
  padding:10px 26px;
  background:#007bff;
  border-radius:6px;
  font-weight:bold;
  transition:background .3s;
}

#banner .more:hover{background:#0056b3;}

/* ================= CONTENT ================= */
.wrapper{padding:60px 16px;max-width:960px;margin:auto;}
.callout-box{
  background:#f0f8ff;
  border-left:4px solid #007bff;
  padding:20px;
  border-radius:10px;
  margin-bottom:30px;
  box-shadow:0 3px 12px rgba(0,0,0,.05);
}
.callout-title{font-size:1.3em;font-weight:bold;color:#007bff;margin-bottom:8px;}

.service-card{
  background:#fff;
  border-radius:12px;
  padding:28px;
  margin:20px auto;
  max-width:700px;
  box-shadow:0 4px 14px rgba(0,0,0,.08);
  transition:transform .25s,box-shadow .25s;
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 22px rgba(0,123,255,.2);
}

/* ================= SUPPORT FACE ================= */
.support-face-box{
  position:fixed;
  bottom:18px;
  right:18px;
  width:80px;
  height:80px;
  border-radius:50%;
  overflow:hidden;
  z-index:2000;
  animation:vaporPulse 3s infinite;
}

.support-face-box img{
  width:110%;
  height:110%;
  object-fit:cover;
  margin:-5%;
}

@keyframes vaporPulse{
  0%{box-shadow:0 0 0 0 rgba(0,123,255,.7);}
  50%{box-shadow:0 0 25px 10px rgba(0,123,255,.3);}
  100%{box-shadow:0 0 0 0 rgba(0,123,255,0);}
}

/* ================= FOOTER ================= */
#footer{
  background:#111;
  color:#fff;
  padding:24px;
  text-align:center;
}

#footer .copyright{
  font-size:13px;
  color:#aaa;
}
/* Support face default state */
.support-face-box {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Slide fade out when menu opens */
body.menu-open .support-face-box {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}


