/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4; /* Change this to match the background color of the last three tabs */
}



.container {
  width: 80%;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
}

.navbar {
  background-color: #333;
  padding: 10px 0;
  position: relative;
}

.navbar .nav-links {
  text-align: center;
}

.navbar .nav-links li {
  display: inline-block;
  margin-left: 20px;
}

.navbar .nav-links a {
  color: #fff;
  font-size: 16px;
  padding: 8px;
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover effect */
.navbar .nav-links a:hover {
  cursor: pointer; /* Change cursor to hand on hover */
  color: #66ccff; /* Lighter shade of blue on hover */
}


.hamburger {
  display: none;
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

.hero {
	    margin-top: -30px; 

  background-color: #f4f4f4; /* Match the background color to that of the other sections */
  color: #333;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
}

.hero p {
  font-size: 20px;
  margin: 20px 0;
}

.spacer {
  height: 20px; /* Adjust the height as needed */
}

/* General Button Styles */
.hero .btn {
  background-color: #00b0f0;  /* Light blue */
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
  text-align: center; /* Ensure the text is centered */
  display: inline-block;
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover Effect for .hero .btn */
.hero .btn:hover {
  cursor: pointer; /* Changes cursor to hand when hovering */
  background-color: #0088cc; /* Optional: change background color on hover */
}


.app-logo {
  margin-top: 20px;
  width: 150px;
}

.features {
  padding: 60px 0;
  text-align: center;
  background-color: #f4f4f4; /* Same background color */
}

.features h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.feature-items {
  display: flex;
  justify-content: space-around;
  gap: 20px; /* Add spacing between items */
  flex-wrap: wrap; /* Enable wrapping for smaller screens */
}

.feature-item {
  width: 30%;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px; /* Add spacing between rows */
}

.feature-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

section h2 {
  text-align: center; /* Keeps the title centered */
}

/* Styling for the Tutorial section */
.tutorial {
  padding: 60px 0;
  text-align: center;
  background-color: #f4f4f4; /* Same background color */
}

.tutorial h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.tutorial p {
  font-size: 20px;
  margin: 0 auto;
  max-width: 800px;  /* Limit text width for readability */
  line-height: 1.6;
}

/* Styling for the video container */
.tutorial-video {
  margin-top: 40px;  /* Add some space above the video */
  text-align: center;
}

.tutorial-video iframe {
  max-width: 100%; /* Make the video responsive */
  max-height: 100%;
}



.about, .privacy {
  padding: 60px 0;
  text-align: left;
  background-color: #f4f4f4; /* Same background color */
}

.contact {
  padding: 60px 0;
  text-align: center;
  background-color: #f4f4f4; /* Same background color */
}

.about h2, .privacy h2, .contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

 
.about {
  max-width: 100%;
  width: 100%; 
  word-wrap: break-word; 
  line-height: 1.6;  
  margin: 0 auto; 
}
/* text-align: justify; */

	
.contact form {
  display: flex;
  flex-direction: column;
  align-items: center; /* This will center the form elements horizontally */
  justify-content: center;
  margin-top: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.g-recaptcha {
  margin-top: 20px; /* Add some space between the submit button and reCAPTCHA */
  display: inline-block; /* Ensure reCAPTCHA is displayed inline and centered */
}

.contact input, .contact textarea {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.contact button {
  background-color: #00b0f0; /* Light blue */
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  border: none;
  transition: background-color 0.3s ease; /* Optional: add smooth transition for hover effect */
}

/* Hover Effect for Button */
.contact button:hover {
  cursor: pointer; /* Changes cursor to hand when hovering */
  background-color: #0088cc; /* Optional: change background color on hover */
}


/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer .container {
  width: 80%;
  margin: auto;
}

footer p {
  margin: 10px 0;
}

footer .footer-email {
  color: #00b0f0; /* Light blue color for email link */
  text-decoration: none;
}

footer .footer-email:hover {
  color: #fff; /* White color on hover */
  text-decoration: underline; /* Underline effect */
}

footer .social-links {
  margin-top: 20px;
}

footer .social-links a {
  color: #fff;
  font-size: 18px;
  margin: 0 15px;
  text-decoration: none;
}

footer .social-links a:hover {
  color: #00b0f0; /* Light blue color on hover */
  text-decoration: underline; /* Underline effect */
}

footer .app-logo {
  width: 20px; /* Adjust to the desired size of the logo */
  height: 20px; /* Keep the logo square */
  vertical-align: middle; /* Align with the middle of the text */
  margin: 0; /* Remove any margin */
  margin-right: 2px; /* Adds space to the left of the image */
  margin-left: 3px; /* Adds space to the left of the image */
  margin-bottom: 5px; /* Adds space to the left of the image */
}
  /*border-radius: 5px; /* Rounded corners */

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .hero .btn {
    padding: 12px 20px;    /* Adjust padding for smaller screens */
    font-size: 16px;       /* Slightly smaller font size */
    width: 100%;           /* Make button take full width on mobile */
    box-sizing: border-box; /* Ensure proper width calculation */

  }

  .footer .social-links a {
    margin: 10px 15px;
    font-size: 16px;
  }

  .nav-links li {
    display: block;
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }

  .nav-links.active {
    display: block;
  }

  .feature-items {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center-align items */
  }

  .feature-item {
    width: 90%; /* Full-width for smaller screens */
  }
}


#features, #about, #tutorial, #privacy, #contact {
    margin-top: -20px; 
    padding-top: 0;
}



#submit-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 50px;
}

#buttonText {
  display: inline;
}

.spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
