@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFC145;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 2.5rem;
    color: white;
}

nav a {
    margin-left: 2rem;
    font-size: 1.5rem;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
  }
  nav a:hover, nav a.active {
    color: #FFC145;
    border-bottom: 2px solid #FFC145;
  }
  

@media(max-width: 995px) {
    .hamburger {
        display: block;
    }

    nav {
        position: absolute;
        display: none;
        top: 5rem;
        right: 0;
        width: 40%;
        background-color: #161616;
        border-left: 3px solid #FFC145;
        border-bottom: 3px solid #FFC145;
        border-bottom-left-radius: 2rem;
        padding: 2rem;
    }

    nav.active {
        display: block;
    }

    nav a {
        display: block;
        font-size: 2rem;
        margin: 2rem 0;
        padding: 1rem;
        border-radius: 0.5rem;
    }

    nav a:hover,
    nav a.active {
        border-bottom: 0.5rem solid #FFC145;
    }
}
/* Home Section */
.home {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 6rem 9% 4rem;
    align-items: center;
    justify-content: center;
  }
  .home-img img {
    width: 280px;
    border-radius: 50%;
    box-shadow: 0 0 20px #FFC145;
    transition: 0.3s;
  }
  .home-content {
    max-width: 600px;
  }
  .home-content h1 {
    font-size: 2.5rem;
    color: #fff;
  }
  .home-content h3 {
    font-size: 1.5rem;
    color: #FFC145;
    margin: 1rem 0;
  }
  .home-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .btn {
    display: inline-block;
    background-color: #FFC145;
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s ease;
  }
  .btn:hover {
    background-color: #fff;
    color: #FFC145;
    box-shadow: 0 0 15px #FFC145;
  }
  .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid #FFC145;
    font-size: 1.2rem;
    border-radius: 50%;
    margin-right: 1.5rem;
    transition: 0.3s ease;
    color: #FFC145;
  }
  .social-icons a:hover {
    background-color: #FFC145;
    color: black;
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 0 20px #FFC145;
  }
.typing-text span {
    color: #FFC145;
}

.social-icons {
    margin: 2rem 0;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: transparent;
    border: 0.2rem solid #FFC145;
    font-size: 2rem;
    border-radius: 50%;
    margin-right: 1.5rem;
    transition: 0.3s ease;
    color: #FFC145;
}

.social-icons a:hover {
    background-color: #FFC145;
    color: black;
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 0 20px #FFC145;
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: black;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #FFC145;
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid #FFC145;
    transition: 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #FFC145;
    color: black;
    box-shadow: 0 0 25px #FFC145;
}

@media (max-width: 995px) {
    .home {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .home-img img {
        width: 70vw;
        max-width: 150px;
        margin-top: 2rem;
    }

    .home-content h1 {
        font-size: 3rem;
    }

    .home-content h3 {
        font-size: 2rem;
    }

    .home-content p {
        font-size: 1rem;
    }
}

/* Sections */
section {
    padding: 3rem 9%;
  }
  .section-title h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
  }
  .section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFC145;
    margin: 0.5rem auto 0;
  }
/* About Section */
.about {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem 6%;
    background-color: black;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #FFC145;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #eee;
}

.about-details {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.about-details li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #eee;
}

.about-details strong {
    color: #FFC145;
    margin-right: 0.5rem;
}

.about-summary {
    margin: 2rem 0;
    font-size: 1rem;
    font-style: italic;
    color: #FFC145;
}



/* Skills Section */
.skills {
    padding: 4rem 10%;
    background-color: black;
}

.skills-desc {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #eee;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.skill-item {
    margin-bottom: 2rem;
}

.skill-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #eee;
}

.skill-bar {
    height: 10px;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
}

.skill-bar .bar {
    height: 100%;
    background-color: #FFC145;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 995px) {  
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 2fr));
    gap: 2rem;
}

.project-card {
    background-color: #111;
    padding: 1.2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    font-size: 3rem;
    color: #FFC145;
    margin-bottom: 1rem;
}

.project-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.project-links a {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #FFC145;
    color: white;
    border-radius: 0.5rem;
    font-size: 1.4rem;
    transition: 0.3s ease;
}

.project-links a:hover {
    background-color: white;
    color: black;
}

/* Services Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: #111;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-icon {
    font-size: 2.5rem;
    color: #FFC145;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-container {
    display: flex;
    font-size: large;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.contact-info .contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    size: 200px;
    color: #FFC145;
}



/* Footer */
footer {
    background-color: #111;
    padding: 2rem 1.5rem; /* Reduced padding */
    text-align: center;
    color: #ccc;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem; /* Less gap */
    margin-bottom: 1rem;
    text-align: left;
}

.footer-column h3 {
    font-size: 1.2rem; /* Reduced font size */
    color: white;
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.5rem; /* Less vertical space */
}

.footer-links a {
    color: #ccc;
    font-size: 1.1rem; /* More compact font */
    transition: 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #FFC145;
}

.social-links a {
    margin-right: 0.75rem;
    color: #FFC145;
    font-size: 1.4rem; /* Scaled down icons */
    transition: 0.3s ease;
}

.social-links a:hover {
    color: white;
}

#current-year {
    font-weight: 500;
    font-size: 1rem;
}
@media (max-width: 600px) {
    .footer-content {
      text-align: center;
      gap: 1rem;
    }
    .social-links a {
      margin-right: 0.5rem;
    }
  }
  
  @media (max-width: 768px) {
    /* Reduce padding for smaller screens */
    section {
        padding: 2rem 4%;
    }

    /* Smaller header padding */
    header {
        padding: 1rem 4%;
    }

    /* Home section adjustments */
    .home {
        gap: 1.5rem;
        padding: 3rem 4% 1rem;
    }
    .home-content h1 {
        font-size: 2rem;
    }
    .home-content h3 {
        font-size: 1.3rem;
    }
    .home-content p {
        font-size: 0.9rem;
    }

    /* About section adjustments */
    .about {
        gap: 2rem;
        padding: 2.5rem 4%;
    }
    .about-content h2 {
        font-size: 1.5rem;
    }
    .about-content p {
        font-size: 0.95rem;
    }

    /* Skills section adjustments */
    .skills {
        padding: 2.5rem 4%;
    }
    .skills-desc {
        font-size: 1.1rem;
    }
    .skill-label {
        font-size: 1rem;
    }

    /* Project card adjustments */
    .project-card {
        padding: 1rem;
    }
    .project-info h3 {
        font-size: 1.4rem;
    }
    .project-links a {
        font-size: 1.1rem;
    }

    /* Buttons on mobile */
    .btn {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    /* Further reduce padding and font sizes */
    section {
        padding: 1.5rem 3%;
    }

    header {
        padding: 0.8rem 3%;
    }

    .home {
        gap: 1rem;
        padding: 2.5rem 3% 1rem;
    }
    .home-content h1 {
        font-size: 1.8rem;
    }
    .home-content h3 {
        font-size: 1.2rem;
    }
    .home-content p {
        font-size: 0.85rem;
    }

    .about {
        gap: 1.5rem;
        padding: 2rem 3%;
    }
    .about-content h2 {
        font-size: 1.4rem;
    }
    .about-content p {
        font-size: 0.9rem;
    }

    .skills {
        padding: 2rem 3%;
    }
    .skills-desc {
        font-size: 1rem;
    }
    .skill-label {
        font-size: 0.9rem;
    }

    .project-card {
        padding: 0.8rem;
    }
    .project-info h3 {
        font-size: 1.3rem;
    }
    .project-links a {
        font-size: 1rem;
    }

    .btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
}
