/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #000000;
    background-position: center;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  h2 {
    font-size: 32px;
    color: #00e091;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  h3 {
    font-size: 24px;
    color: #00e091;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  p {
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Navigation Bar */
  .navbar {
    background-color: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    border: 2px solid transparent;
  }
  
  .nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    color: white;
    font-size: 24px;
    font-weight: 500;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #00e091; /* Teal color for hover effect */
  }
  
  .nav-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: #008080;
    border: 2px solid #00e091;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .nav-button:hover {
    background-color: #008080;
    color: white;
  }
  
  /* Main Content Area */
  main {
    padding-top: 120px; /* Adds space to account for the fixed navbar */
    text-align: center; /* Centers the main content */
  }
  
  h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00e091 /* Teal color for main heading */
  }
  
  .section {
    padding: 60px 20px;
  }
  
  .section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #00e091;
  }
  
  .section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
  }
  .video-container video {
    width: 1200px; 
    height: 600px; 
    object-fit: cover;
    border-radius: 20px; /* Larger radius for more rounded corners */
}
  
/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background-color: black;
  background-size: cover; /* Make the image cover the whole section */
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Prevent the image from repeating */
}

.contact-content {
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
}

.contact-image {
  flex: 1;
}

.contact-image img {
  width: 80%;
  border-radius: 10px;
}

.contact-content h2 {
  font-size: 42px; /* Adjust this value to make it larger */
  font-weight: bold;
  line-height: 1.2;
}

.contact-form {
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 25px;
  color: #00e091;
}

.contact-form p {
  margin-bottom: 15px;
  color: #ffffff;
}

/* Style for the Get Started button */
.get-started {
  background-color: #00e091; /* Teal color */
  color: white;              /* White text */
  font-size: 18px;           /* Bigger text size */
  padding: 15px 30px;        /* Increase padding to make the button bigger */
  border: none;              /* Remove border */
  border-radius: 5px;        /* Rounded corners */
  cursor: pointer;          /* Change cursor to pointer on hover */
  transition: background-color 0.3s ease; /* Smooth transition on hover */
}

/* Hover effect for the button */
.get-started:hover {
  background-color: #00e091; /* Darker teal color on hover */
}

/* Footer Styles */
.footer {
  background-color: #0c1110;
  color: #ffffff; /* White text color */
  padding: 50px 0; /* Increased padding for better spacing */
  border-top: 2px solid #00e091; /* Teal solid line at the top */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px; /* Increased gap for better spacing */
  padding: 0 20px; /* Fixed padding */
  justify-content: space-between; /* Align sections evenly */
}

.footer-logo img {
  width: 50px; /* Adjust as needed */
  margin-bottom: 20px; /* Space below the logo */
}

.footer-section {
  flex: 1;
  min-width: 300px; /* Minimum width for each section */
  margin-bottom: 20px; /* Space between sections */
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-align: left;
  color: #ffffff; /* Teal color for headings */
}

.footer-section ul {
  list-style: none;
  text-align: left;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ffffff; /* White text color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00e091 /* Teal color on hover */
}
  .social-media .social-icons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 10px; 
  }
  
  .social-media .social-icons a {
    color: #ffffff; /* Teal color */
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .social-media .social-icons a:hover {
    color: #00e091; /* White on hover */
  }

/* Responsive Styles */
@media (max-width: 992px) {
  .section-container {
      flex-direction: column;
      padding: 40px 20px;
  }
  
  .content, .image-container {
      max-width: 100%;
      margin-bottom: 30px;
  }
  
  .why-us-section {
      flex-direction: column;
  }
  
  .image-gallery {
      margin-right: 0;
      margin-bottom: 30px;
  }
  
  .contact-content {
      flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-section {
      padding-left: 5%;
  }
  
  .hero-content h1 {
      font-size: 40px;
  }
  
  .hero-content p {
      font-size: 18px;
  }
  
  .nav-links {
      gap: 15px;
  }
  
  .nav-button {
      padding: 8px 16px;
  }
  
  .image-gallery {
      flex-direction: column;
  }
  
  .image-gallery img {
      width: 100%;
      height: auto;
  }
  
  .footer-container {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
      font-size: 32px;
  }
  
  .cta-button {
      padding: 12px 24px;
      font-size: 16px;
  }
  
  .services-grid, .pricing-cards, .blog-container {
      grid-template-columns: 1fr;
  }
}








































  /* Footer */
  footer {
    background-color: #111111;
    padding: 40px 20px;
    text-align: center;
    color: white;
  }
  
  footer p {
    font-size: 14px;
  }
  
  footer a {
    color: #008080;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  footer a:hover {
    color: #00bfbf; /* Light teal color on hover */
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .navbar {
      padding: 1rem;
    }
  
    .nav-links {
      gap: 15px;
    }
  
    .nav-button {
      font-size: 14px;
      padding: 8px 16px;
    }
  
    main {
      padding-top: 100px;
    }
  
    .use-case-cards {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 768px) {
    main {
      padding-top: 80px;
    }
  
    .use-case-cards {
      grid-template-columns: 1fr;
    }
  }
  