/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #111;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

/* =========================
   PAGE WRAPPER
========================= */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* =========================
   HEADER
========================= */
.header {
    padding: 40px 0;
    color: #089900;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #089900;
}

.logo small {
    display: block;
    margin-top: 5px;
    opacity: 0.6;
    font-weight: 700;
    font-size: 1.2rem;
    color: #089900;
}

.links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.links img {
    width: 45px;
    height: 45px;
    transition: 0.3s ease;
}

.links img:hover {
    opacity: 0.6;
}

/* =========================
   INTRO SECTION
========================= */
.intro {
    padding: 80px 0 40px 0;
    align-items: center;
}

.intro-inner {
    display: flex;
    align-items: center;
    gap: 90px;
    width: 100%;
}

/* Profile Image */
.profile-img img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #089900;
}

/* Text */
.intro-text {
    max-width: none;
}

.intro-text h2 {
    font-size: 2.0rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #089900;
    
}

.intro-text p {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
}



/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {

    .page-wrapper {
        padding: 0 25px;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .intro-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .profile-img img {
        width: 200px;
        height: 200px;
    }

    .intro-text h2 {
        font-size: 1.8rem;
    }
}


/* =========================
   PROJECT SECTION
========================= */

.projects {
    padding: 100px 8%;
}

.projects-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* =========================
   GRID
========================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(560px, 1fr));
    gap: 24px;
    justify-content: center;
}
/* =========================
   CARD
========================= */

.project-card {
    background: #1b1b1b;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.project-card:hover {
    transform: translateY(-5px);
    border-color: #089900;
    box-shadow: 0 12px 30px rgba(8,153,0,.25);
}

/* =========================
   VIDEO
========================= */

.project-media video {
    width: 100%;
    height: 270px;
    object-fit: cover;
}
/* =========================
   CONTENT
========================= */

.project-content {
    padding: 24px;
}

.project-content h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.project-role {
    font-size: 1rem;
    color: #bdbdbd;
    margin-bottom: 18px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.project-brief {
    font-size: 1rem;
    line-height: 1.7;
    color: #d6d6d6;
    margin-bottom: 28px;
}

/* =========================
   STATUS
========================= */

.project-status {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #6CFF73;
    font-size: .9rem;
    font-weight: 600;

    margin-bottom: 18px;
}

.project-status::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #089900;
    border-radius: 50%;
    display: inline-block;
}

/* =========================
   BUTTON
========================= */

.project-link,
.project-link:link,
.project-link:visited {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border: 1px solid #089900;
    border-radius: 8px;

    color: white;
    text-decoration: none;
    font-weight: 600;

    transition: all .25s ease;
}

.project-link:hover {

    background: #089900;
    color: #111;

    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(8,153,0,.25);
}
/* =========================
   Education SECTION
========================= */

.education {
    padding: 100px 8%;
}

.education-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* =========================
   GRID (Tighter)
========================= */

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 580px); /* fixed width cards */
    gap: 20px; /* smaller gap */
    
}
/* =========================
   CARD (Smaller + Cleaner)
========================= */

.education-card {
    background: #1b1b1b;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 150px; /* or larger, e.g., 350px or 400px */
}

/* =========================
   CONTENT (Reduced Padding)
========================= */

.education-content {
    padding: 18px;
}

.education-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.education-meta {
    font-size: 1rem;
    opacity: 0.6;
    margin-bottom: 10px;
}

.education-brief {
    font-size: 1.2rem;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 14px;
}


/* After */
.skills-container {
  padding: 100px 8%;
  background-color: #0e0e0e; /* dark background */
  color: #cfd8dc; /* light text color for the header */
}

/* Style the header */
.skills-container h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Container for the skill tags */
.skills {
  display: flex;
  flex-wrap: wrap; /* allow wrapping to next line */
  gap: 10px; /* space between tags */
}

/* Style individual skill tags */
.skill {
  border: 1px solid #089900; /* pink border similar to your screenshot */
  border-radius: 8px; /* rounded corners */
  padding: 8px 12px; /* space inside each tag */
  font-size: 0.9rem;
  font-family: 'Arial', sans-serif;
  cursor: default;
  transition: background-color 0.2s, color 0.2s;
}

/* Optional: hover effect for skill tags */
.skill:hover {
  background-color: #089900;
  color: #fff;
}

/* Style for the section container */
.about-me-section {
  background-color: #089900; /* Light blue background similar to your image */
  padding: 100px 8%; /* Padding around the content */
  max-width: auto; /* Optional: limit width for readability */
  margin: auto; /* Center the section */
  border-radius: 8px; /* Rounded corners for a softer look */
  font-family: Arial, sans-serif; /* Font style */
}

/* Style for the heading */
.about-me-section h1 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 0;
}

/* Style for paragraphs */
.about-me-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Style for strong/bold text */
.about-me-section strong {
  font-weight: bold;
}

/* =====================================
   MOBILE ONLY
===================================== */
@media screen and (max-width:900px){

    /* General */
    .page-wrapper{
        padding:0 20px;
    }

    /* Header */
    .header{
        padding:25px 0;
    }

    .header-inner{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:15px;
    }

    .links{
        justify-content:center;
    }

    /* Intro */
    .intro{
        padding:40px 0;
    }

    .intro-inner{
        flex-direction:column;
        text-align:center;
        gap:30px;
    }

    .profile-img img{
        width:180px;
        height:180px;
    }

    .intro-text h2{
        font-size:2rem;
        line-height:1.3;
    }

    .intro-text p{
        font-size:1rem;
    }

    /* Projects */
    .projects{
        padding:60px 20px;
    }

    .projects-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .project-media video{
        height:220px;
    }

    .project-content{
        padding:20px;
    }

    .project-content h3{
        font-size:1.9rem;
    }

    .project-tags{
        gap:8px;
    }

    /* Education */
    .education{
        padding:60px 20px;
    }

    .education-grid{
        grid-template-columns:1fr;
    }

    .education-content h3{
        font-size:1.5rem;
    }

    /* Skills */
    .skills-container{
        padding:60px 20px;
    }

    /* About */
    .about-me-section{
        padding:60px 20px;
    }

}

}
