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

body {
  background-color: #000000;
  background-position: center; /* Center the image */
  color: #00e091;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Bar */
.navbar {
  background-color: black;
  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;
}

.nav-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-button:hover {
  background-color: transparent;
  color: #00e091; /* Change text color to teal */
  border-color: #00e091; /* Change border color to teal on hover */
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Hero Content */
.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 1000px; /* Controls the width of content */
}

/* Hero Content */
.hero-content {
  text-align: center; /* Centers the text inside */
  z-index: 2;
  width: 100%; /* Ensure it takes up full width */
  max-width: 1000px; /* Controls the width of content */
  padding: 0 20px; /* Optional: Add some padding for smaller screens */
  box-sizing: border-box; /* Ensures padding doesn't overflow */
}

.hero-content p {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 40px;
}

/* Call-to-Action Button */
.book-call-button {
  display: inline-block;
  padding: 15px 30px; /* Increased padding for a larger button */
  background-color: transparent; /* Transparent background */
  color: #ffffff; /* Teal text color */
  text-decoration: none; /* Remove the underline */
  border-radius: 5px; /* Rounded corners */
  font-weight: bold;
  font-size: 18px; /* Increased font size */
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Smooth hover effect */
  cursor: pointer;
  border: 2px solid #00e091; /* Teal border */
  text-align: center;
}

.book-call-button:hover {
  background-color: #02c681 /* Darker shade for hover effect */
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
  .hero-section {
      padding-left: 5%; /* Adjust padding for smaller screens */
  }

  .hero-content h1 {
      font-size: 48px; /* Adjust font size for smaller screens */
  }

  .hero-content p {
      font-size: 18px; /* Adjust font size for smaller screens */
  }

  .cta-button {
      padding: 12px 24px; /* Smaller button for mobile devices */
  }
}


/* Tech We Use Section */
.tech-we-use {
  padding: 60px 20px;
  text-align: center;
  background-color: #000000;
}

.logo-scroll-container {
  overflow: hidden;
  margin-top: 20px;
}

.logo-scroll {
  display: flex;
  animation: scroll 30s linear infinite;
}

.logo-scroll img {
  height: 60px;
  margin: 0 20px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

/* What We Do Section */
.what-we-do {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

/* Heading styling (for example, h2) */
.what-we-do h2 {
  color: #02c681; /* Set the color of the heading */
}

.what-we-do p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 2px solid #02c681 /* Teal-colored border */
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: rgba(1, 1, 1, 0.401);
}

.service-card h3 {
  color: #02c681;
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 0;
  font-size: 18px;
}

/* Why Us Section */
.why-us-section {
  background-color: #000000;
  color: #ffffff00; /* Transparent text color by default */
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Heading styling (for example, h3) inside the Why Us Section */
.why-us-section h3 {
  color: #02c681; /* Set the color of the heading */
}

.why-us-content {
  max-width: 600px;
}

.why-us-content h2 {
  font-size: 32px;
  color: #02c681;
  font-weight: bold;
  margin-bottom: 20px;
}

.why-us-content p {
  font-size: 18px;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-section {
  text-align: center;
}

.pricing-explanation {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-explanation h2 {
  margin-bottom: 20px;
  color: #00e091;
}

.pricing-explanation p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #ffffff;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease;
  border: 2px solid #02c681; /* Teal-colored border */
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px #02c681; /* Optional: Add a shadow on hover */
}

.pricing-card h3 {
  color: #02c681;
  font-size: 24px;
  margin-bottom: 15px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.pricing-card ul {
  list-style-type: none;
  margin-bottom: 20px;
  padding-left: 0;
}

.pricing-card li {
  margin-bottom: 10px;
  padding-left: 30px; /* Space for the checkmark */
  position: relative;
  color: #ffffff;
}

.pricing-card li:before {
  content: "✔"; /* Checkmark symbol */
  color: #02c681; /* Teal color for the checkmark */
  position: absolute;
  left: 0;
  font-size: 18px;
}

.audience {
  font-style: italic;
  margin-top: 20px;
  color: #ffffff;
}

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #00e091;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.faq-question {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 0;
  color: teal; 
}

.faq-answer p {
  padding-bottom: 15px;
  color: #ffffff;
}

/* Blog Section */
.blog-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.blog-section h2 {
  margin-bottom: 40px;
  color: #00e091;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog-post {
  background-color: rgb(0, 0, 0);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-10px);
}

.blog-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-post h3 {
  padding: 20px 20px 10px;
  font-size: 20px;
}

.blog-post p {
  padding: 0 20px 20px;
  font-size: 16px;
  color: #ffffff;
}

.read-more {
  display: inline-block;
  margin: 0 20px 20px;
  color: #02c681;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #02c681;
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background-color: #000000;
  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;
  }
}