/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow-y: scroll; /* Allow scrolling */
}

/* Loading Animation */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top: 5px solid #f0c808;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header Styles */
header {
    text-align: center;
    padding: 50px 20px;
}

.logo {
    max-width: 300px; /* Increase logo size */
    margin-bottom: 16px;
    animation: fade-in 2s;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    animation: slide-down 2s;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f0c808;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.1);
}

/* Features Section */
#features {
    padding: 50px 20px;
    text-align: center;
    background-color: #111;
}

#features h2 {
    font-size: 2.5rem;
    color: #f0c808;
    margin-bottom: 20px;
}

#features2 {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0 auto; /* Center the container */
    text-align: center; /* Ensures text starts from the left */
}



#features2 h2 {
    font-size: 2.5rem;
    color: #f0c808;
    margin-bottom: 20px;
    display: inline-block;
    padding-bottom: 5px;
    text-align: center; /* Ensures text starts from the left */
}

#features2 ol {
    list-style: decimal inside;
    margin: 20px auto; /* Centers the list horizontally */
    padding: 0;
}


#features2 ol li {
    font-size: 1.2rem;
    margin: 10px 0;
}

#features2 a {
    color: #f0c808;
    text-decoration: none;
    font-weight: bold;
}

#features2 a:hover {
    text-decoration: underline;
}

#features2 p {
    margin: 15px 0;
    font-size: 1rem;
}

#features2 section {
    margin-bottom: 40px;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.feature-category {
    background: #222;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.feature-category:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}

.feature-category h3 {
    color: #f0c808;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-category ul {
    list-style-type: none;
    padding: 0;
}

.feature-category ul li {
    font-size: 1rem;
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-category ul li i {
    color: #f0c808;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* Social Media Links */
footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.social-icon {
    color: #f0c808; /* Fix icon color for better visibility */
    font-size: 3rem; /* Larger icon size */
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #fff; /* Highlight icons on hover */
}

/* Animations */
@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slide-down {
    0% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #222; /* Track color */
    border-radius: 5px; /* Rounded corners */
}

::-webkit-scrollbar-thumb {
    background: #f0c808; /* Thumb color (yellow) */
    border-radius: 5px; /* Rounded corners */
    border: 2px solid #222; /* Adds some spacing around the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #ffc107; /* Brighter yellow on hover */
}

body {
    scrollbar-width: thin; /* Makes the scrollbar thin in Firefox */
    scrollbar-color: #f0c808 #222; /* Thumb and track colors for Firefox */
}

.footer-details {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #333;
    color: #aaa;
    text-align: center;
    font-size: 14px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #f0c808;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffc107;
}

/* Suggest Tool Section Styles */
#suggest-tool {
    padding: 2rem;
    text-align: center;
    background-color: #111; /* Dark theme background */
    color: #f0c808; /* Yellow theme text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin: 2rem auto;
    max-width: 700px;
    border-radius: 8px;
    overflow: hidden; /* Prevent scrollbars */
    transition: height 0.5s ease-in-out;
}

#suggest-header {
    margin-bottom: 1rem;
}

#suggest-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

#suggest-header p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

#toggle-form {
    background-color: transparent;
    color: #f0c808;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

#toggle-form:hover {
    transform: scale(1.1);
    color: #ffc107;
}

#suggest-form {
    text-align: left;
    padding-top: 1rem;
    border-top: 1px solid #222;
}

#suggest-tool input,
#suggest-tool textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #333;
    background-color: #222;
    color: #f0c808;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

#suggest-tool input::placeholder,
#suggest-tool textarea::placeholder {
    color: #555;
}

#suggest-tool button {
    padding: 0.8rem 2rem;
    background-color: #f0c808; /* Yellow theme for buttons */
    color: #000; /* Black text for contrast */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

#suggest-tool button:hover {
    background-color: #ffc107; /* Slightly brighter yellow */
    transform: translateY(-2px); /* Lift effect */
}
