@charset "UTF-8";
/* main.scss */
/* Import common modules first */
body {
  font-family: "Roboto", sans-serif;
  color: #333;
  background-color: #ffffff;
  overflow-x: hidden;
}

.cta-buttons {
  display: flex;
  justify-content: flex-start; /* Align buttons to the left */
  gap: 15px; /* Reduced gap between buttons */
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1s;
}

.btn {
  padding: 12px 25px;
  font-size: 1em;
  border: 2px solid #0066cc;
  border-radius: 50px;
  text-decoration: none;
  color: #ffffff;
  background-color: #0066cc;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  display: inline-block;
}

.btn.primary {
  background-color: #0066cc;
  border-color: #0066cc;
}

.btn.primary:hover {
  background-color: #005bb5;
  border-color: #005bb5;
}

.btn.secondary {
  background-color: transparent;
  color: #0066cc;
  border-color: #0066cc;
}

.btn.secondary:hover {
  background-color: #f0f8ff;
}

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

html {
  scroll-behavior: smooth;
}

/* Separator Styling */
.section {
  border-bottom: 1px solid #000000; /* Black horizontal line */
  width: 90%; /* Set the line width to 90% of the screen */
  margin: 0 auto; /* Center the line horizontally */
}

.section-top {
  border-top: 1px solid #000000; /* Black horizontal line */
  width: 90%; /* Set the line width to 90% of the screen */
  margin: 0 auto; /* Center the line horizontally */
}

/* Optional: Remove border from the last section */
.section:last-of-type {
  border-bottom: none; /* Remove the bottom border from the last section */
  margin-bottom: 0;
  padding-bottom: 0;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.step {
  text-align: center;
  max-width: 300px;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #0066cc;
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 15px;
}

.step h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #0066cc;
}

.step p {
  font-size: 1em;
  color: #555555;
}

/* Import layout */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Import components */
/* About Us Section */
.about-us {
  background-color: #ffffff;
  padding: 60px 0; /* Increased padding for better spacing */
  text-align: left; /* Align text to the left */
}

.about-us h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5em;
  margin-bottom: 40px; /* Increased margin for better spacing */
  text-align: left; /* Align header to the left */
  color: #333333;
}

.about-us-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px; /* Space between text and image */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.about-us-text {
  flex: 1;
  max-width: 600px; /* Control text width */
}

.about-us-text p {
  font-size: 1.1em;
  margin-bottom: 20px; /* Reduced margin for better spacing */
  color: #555555;
  line-height: 1.6; /* Improved readability */
}

.about-us-image {
  flex: 1;
  max-width: 1000px; /* Control image container width */
  text-align: center;
}

.about-us-image img {
  width: 100%;
  max-width: 2000px; /* Set a maximum width for the image */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Rounded corners */
  object-fit: cover; /* Ensure the image covers the container without distortion */
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-us-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-us-image {
    max-width: 100%;
  }
  .about-us-image img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  .about-us h2 {
    text-align: center;
  }
  .about-us-content {
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
    gap: 20px; /* Adjust spacing */
  }
  .about-us-text {
    max-width: 90%; /* Limit text width */
  }
  .about-us-image img {
    max-width: 100%; /* Ensure images fit within container */
    height: auto; /* Maintain aspect ratio */
  }
}
@media (max-width: 480px) {
  .about-us {
    padding: 40px 20px; /* Reduced padding for smaller screens */
  }
  .about-us h2 {
    font-size: 2em; /* Slightly smaller font size */
    margin-bottom: 30px;
  }
  .about-us-text p {
    font-size: 1em;
  }
}
/* Contact Section */
.contact {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.contact h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333333;
}

.contact p {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555555;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  font-size: 1em;
  border: 2px solid #cccccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0066cc;
}

.contact-form button {
  padding: 15px;
  font-size: 1em;
  border: none;
  border-radius: 50px;
  background-color: #0066cc;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #005bb5;
}

/* Features Section */
.features {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: left;
}

.features h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5em;
  margin-bottom: 20px;
  text-align: left;
  color: #333333;
}

.features-intro {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 100px;
  color: #555555;
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid #000000; /* Optional separator line */
  padding-bottom: 20px;
}

.feature-text {
  flex: 1;
  padding-right: 20px;
}

.feature-text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #1a1a1a;
  padding-bottom: 20px;
}

.feature-text p {
  font-size: 1em;
  color: #555555;
  line-height: 1.5;
}

.feature-image {
  flex: 1;
  text-align: center;
}

.feature-image img {
  max-width: 70%; /* Maintain existing width constraint */
  max-height: 300px; /* Set a maximum height (adjust as needed) */
  width: auto; /* Allow width to adjust automatically */
  height: auto; /* Allow height to adjust automatically */
}

