*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{
  background: radial-gradient(circle at top, #111827, #020617);
  color:#e5e7eb;
}

/* NAVBAR */
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 8%;
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
  font-weight:600;
  letter-spacing:2px;
}

nav a{
  margin-left:25px;
  text-decoration:none;
  color:#9ca3af;
  transition:0.3s;
}

nav a:hover{
  color:white;
}

.logo-box{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-box img{
  width:40px;
  height:40px;
  object-fit:contain;
  filter: drop-shadow(0 0 8px rgba(99,102,241,0.6));
}

.logo-box span{
  font-weight:600;
  letter-spacing:2px;
}

.logo-box img:hover,
.hero-logo img:hover{
  transform:scale(1.1);
  transition:0.3s;
}

.hero{
  position:relative;
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475') center/cover no-repeat;
}
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(2,6,23,0.75);
}

.card img{
  width:60px;
  margin-bottom:10px;
}

.section-divider img{
  width:100%;
  height:200px;
  object-fit:cover;
  opacity:0.2;
}

/* HERO */
.hero{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:90vh;
  padding:0 8%;
}

.hero h1{
  font-size:clamp(32px,5vw,56px);
  max-width:650px;
  line-height:1.2;
}

.hero p{
  margin-top:15px;
  color:#9ca3af;
  max-width:500px;
}

.btn{
  margin-top:25px;
  padding:12px 26px;
  background:linear-gradient(135deg,#6366f1,#8b5cf6);
  border:none;
  color:white;
  cursor:pointer;
  border-radius:6px;
}

.btn:hover{
  opacity:0.9;
}

/* HERO IMAGE BACKGROUND */
.hero{
  position: relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  padding:0 8%;
  background: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c') center/cover no-repeat;
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background: rgba(2,6,23,0.75); /* dark overlay */
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:600px;
}

/* PORTFOLIO IMAGE STYLE */
.card img{
  width:100%;
  border-radius:10px;
  margin-bottom:15px;
  transition:0.4s;
}

.card:hover img{
  transform:scale(1.05);
}

/* GLASS EFFECT UPGRADE */
.card{
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border:1px solid rgba(255,255,255,0.1);
}

/* SECTION */
.section{
  padding:80px 8%;
}

h2{
  font-size:28px;
}

/* ABOUT SECTION */
.about-box{
  display:flex;
  gap:30px;
  align-items:center;
  margin-top:20px;
  flex-wrap:wrap;
}

.about-box img{
  width:250px;
  border-radius:12px;
}
/* About upgrade */
.about-highlight{
  font-size:18px;
  font-weight:500;
  color:#a5b4fc;
  margin-bottom:15px;
}

.signature{
  margin-top:20px;
  color:#6366f1;
  font-style:italic;
}

/* CONTACT FORM */
.contact-form{
  display:flex;
  flex-direction:column;
  gap:15px;
  margin-top:20px;
  max-width:400px;
}

.contact-form input,
.contact-form textarea{
  padding:12px;
  border:none;
  border-radius:6px;
  background:#111827;
  color:white;
}

.contact-form textarea{
  min-height:100px;
}

/* PRICING STYLE */
.card h2{
  margin:10px 0;
  color:#6366f1;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  margin-top:30px;
}

.card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  padding:25px;
  border-radius:12px;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
}

/* ABOUT */
.about p{
  margin-top:15px;
  color:#9ca3af;
  max-width:600px;
}

.about-box{
  display:flex;
  gap:40px;
  align-items:flex-start;
  flex-wrap:wrap;
}

.about-box img{
  width:260px;
  border-radius:16px;
  box-shadow:0 10px 40px rgba(0,0,0,0.5);
}

.about-highlight{
  font-size:18px;
  color:#a5b4fc;
  margin-bottom:15px;
  font-weight:500;
}

.about-details p{
  margin:8px 0;
  color:#cbd5f5;
}

