* {
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navigation */
nav {
    background: white;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

h3 {
    margin-bottom: 20px;
}

ul {
    padding-left: 25px;
}

ul li {
    margin-bottom: 15px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(155 135 245);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    transition: color 0.3s;
}

.nav-links a:hover, a.nav-selected {
    color: rgb(155 135 245);
}

/* Hero Section */
.hero {
    background: #f9fafb;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.75rem;
    color: #111827;
    max-width: 960px;
    margin: 0 auto 1.5rem;
}

.hero p {
    color: #4b5563;
    font-size: 1.2rem;
    max-width: 960px;
    margin: 0 auto 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgb(155 135 245);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background 0.3s;
    margin: 0.4rem;
}

.cta-button.white-btn{
    background: transparent;
    color: rgb(64 62 67);
    border: 1px solid #e2e8f0;
}

.cta-button:hover {
    background: rgb(214 188 250);
}

/* Services Section */
.services {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cta, .homepage, .about {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-2 {
    padding: 4rem 2rem;
    background: #f9fafb;
    text-align: center;
}

.homepage p{
    color: #4b5563;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.bold-p p{
    font-weight: bold;
}

.about p, .about-2 p{
    color: #4b5563;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

section.cta h3 {
    line-height: 30px;
    font-weight: 100;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #111827;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #f9fafb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Projects Section */
.projects {
    background: #f9fafb;
    padding: 4rem 2rem;
}

.projects-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    width: 100%;
}

.contact-form button {
    padding: 1rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #1d4ed8;
}

/* Footer */
footer {
    background: #111827;
    color: white;
    padding: 20px 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}