/* =========================================
   GLOBAL WEBSITE CSS
========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#070b16;
  color:white;
  overflow-x:hidden;
}

body::before{
  content:'';
  position:fixed;
  width:450px;
  height:450px;
  background:#00d9ff15;
  border-radius:50%;
  top:-150px;
  left:-150px;
  filter:blur(120px);
  z-index:-1;
}

body::after{
  content:'';
  position:fixed;
  width:400px;
  height:400px;
  background:#005eff15;
  border-radius:50%;
  bottom:-150px;
  right:-150px;
  filter:blur(120px);
  z-index:-1;
}

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

/* =========================================
   TOPBAR CSS
========================================= */

.topbar{
  padding:12px 0;
  background:rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
}

.topbar-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.topbar a,
.topbar span{
  color:#cbd5e1;
  text-decoration:none;
}

/* =========================================
   NAVBAR CSS
========================================= */

nav{
  padding:25px 0;
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  backdrop-filter:blur(18px);
  padding:18px 28px;
  flex-wrap:wrap;
  gap:20px;
}

.logo-wrapper{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-img{
  width:58px;
  height:58px;
  object-fit:contain;
  border-radius:14px;
}

.logo-text{
  font-size:28px;
  font-weight:700;
  color:#00d9ff;
}

.nav-links{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
}

.nav-links a{
  text-decoration:none;
  color:white;
  transition:0.3s;
}

.nav-links a:hover,
.nav-links .active{
  color:#00d9ff;
}

.btn{
  padding:14px 26px;
  border-radius:14px;
  background:linear-gradient(135deg,#00d9ff,#005eff);
  color:white;
  text-decoration:none;
  border:none;
  font-weight:600;
  box-shadow:0 0 25px #00d9ff35;
  transition:0.4s;
  display:inline-block;
}

.btn:hover{
  transform:translateY(-5px);
}

.secondary-btn{
  background:transparent;
  border:1px solid #00d9ff;
}

/* =========================================
   PAGE HERO CSS
========================================= */

.page-hero{
  padding:90px 0 70px;
  text-align:center;
}

.page-hero h1{
  font-size:64px;
  margin-bottom:20px;
  background:linear-gradient(to right,#ffffff,#00d9ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.page-hero p{
  max-width:900px;
  margin:auto;
  color:#cbd5e1;
  line-height:1.9;
  font-size:18px;
}

/* =========================================
   SERVICE HIGHLIGHT STRIP CSS
========================================= */

.highlight-strip{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-bottom:80px;
}

.highlight-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:22px;
  padding:28px;
  text-align:center;
  backdrop-filter:blur(15px);
  transition:0.4s;
}

.highlight-card:hover{
  transform:translateY(-8px);
  box-shadow:0 0 30px #00d9ff25;
}

.highlight-card h3{
  margin-top:15px;
  color:#00d9ff;
}

/* =========================================
   SERVICES GRID CSS
========================================= */

.services-section{
  padding-bottom:120px;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
  gap:35px;
}

.service-card{
  position:relative;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:30px;
  overflow:hidden;
  backdrop-filter:blur(18px);
  transition:0.4s;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 0 35px #00d9ff25;
}

.service-image{
  height:250px;
  background:#0f172a;
  display:flex;
  justify-content:center;
  align-items:center;
}

.service-image img{
  width:65%;
  transition:0.4s;
}

.service-card:hover .service-image img{
  transform:scale(1.08);
}

.service-content{
  padding:32px;
}

.service-content h3{
  font-size:30px;
  margin-bottom:18px;
}

.service-content p{
  color:#cbd5e1;
  line-height:1.9;
  margin-bottom:25px;
}

.service-features{
  display:grid;
  gap:12px;
  margin-bottom:30px;
}

.service-features div{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  padding:14px 16px;
  font-size:14px;
}

.service-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

/* =========================================
   DOORSTEP SERVICE BANNER CSS
========================================= */

.doorstep-banner{
  margin:120px 0;
}

.doorstep-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:35px;
  padding:60px;
  backdrop-filter:blur(18px);
}

.doorstep-image{
  text-align:center;
}

.doorstep-image img{
  width:100%;
  max-width:320px;
}

.doorstep-content h2{
  font-size:48px;
  margin-bottom:22px;
}

.doorstep-content p{
  color:#cbd5e1;
  line-height:1.9;
  margin-bottom:30px;
}

.doorstep-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
  margin-bottom:30px;
}

.doorstep-list div{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:14px;
  padding:15px;
}

/* =========================================
   FOOTER CSS
========================================= */

footer{
  padding:60px 0 30px;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-content{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:40px;
  margin-bottom:40px;
}

.footer-content h3{
  margin-bottom:20px;
  color:#00d9ff;
}

.footer-content p,
.footer-content a{
  color:#cbd5e1;
  line-height:2;
  text-decoration:none;
  display:block;
}

.footer-bottom{
  text-align:center;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,0.08);
  color:#94a3b8;
}

/* =========================================
   FLOATING WHATSAPP CSS
========================================= */

.floating-whatsapp{
  position:fixed;
  right:25px;
  bottom:25px;
  width:65px;
  height:65px;
  border-radius:50%;
  background:linear-gradient(135deg,#00d9ff,#005eff);
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  color:white;
  font-size:28px;
  box-shadow:0 0 35px #00d9ff60;
  z-index:999;
}

/* =========================================
   MOBILE RESPONSIVE CSS
========================================= */

@media(max-width:992px){

  .navbar{
    justify-content:center;
    text-align:center;
  }

  .nav-links{
    justify-content:center;
  }

  .page-hero h1{
    font-size:42px;
    line-height:1.3;
  }

  .page-hero p{
    font-size:16px;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .doorstep-wrapper{
    grid-template-columns:1fr;
    text-align:center;
    padding:40px 25px;
  }

  .doorstep-content h2{
    font-size:34px;
  }

  .doorstep-list{
    grid-template-columns:1fr;
  }

}
