/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#f7f8fc;
  overflow-x:hidden;
  color:#111;
}

img{
  width:100%;
}

.section-padding{
  padding:80px 0;
}

/* NAVBAR */

.custom-nav{
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(12px);
  padding:18px 0;
  border-bottom:1px solid rgba(0,0,0,0.05);
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}

.logo img{
  width:60px;
}

.logo h3{
  font-size:24px;
  color:#111;
  margin:0;
  font-weight:700;
}

.logo p{
  margin:0;
  font-size:12px;
  color:#666;
}

.nav-link{
  color:#111;
  margin-left:20px;
  font-weight:500;
  position:relative;
  transition:0.3s;
}

.nav-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:3px;
  border-radius:30px;
  background:linear-gradient(90deg,#ff2fa0,#2b7cff);
  transition:0.4s;
}

.nav-link:hover::after,
.nav-link.active::after{
  width:100%;
}

.nav-link:hover{
  color:#ff2fa0;
}

/* HERO */

.hero{
  padding-top:120px;
  position:relative;
}

.hero-tag{
  color:#ff2fa0;
  font-weight:600;
  letter-spacing:1px;
}

.hero h1{
  font-size:78px;
  font-weight:800;
  line-height:1.1;
  margin:20px 0;
}

.hero h1 span{
  background:linear-gradient(90deg,#ff2fa0,#2b7cff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero p{
  color:#666;
  line-height:34px;
  font-size:18px;
  margin-bottom:35px;
}

.hero-btns{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.main-btn{
  background:linear-gradient(90deg,#ff2fa0,#2b7cff);
  color:white;
  padding:15px 34px;
  border-radius:16px;
  text-decoration:none;
  font-weight:600;
  transition:0.4s;
  border:none;
  display:inline-block;
}

.main-btn:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(255,47,160,0.25);
}

.outline-btn{
  border:2px solid #ddd;
  color:#111;
  padding:15px 34px;
  border-radius:16px;
  text-decoration:none;
  font-weight:600;
  transition:0.4s;
}

.outline-btn:hover{
  background:linear-gradient(90deg,#ff2fa0,#2b7cff);
  color:white;
  border-color:transparent;
}

.social-icons{
  display:flex;
  gap:15px;
  margin-top:35px;
}

.social-icons a{
  width:50px;
  height:50px;
  border-radius:50%;
  background:white;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  text-decoration:none;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.4s;
}

.social-icons a:hover{
  transform:translateY(-8px);
  background:linear-gradient(90deg,#ff2fa0,#2b7cff);
  color:white;
}

/* HERO RIGHT */

.hero-right{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-circle{
  width:480px;
  height:480px;
  border-radius:50%;
  background:linear-gradient(to bottom right,#ffffff,#eef4ff);
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.hero-circle img{
  width:70%;
}

.floating-card{
  position:absolute;
  background:white;
  padding:16px 24px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  font-weight:600;
  animation:float 4s ease-in-out infinite;
}

.floating-card i{
  margin-right:8px;
  color:#ff2fa0;
}

.one{
  top:80px;
  left:0;
}

.two{
  bottom:90px;
  right:0;
}

@keyframes float{
  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-12px);
  }

  100%{
    transform:translateY(0);
  }
}

/* SECTION */

.section-tag{
  color:#ff2fa0;
  font-weight:600;
}

.section-title{
  font-size:55px;
  font-weight:700;
  margin:18px 0;
}

.section-title span{
  background:linear-gradient(90deg,#ff2fa0,#2b7cff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.section-text{
  color:#666;
  max-width:700px;
  margin:auto;
  line-height:34px;
}

/* ABOUT */

.about-card{
  background:white;
  padding:45px;
  border-radius:28px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.4s;
}

.about-card:hover{
  transform:translateY(-10px);
}

.about-card h1{
  font-size:60px;
  color:#ff2fa0;
}

/* SERVICES */

.service-card{
  background:white;
  padding:40px 30px;
  border-radius:28px;
  text-align:center;
  transition:0.4s;
  border:1px solid rgba(0,0,0,0.05);
}

.service-card:hover{
  transform:translateY(-12px);
  box-shadow:0 15px 35px rgba(0,0,0,0.06);
}

.service-card i{
  font-size:40px;
  margin-bottom:20px;
  background:linear-gradient(90deg,#ff2fa0,#2b7cff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.service-card h3{
  margin-bottom:15px;
}

.service-card p{
  color:#666;
  line-height:30px;
}

/* PRICING */

.price-card{
  background:white;
  padding:50px;
  border-radius:28px;
  text-align:center;
  position:relative;
  transition:0.4s;
  border:1px solid rgba(0,0,0,0.05);
}

.price-card:hover{
  transform:translateY(-12px);
}

.active-card{
  border:2px solid #ff2fa0;
}

.popular{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  background:#ff2fa0;
  color:white;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
}

.price-card h1{
  font-size:65px;
  margin:20px 0;
}

/* CONTACT */

.contact-box{
  margin-top:30px;
}

.contact-box div{
  margin-bottom:18px;
  color:#555;
  transition:0.3s;
}

.contact-box div:hover{
  transform:translateX(10px);
  color:#ff2fa0;
}

form{
  background:white;
  padding:40px;
  border-radius:28px;
  box-shadow:0 5px 25px rgba(0,0,0,0.05);
}

input,
textarea{
  width:100%;
  padding:18px;
  border-radius:16px;
  border:1px solid #ddd;
  margin-bottom:20px;
  transition:0.3s;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:#ff2fa0;
  box-shadow:0 0 0 5px rgba(255,47,160,0.08);
}

textarea{
  height:160px;
  resize:none;
}

/* FOOTER */

footer{
  padding:35px 0;
  text-align:center;
  color:#777;
}

/* RESPONSIVE */

@media(max-width:991px){

  .hero{
    text-align:center;
  }

  .hero h1{
    font-size:55px;
  }

  .hero-btns{
    justify-content:center;
  }

  .social-icons{
    justify-content:center;
  }

  .hero-circle{
    width:320px;
    height:320px;
    margin-top:50px;
  }

  .floating-card{
    display:none;
  }

  .section-title{
    font-size:42px;
  }

  .portfolio-top{
    flex-direction:column;
    gap:20px;
  }

}

/* ADD THIS IN style.css */

/* PORTFOLIO PAGE */

.portfolio-page{
  background:#f7f8fc;
  min-height:100vh;
  padding-top:140px;
}

.gallery-card{
  overflow:hidden;
  border-radius:28px;
  background:white;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  transition:0.4s;
}

.gallery-card:hover{
  transform:translateY(-10px);
}

.gallery-card img{
  width:100%;
  transition:0.5s;
}

.gallery-card:hover img{
  transform:scale(1.08);
}