/* General Styles */

*{
  padding:0px;
  margin:0px;
  }
  
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background: #f0f4f8;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
}


.logo{
    height: 40px;
    display:flex;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    margin-left:9px;
}
/* style.css */

.side-navbar {
    /* Default state (hidden) */
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    /* Other styles */
}

.side-navbar.active {
    /* State when active (visible) */
    transform: translateX(0);
}

a {
    text-decoration: none;
    color: inherit;
}
.side-navbar{
    display:none;
}
button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap:wrap;
    padding: 20px;
    position:fixed;
    background: #003366; /* Dark Blue */
}
.portfolio{
    background-color: rgb(27, 33, 27);
    padding:8px;
    border-radius: 3px;
    text-decoration: none;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f0f4f8; /* Light Gray */
}

.nav-link {
    display: flex;
    gap: 20px;
}

.nav-link a {
    color: #f0f4f8;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-link a:hover {
    color: #66c2ff; /* Light Blue */
}

/* Responsive Menu Button */
.menu-button {
    display: none;
}
@media  (max-width:600px){
    .nav-link{
        margin-left:0px;
        padding:5px;
        margin-top:5px;
    }
}



/* Home Section */
.home-section {
    text-align: center;
    margin-top:0px;
    padding: 100px 20px;
    background: linear-gradient(135deg, #003366 0%, #006699 100%); /* Gradient Blue */
}

.home-section h1 {
    font-size: 3.5rem;
    margin: 0;
    color: #f0f4f8; /* Light Gray */
}

.home-section p {
    font-size: 1.5rem;
    margin: 20px 0;
    color: #f0f4f8; /* Light Gray */
}

.cta-button {
    display: inline-block;
    background: #66c2ff; /* Light Blue */
    color: #003366; /* Dark Blue */
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #3399ff; /* Slightly Darker Blue */
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background: #e6e9ef; /* Light Gray */
    text-align: center;
    margin-top:70px;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

.about-section img.me {
    border-radius: 50%;
    max-width: 150px;
    margin: 20px 0;
}

.about-section button a {
    color: #66c2ff; /* Light Blue */
    font-weight: bold;
}

.about-section button a:hover {
    color: #3399ff; /* Slightly Darker Blue */
}

/* Skills Section */
.skills-section {
    padding: 60px 20px;
    background: #f9f9f9; /* Light Gray */
}

.skills-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.skill-category {
    margin-bottom: 20px;
}

.skill-category h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.skills {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.skill {
    background: #003366; /* Dark Blue */
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    color: #f0f4f8; /* Light Gray */
}

/* Projects Section */
.projects-section {
    padding: 60px 20px;
    background: #e6e9ef; /* Light Gray */
}

.projects-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.project {
    background: #f0f4f8; /* Light Gray */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.project h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-decoration: underline;
}

.project p {
    font-size: 1rem;
}

.project:hover {
    background: #d1d9e6; /* Slightly Darker Gray */
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background: #f9f9f9; /* Light Gray */
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section input,
.contact-section textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact-section button {
    background: #66c2ff; /* Light Blue */
    color: #003366; /* Dark Blue */
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.contact-section button:hover {
    background: #3399ff; /* Slightly Darker Blue */
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #66c2ff; /* Light Blue */
    font-weight: bold;
}

.social-links a:hover {
    color: #3399ff; /* Slightly Darker Blue */
}

.connect-button {
    background: rgb(8, 12, 9); /* Light Blue */
    color: black; /* Dark Blue */
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}
.connect a{
    color:white;
    text-decoration: none;;
}

.connect-button:hover {
    background: black; /* Slightly Darker Blue */
}

/* Footer */
footer {
    background: #003366; /* Dark Blue */
    color: #f0f4f8; /* Light Gray */
    text-align: center;
    padding: 10px 0;
}
