* {
    scroll-behavior: smooth;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 300;
}
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}
header {
    background: #1d1d57;
    color: #fff;
    padding: 10px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header h1 {
    margin: 0;
    font-size: 1.8em;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav ul li {
    margin: 0 10px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    transition: 0.2s;
}
nav ul li a:hover {
    color: #9695ff;
    
}
.hero {
    background: url('assets/hero-image.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}
.hero h2 {
    font-size: 2.5em;
    margin: 0;
    color: #ffffff;
}
.section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service {
    background: #333;
    color: white;
    padding: 20px;
    margin: 10px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
    transition: 0.5s;
}
.service:hover {
    width: 120%;
    background: #241e31;
}
.service h3 {
    margin-top: 0;
}
.cta {
    text-align: center;
    margin-top: 20px;
}
.cta a {
    background: #007BFF;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}
footer {
    background: #232323;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}
body{
    background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url('assets/abstract-blue-background-simple-design-for-your-website-free-vector.jpg');
    background-size: cover;
}
.hero h1{
    color: black;
}
.service h3{
    font-weight: 600;
}
.service p{
    font-weight: 400;
}
.hero h2 {
    margin-bottom: 16px; /* Adjust spacing as needed */
}

.hero h3 {
    margin: 0; /* Remove default margin */
    font-weight: 300;
    font-size: 22px;
    text-shadow: 6px 6px 8px rgba(0, 0, 0, 0.5); /* Add text shadow */
}

.hero p {
    margin: 8px 0; /* Adds spacing between paragraphs */
    font-size: 18px;
}
.hero {
    display: block; /* Ensure the section stacks elements vertically */
    text-align: center; /* Center the content */
}

h2{
    color: white;
}

.cta a{
    transition: 0.3s;
}

.cta a:hover{
    background-color: blue;
}