/* Basic Styles */
body {
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
}

/* Header Styling */
header {
    background-color: #000;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    background: url('assets/cybercrime-investigation-cybersecurity.jpg') no-repeat center center / cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1, .hero p {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    border-radius: 8px;
    max-width: 90%;
    margin: 0.5rem 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
}

/* Features, Tools, and About Section */
.features, .tools, .about, .contact-form-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #222;
    border-radius: 8px;
    text-align: center;
}

/* Key Features Item Blocks */
.features .feature-item {
    display: inline-block;
    width: 30%;
    margin: 1rem;
    background: #222;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #d9534f;
    text-align: left;
}

.features h2 {
    color: #d9534f;
}

/* About Section Styling with Side-by-Side Layout and Red Separator */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    max-width: 800px;
    background-color: #222;
    border-radius: 8px;
    margin: 2rem auto;
}

.team-list {
    width: 45%;
    height: 200px;
    overflow: hidden;
    padding: 1rem;
}

.scrolling-text {
    display: inline-block;
    animation: scrollText 10s linear infinite;
}

.scrolling-text p {
    color: #fff;
    margin: 0.5rem 0;
}

@keyframes scrollText {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* Red Vertical Line Separator */
.about-separator {
    width: 2px;
    background-color: #d9534f;
    height: 200px;
    margin: 0 1rem;
}

.content {
    width: 45%;
    padding-left: 2rem;
}

.about h2 {
    color: #d9534f;
}

/* Tool Item Blocks */
.tools .tool {
    display: inline-block;
    width: 30%;
    margin: 1rem;
    background: #222;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #d9534f;
}

/* Downloads Section Styling */
.downloads {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
    text-align: center;
}

.downloads h1 {
    color: #d9534f;
}

.downloads p {
    color: #ddd;
}

/* Download Item Blocks */
.download-item {
    background-color: #222;
    border: 1px solid #d9534f;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: left;
}

.download-item h2, .download-item h3 {
    color: #d9534f;
}

.download-item p, .download-item ul {
    color: #ddd;
}

/* Download Buttons */
.download-button {
    background-color: #d9534f;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #b8463f;
}

/* Contact Form Styling */
.contact-form-section h2 {
    color: #d9534f;
    margin-bottom: 1rem;
}

.contact-form-section p {
    color: #ddd;
    margin-bottom: 2rem;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

#contactForm label {
    font-weight: bold;
    color: #fff;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
    font-size: 1rem;
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #d9534f;
}

.submit-button {
    background-color: #d9534f;
    color: #fff;
    padding: 0.7rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #b8463f;
}

/* Testimonials Section Styling */
.testimonials {
    background: #222;
    padding: 2rem;
    text-align: center;
}

.testimonials h2 {
    color: #d9534f;
    margin-bottom: 1rem;
}

.testimonials .testimonial-item {
    display: inline-block;
    width: 45%;
    margin: 1rem;
    background: #222;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #d9534f;
    color: #ddd;
    text-align: left;
}

/* Footer Styling */
footer {
    background-color: #1a1a1a;
    padding: 1rem;
    text-align: center;
    color: #666;
}

footer a {
    color: #d9534f;
    text-decoration: none;
    margin: 0 1rem;
}
