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

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #0f0f0f;
    color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #333;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #6ee2f5, #6454f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

header h1 svg {
    height: 80px; /* Adjust SVG size as needed */
    margin-right: 10px; /* Space between SVG and text */
    fill: currentColor; /* Ensure SVG color inherits from text color */
}

nav ul li a b {
    background: linear-gradient(to right, #6ee2f5, #6454f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: font-size 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}

nav ul li a b:hover {
    font-size: 1.5em;
    font-weight: 700;
}

nav ul li a {
    background: linear-gradient(to right, #ff9a9e, #fad0c4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: font-size 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}

nav ul li a:hover {
    font-size: 1.5em;
    font-weight: 700;
}

nav {
    align-content: center;
    height: 60px;
    background-color: #333333a9;
    border-radius: 20px;
    position: fixed;
    top: 20px;
    right: 20px;
    left: 20px;
    z-index: 100;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0; /* Remove margin-right for the last li to prevent extra space */
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 15px; /* Adjust padding as needed */
    display: inline-block;
    position: relative; /* Ensure proper positioning of the SVG icon */
}

nav ul li a svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(100% + 5px); /* Adjust distance from text */
    height: 20px; /* Adjust SVG icon size as needed */
    fill: currentColor; /* Ensure SVG color inherits from text color */
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    line-height: 30px;
}

body {
    background: linear-gradient(to right, #6ee2f5, #6454f0);
    left: 0;
    right: 0;
    -webkit-user-select: none;
    user-select: none;
}

.hero h2,
.hero p,
.btn,
.features h2,
.feature-item,
.feature-item img,
.feature-item h3,
.feature-item p,
footer {
    animation-duration: 1.5s;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background-color: #4CAF50;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #45a049;
}

.features {
    padding: 80px 0;
    text-align: center;
}

.features h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.feature-item {
    margin-bottom: 40px;
}

.feature-item img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1.2rem;
}

footer {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    bottom: 0;
    left: 0;
}
