/* Smooth Scroll */
html {
    scroll-behavior: smooth;
  }
  
  /* Reset and Base Styles */
  body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    overflow-x: hidden;
  }
  
  img {
    max-width: 100%;
    display: block;
    height: auto;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header / Navbar */
  .header {
    position: fixed;
    top: 0;
    width: 90%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 20px 5%;
    transition: all 0.3s ease;
    background: transparent; /* transparent by default */
    padding: 10px 5%;
  }
  
  .header.scrolled {
    background-color: #000; 
  }

  .header.scrolled .logo img {
    max-height: 50px;
  }
  
  .header .logo img {
    max-height: 100px;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    margin-left: auto; /* push nav items to the right */
    position: relative;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
  }
  
  .navbar ul li a {
    color: #fff; /* keep text white */
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .navbar ul li a:hover {
    color: #ddd;
  }
  
  /* Hamburger toggle - hidden by default */
  .navbar-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    margin-left: 20px;
  }
  
  /* Intro Section (Carousel) */
  .intro-section {
    position: relative;
    /* Slightly smaller height so next section is partly visible */
    height: 100vh;
    min-height: 500px; /* just in case for smaller screens */
    overflow: hidden;
  }

  .scroll-down-arrow {
    position: absolute;
    bottom: 20px;           /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%) rotate(270deg);
    font-size: 2rem;
    text-decoration: none;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    transition: background 0.3s;
    z-index: 3; /* Ensure it appears above overlay/carousel */
  }
  
  .scroll-down-arrow:hover {
    background: rgba(0,0,0,0.5);
  }
  
  
  .scroll-down-arrow a {
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .scroll-down-arrow a:hover {
    color: #ddd;        /* Hover color */
  }
  
  
  /* Carousel Container */
  .carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  /* Carousel Slide Wrapper */
  .carousel-slide {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
  }
  
  /* Each Slide */
  .slide {
    flex: 0 0 100%;
    background-size: cover;
    background-position: center;
  }
  
  /* Overlay on top of the slides */
  .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgb(13 16 22 / 54%);
    z-index: 1;
  }
  
  /* Intro Text */
  .intro-content {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 80%;
    max-width: 700px;
    color: #fff;
  }
  
  .intro-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .intro-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .btn-primary {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  
  .btn-primary:hover {
    background: #eee;
  }

  .btn-secondary {
    display: inline-block;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
    border: 1px solid white;
  }
  
  /* Carousel Arrows */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    width: 40px; 
    height: 40px; 
    line-height: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    user-select: none;
    z-index: 3;
  }
  
  .arrow:hover {
    background: rgba(0,0,0,0.5);
  }
  
  .arrow-left {
    left: 20px;
  }
  
  .arrow-right {
    right: 20px;
  }
  
  /* About Section */
  .about-section {
    padding: 80px 0;
    background: #f9f9f9;
    text-align: center;
  }
  
  .about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .about-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }
  
  /* Services Section */
  .services-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    background-image: url(./our-services-section.jpeg);
    background-size: cover;
    background-position: right;
  }

  .services-section::before {
    content: ''; /* Required for the pseudo-element to appear */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 65%); /* Adjust opacity to your preference */
    z-index: 1;  /* This ensures the overlay is above the image but below the text */
  }

  /* Content inside the section */
.services-section .container {
  position: relative;
  z-index: 2;  /* Ensures text stays above the overlay */
}
  
  .services-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    color: #fff;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 40px;
  }
  
  .service-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .service-item h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.5rem;
  }
  
  .service-item p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .service-item img{
    width: 20%;
    text-align: center;
    padding-left: 40%;
  }


/* Our Proven Process Section */
.our-proven-process-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
  color: #333;
}

.our-proven-process-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.our-proven-process-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Timeline container */
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 20px 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Step styling */
.timeline-step {
  position: relative;
  text-align: center;
  flex: 1;
}

.step-number {
  background-color: #007bff;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Connecting line */
.timeline-step::before {
  content: '';
  position: absolute;
  top: 30px; /* Center of the step number */
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #007bff;
  transform: translateX(-50%);
  z-index: 1;
}

/* Remove the connecting line on the last step */
.timeline-step:last-child::before {
  left: 12%;
}

/* Step content */
.step-content {
  margin-top: 20px;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 1.0rem;
  line-height: 1.5;
  max-width: 300px;
  margin: 0 auto;
}
  

/* Industry Expertise Section */
.industry-expertise-section {
  padding: 60px 0;
  background-color: #fff;  /* Background color for the section */
  text-align: center;
}

.industry-expertise-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.expertise-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.expertise-item {
  width: 200px;
  text-align: center;
}

.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.expertise-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.expertise-item p {
  font-size: 1rem;
  line-height: 1.4;
  color: #555;
}

.expertise-item img {
  padding-left: 70px;
  color: blue;
}

  /* Customers Section */
  .customers-section {
    padding: 80px 0;
    background: #f0f0f0;
    text-align: center;
  }
  
  .customers-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .customer-story {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  
  .customer-story img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
  }
  
  .customer-story blockquote {
    font-size: 1.2rem;
    line-height: 1.6;
    quotes: "“" "”" "‘" "’";
    margin: 0;
  }
  
  .customer-story blockquote:before {
    content: "“";
    font-size: 2rem;
    margin-right: 5px;
    vertical-align: bottom;
  }
  
  .customer-story blockquote:after {
    content: "”";
    font-size: 2rem;
    margin-left: 5px;
    vertical-align: bottom;
  }
  
  .customer-story cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    color: #555;
  }

  /* Contact Us Section */
.contact-us-section {
  padding: 60px 0;
  background-color: #f4f4f4;
  text-align: center;
}

.contact-us-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-us-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Form Styles */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: #007bff;
  outline: none;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #007bff;
  color: white;
  font-size: 1rem;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}

.submit-btn:hover {
  background-color: #0056b3;
}
  
  /* Footer */
  .footer-section {
    background: #222;
    color: #ccc;
    padding: 60px 0;
  }
  
  .footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-column h4 {
    color: #fff;
    margin-bottom: 20px;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #ccc;
    transition: color 0.3s;
  }
  
  .footer-column ul li a:hover {
    color: #fff;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .header .logo img {
      max-height: 60px;
    }

    .navbar ul {
      position: fixed;
      top: 70px;
      right: 0;
      width: 200px;
      background: rgba(0,0,0,0.9);
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      padding: 20px;
      z-index: 1000;
    }
  
    .navbar ul.show {
      transform: translateX(0);
    }
  
    /* Make sure the links are visible on mobile */
    .navbar ul li a {
      color: #fff;
      margin: 10px 0;
    }
  
    .navbar-toggle {
      display: block;
      z-index: 1001; /* place above the nav list */
    }

    .intro-section{
        height: 80vh;
    }

    .heading-text {
        font-size: 2.0rem !important;
    }
    .arrow {
        transform: translateY(-150%);
    }
    
    .arrow-left {
        left: 0px;
    }

    .arrow-right {
        right: 0px;
    }

    .timeline {
      flex-direction: column;
      align-items: center;
    }
  
    .timeline-step {
      margin-bottom: 40px;
      text-align: center;
    }
    
    .timeline-step::before {
      display: none;
    }
  
    .step-number {
      margin-bottom: 10px;
    }
  
    .step-content h3 {
      font-size: 1.3rem;
    }
  
    .step-content p {
      font-size: 1rem;
    }

    .contact-form {
      padding: 20px;
    }
  
    .submit-btn {
      padding: 10px 15px;
    }
  }
  