/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
}

/* Navigation */
nav {
    background-color: #1a1a1a;
    box-shadow: 0 2px 5px rgba(255, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: #ff3333;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: #ff3333;
}

/* Main content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px - 60px);
}

/* Hero section */
.hero {
    background-color: #1a1a1a;
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 2px solid #ff3333;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff3333;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #ff3333;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #cc0000;
}

/* Services section */
.services-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #1a1a1a;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #ff3333;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.service-card {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
    border-color: #ff3333;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #ff3333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* About section */
.about-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h1 {
    color: #ff3333;
    text-align: center;
    margin-bottom: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.skills-list {
    list-style: none;
    margin-top: 1rem;
}

.skills-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.skills-list li::before {
    content: "•";
    color: #ff3333;
    position: absolute;
    left: 0;
}

/* Project section */
.about-hero {
    background-color: #1a1a1a;
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 2px solid #ff3333;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff3333;
}

.about-hero p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.para1 {
    color: #fff;
    size: 1rem;
}
.para1:hover {
    color: #4400cc;
    font-size: 1.3rem;

}

.para2 {
    color: #433f3f;
    font-size: 0.9rem;
}

.para2:hover {
    font-size: larger;
    color: #cc0000;
}

.lih:hover{
    color: #ff3333;
    text-transform:uppercase;
}
.project-grid {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #ff3333;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #333;
}

.project-card h3 {
    color: #ff3333;
    font-size: 1.5rem;
}

.project-card p {
    color: #e0e0e0;
    flex-grow: 1;
}

.project-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #ff3333;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.project-link:hover {
    background-color: #cc0000;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    padding: 2rem;
    margin-top: auto;
    border-top: 2px solid #ff3333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.social-links a:hover {
    color: #ff3333;
}

.footer-message {
    margin-top: 1rem;
}

.footer-message p {
    margin: 0.5rem 0;
    color: #e0e0e0;
}

.no-but{
    background-color: red;
    color: white;
    font-size: 3rem;
    padding-left: 20;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    margin-left: 50%;
    margin-bottom: 30%;
    border-radius: 20%;
}

.footer-quote {
    font-style: italic;
    color: #888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-message p {
        font-size: 0.9rem;
    }
    
    .footer-quote {
        font-size: 0.8rem;
    }
} 