:root {
    --bg-color: #0A0A0A; /* Dark background */
    --text-color: #FFFFFF; /* White text */
    --accent-cyan: #31cee7;
    --accent-pink: #FF007F;
    --secondary-text: #B3B3B3;
}

/* General about section */
.about {
    max-width: 900px; /* Set a max-width to control section width */
    margin: 50px auto; /* Center the section horizontally and add some space at the top */
    padding: 30px 20px; /* Padding around the content */
    background-color: rgba(0, 0, 0, 0.30); /* Light background */
    border-radius: 20px; /* Rounded corners */
    color: var(--text-color);
    text-align: center; /* Center the entire section content */
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensure all content inside the section is centered */
    justify-content: center; /* Vertically center content */
    box-sizing: border-box; /* Prevent padding from affecting layout */
}

/* About Heading */
.about h2 {
    font-size: 38px; /* Heading size */
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center; /* Ensure heading is centered */
}

/* About Paragraph */
.about p {
    font-size: 18px; /* Text size */
    line-height: 1.8; /* Improve readability */
    margin-bottom:1px;
    text-align: center; /* Center paragraph text */
    max-width: 800px; /* Control paragraph width */
    margin-left: auto; /* Center paragraph inside the section */
    margin-right: auto;
    padding: 10px; /* Add padding inside paragraph */
}

/* Service List */
.about ul {
    list-style-type: none; /* Remove default list bullets */
    padding: 0;
    text-align: center; /* Center list items */
    max-width: 800px;
    margin-left: auto; /* Center list */
    margin-right: auto;
}

.about ul li {
    font-size: 18px;
    margin-bottom: 10px; /* Space between list items */
}

/* Make sure content is responsive */
@media (max-width: 768px) {
    .about {
        padding: 20px; /* Reduced padding on smaller screens */
    }

    .about h2 {
        font-size: 28px; /* Smaller heading size for mobile */
    }

    .about p, .about ul li {
        font-size: 16px; /* Smaller text size for mobile */
    }

    .about ul, .about p {
        text-align: center; /* Ensure text stays centered on mobile */
    }
}

/* Notification Styling */
#notification {
    position: fixed;
    top: 20px; /* Position at the top */
    left: 50%;
    transform: translateX(-50%); /* Center horizontally */
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    color: white;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-pink));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1000;
}

#notification.visible {
    opacity: 1;
    visibility: visible;
}


.reviews {
    padding: 50px 20px;
    background-color: rgba(0, 0, 0, 0.10); /* Slightly dark background */
    border-radius: 10px;
    margin: 30px 0;
    color: var(--text-color);
    text-align: center;
}

.reviews h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.review-card {
    background-color: rgba(0, 0, 0, 0.05);
    border: 2px solid var(--accent-cyan);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-rating {
    font-size: 24px;
    color: var(--accent-cyan);
    margin-top: 10px;
}

.star {
    cursor: pointer;
    color: gold;
    font-size: 30px;
}

.star-rating-input span {
    cursor: pointer;
    color: #ccc; /* Default color for stars */
    font-size: 30px;
}

.star-rating-input span:hover,
.star-rating-input span.selected {
    color: gold;
}

.review-form {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    text-align: center;
}

.review-form textarea {
    width: 80%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid var(--accent-cyan);
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    margin-bottom: 15px;
}

.review-form button {
    text-decoration: none; /* Removes underline styling */
    padding: 10px 20px; /* Increases button size with inner spacing */
    font-size: 16px; /* Sets readable font size */
    border: none; /* Removes default border */
    border-radius: 5px; /* Smoothens edges for rounded corners */
    cursor: pointer; /* Changes cursor to pointer on hover */
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-pink)); /* Adds gradient background */
    color: var(--text-color); /* Ensures text color contrasts background */
    transition: transform 0.2s, box-shadow 0.4s ease-in-out; /* Smooth transition for transform and box-shadow */
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 10px rgba(255, 0, 127, 0.5); /* Creates glowing effect */
    margin-top: 20px; /* Adds spacing above the button to move it lower */
}


.review-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 20px rgba(255, 0, 127, 0.8); /* Enhanced glow on hover */
}
