/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f172a;
    color: #f8fafc;
    line-height: 1.6;
}

/* Header & Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #1e293b;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.logo a span {
    color: #38bdf8;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #38bdf8;
}

/* Hero Section Styling */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    margin-top: 60px;
}

.hero-container {
    max-width: 800px;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0284c7;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0369a1;
}

.btn-secondary {
    border: 2px solid #38bdf8;
    color: #38bdf8;
}

.btn-secondary:hover {
    background-color: #38bdf8;
    color: #0f172a;
}
/* Services Section Styling */
.services {
    padding: 90px 8%;
    background-color: #0f172a;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 10px;
}

.section-header p {
    color: #94a3b8;
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #1e293b;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #334155;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
}

.card-icon {
    font-size: 40px;
    color: #38bdf8;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    color: #f8fafc;
    margin-bottom: 15px;
}

.service-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
}
/* Contact Section Styling */
.contact {
    padding: 90px 8%;
    background-color: #1e293b;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #0f172a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #334155;
}

.info-item i {
    font-size: 24px;
    color: #38bdf8;
}

.info-item h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 4px;
}

.info-item p {
    color: #94a3b8;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    background-color: #0f172a;
    border: 1px solid #334155;
    border-radius: 6px;
    color: #ffffff;
    outline: none;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #38bdf8;
}

/* Footer Styling */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #0f172a;
    border-top: 1px solid #334155;
    color: #64748b;
    font-size: 14px;
}