:root {
    --blue: #2563eb;
    --yellow: #facc15;
    --red: #ef4444;
    --orange: #f97316;

    --text: #333333;
    --bg: #ffffff;
    --border: #e5e5e5;
}

/* RESET */

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

/* BODY */

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* CONTAINER */

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

/* HEADER */

header {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

/* NAVBAR */

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

/* LOGO */

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #5b3df5;
}

/* NAV LINKS */

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
}

.nav-links a:hover {
    color: #5b3df5;
}

/* HERO SECTION */

.hero {
    padding: 80px 0;
}

/* HERO CONTENT */

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* HERO TEXT */

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #222222;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #555555;
}

/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* BUTTONS */

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary {
    background-color: #5b3df5;
    color: white;
}

.btn-primary:hover {
    background-color: #4528d6;
}

.btn-secondary {
    border: 2px solid #5b3df5;
    color: #5b3df5;
}

.btn-secondary:hover {
    background-color: #5b3df5;
    color: white;
}

/* HERO IMAGE */

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
}

/* MOBILE */

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-buttons {
        flex-direction: column;
    }

}
/* SERVICES SECTION */

.services {
    padding: 80px 0;
    background-color: #f9fafb;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text);
}

.service-cards {
    display: flex;
    gap: 25px;
}

.card {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: 0.2s ease;
}

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

.card h3 {
    color: var(--blue);
    margin-bottom: 10px;
}

.card p {
    color: #555;
}
/* PAGE TITLE */

.page-title {
    padding: 60px 0;
    text-align: center;
}

.page-title h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-title p {
    color: #555;
    max-width: 700px;
    margin: auto;
}

/* SERVICES PAGE */

.services-page {
    padding: 40px 0 80px;
}

.service-block {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.service-block h2 {
    color: var(--blue);
    margin-bottom: 10px;
}

.service-block p {
    color: #555;
}

/* CTA SECTION */

.cta {
    background: var(--blue);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta .btn-primary {
    background: white;
    color: var(--blue);
}
/* CONTACT FORM */

.contact-form {
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-weight: bold;
    margin-top: 10px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
}

.contact-form button {
    margin-top: 20px;
    border: none;
    cursor: pointer;
}
