* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

/* Global Styling */
body {
    background: #f8f9fa; /* Light clean background */
    color: #222;
}

/* Navbar */
#header {
    width: 100%;
    height: 100vh;
    background: linear-gradient(to right, #f8f9fa, #e6f5ec);
    display: flex;
    flex-direction: column;
    padding: 0 5%;
}

/* Navbar styles */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 20px;
}

.logo {
    color: rgb(40, 188, 40);
    font-weight: bold;
    font-size: 28px;
}

nav ul li {
    display: inline-block;
    margin: 10px 20px;
}

nav ul li a {
    color: rgb(40, 188, 40);
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0%;
    height: 2px;
    background: rgb(40, 188, 40);
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.4s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Header Main Text */
.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.header-text {
    font-size: 30px;
    max-width: 900px;
    margin-top: 40px;
}

.header-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.header-text h1 span {
    color: rgb(40, 188, 40);
    text-shadow: 0 0 10px rgba(40, 188, 40, 0.5);
}

.header-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-top: 12px;
}
.buttons {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    margin: 10px;
    background-color: #1abf3f; /* Green */
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
 

.btn:hover {
    background-color: #159b33; /* Darker green */
    transform: translateY(-3px) scale(1.03); /* Slight lift and zoom */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Deeper shadow */
}


/* About Section (White + Clean) */
#about {
    padding: 60px 5%;
    background-color: #ffffff;
    color: #000;
    text-align: center;
    border-top: 2px solid rgba(0, 255, 100, 0.2);
}

.about-container-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.about-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgb(40, 188, 40);
    box-shadow: 0 0 25px rgba(40, 188, 40, 0.3);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
    color: rgb(40, 188, 40);
    border-left: 4px solid rgb(40, 188, 40);
    padding-left: 10px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 15px;
    color: #444;
}


#skills {
    padding: 60px 5%;
    background-color: #ffffff;
    text-align: center;
}

.skills-container {
    max-width: 900px;
    margin: 0 auto;
}

#skills h2 {
    font-size: 36px;
    color: rgb(40, 188, 40);
    margin-bottom: 40px;
    border-left: 4px solid rgb(40, 188, 40);
    padding-left: 10px;
    text-align: left;
}

.skill-category {
    margin-bottom: 40px;
    text-align: left;
}

.skill-category h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 15px;
    padding-left: 5px;
}

.skill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.skill {
    background: linear-gradient(to right, #28bc28, #34e87e);
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(40, 188, 40, 0.2);
    transition: transform 0.3s ease;
    cursor: default;
}

.skill:hover {
    transform: scale(1.05);
}


/* Projects Section */
#projects {
    padding: 60px 5%;
    background-color: #f8f9fa;
    color: #222;
}

.projects-container {
    max-width: 900px;
    margin: 0 auto;
}

#projects h2 {
    font-size: 36px;
    color: rgb(40, 188, 40);
    margin-bottom: 40px;
    border-left: 4px solid rgb(40, 188, 40);
    padding-left: 10px;
    text-align: left;
}

.project {
    background: #fff;
    border-left: 5px solid rgb(40, 188, 40);
    padding: 20px 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(40, 188, 40, 0.1);
    transition: transform 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
}

.project h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #000;
}

.project p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  background-color: #fff; /* Keep it clean and white */
}

.contact-heading h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.contact-heading .highlight {
  color: #28a745; /* Green accent */
}

.contact-heading p {
  color: #555;
  margin-bottom: 30px;
}
.contact-info {
  text-align: center;
  margin-bottom: 30px;
}

.top-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 15px;
}

.top-contact span {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #222;
  gap: 8px;
}

.top-contact a {
  color: #28a745;
  text-decoration: none;
}

.top-contact i {
  color: #28a745;
  font-size: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #28a745;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #1e7e34;
}

.social-links i {
  font-size: 1.2rem;
}


.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0 0 3px #28a74555;
}

.contact-form button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #218838;
}