.about-box img{
  width:260px;
  border-radius:16px;
  box-shadow:0 10px 40px rgba(0,0,0,0.5);
  animation: floatImage 4s ease-in-out infinite;
}

.about-details{
  opacity:0;
  transform:translateX(40px);
  animation: slideIn 1s ease forwards;
  animation-delay:1.2s;
}

@keyframes slideIn{
  to{
    opacity:1;
    transform:translateX(0);
  }
}

.fade-text{
  opacity:0;
  transform:translateY(20px);
  animation: fadeUp 1s forwards;
}

.fade-text:nth-child(1){ animation-delay:0.3s; }
.fade-text:nth-child(2){ animation-delay:0.6s; }
.fade-text:nth-child(3){ animation-delay:0.9s; }

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes floatImage{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

.signature{
  margin-top:20px;
  color:#6366f1;
  font-style:italic;
}

body{
  background: linear-gradient(270deg, #020617, #111827, #020617);
  background-size:600% 600%;
  animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

/* Mobile fix */
@media(max-width:768px){
  .about-box{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
}

/* CONTACT */
.contact-text{
  margin-top:10px;
  color:#9ca3af;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:30px;
  color:#6b7280;
  border-top:1px solid rgba(255,255,255,0.05);
}

/* RESPONSIVE */
@media(max-width:768px){
  nav{
    display:flex;
    flex-direction:column;
    background:#020617;
    position:absolute;
    top:60px;
    right:0;
    width:200px;
    padding:15px;
  }
}

/* HERO ENTRY ANIMATION */
.hero{
  animation: zoomFade 2s ease forwards;
}

@keyframes zoomFade{
  0%{
    transform: scale(1.2);
    opacity:0;
  }
  100%{
    transform: scale(1);
    opacity:1;
  }
}

.popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.8);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:999;
}

.popup-box{
  background:#020617;
  padding:30px;
  border-radius:12px;
  text-align:center;
}

.popup-box button{
  margin:10px;
  padding:10px 20px;
  border:none;
  background:#6366f1;
  color:white;
  cursor:pointer;
}

/* TYPEWRITER EFFECT */
.typing-text{
  font-size:clamp(28px,6vw,52px);
  white-space: normal;
  line-height:1.3;
}

.hero{
  padding: 60px 20px;
  text-align: left;
}

/* Mobile ke liye */
@media(max-width:768px){
  .hero{
    text-align: center;
    padding: 80px 20px;
  }
}

/* CURSOR GLOW */
.cursor-glow{
  position: fixed;
  width: 20px;
  height: 20px;
  background: rgba(99,102,241,0.6);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  transform: translate(-50%, -50%);
}
@media(max-width:768px){
  .cursor-glow{
    display:none;
  }
}

img{
  max-width:100%;
  height:auto;
}

/* TESTIMONIAL STYLE */
.testimonial{
  position:relative;
  overflow:hidden;
}

.quote{
  font-style:italic;
  color:#e5e7eb;
}

/* CLIENT INFO */
.client{
  margin-top:15px;
  display:flex;
  flex-direction:column;
}

.client-name{
  font-weight:600;
}

.client-role{
  font-size:12px;
  color:#9ca3af;
}

/* AI LINE */
.ai-trust{
  text-align:center;
  margin-top:50px;
  font-size:14px;
  color:#6366f1;
  letter-spacing:1px;
}

/* HOVER GLOW EFFECT */
.testimonial:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 10px 40px rgba(99,102,241,0.3);
}

.testimonial{
  opacity:0;
  transform:translateY(40px);
  animation: fadeUp 1s forwards;
}

.testimonial:nth-child(1){ animation-delay:0.3s; }
.testimonial:nth-child(2){ animation-delay:0.6s; }
.testimonial:nth-child(3){ animation-delay:0.9s; }

/* ANIMATION */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Hover glow effect */
.card:hover {
  box-shadow: 0 0 25px rgba(99,102,241,0.3);
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}
/* Active nav feel */
nav a:active {
  color: #6366f1;
}