* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0f19;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Nav */
nav {
    padding: 20px 0;
    border-bottom: 1px solid #1e293b;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo span { color: #38bdf8; }

nav ul { display: flex; list-style: none; }

nav ul li a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
}

.btn-nav {
    background: #38bdf8;
    color: #0b0f19 !important;
    padding: 8px 20px;
    border-radius: 5px;
}

/* Hero */
header {
    padding: 100px 0;
    text-align: center;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.highlight { color: #38bdf8; }

header p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 40px;
}

.btn-main {
    background: #38bdf8;
    color: #0b0f19;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
}

/* Projects */
#projects { padding: 80px 0; background: #0f172a; }

.section-header { text-align: center; margin-bottom: 50px; }

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.project-card:hover { transform: translateY(-10px); }

.project-img { height: 200px; background-size: cover; }

.project-content { padding: 25px; }

.project-content h3 { margin-bottom: 10px; color: #38bdf8; }

.project-content p { color: #94a3b8; font-size: 0.95rem; margin-bottom: 15px; }

.tag {
    background: #334155;
    padding: 5px 12px;
    font-size: 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
}

footer { text-align: center; padding: 40px; color: #475569; font-size: 0.8rem; }

/* Contact Section */
#contact {
    padding: 100px 0;
    background-color: #0b0f19;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #1e293b;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #38bdf8;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #334155;
    background: #0f172a;
    color: #ffffff;
    font-family: inherit;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #38bdf8;
}

.contact-form .btn-main {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

/* Pricing Section */
#pricing {
    padding: 100px 0;
    background-color: #0b0f19;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    background: #1e293b;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 1px solid #334155;
}

.pricing-card.featured {
    background: #0f172a;
    border: 2px solid #38bdf8;
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #38bdf8;
    color: #0b0f19;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: #94a3b8;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    color: #94a3b8;
}

.pricing-card ul li {
    margin-bottom: 12px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #38bdf8;
    color: #38bdf8;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #38bdf8;
    color: #0b0f19;
}

/* FAQ Section */
#faq {
    padding: 100px 0;
    background-color: #0f172a;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.faq-item h3 {
    color: #38bdf8;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.8;
}

/* Mobile fix for FAQ */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Styling for project bullet points */
.project-list {
    list-style: none; /* Removes default dots */
    padding: 0;
    margin: 15px 0;
    color: #94a3b8; /* Matches the previous text color */
    font-size: 0.9rem;
}

.project-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

/* Adds a custom data-themed bullet point */
.project-list li::before {
    content: "▹"; 
    position: absolute;
    left: 0;
    color: #38bdf8; /* Uses your sky blue accent color */
    font-weight: bold;
}

/* Ensures the bolded first word pops */
.project-list li strong {
    color: #ffffff;
    font-weight: 600;
}


