/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
nav {
    background-color: #1E3A5F; /* Dark Blue */
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

h3 {
    font-size: 60px;
} 

/* Hero Section */
.hero {
    height: 100vh;
    background:
      radial-gradient(#cce5f6 1px, transparent 1px),
      linear-gradient(to right, #0077b5, #eef2f3);
    background-size: 20px 20px, cover;
    color: #191970;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
h1{
    font-size:80px;
        background: linear-gradient(to right, #eef2f3, #00008B);
        font-size: 80px;
        background: -webkit-linear-gradient(left, #0F52BA, #0818A8, #191970);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

/* About Me */
#about {
    background-color: #dfe7fd; /* Subtle Blue */
    padding: 80px 20px;
    text-align: center;
    color:#000080;
}
.btn {
    background: #0077b5;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Skills */
#skills {
    background-color: #f4f4f4; /* Light Gray */
    padding: 40px 20px;
    text-align: center;
    
}

.skills-container {
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0px;
    width:1000px;
    margin-right: auto;
    margin-left: auto;

}

.skill {
    background: #0077b5; /* Blue Skill Badges */
    color: white;
    padding: 10px 10px;
    border-radius: 10px;
   
}

.skill img {
    height:200px;
    width:200px;
    border-radius: 10px;
}


a {
    text-decoration:none;
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    padding: 30px 0 0 0;
}

#projects {
    background-color: #f4f4f4; /* Light Gray */
    padding: 40px 10px;
    text-align: center;
    
}

.project-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  .project-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 1000px;
  }
  
  .project-img {
    background-color: white;
    width: 100px;
    height: 100px;
    padding: 8px;
    border-radius: 60px;
  }
  
  .project-details {
    display: flex;
    flex-direction: column;
    text-align: center; /* Ensure content is centered */
    align-items: center;
    justify-content: space-between;  /* Distribute space between description and link */
  }
  
  .project-text {
    background-color: #00008B;
    color: white;
    padding: 12px 12px ;
    border-radius: 6px;
    font-size: 1rem;
    display: block;
    text-align:center;
    margin-top: 10px;
    margin-left: 10px;
    align-self: flex-end;
    width:150px;
  }
  
  .project-desc {
    padding-top:20px;
    font-size: 0.95rem;
    color: #333;
    margin: 0;
    flex: 1;  /* Ensures description takes available space */
    text-align: left; 
  }
    

/* Sections */
section {
    padding: 80px 20px;
    text-align: center;
}

#contact {
    background-color: #f7f7f7;
    padding: 20px 30px 30px 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#contact h2 {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
    border: 1px solid #0077b5;
    box-shadow: 0 0 8px rgba(0, 119, 181, 0.3);
    outline: none;
}

textarea {
    height: 150px;
    resize: none;
}

button {
    background-color: #0077b5;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #005f8a;
}

#successMessage {
    text-align: center;
    color: green;
    font-size: 16px;
    margin-top: 20px;
    display: none;
}

.hidden {
    display: none;
}

    footer {
        background-color: #1E3A5F; /* Professional Dark Blue */
        color: white;
        text-align: center;
        padding: 10px 0 5px 0;
        width: 100%;
        position: relative;
        bottom: 0;
        left: 0;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px; 
    }

    footer .social-links a {
        color: white;
        padding:0;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s;
    }

    footer .social-links a:hover {
        color: #ffcc00; /* Gold hover effect */
    }
    
