/* General Styles */
body {
    background-color: #000000;
    color: white;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

/* 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: #00e091 ;
    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: #00e091;
    color: #00e091;
}

/* Digital Marketing Strategy Section */
.service-section {
    padding: 120px 20px;
    background-color: #000000;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 36px;
    color: #00e091;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    border: 2px solid #00e091; /* Teal border */
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
}

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

    .service-image img {
        max-width: 100%;
    }
}

/* Marketing Research And Analytics Section */
.service-section {
    padding: 120px 20px;
    background-color: #000000;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.service-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
}

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

    .service-image img {
        max-width: 100%;
    }
}
/* other designs for the servcies remained the same so i did not alter anything 

/* 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;
  }
}