@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {

  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  font-weight: 400;
  color: #333;
}


.intro-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 700px;
  margin-bottom: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url(assests/image6.png);
  background-position: 0px 0px;
  background-size: cover;
  /* -webkit-filter: grayscale(100%); */
  filter: grayscale(75%);
}

.heading-jumbo {
  color: rgb(247, 240, 243);
  text-shadow: 4px 4px 10px rgb(194, 64, 64); 
  font-weight: 600;
  font-size: 40px;
  text-align: center;
}
h3{
  font-weight: 600;
  font-size: 22px;
}
.navigation {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgb(225, 225, 225);
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.navigation-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: rgb(225, 225, 225);
}

.navigation-wrap img.logo {
  height: 50px; /* Adjust this to control logo height */
  margin-right: 10px;
  border-radius: 6px;
}

.menu {
  display: flex;
  align-items: center;
}

.navigation-items {
  display: flex;
  gap: 20px;
}

.button.cc-contact-us {
  margin-left: auto;
}

.menu-button {
  display: none; /* Hidden by default */
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .navigation-items {
    display: none; /* Hide navigation links on smaller screens */
  }
  .heading-jumbo{
    font-size: 32px;
    line-height: 60px;
    font-weight: 300px;
  }
  .menu-button {
    display: flex; /* Show the menu button on smaller screens */
    align-items: center;
    margin-left: auto;
    cursor: pointer;
  }
}
.features-section {
  text-align: center;
  padding: 20px;
  margin-top: 60px;
  color: #333;
}

.features-section h2 {
  font-size: 1.8em;
  color: #111;
  margin-bottom: 20px;
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.icon {
  height: 50px;
  width: 50px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 1.2em;
  color: #111;
  margin: 10px 0;
}

.feature-card p {
  font-size: 0.9em;

}

/* Responsive Design */
@media (max-width: 768px) {
  .features-container {
      grid-template-columns: 1fr;
      padding: 10px;
  }
}

.video-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 1400px;
  width: 100%;
}

.video-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-card video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.video-card h3 {
  font-size: 1.2em;
  margin: 10px 0;
  color: #333;
}

.video-card p {
  color: #666;
  font-size: 0.9em;
  margin: 5px 0 10px;
}


.workflow {
  text-align: center;
  margin: 20px;
}

.workflow h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.workflow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stage-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px 0; /* Added to separate the cards */
  width: 80%; /* Adjusted width */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.stage-card h2 {
  font-size: 1.2rem;
  color: #34495e;
  margin-bottom: 10px;
}

.stage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.workflow-arrow {
  font-size: 24px;
  color: #888;
  margin: -5px 0 5px; /* Adjusted margin for spacing */
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .video-container {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      padding: 10px;
  }

  .video-card {
      padding: 10px;
  }

  .video-card h3 {
      font-size: 1.1em;
  }

  .video-card p {
      font-size: 0.85em;
  }
}

@media (max-width: 480px) {
  .video-container {
      grid-template-columns: 1fr;
  }

  .video-card {
      padding: 8px;
  }

  .video-card h3 {
      font-size: 1em;
  }

  .video-card p {
      font-size: 0.8em;
  }
}

/* Footer Styles */
footer {
  background-color: black;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-container div {
  flex: 1;
  margin: 20px;
}

.footer-container h3 {
  margin-bottom: 15px;
  color: #ff0000;
}

.footer-container p,
.footer-container ul {
  line-height: 1.6;
}

.footer-container ul {
  list-style: none;
  padding: 0;
}

.footer-container ul li {
  margin-bottom: 10px;
}

.footer-container ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-container ul li a:hover {
  color: #ff6b6b;
}

.footer-social ul {
  display: flex;
  list-style: none;
  padding: 0;
}

.footer-social ul li {
  margin-right: 10px;
}

.footer-social ul li a {
  color: #fff;
}

.footer-social ul li img {
  width: 25px;
  height: 25px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #bbb;
}

.footer-bottom a {
  color: #ff6b6b;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

.social-icons img {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.social-icons a:hover img {
  opacity: 0.7;
}

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

  .footer-container div {
    margin-bottom: 20px;
  }

  .footer-social ul {
    justify-content: center;
  }
}

* {
  box-sizing: border-box;
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

.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;
}

.contact-form textarea {
  resize: vertical;
  height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

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

.w-layout-grid-1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.label {
  padding-top: 10px;
}

.service-box {
  display: flex;
  align-items: center;
  background-color: #f9f9f9;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-box img {
  width: 400px;
  height: 250px;
  border-radius: 8px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 2rem;
}

.service-box h2 {
  color: #333;
  margin-bottom: 1rem;
}

.service-box p {
  font-size: 1.1rem;
}

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

  .service-box img {
    margin-right: 0;
    border-radius: 8px;
  }
}

.button,
.w-nav-link,
a {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.button:hover,
.w-nav-link:hover {
  background-color: #007bff;
  color: white;
  transform: scale(1.05);
  /* Slight scaling effect */
}

/* Animating the section fade-in on scroll */
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Animation for images */
.service-box img {
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.service-box img:hover {
  transform: scale(1.1);
  /* Image zoom effect */
}

/* Animate the menu button */
.menu-button {
  transition: transform 0.3s ease-in-out;
}

.menu-button:hover {
  transform: rotate(90deg);
  /* Rotation effect */
}

#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background-color: #333;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
  display: none;
  /* Initially hidden */
  transition: background-color 0.3s;
}

#backToTopBtn:hover {
  background-color: #555;
}


/* General Styles */
/* Container Styles */
.main-content-container,
.additional-content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Section Common Styles */
section {
  margin-bottom: 4rem;
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

/* Paragraphs */
p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

img:hover {
  transform: scale(1.02);
}

/* Client Needs Section */
.client-needs-section,
.automation-approach-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* Vision Statement Section */
.vision-statement-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* Project Workflow Section */
.workflow-content-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.workflow-details ul {
  list-style-position: inside;
  margin-left: 1rem;
}

.workflow-details li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Portfolio Section */
.portfolio-items-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.portfolio-item {
  text-align: center;
}

.portfolio-item p {
  position: absolute;
  bottom: 0px; /* Adjust to your preference */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2; /* Ensures text is above the image */
  color: white; /* Change color for better contrast */
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.6); /* Optional: Adds a background for better readability */
  padding: 0.5rem;
  margin: 0;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2rem;
  }

  .portfolio-items-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {

  .client-needs-section,
  .automation-approach-section,
  .vision-statement-section,
  .workflow-content-wrap {
    grid-template-columns: 1fr;
  }

  section {
    padding: 1.5rem;
  }

  .portfolio-items-wrap {
    gap: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  .portfolio-items-wrap {
    grid-template-columns: 1fr;
  }

  .main-content-container,
  .additional-content-container {
    padding: 1rem;
  }

  section {
    padding: 1rem;
    margin-bottom: 2rem;
  }
}

/* Image Container Styles */
.needs-images,
.approach-images,
.vision-image-wrap,
.workflow-image-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
}

.needs-images img,
.approach-images img,
.vision-image-wrap img,
.workflow-image-wrap img,
.portfolio-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item {
  position: relative;
  padding-top: 75%;
}
.ani {
  position: relative;
  animation: move 2s ease-in-out  alternate;
  overflow: hidden;
}

@keyframes move {
  0% {
    transform: translateX(-300px);
  }
  100% {
    transform: translateX(0px);
  }
}

.anik{
  position: relative;
  animation: slide 3s ease-in  alternate;
  overflow: hidden;
}
@keyframes slide {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
  }
}
