/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body */
body {
    background-color: #f9fafb;
    color: #333;
    line-height: 1.7;
}

/* HEADER */
header {
    background: white;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

header h1 {
    font-size: 24px;
    font-weight: 600;
}

/* Navigation */
nav a {
    color: black;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

nav a::after {
    content: "";
    width: 0;
    height: 2px;
    background: #72fbe7;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* ===== HERO SECTION (HOME) ===== */
.hero {
    background: #72fbe7;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Hero Image */
.hero-image img {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.3);
}

/* Hero Text */
.hero-content {
    color: white;
}

.hero-content .intro {
    font-size: 20px;
    letter-spacing: 2px;
}

.hero-content .name {
    font-size: 60px;
    font-weight: 700;
    margin: 10px 0;
    letter-spacing: 3px;
}

.hero-content .role {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 40px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Download CV Button */
.btn-outline {
    padding: 14px 36px;
    border: 2px solid white;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;
    color: #97d9e6;
}


/* ===== COMMON SECTION STYLE ===== */
.about-section {
  padding: 80px 0;
}


.aboutt {
  position: relative;       
  text-align: center;
  font-size: 50px;
  color: #97d9e6;
  margin-bottom: 60px;
}

.aboutt::after {
  content: "ABOUT ME";
  position: absolute;
  inset: 0;
  font-size: 120px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}


.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* MAIN FIX */
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Image */
.about-image img {
  
  border-radius: 8px;
  object-fit: cover;
  height: 340px;
}

/* Text Content */
.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Info Grid */
.about-info {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.about-info ul {
  list-style: none;
  padding: 0;
}

.about-info li {
  margin-bottom: 10px;
}

/* Buttons */
.about-buttons {
  display: flex;
  gap: 20px;
}

/* Responsive (Mobile) */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-info {
    justify-content: center;
  }

  .about-buttons {
    justify-content: center;
  }
}


.about-buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

/* Common Button Style */
.btn {
  padding: 14px 38px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  letter-spacing: 0.4px;
  display: inline-block;
}

/* Hire Me Button */
.btn.primary {
  background: linear-gradient(135deg, #97d9e6, #97d9e6);
  color: #ffffff;
  box-shadow: 0 10px 25px  #97d9e6;
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px  #97d9e6;
}

/* Learn More Button */
.btn.outline {
  background: transparent;
  color:  #97d9e6;
  border: 2px solid  #97d9e6;
}

.btn.outline:hover {
  background:  #97d9e6;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px  #97d9e6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-buttons {
    justify-content: center;
  }
}
/* Main Heading */
.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #97d9e6;
  margin-bottom: 60px;
  position: relative;
}

/* Faded background word */
.section-title::after {
  content: "QUALITY";
  position: absolute;
  inset: 0;
  font-size: 120px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Timeline */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
  border-left: 2px solid #97d9e6;
}

/* Timeline item */
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

/* Dot */
.dot {
  position: absolute;
  left: -11px;
  top: 6px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 3px solid #97d9e6;
  border-radius: 50%;
}

/* Degree title */
.title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* University + Date */
.subtitle {
  font-size: 15px;
  color: #6b7280;
  font-weight: 500;
 
}


/* Responsive */
@media (max-width: 600px) {
  .section-title::after {
    font-size: 72px;
  }
}

/* Skills */

#skills {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.section-title-1 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #97d9e6;
  margin-bottom: 60px;
  position: relative;
}

.section-title-1::after {
  content: "SKILLS";
  position: absolute;
  inset: 0;
  font-size: 120px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Grid */
.skills-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

/* Skill block */
.skill {
  width: 100%;
}

/* Header */
.skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2b2f33;
}

/* Progress background */
.progress {
  width: 100%;
  height: 14px;
  background: #e9ecef;
  border-radius: 20px;
  overflow: hidden;
}

/* Progress bar */
.progress-bar {
  height: 100%;
  border-radius: 20px;
}

/* Individual colors & widths */
.html { width: 90%; background: #14c8a2; }
.css { width: 65%; background: #fbbc04; }
.js { width: 70%; background: #e63946; }
.mysql { width: 80%; background: #1aa3b5; }
.react { width: 70%; background: #61dafb; }
.java { width: 65%; background: #d58337; }
.python { width: 50%; background: #a65471; }

/* Responsive */
@media (max-width: 768px) {
  .skills-container {
    grid-template-columns: 1fr;
  }

  .section-title::after {
    font-size: 70px;
  }
}


/* ===== PROJECTS SECTION ===== */
#projects {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Section Title */
.section-title-2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #97d9e6;
  margin-bottom: 70px;
  position: relative;
}

/* Faded Background Text */
.section-title-2::after {
  content: "PROJECTS";
  position: absolute;
  inset: 0;
  font-size: 120px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Project Card */
.project-card {
  max-width: 720px;
  margin: 0 auto 35px;
  padding: 35px 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

/* Hover Effect */
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

/* Project Title */
.project-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2b2f33;
  margin-bottom: 12px;
}

/* Project Description */
.project-card p {
  font-size: 15.5px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* Project Links */
.project-links {
  display: flex;
  gap: 15px;
}

/* Buttons */
.project-links a {
  padding: 10px 26px;
  border-radius: 30px;
  border: 2px solid #97d9e6;
  color: #97d9e6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover Button */
.project-links a:hover {
  background: #97d9e6;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 600px) {
  .section-title-2::after {
    font-size: 70px;
  }

  .project-card {
    padding: 26px;
  }

  .project-links {
    flex-direction: column;
  }

  .project-links a {
    text-align: center;
  }
}


/* Contact */
#contact {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
#contact h2 {
  font-size: 36px;
  font-weight: 700;
  color: #97d9e6;
  margin-bottom: 60px;
  position: relative;
}

/* Faded background text */
#contact h2::after {
  content: "CONTACT";
  position: absolute;
  inset: 0;
  font-size: 120px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form */
#contact form {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Inputs & Textarea */
#contact input,
#contact textarea {
  width: 100%;
  padding: 18px 22px;
  border-radius: 40px;
  border: 1.5px solid #cfd8e3;
  font-size: 16px;
  outline: none;
  color: #2b2f33;
}

/* Textarea */
#contact textarea {
  grid-column: span 2;
  border-radius: 30px;
  min-height: 160px;
  resize: none;
}

/* Placeholder */
#contact input::placeholder,
#contact textarea::placeholder {
  color: #8b95a5;
}

/* Focus Effect */
#contact input:focus,
#contact textarea:focus {
  border-color: #97d9e6;
}

/* Button */
#contact button {
  grid-column: span 2;
  justify-self: center;
  padding: 14px 40px;
  border-radius: 40px;
  border: 2px solid #97d9e6;
  background: transparent;
  color: #97d9e6;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Button Hover */
#contact button:hover {
  background: #97d9e6;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 600px) {
  #contact form {
    grid-template-columns: 1fr;
  }

  #contact textarea,
  #contact button {
    grid-column: span 1;
  }

  #contact h2::after {
    font-size: 70px;
  }
}


/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 250px;
        height: 250px;
    }

    .hero-content .name {
        font-size: 40px;
    }

    .hero-content .role {
        font-size: 22px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }
}
