/* *{margin:0;padding:0;box-sizing:border-box;font-family:Arial}
.navbar{display:flex;justify-content:space-between;padding:15px 40px;box-shadow:0 2px 10px #ccc}
.logo span{color:#007bff}
.nav-links{display:flex;gap:20px;list-style:none}
.hero{display:flex;padding:60px;gap:40px}
.hero-left h1 span{color:#007bff}
.hero-right img{max-width:400px;animation:float 3s infinite}
@keyframes float{50%{transform:translateY(-10px)}}
.portfolio{padding:40px;background:#f5f5f5}
.portfolio-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px}
.blog-list{padding:40px}
.blog-card{padding:20px;box-shadow:0 0 10px #ccc;margin:10px}
@media(max-width:768px){.hero{flex-direction:column}} */

/* =====================
   GLOBAL RESET
===================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}

body{
  background: linear-gradient(180deg,#f9fbff,#eef2ff);
  color:#222;
  overflow-x:hidden;
}

/* =====================
   NAVBAR
===================== */
.navbar{
  position:sticky;
  top:0;
  z-index:999;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 50px;
  background:rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.logo{
  font-size:26px;
  font-weight:700;
}
.logo span{
  color:#4f46e5;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-weight:500;
  position:relative;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#4f46e5;
  transition:.3s;
}
.nav-links a:hover::after{
  width:100%;
}

.menu-btn{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* =====================
   HERO SECTION (3D)
===================== */
.hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:80px 60px;
  perspective:1200px;
}

.hero-left{
  max-width:550px;
}

.hero-left h1{
  font-size:48px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero-left h1 span{
  background:linear-gradient(90deg,#4f46e5,#06b6d4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-left p{
  font-size:17px;
  color:#555;
  margin-bottom:30px;
}

.btn{
  display:inline-block;
  padding:14px 34px;
  border-radius:50px;
  background:linear-gradient(135deg,#4f46e5,#06b6d4);
  color:#fff;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 20px 40px rgba(79,70,229,0.35);
  transition:.3s;
}
.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 30px 60px rgba(79,70,229,0.45);
}

/* 3D IMAGE CARD */
.hero-right{
  transform-style:preserve-3d;
}

.hero-right img{
  width:420px;
  max-width:100%;
  border-radius:30px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.25),
    inset 0 0 30px rgba(255,255,255,0.15);
  animation:float3d 5s ease-in-out infinite;
}

@keyframes float3d{
  0%{ transform:rotateY(0deg) translateY(0); }
  50%{ transform:rotateY(12deg) translateY(-18px); }
  100%{ transform:rotateY(0deg) translateY(0); }
}

/* =====================
   PORTFOLIO
===================== */
.portfolio{
  padding:80px 60px;
  background:#fff;
  text-align:center;
}

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

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.project{
  padding:40px;
  border-radius:22px;
  background:linear-gradient(135deg,#eef2ff,#ffffff);
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
  font-weight:600;
  transition:.4s;
  cursor:pointer;
}

.project:hover{
  transform:translateY(-10px) scale(1.03);
  box-shadow:0 40px 80px rgba(79,70,229,0.25);
}

/* =====================
   BLOG LIST
===================== */
.blog-list{
  padding:80px 60px;
}

.blog-list h2{
  font-size:36px;
  margin-bottom:20px;
}

#searchBox{
  width:100%;
  max-width:420px;
  padding:14px 18px;
  border-radius:14px;
  border:none;
  outline:none;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  margin-bottom:40px;
}

#blogContainer{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.blog-card{
  padding:28px;
  border-radius:22px;
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(14px);
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
  transition:.35s;
}

.blog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 35px 70px rgba(0,0,0,0.18);
}

.blog-card h3{
  margin-bottom:10px;
}

.blog-card p{
  color:#555;
  font-size:15px;
}

/* =====================
   RESPONSIVE
===================== */
@media(max-width:900px){
  .hero{
    flex-direction:column;
    text-align:center;
    padding:60px 30px;
  }
  .hero-right{
    margin-top:40px;
  }
}

@media(max-width:768px){
  .nav-links{
    display:none;
  }
  .menu-btn{
    display:block;
  }
}
/* new code */
 *{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif}
    body{background:#f4f6fb;color:#222}














    .container{max-width:900px;margin:auto;padding:20px}

    .cover{
      width:100%;
      border-radius:18px;
      margin:25px 0;
      box-shadow:0 20px 40px rgba(0,0,0,.25);
    }

    h1{font-size:32px}
    h2{margin-top:25px;color:#203a43}
    p,li{line-height:1.8;margin-top:10px;font-size:16px}

    .actions{
      display:flex;
      gap:12px;
      margin:30px 0;
      flex-wrap:wrap;
    }

    .btn{
      padding:12px 20px;
      border-radius:30px;
      border:none;
      cursor:pointer;
      background:#203a43;
      color:#fff;
      box-shadow:0 8px 20px rgba(0,0,0,.3);
    }

    .btn.whatsapp{background:#25D366}

    .ads{
      background:#e9edf5;
      text-align:center;
      padding:25px;
      border-radius:12px;
      margin:30px 0;
      color:#555;
    }

    footer{
      background:#0f2027;
      color:#fff;
      text-align:center;
      padding:15px;
    }

    @media(max-width:600px){
      h1{font-size:24px} }