/* Responsive Design */
@media (max-width: 768px) {
  .features h2 {
    text-align: center; /* Center the heading */
  }
  .feature-item {
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
    border-bottom: none; /* Optional: Remove separator on mobile */
    padding-bottom: 0; /* Adjust padding as needed */
    margin-bottom: 30px; /* Adjust spacing */
  }
  .feature-text {
    padding-right: 0; /* Remove right padding */
    max-width: 90%; /* Limit text width for better readability */
  }
  .feature-image img {
    max-width: 100%; /* Ensure images fit within container */
    height: auto; /* Maintain aspect ratio */
  }
}
/* Remove the top bar in Features section on mobile devices */
@media (max-width: 992px) {
  /* Assuming the Features section has both 'features' and 'section-top' classes */
  .features.section-top {
    margin-top: 100px; /* Remove any top margin if necessary */
    padding-top: 20px; /* Remove any top padding if necessary */
  }
}
/* Footer Section */
.footer {
  background-color: #f5f5f5;
  padding: 40px 0;
  text-align: center;
  font-size: 0.9em;
  color: #777777;
}

.footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer .footer-links a {
  color: #777777;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .footer-links a:hover {
  color: #0066cc;
}

.footer .social-media {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer .social-media a img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.footer .social-media a:hover img {
  transform: scale(1.1);
}

.footer p {
  margin-top: 10px;
}

/* Hero Section */
.hero {
  width: 100%;
  height: 50vh;
  background: url("your-hero-image.jpg") center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 80px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
  text-align: left;
}

/* Minimal header style to reduce whitespace */
.minimal-header .hero {
  height: auto;
  min-height: 80px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85); /* Light overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1350px; /* Adjust as needed */
  padding: 0; /* Remove additional padding */
}

.hero-text {
  max-width: 600px; /* Control text width */
}

.hero-text h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5em; /* Slightly reduced font size */
  font-weight: 600;
  margin-bottom: 15px; /* Reduced margin below the header */
  color: #0066cc;
  animation: fadeInDown 1s ease forwards;
}

.hero-text p {
  font-size: 1.1em; /* Slightly reduced font size */
  padding-bottom: 50px; /* Reduced margin below the paragraph */
  color: #3f3f3f;
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-link {
  max-width: 600px; /* Control text width */
  margin-left: 40px; /* Space between text and link */
  text-align: right; /* Right-align all content inside .hero-link */
}

.hero-link p {
  font-size: 20px; /* Standard font size */
  color: #3f3f3f;
  margin-bottom: 15px; /* Space between text and link */
}

.hero-link a.software-link {
  text-decoration: none;
  color: #777777; /* Match navbar link color */
  font-weight: 500;
  font-size: 45px; /* Adjust font size */
  transition: color 0.3s ease;
  /* Add a right-pointing arrow */
  display: inline-flex; /* Use flex to align text and icon */
  gap: 5px; /* Space between the text and arrow */
}

.hero-link a.software-link span {
  text-decoration: underline; /* Underline only the text */
}

.hero-link a.software-link:hover {
  color: #1a1a1a; /* Darker shade on hover */
}

.hero-link a.software-link::after {
  content: "→"; /* Right-pointing arrow */
  font-size: 0.8em; /* Adjust size of the arrow */
  transition: transform 0.3s ease; /* Add animation for hover effect */
}

.hero-link a.software-link:hover::after {
  transform: translateX(5px); /* Move arrow slightly to the right on hover */
}

/* Responsive Design for Hero Section */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column; /* Stack elements vertically */
    align-items: flex-start; /* Align items to the left */
    gap: 30px; /* Space between text and link */
  }
  .hero-link {
    margin-left: 0; /* Remove left margin on smaller screens */
  }
  .hero-image img {
    max-width: 100%; /* Make image responsive if still used */
  }
}
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2em; /* Further reduce font size on smaller screens */
  }
  .hero-content {
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center items horizontally */
    text-align: center; /* Center text */
    gap: 20px; /* Add space between elements */
  }
  .hero-link {
    margin-left: 0; /* Remove left margin */
    text-align: center; /* Center the software link */
  }
  .hero-text {
    max-width: 100%; /* Allow text to take full width */
  }
  .hero-text p {
    font-size: 1em; /* Further reduce font size on smaller screens */
  }
  .cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px; /* Reduced gap between buttons */
  }
  .cta-buttons .btn {
    width: 100%; /* Make buttons full width */
  }
  .hero-link a.software-link {
    width: 100%; /* Make the software link button full width */
    text-align: center; /* Center the text inside the button */
  }
  .video-section {
    height: 300px; /* Reduce the height to fit smaller screens */
    margin-bottom: 100px;
  }
  .video-section .hero-video {
    height: 100%; /* Ensure the video fills the scaled-down container */
  }
}
@media (max-width: 480px) {
  .hero {
    padding-left: 10px; /* Minimal padding on very small screens */
    padding-right: 10px;
  }
  .hero-content {
    max-width: 100%; /* Ensure content spans the available width */
  }
  .hero-text h1 {
    font-size: 1.8em; /* Further reduce font size on very small screens */
  }
  .hero-text p {
    font-size: 0.9em; /* Further reduce font size on very small screens */
  }
  .cta-buttons {
    gap: 10px; /* Maintain reduced spacing */
  }
  .cta-buttons .btn {
    width: 100%; /* Ensure buttons are full width */
    padding: 12px 0; /* Slightly increased padding for better usability */
  }
  .hero-link a.software-link {
    padding: 12px 0; /* Increase padding on smaller screens */
  }
}
/* How It Works Section */
.how-it-works {
  background-color: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

.how-it-works h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333333;
}

