@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#000;
  color:#fff;
}

/* ===== HEADER ===== */
header{
  position:fixed;
  top:0;
  width:100%;
  padding:20px 60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.85);
  z-index:1000;
}

header h2{
  color:#ff2d2d;
  font-weight:700;
}

/* ===== NAV ===== */
nav{
  display:flex;
  align-items:center;
}

nav a{
  margin:0 15px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  position:relative;
}

nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#ff2d2d;
  transition:0.3s;
}

nav a:hover::after{
  width:100%;
}

/* ===== MENU TOGGLE ===== */
.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
  color:#ff2d2d;
}

/* ===== SECTIONS ===== */
section{
  min-height:100vh;
  padding:120px 80px;
}

/* ===== HERO ===== */
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.hero-text h1{
  font-size:48px;
}

.hero-text span{
  color:#ff2d2d;
}

.hero-text h3{
  font-weight:400;
  color:#ddd;
}

.hero-text p{
  margin:20px 0;
  color:#aaa;
  max-width:500px;
}

.btn{
  display:inline-block;
  padding:12px 32px;
  border:1px solid #ff2d2d;
  color:#ff2d2d;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s;
}

.btn:hover{
  background:#ff2d2d;
  color:#000;
}

/* ===== IMAGE ===== */
.hero-img{
  width:320px;
  height:420px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 0 40px rgba(255,45,45,0.8);
}

.hero-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ===== TITLES ===== */
.section-title{
  font-size:36px;
  color:#ff2d2d;
  margin-bottom:40px;
}

/* ===== CARDS ===== */
.card{
  background:#0d0d0d;
  padding:25px;
  border-radius:16px;
  margin-bottom:20px;
  box-shadow:0 0 20px rgba(255,45,45,0.1);
}

/* ===== FOOTER ===== */
footer{
  text-align:center;
  padding:30px;
  background:#0d0d0d;
  color:#777;
}

/* ========================= */
/* ===== MOBILE VIEW ======= */
/* ========================= */
@media(max-width:900px){

  header{
    padding:20px 30px;
  }

  section{
    padding:120px 30px;
  }

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-img{
    width:260px;
    height:360px;
  }

  /* 🔥 MOBILE MENU FIX */
  nav{
    position:absolute;
    top:70px;
    right:30px;
    background:#000;
    flex-direction:column;
    width:200px;
    padding:20px;
    border-radius:12px;
    display:none;
    box-shadow:0 0 30px rgba(255,45,45,0.3);
  }

  nav.active{
    display:flex;
  }

  nav a{
    margin:10px 0;
  }

  .menu-toggle{
    display:block;
  }
}
/* link */
/* ===== SOCIAL ICONS ===== */
/* ===== SOCIAL ICONS (IMAGE STYLE) ===== */
.social-icons{
  margin-top:20px;          /* Hire Me se gap */
  display:flex;
  align-items:center;
  gap:14px;                 /* icons ke beech spacing */
}

.social-icons a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:36px;               /* 🔥 perfect size */
  height:36px;
  border:1px solid #ff2d2d;
  border-radius:50%;
  color:#ff2d2d;
  font-size:15px;           /* icon size */
  transition:0.3s ease;
}

.social-icons a:hover{
  background:#ff2d2d;
  color:#000;
  transform:translateY(-3px);
}

