* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    padding: 1.5rem 5%;
    background-color: rgba(3, 156, 245, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #27a7ec;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    
}

.nav-links a:hover {
    color: #18b9f8;
    border-radius: 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #1dcaf5;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #28bfed;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1ad8f5;
}

/* Section Styles */
section {
    padding: 5rem 5%;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #209de6;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.skill-item {
    background-color: #ffffff1a;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.skill-item:hover {
    transform: translateY(-10px);
}

.skill-bar {
    height: 10px;
    background-color: #333;
    margin-top: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background-color:#12a4ed;
    border-radius: 5px;
}
   
/* Projects Section */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: hsla(0, 0%, 100%, 0.1);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

/* Contact Section */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background-color: #ffffff1a;
    border: none;
    border-radius: 5px;
    color: #fff;
}

.contact-form button {
    padding: 1rem;
    background-color: #1a97e0;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #28d1f7;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: rgba(0,0,0,0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none;
    }
}
.bg{
   justify-content: space-between;
   border-radius: 80px; 
   padding: 18px;
   padding-left: 15%;
   height: 550px;
   width: 550px;
   display: flex;
   transition: transform 0.3s;
}
.bg:hover {
    transform: scale(1.1);
}