.navbar {
  width: 100%;
  padding: 0; /* Remove all padding */
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff; /* Solid white background */
  z-index: 1000;
}

/* Navbar Container */
.navbar .container {
  display: flex;
  flex-direction: column; /* Keep vertical stacking */
  justify-content: flex-start; /* Align items to the top */
  align-items: flex-start; /* Align items to the left */
  padding: 0 40px; /* Reduced vertical and horizontal padding */
  width: 100%; /* Make container full width */
  max-width: none; /* Remove max-width restriction */
  padding-top: 10px;
}

.navbar .logo img {
  width: 180px; /* Adjust logo size if necessary */
  margin-bottom: 20px; /* Space between logo and nav-links */
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  flex-direction: row; /* Arrange links horizontally on larger screens */
  gap: 30px; /* Space between each navigation link */
  margin-bottom: 20px; /* Space between nav-links and CTA button */
}

.navbar .nav-links a {
  text-decoration: none;
  color: #777777;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
  color: #1a1a1a;
}

.navbar .btn.primary {
  padding: 10px 20px;
  border-radius: 50px;
  background-color: #555555;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.navbar .btn.primary:hover {
  background-color: #1a1a1a;
}

/* Responsive Adjustments for Navbar */
@media (max-width: 992px) {
  .navbar .nav-links {
    flex-direction: column; /* Stack links vertically on medium screens */
    gap: 15px; /* Reduced space between links */
  }
  .navbar .btn.primary {
    width: 80%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .navbar .nav-links {
    gap: 10px; /* Further reduce space between links */
  }
  .navbar .btn.primary {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .navbar .logo img {
    width: 150px; /* Reduce logo size on small screens */
  }
  .navbar .nav-links {
    gap: 10px; /* Maintain reduced spacing */
  }
  .navbar .btn.primary {
    width: 100%;
    padding: 12px 0;
  }
}
.team {
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  max-width: 250px;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.team-member img:hover {
  transform: scale(1.05);
}

.team-member h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  margin-bottom: 5px;
  color: #0066cc;
}

.team-member p {
  font-size: 1em;
  color: #777777;
}

/* Testimonials Section */
.testimonials {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.testimonials h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #333333;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.testimonial-item {
  max-width: 350px;
  text-align: center;
  padding: 20px;
  border-left: 5px solid #0066cc;
  background-color: #f9f9f9;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.testimonial-item:hover {
  background-color: #f0f8ff;
}

.testimonial-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.testimonial-item img:hover {
  transform: scale(1.05);
}

.testimonial-item p {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
}

.testimonial-item h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  color: #0066cc;
  margin-bottom: 5px;
}

.testimonial-item span {
  font-size: 0.9em;
  color: #777777;
}

/* Video Section */
.video-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.video-section .hero-video {
  width: 90%;
  max-width: 1600px;
  height: auto;
  object-fit: cover;
}

.hero-video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 38px; /* Match your Bootstrap form-control height */
}

/* Import animations */
/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Import responsive adjustments */
/* Responsive Design */
@media (max-width: 992px) {
  .team,
  .feature-grid,
  .testimonial-grid,
  .steps {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons .btn {
    width: 80%;
    text-align: center;
  }
  .navbar .nav-links {
    display: none; /* For mobile navigation, consider adding a hamburger menu */
  }
  .navbar .logo img {
    width: 150px;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2em;
  }
  .cta h2,
  .features h2,
  .about-us h2,
  .how-it-works h2,
  .testimonials h2,
  .contact h2 {
    font-size: 2em;
  }
  .hero-content p,
  .about-us p,
  .features p,
  .how-it-works p,
  .testimonials p,
  .contact p {
    font-size: 1em;
  }
  .cta p,
  .how-it-works p {
    font-size: 1em;
  }
  .feature-item,
  .team-member,
  .testimonial-item,
  .step {
    max-width: 100%;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.9em;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8em;
  }
  .cta h2,
  .features h2,
  .about-us h2,
  .how-it-works h2,
  .testimonials h2,
  .contact h2 {
    font-size: 1.8em;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .cta-buttons .btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .team-member img,
  .testimonial-item img,
  .step-number {
    width: 100px;
    height: 100px;
  }
  .cta {
    padding: 40px 20px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.9em;
  }
}

/*# sourceMappingURL=main.css.map */
