/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #121212;
  color: #f4f4f4;
  line-height: 1.6;
  padding: 20px;
}

/* Header Styling */
header {
  background-color: #000;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

header h1 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

header p {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* Button styling */
.cta-btn {
  background-color: #ff6f61;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  white-space: nowrap;
}

.cta-btn:hover {
  background-color: #ff5733;
}

/* Section Titles Styling */
h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ff6f61;
}

/* About, Services, and Contact Sections */
.about-us,
.services,
.contact {
  background-color: #1e1e1e;
  padding: 40px 20px;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Demo Buttons Section */
.demo-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.demo-buttons .cta-btn {
  flex: none;
  width: auto;
  max-width: none;
  text-align: center;
}

/* Founders Section */
.founders {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
}

.founder {
  text-align: center;
}

.founder img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #ff6f61;
  margin-bottom: 15px;
}

.founder h3 {
  color: #f4f4f4;
  margin-bottom: 5px;
}

.founder p {
  color: #aaa;
}

/* Contact Form Styling */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.contact input,
.contact textarea {
  padding: 12px;
  background-color: #333;
  border: 1px solid #444;
  border-radius: 6px;
  color: white;
}

.contact button {
  background-color: #ff6f61;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact button:hover {
  background-color: #ff5733;
}

/* Footer Styling */
footer {
  text-align: center;
  padding: 20px;
  background-color: #222;
  color: white;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.testimonial-card {
  background-color: #1e1e1e;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  color: #ccc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.testimonial-card:hover {
  background-color: #292929;
  transform: translateY(-5px);
}

.testimonial-card h4 {
  color: #ff6f61;
  margin-top: 15px;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #aaa;
}

footer .socials a {
  color: #ff6f61;
  margin: 0 10px;
  text-decoration: none;
}

footer .socials a:hover {
  color: #ff5733;
}

/* Services List Styling */
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Navigation Bar */
.navbar {
  background-color: #000;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff6f61;
  text-decoration: none;
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: #f4f4f4;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.nav-links a:hover {
  color: #ff6f61;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .services-list {
    grid-template-columns: 1fr;
  }

  .nav-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid #444;
  }

  .demo-buttons {
    flex-direction: column;
    align-items: center;
  }

  .demo-buttons .cta-btn {
    width: auto;
    padding: 12px 20px;
  }
}
