* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 200vh; 
    background: #f4f4f4;
}
html {
    scroll-behavior: smooth;
}

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    transition: all 0.4s ease;
    z-index: 1000;
    background: transparent;
}

#navbar.scrolled {
    background: #2c3e50;
    padding: 10px 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;

}

#navbar.scrolled .logo {
    color: white;
}
    .nav-links {
      list-style: none;
        display: flex;
}
    .nav-links li {
        margin-left:30px;
    }

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #3498db;
}

#navbar.scrolled .nav-links a {
    color: white;
}

#navbar.scrolled .nav-links a:hover {
    color: #3498db;
}
section {
    padding: 60px 20px;
}
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color:white;
    background: linear-gradient(to right, #2c5364, #203a43, #0f2027);
    padding-bottom: 40px;
}
.hero h1 {
    margin-bottom: 20px; 
    margin-left: 20px;
    text-align: center;
}
.hero p {
    margin-bottom: 30px;  
    align-items: center;
    margin-left: 20px;
}
h2 {
    font-size: 32px;
    font-weight: 600;
}
    .about p {
    font-size: 16px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    h2 {
        font-size: 26px;
    }

    .about p {
        font-size: 15px;
    }
}
    .about p {
    max-width: 500px;
    margin: auto;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
  
}
.about h2{
  margin-bottom: 20px;
  margin-left: 20px;
  text-align: center;
}
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: -80px;
    flex-direction: column;
    text-align: center;

    
}
.box {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    gap:12px;
    transform: translateY(50px);
    transition: 0.5s ease;
}
.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #36d1dc, #5b86e5);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px; 
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.cta-btn:hover {
    background-color: transparent;
    border: 2px solid white;
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#contact {
    text-align: center;
    padding: 40px 20px;
}
#projects {
  text-align: center;
  padding: 40px 20px;
  margin-top: 50px;
}

footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 200px;
}