
/* Reset and Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0;
    background-color: #121212;
    scroll-behavior: smooth;
}
a {
    text-decoration: none;
    color: inherit;
}
/* Header Styles */
header, footer {
    background-color: #1E1E1E;
    color: #E0E0E0;
    padding: 20px 0;
}
header {
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    height: 70px; /* Set the height of the header */
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
nav a {
    color: #E0E0E0;
    margin-left: 20px;
    transition: color 0.3s;
}
nav a:hover {
    color: #007BFF;
}
.logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #007BFF;
}
.logo img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
  }
/* Hero Section */
.hero {
    background-image: url('https://source.unsplash.com/1600x900/?technology,futuristic');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #E0E0E0;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.8);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-in-out;
}
.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #B0B0B0;
}
.btn {
    background-color: #007BFF;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s;
    display: inline-block;
    margin: 10px;
}
.btn:hover {
    background-color: #005BB5;
}
/* Section Styles */
.section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: 0 auto;
    color: #E0E0E0;
    text-align: center;
}
.section:nth-child(even) {
    background-color: #181818;
}
.section-title {
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #007BFF;
    position: relative;
}
.section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #007BFF;
    display: block;
    margin: 20px auto 0;
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.feature-item {
    flex: 1 1 calc(33% - 40px);
    margin: 20px;
    background-color: #1E1E1E;
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s;
    max-width: 300px;
}
.feature-item:hover {
    transform: translateY(-10px);
}
.feature-item h3 {
    margin-bottom: 15px;
    color: #007BFF;
}
.feature-item p {
    color: #B0B0B0;
}
/* Integration Section */
.integration {
    background-color: #181818;
    text-align: center;
}
.integration p {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #B0B0B0;
    font-size: 1.2em;
    line-height: 1.6;
}
/* Testimonials Section */
.testimonials {
    background-color: #121212;
    color: #E0E0E0;
    padding: 100px 20px;
}
.testimonial-item {
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}
.testimonial-item p {
    font-size: 1.2em;
    color: #B0B0B0;
    margin-bottom: 10px;
}
.testimonial-item h4 {
    color: #007BFF;
    margin-bottom: 5px;
}
.testimonial-item span {
    color: #B0B0B0;
    font-size: 0.9em;
}
/* Footer Styles */
footer {
    text-align: center;
    background-color: #1E1E1E;
    padding: 40px 20px;
}
footer p {
    margin: 5px 0;
    color: #B0B0B0;
}
footer a {
    color: #007BFF;
}
/* Media Queries */
@media (max-width: 768px) {
    .feature-item {
        flex: 1 1 100%;
        max-width: none;
    }
    .hero h1 {
        font-size: 2.5em;
    }
    nav a {
        margin-left: 10px;
    }
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Contact Form Styles */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form label {
  display: block;
  margin-top: 20px;
  font-weight: bold;
  color: #E0E0E0; /* Match text color */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  background-color: #1E1E1E; /* Match background color */
  border: 1px solid #333333; /* Subtle border */
  border-radius: 5px;
  color: #E0E0E0; /* Text color */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #B0B0B0; /* Placeholder text color */
}

.contact-form button {
  margin-top: 30px;
  padding: 15px 30px;
  background-color: #007BFF; /* Button color */
  color: #FFFFFF;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #005BB5; /* Darker button color on hover */
}

/* Flash Messages Styles */
.flash-messages {
  max-width: 1100px;
  margin: 10px auto 20px; /* Adjust top margin to account for the fixed header */
  text-align: center;
  z-index: 99; /* Ensure it appears above other elements if necessary */
  position: relative;
}

.flash-message {
  position: relative;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 1em;
  opacity: 1;
  max-height: 100px;
  overflow: hidden;
  transition: opacity 1s ease-out, max-height 1s ease-out, margin-bottom 1s ease-out, padding 1s ease-out;
}

.flash-message.success {
  background-color: #28a745; /* Green background */
  color: #FFFFFF; /* White text */
}

.flash-message.danger {
  background-color: #dc3545; /* Red background */
  color: #FFFFFF; /* White text */
}

.flash-message.hidden {
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  padding: 0;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.2em;
  cursor: pointer;
}

.close-button:hover {
  color: #CCCCCC;
}

/* Adjustments for responsiveness */
@media (max-width: 768px) {
  .contact-form {
      padding: 0 20px;
  }
}

