body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}








/* General header styles */
header {
    background: #fff;
    color: #333;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .logo img {
    height: 50px;
  }
  
  nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    margin: 0;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .header-right a {
    text-decoration: none;
    font-weight: 500;
  }
  
  .contact-btn {
    background: #69c84a;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 20px;
    transition: background 0.3s;
  }
  
  .contact-btn:hover {
    background: #000;
  }
  
  .linkedin {
    font-size: 16px;
    color: #0077b5;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #0077b5;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
  }
  
  .linkedin:hover {
    background: #0077b5;
    color: #fff;
  }
  
  /* Mobile styles */
  .mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
  }
  
  .nav-links {
    transition: max-height 0.3s ease;
  }
  
  /* Media query for screens smaller than 768px */
  @media (max-width: 768px) {
    nav ul {
      display: none;
      flex-direction: column;
      background-color: #fff;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }
  
    nav ul li {
      padding: 10px 20px;
      text-align: left;
    }
  
    nav ul li a {
      color: #333;
      font-size: 1rem;
    }
  
    .mobile-toggle {
      display: block;
    }
  
    nav ul.active {
      display: flex;
    }
  
    .header-right {
      display: none; /* Optionally hide header-right on mobile */
    }
  }
  /* General header styles */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px ;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .logo img {
    height: 40px;
  }
  
  nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
  }
  
  .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .header-right a {
    text-decoration: none;
    font-weight: 600;
  }
  
  .contact-btn {
    background-color: #69c84a;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
  }
  
  .contact-btn:hover {
    background-color: #69c84a;
  }
  
  .linkedin {
    font-size: 1.5rem;
    color: #0077b5;
  }
  
  /* Mobile styles */
  .mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .nav-links {
    transition: max-height 0.3s ease;
  }
  
  /* Media query for screens smaller than 768px */
  @media (max-width: 768px) {
    nav ul {
      display: none;
      flex-direction: column;
      background-color: #fff;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      z-index: 2;
    }
  
    nav ul li {
      padding: 10px 20px;
      text-align: left;
    }
  
    nav ul li a {
      color: #333;
      font-size: 1rem;
    }
  
    .mobile-toggle {
      display: block;
    }
  
    nav ul.active {
      display: flex;
    }
  
    .header-right {
      display: none; /* Optionally hide header-right on mobile */
    }
  }

  .carousel-section { 
    padding: 0 20px; /* Added padding on both sides */
    text-align: center;
    margin: 50px auto;
    width: fit-content; /* Adjusted to fit full width */
}

.carousel-container {
    position: relative;
    width: 100%; /* Ensures full-width carousel */
    max-width: 100%;
    margin: auto;
    padding: 0; /* Removed left and right padding */
    overflow: hidden; /* Hides overflow, ensuring only one image is visible */
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-images img {
    width: calc(100% - 40px); /* Ensures the image fits with padding on the sides */
    height: 40vh; /* Adjusted height to be a little shorter */
    object-fit: cover; /* Ensures the image covers the space */
    object-position: center; /* Ensures the image is centered */
    margin: 0 20px; /* Adds 20px margin on each side of the image */
    flex-shrink: 0; /* Prevents images from shrinking */
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.prev-btn:hover, .next-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.hero-content {
    text-align: center;
    padding: 20px 50px 0 50px;
}
.hero-content h2 {
    font-weight: 100;  
    margin-bottom: 30px;
}
.hero-content a {
  background: #69c84a;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero a:hover {
  background: #69c84a;
}
.service-hero{
    background: url('/img/cd-work_img04.jpg') no-repeat center center/cover;
}


.services-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.services-title {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 40px;
    font-weight: bold;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    color: #000;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.services-section {
  padding: 40px 20px;
}

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

.service {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
}

.service-image {
  flex: 1 1 300px;
  text-align: center;
}

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

.service-content {
  flex: 2 1 500px;
}

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

.service h4 {
  font-size: 1.25em;
  margin-top: 20px;
}

.service p {
  line-height: 1.6;
}

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

  .service-content {
    flex: 1 1 auto;
  }

  .service h3, .service h4 {
    text-align: center;
  }
}
.btn {
    background-color: #69c84a;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    background-color: #69c84a;
}
.about{
    text-align: center;
}
.about p{
    font-size: 1rem;
    padding: 0 80px 0 80px;
}
#about-txt{
    font-size: 3rem;
}

.about-ceo {
  flex-wrap: wrap;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}

.ceo-image-wrapper {
  flex: 0 0 auto;
}

.ceo-image {
  max-width: 500px;
  height: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ceo-details {
  flex: 1;
  text-align: left;
}

.ceo-name {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 10px;
}

.ceo-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}


.testimonials {
    padding: 50px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: left;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
}

.client-name {
    font-weight: bold;
    text-align: right;
}
@media (min-width: 768px) {
    .testimonial-cards {
        flex-direction: row;
        justify-content: center;
    }

    .testimonial-card {
        flex: 1;
        margin: 0 10px;
    }
}
.cta-section {
    background-color: #69c84a;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    margin: 40px 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #fff;
    color: #69c84a;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #000;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

.services-section {
    background: #f9f9f9;
    padding: 50px 50px 0 80px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    text-align: left;
  }
  
  .service:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .service-image img {
    width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .service-content {
    max-width: 600px;
  }
  
  .service-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .service-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
  }
  .contact-us {
    padding: 50px 20px;
    background: #fff;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #69c84a;
  }
  
  .contact-content {
    display: flex;
    padding: 0 50px 0 50px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .contact-info {
    flex: 1;
    max-width: 300px;
  }
  
  .contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .contact-info p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .contact-info a img {
    width: 30px;
    height: 30px;
  }
  
  .contact-form {
    flex: 2;
    max-width: 700px;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .name-fields {
    display: flex;
    gap: 10px;
  }
  
  .name-fields input {
    flex: 1;
  }
  
  .checkbox-group label {
    display: block;
    margin-bottom: 10px;
  }
  
  .submit-button {
    background: #69c84a;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  .submit-button:hover {
    background: #69c84a;
  }
  
footer {
    background-color: #fff;
    color: #333;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-content p {
    margin: 10px 0;
    font-size: 0.9rem;
}

.footer-content a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.footer-content a:hover {
    text-decoration: underline;
}

.footer-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-details div {
    text-align: center;
}

.footer-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-link {
    display: inline-block;
    margin: 0 10px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.social-link:hover {
    color: #0077b5; /* Change to the color representing the social platform */
}

@media (min-width: 768px) {
    .footer-details {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-details div {
        text-align: left;
    }
}