/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

/* Body and layout */
body {
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
header {
    background-color: #7f4fe3;
    color: white;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

header:hover {
    background-color: #6b3ec1;
}

header .logo img {
    max-width: 120px;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffedff;
}

/* Hero Section */
#hero {
    background-color: #7f4fe3;
    color: white;
    text-align: right;
    padding: 80px 10%;
    transition: background-color 0.3s ease;
}

#hero:hover {
    background-color: #6b3ec1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.4rem;  /* Larger size for better readability */
    margin-bottom: 40px;
    line-height: 1.8;   /* More space between lines */
    letter-spacing: 0.5px; /* Slight letter spacing */
    color: #e1e1e1;  /* Soft color for text */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);  /* Subtle text shadow */
}

.cta-btn {
    text-decoration: none;
    background-color: white;
    color: #7f4fe3;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #6b3ec1;
    color: white;
    transform: scale(1.05);
}

/* About Section */
#about {
    padding: 40px 10%;
    text-align: right;
    background-color: white;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #7f4fe3;
}

#about p {
        font-size: 1.4rem;  /* Larger size for better readability */
        margin-bottom: 40px;
        line-height: 1.8;   /* More space between lines */
        letter-spacing: 0.5px; /* Slight letter spacing */
        color: #000000;  /* Soft color for text */
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);  /* Subtle text shadow */
}
li{
    font-size: 1.4rem;  /* Larger size for better readability */
        margin-bottom: 40px;
        line-height: 1.8;   /* More space between lines */
        letter-spacing: 0.5px; /* Slight letter spacing */
        color: #000000;  /* Soft color for text */
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);  /* Subtle text shadow */
}

/* Features Section */
#features {
    padding: 40px 10%;
    text-align: right;
    background-color: #f5f5f5;
}

#features h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #7f4fe3;
}

.feature-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-size: 1.6rem;
    color: #7f4fe3;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7; /* Adjust line height for feature descriptions */
    letter-spacing: 0.5px; /* Adjust letter spacing */
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #7f4fe3;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: #ffedff;
}

