/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
  position: relative;
  min-height: 100vh;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  color: #000;
}

/* Container for sections */
.section-padding {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Video Background */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  object-fit: cover;
  opacity: 0.35;
  background-color: black;
  pointer-events: none;
}

/* Header Styles */
header {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

/* Logo, Navigation, and Language Switcher Container */
.logo-nav-lang {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 20px;
  z-index: 2;
}

#navi{
    
  height: 20px;
  
}

/* Logo on the Left */
.logo {
  height: 50px;
}

.logo img {
  height: 100px;
}

/* Navigation in the Center */
nav {
  flex: 1;
  text-align: center;
}

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

nav ul li {
  margin: 0;
}

nav ul li a {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #007BFF;
}

/* Language Selection on the Right */
.language-switcher {
  text-align: right;
}

.language-switcher a {
  margin: 0 10px;
  font-weight: bold;
  color: #007BFF;
}

/* Hero Content */
header .hero-content {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 120px;
}

header .hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #007BFF;
}

header .hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #007BFE;
}

.cta-button {
  background-color: #007BFF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056b3;
}

/* Section Heading Styles */
h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

/* About Us Section */
#about-us p {
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Our Services Section */
.service {
  margin-bottom: 40px;
  text-align: center;
}

.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Benefits Section */
#benefits ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

#benefits ul li {
  background-color: #007BFF;
  color: #fff;
  margin: 10px 0;
  padding: 10px;
  border-radius: 5px;
  font-size: 16px;
}

/* Technology Section */
.technology-feature {
  margin-bottom: 40px;
}

.technology-feature h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.technology-feature p {
  font-size: 16px;
  line-height: 1.6;
}

/* How It Works Section */
.step {
  margin-bottom: 40px;
}

.step h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.step p {
  font-size: 16px;
  line-height: 1.6;
}

/* FAQ Section */
#faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  cursor: pointer;
  padding: 15px;
  border-radius: 5px;
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  transition: background-color 0.3s ease;
}

.faq-item:hover {
  background-color: #e8e8e8;
}

.faq-question {
  font-size: 20px;
  font-weight: bold;
  color: #007BFF;
}

.faq-answer {
  padding: 15px;
  font-size: 16px;
  display: none;
  background-color: #fff;
  border-radius: 5px;
  border-top: 1px solid #ccc;
  margin-top: 10px;
  transition: max-height 0.3s ease;
}

/* Testimonials Section */
.testimonial {
  background-color: #f9f9f9;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.testimonial p {
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial h4 {
  font-size: 18px;
  text-align: right;
  margin-top: 10px;
}

/* Capabilities Section */
.capability h3 {
  padding: 15px;
}

.capability {
  padding: 10px 30px;
}

/* Footer Styles */
#footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-nav-lang {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  header .hero-content {
    padding-top: 420px;
  }
  .hero-content{
      padding-top: 350px;
  }

  header .hero-content h1 {
    font-size: 36px;
  }

  header .hero-content p {
    font-size: 16px;
  }

  .cta-button {
    padding: 12px 24px;
  }
  
  .logo {
      position: absolute;
      top:0px;
      left:0px;
  }
  
  .contact-form-container {
      padding-top:150px;
  }
  
}

@media (max-width: 480px) {
  header .hero-content h1 {
    font-size: 28px;
  }

  header .hero-content p {
    font-size: 14px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  nav ul {
    flex-direction: column;
    margin: 0;
  }

  nav ul li {
    margin: 10px 0;
  }

  .cta-button {
    padding: 10px 20px;
  }
}

/* Fallback for Mobile Devices */
@media (max-width: 768px) {
  #bg-video {
    display: none;
  }

  body {
    background-color: #f4f4f4;
  }
  
  .logo {
      text-align: left;
  }
}

/* Contact Form Styles */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-form-container p {
  font-size: 18px;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007BFF;
  outline: none;
}

button.cta-button {
  background-color: #007BFF;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button.cta-button:hover {
  background-color: #0056b3;
}

/* Contact Information Styles */
#contact-info {
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

#contact-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

#contact-info p {
  font-size: 18px;
  margin-bottom: 10px;
}

#contact-info a {
  color: #007BFF;
  text-decoration: none;
}

#contact-info a:hover {
  text-decoration: underline;
}

.form-group-captcha img{
    height: 50px;
}