*{
  margin: 0;
  padding: 0;
  font-family: 'poppins',sans-serif;
  box-sizing: border-box;
}
body{
  background-color: #080808;
  color: #fff;
}
#header{
  width: 100%;
  height: 100vh;
  background-image:url(images/sainora.png);
  background-size: cover;
  background-position: center;
  position: relative;

}
.container{
  padding: 20px 10%;
}
nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}
.logo{
  width: 140px;
}


nav ul{
  list-style: none;
}

nav ul li{
  display: inline-block;
  margin: 10px 20px;
}

nav ul li a{
  text-decoration: none;
  color: white;
  font-size: 18px;
  position: relative;
}
nav ul li a::after{
  content: '';
  width: 0;
  height: 3px;
  background: #ff004f;
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: width 0.5s ease;

}
nav ul li a:hover::after{
  width: 100%;
}
.hero{
  height: calc(100vh - 80px); /* full height minus nav */
  display: flex;
  align-items: center;        /* vertical center */
}
.header-text{
  margin-top: 20px;
  font-size: 30px;
  max-width: 800px;
  line-height: 50px;

}
.header-text h1{
  font-size:  45px;
}
.header-text p{
  font-size: 25px;
}
.header-text span{
  color: #ff004f;
}

#about{
  padding: 80px 0;
  color: #ababab;

}
.row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-col-1{
  flex-basis: 35%;
}
.about-col-1 img{
  width: 100%;
  border-radius:15px ;
}
.about-col-2{
  flex-basis:60%;

}
.sub-title{
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  line-height: 100px;

}
.about-text{
  line-height: 30px;
  font-size: 20px;
}
/* Download CV Button */
.cv-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background: #ff004f;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: background 0.3s, transform 0.3s;
}

.cv-btn:hover {
  background: #e60045;
  transform: translateY(-3px);
}

.tab-titles{
  display: flex;
  margin: 20px 0 40px;
}
.tab-links{
  margin-right: 50px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.tab-links::after{
  content: '';
  width: 0;
  height: 3px;
  background:#ff004f ;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.5s;
}
.tab-links.active-link::after{
  width: 50%;
}
.tab-contents ul li{
  list-style: none;
  margin: 10px 0;
}
.tab-contents ul li span{
  color: #b54769;
  font-size: 14px;
}
.tab-contents{
  display: none;
}
.tab-contents.active-tab{
  display: block;
}

/* SKILL BACKGROUND */
#skill {
  min-height: 100vh;
  background: url("images/skill-bg.png") center/cover no-repeat;
  position: relative;
}

/* Dark overlay */
.skill-overlay {
  background: rgba(0, 0, 0, 0.85);
  min-height: 100vh;
  padding: 80px 0;
}

/* Title */
.skill-title {
  text-align: center;
  font-size: 60px;
  color: #fff;
}

.skill-title span {
  color: #ff004f;
}

/* Subtitle */
.skill-subtitle {
  text-align: center;
  color: #bdbdbd;
  font-size: 18px;
  margin-bottom: 60px;
}

/* Grid */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

/* Skill box */
.skill-box {
  text-align: center;
  transition: transform 0.4s ease;
}

.skill-box img {
  width: 80px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.skill-box p {
  color: #fff;
  font-size: 18px;
}

/* Hover effect */
.skill-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 0, 79, 0.4);

}

/* MongoDB size fix */
.mongodb {
  width: 95px;
}
/* ================= PROJECTS ================= */

#projects {
  padding: 80px 0;
  background: #080808;
}
#projects .sub-title{
  text-align: center;
}

#projects .sub-title span {
  color: #ff004f;
}

.project-subtitle {
  color: #ababab;
  margin-bottom: 50px;
  font-size: 18px;
  text-align: center;
  
}

.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.project-card {
  background: #111;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255, 0, 79, 0.4);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-content {
  padding: 25px;
}

.project-content h2 {
  color: #fff;
  margin-bottom: 15px;
}

.project-content p {
  color: #ababab;
  line-height: 25px;
  font-size: 15px;
}

.project-content .tech {
  margin-top: 10px;
  color: #ff004f;
  font-size: 14px;
}

.project-btns {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  background: #ff004f;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  transition: background 0.3s;
}

.btn:hover {
  background: #e60045;
}

.btn-dark {
  background: transparent;
  border: 1px solid #ff004f;
}

.btn-dark:hover {
  background: #ff004f;
}

/* ================= CONTACT ================= */

#contact {
  padding: 80px 0;
  background: #080808;
}

#contact .sub-title span {
  color: #ff004f;
}

.contact-subtitle {
  color: #ababab;
  margin-bottom: 50px;
   margin-left: 50%;
   font-size: 20px;
}

.contact-box {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

/* Left */
.contact-left {
  flex-basis: 40%;
}

.contact-left p {
  margin: 15px 0;
  color: #fff;
  font-size: 18px;
}

.contact-left p i {
  color: #ff004f;
  margin-right: 10px;
}

/* Social Icons */
.social-icons {
  margin-top: 30px;
}

.social-icons a {
  font-size: 25px;
  color: #ababab;
  margin-right: 15px;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #ff004f;
  transform: translateY(-5px);
}

/* Right */
.contact-right {
  flex-basis: 55%;
}

.contact-right form input,
.contact-right form textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: #111;
  padding: 15px;
  margin: 15px 0;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
}

.contact-right button {
  margin-top: 10px;
}

