/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

@keyframes gradientBackground {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

body {
    line-height: 1.6;
    background: linear-gradient(135deg, #2a2a2a, #1c1c1c, #2a2a2a); /* Gradient colors */
    background-size: 200% 200%; /* Larger background size for smooth animation */
    animation: gradientBackground 15s ease infinite; /* Adjust duration and easing as needed */
    color: #e0e0e0; /* Light gray text color */
}

header {
    background-color: #1c1c1c; /* Slightly lighter black for header */
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #e0e0e0; /* Light gray text color */
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff; /* White on hover */
}

/* Hero Section */
@keyframes blackWhiteAnimation {
    0% {
        background-position: -100% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}

@keyframes smoothGradient {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: -100% 0%;
    }
}

.hero-section {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('your-background-image.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
.hero-content {
    max-width: 800px; /* Optional: Adjust based on your layout needs */
    width: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, rgba(51, 51, 51, 0.7), rgba(255, 255, 255, 0.7), rgba(51, 51, 51, 0.7)); /* Dark gray instead of black */
    background-size: 200% 100%; /* Adjust to cover more space */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blackWhiteAnimation 8s linear infinite; /* Longer duration for smoother effect */
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center; /* Aligns the icon and text vertically */
    justify-content: center; /* Center the content within the paragraph */
}

.sound-icon {
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    margin-right: 10px; /* Space between the icon and the text */
}

.btn {
    padding: 0.75rem 2rem;
    background-color: #ff6347;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Optional: Start from below */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new-service-cards {
    display: flex;
    justify-content: center; /* Center align new cards */
    flex-wrap: wrap;
    gap: 1rem; /* Adds space between new cards */
    margin-top: 2rem; /* Space between old and new cards */
    opacity: 0; /* Initially hidden */
    animation: fadeIn 0.6s forwards; /* Apply fade-in animation */
    display: none; /* Start hidden */
}

/* Add some delay to animation to avoid overlapping */
.new-service-cards.show {
    display: flex; /* Show the cards */
}

.new-service-card {
    background-color: #2a2a2a; /* Dark gray background for each card */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow for card */
    width: 250px;
    text-align: left;
    position: relative; /* Required for positioning price tag */
    overflow: hidden; /* Ensures no overflow of content */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effects */
}

.new-service-card:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* More pronounced shadow on hover */
}

/* Title and price tag for new cards should match the old ones */
.new-service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #b0b0b0, #1c1c1c, #b0b0b0); /* Light gray to dark gray gradient */
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blackWhiteAnimation 8s linear infinite; /* Smooth gradient animation */
}

.new-price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6347; /* Price tag background color */
    color: #fff; /* White text on price tag */
    padding: 0.05rem 0.05rem;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
}
.show-more-btn {
    padding: 0.75rem 2rem;
    background-color: #ff6347; /* Same color as the Learn More button */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    margin-top: 2rem; /* Space above the button */
}

.show-more-btn:hover {
    background-color: #ff4500; /* Darker shade on hover */
}
.btn:hover {
    background-color: #ff4500;
}
.featured-section {
    background-color: #333; /* Darker background for contrast */
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.featured-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.featured-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.featured-content .btn {
    background-color: #ff6347; /* Button color */
    padding: 0.75rem 2rem;
    border-radius: 5px;
}

.btn:hover {
    background-color: #ff4500;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #1c1c1c; /* Slightly lighter black */
}

.about-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #fff;
}

.about-section p {
    font-size: 1.1rem;
    color: #b0b0b0; /* Slightly lighter gray for text */
}

/* Services Section */
.services-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #1c1c1c; /* Dark gray background */
    color: #b0b0b0; /* Light gray text */
}

.services-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #b0b0b0; /* Light gray text */
}
.purchase-btn:disabled {
    background-color: #555; /* Change the color to indicate it's disabled */
    cursor: not-allowed;    /* Change the cursor to indicate it's not clickable */
    opacity: 0.6;           /* Make it slightly transparent */
}

/* Card Container */
.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

/* Service Card */
/* Services Section */
.services-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #1c1c1c; /* Dark gray background */
    color: #b0b0b0; /* Light gray text */
}

.services-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #b0b0b0; /* Light gray text */
}

/* Card Container */
.service-cards {
    display: flex;
    justify-content: center; /* Center align cards */
    flex-wrap: wrap;
    gap: 1rem; /* Adds space between cards */
}

/* Service Card */
.service-card {
    background-color: #2a2a2a; /* Dark gray background for each card */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow for card */
    width: 250px;
    text-align: left;
    position: relative; /* Required for positioning price tag */
    overflow: hidden; /* Ensures no overflow of content */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effects */
}

.service-card:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); /* More pronounced shadow on hover */
}

/* Service Title */
.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #b0b0b0, #1c1c1c, #b0b0b0); /* Light gray to dark gray gradient */
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: blackWhiteAnimation 8s linear infinite; /* Smooth gradient animation */
}

/* Price Tag */
.price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6347; /* Price tag background color */
    color: #fff; /* White text on price tag */
    padding: 0.05rem 0.05rem;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Purchase Button */
.purchase-btn {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #333333; /* Button background color */
    color: #fff; /* Button text color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    display: block; /* Ensure it is displayed properly */
    text-align: center; /* Center text within the button */
}

.purchase-btn:hover {
    background-color: #ff4500; /* Darker shade on hover */
}
/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #1c1c1c;
}

.contact-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #fff;
}

.contact-section form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact-section input,
.contact-section textarea {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #333;
    background-color: #2a2a2a; /* Darker background for form fields */
    color: #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: #999; /* Placeholder color */
}

.contact-section button {
    padding: 1rem;
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.contact-section button:hover {
    background-color: #555;
}

/* Footer */
footer {
    background-color: #1c1c1c;
    color: #e0e0e0;
    text-align: center;
    padding: 1rem 0;
}
