/* home page stylee */
/*
body {
    background-color: rgb(255, 255, 255);
    padding-top: 55px;
}
@media (max-width: 768px) {
  body {
padding-top: 30px;}
}*/
.homepage-width{
     max-width: 100%;
  padding: 70px 8% 50px 8%;
}
@media (max-width: 1200px) {
  .homepage-width {
  max-width: 100%;
  padding: 50px 5%;}
}
/* end home page stylee */
.about-us-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding-top: 50px;
  gap: 30px;
}
.about-image,
.about-content-home {
  flex: 0 0 50%;
  max-width: 800px;
  box-sizing: border-box;
  text-align: justify;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Example responsive behavior */
@media (max-width: 768px) {
  .about-us-main {
    flex-direction: column;
    text-align: justify;
  }
  .about-image,
  .about-content-home {
    flex: 1 1 100%;
  }
  .about-content-home {
    padding-top: 10px;
  }
}

/* tab */
/* Hide radio inputs */
.tab-container1 input[type="radio"] {
  display: none;
}
/* Make labels stretch evenly in a flex container */
.tab-labels1 {
  display: flex;
}
@media (max-width: 768px) {
  .tab-labels1 {
    flex-wrap: wrap;
  }
  .tab-labels1 label {
    flex: 1;
    font-size: 0.9rem;
    padding: 50px 0;
    box-sizing: border-box;
    border-right: 1px solid #008A8A;
    margin-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .tab-labels1 label {
    flex: 1 1 100%;
  }
}
.tab-labels1 label {
  flex: 1;               /* Ensures equal width per tab */
  text-align: center;
  padding: 16px 0;
  cursor: pointer;
  background: #008a8a10;
  border: 1px solid #008A8A;
  transition: background 0.3s;
  margin: 0px;
}

.tab-labels1 label:hover {
  background: #008a8a21;
}
/* Highlight active tab based on the checked radio */
#tab-web:checked ~ .tab-labels1 label[for="tab-web"],
#tab-mobile:checked ~ .tab-labels1 label[for="tab-mobile"],
#tab-cloud:checked ~ .tab-labels1 label[for="tab-cloud"],
#tab-marketing:checked ~ .tab-labels1 label[for="tab-marketing"],
#tab-lowcode:checked ~ .tab-labels1 label[for="tab-lowcode"] {
  background: white;
  font-weight: bold;
}
/* Hide all panels by default */
.tab-content-img1 {
  display: none;
  border: 1px solid #008A8A;
  border-top: none;
  padding: 20px;
  background: #008a8a10;
}
/* Show the selected content based on checked tab */
#tab-web:checked ~ #content-web,
#tab-mobile:checked ~ #content-mobile,
#tab-cloud:checked ~ #content-cloud,
#tab-marketing:checked ~ #content-marketing,
#tab-lowcode:checked ~ #content-lowcode {
  display: block;
}
/* Grid layout for cards */
.tab-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
@media (max-width: 768px) {
  .tab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tab-content-img1-box {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: center;
  padding: 16px;
}
.tab-content-img1-box img {
  max-width: 70px;
  display: block;
  margin: 0 auto 10px;
}
.tab-content-img1-box span {
  color: #333;
  font-size: 0.95rem;
}

/*services section start */

.services-box-main {
  display: flex;
  justify-content: center;
    flex-wrap: wrap; /* allow wrapping */
  gap: 20px;        /* space between cards */
  margin-bottom: 50px;
}
.service-box-main {
  flex: 0 1 calc((100% / 3) - (20px * 2 / 3));
  /* or simpler: flex: 1 0 32%; */
  box-sizing: border-box;
  min-width: 280px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  padding: 30px;
  position: relative;
  text-align: left;
  transition: background-color 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .services-box-main {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  } 
  .service-box-main {
    width: 100%;
    margin-bottom: 20px;
  }
}
/*.service-box-main h2 {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  color: rgba(0, 0, 0, 0.05);
  z-index: 0;
}  */
.service-box-main h3 {
  margin-bottom: 15px;
  font-size: 22px;
  transition: color 0.3s ease;
  color: #008A8A;
}
.service-box-main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-box-main li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
  transition: color 0.3s ease;
}
.Services-home-icon img {
  width: 40px;
  margin-bottom: 20px;
  transition: transform 0.3s ease-in-out;
}
/* Hover effect */
.service-box-main:hover {
  background-color: #008A8A;
  cursor: pointer;
}
.service-box-main:hover h3,
.service-box-main:hover li {
  color: #fff;
}
.service-box-main:hover .Services-home-icon img {
  transform: rotate(-45deg);
}
.service-box-main:hover .Services-home-icon img {
  transform: rotate(-45deg);
  filter: brightness(0) invert(1);
}

/*Contact section start */

.contact-section-home {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #339D9D;
  color: #fff;
  margin-bottom: 100px;
}
@media (max-width: 768px){.contact-section-home
  {  margin-bottom: 50px;}}
.contact-left-home,
.contact-right-home {
  flex: 1;
  box-sizing: border-box;
  padding: 10px 10px;
}
.contact-left-home {
  text-align: center;
}
.contact-left-home img {
  width: 80%;
  height: auto;
  display: block;
  margin: 100px auto;
}
.contact-right-home {
  text-align: center;
  margin: 100px auto;
}
.round-icon-home {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
}
.subheader-home {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin: 20px 0;
  color: #fff;
}
.phone-number-home {
  font-size: 2.6rem;
  font-weight: bold;
  margin: 30px 0 25px;
  color: #fff;
}
@media (max-width: 768px) {
  .phone-number-home {
  font-size: 2.0rem;}
}
.description-home {
  font-size: 1.3rem;
  line-height: 1.4;
  margin: 15px 0 35px;
  color: #fff;
}

.btn-theme1 {
  background: #000;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  display: inline-block;
}

.stats-card-home {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 50px;
  gap: 40px;
}

.stat-box-home {
  text-align: center;
}

.stat-box-home h3 {
  font-size: 2rem;
  color: #339D9D;
  margin-bottom: 8px;
}

.stat-box-home p {
  font-size: 1rem;
  font-weight: bold;
  color: #333;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .contact-section-home {
    flex-direction: column;
    padding: 40px 5%;
  }

  .contact-left-home,
  .contact-right-home {
    width: 100%;
    padding: 20px 0;
  }

  .contact-left-home img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
  }

  .stats-card-home {
    position: absolute;
    flex-direction: row;
    align-items: center;
    margin: 10px auto 0;
    gap: 20px;
    padding: 20px;
  }
  .stat-box-home p {
  font-size: 0.8rem;
line-height: 18px;}
  

  .stat-box-home h3 {
  font-size: 1.5rem;
  color: #339D9D;
  margin-bottom: 5px;
}
  .btn-theme1 {
    display: inline-block;
    margin: 0 auto;
  }
}

/* start Process section start */
.process-tabs-container {
  display: flex;
  margin: auto;
  gap: 20px;
}
.process-tabs {
  flex: 1 1 20%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.process-tab-button {
  border: 1px solid #008A8A;
  border-radius: 8px;
  padding: 15px 20px;
  background: white;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  transition: all 0.3s ease;
}
.process-tab-button:hover {
  background: #ffffff;
}
.process-tab-button.active {
  border-color: #008A8A;
  box-shadow: 0 0 10px #439999;
  background: #f7fafa;
  color: #008A8A;
}
.process-tab-content {
  flex: 1 1 65%;
  background: white;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #ddd;
}
.process-tab-panel {
  display: none;
}
.process-tab-panel.active {
  display: block;
}
.process-tab-panel img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.process-tab-panel p {
 margin-top: 10px;
}

@media (max-width: 768px) {
  .process-tabs-container {
    flex-direction: column;
    gap: 10px;
  }
  .process-tabs {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-x: auto;        /* Allows horizontal scroll if many tabs */
    scrollbar-width: none;    /* Hide scrollbar in Firefox */
    -ms-overflow-style: none; /* Hide scrollbar in IE/Edge */
  }
  .process-tabs::-webkit-scrollbar {
    display: none;            /* Hide scrollbar in Chrome/Safari */
  }
  .process-tab-button {
    flex: 1 1 auto;           /* Grow and shrink equally */
    padding: 10px 5px;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 4px;
    min-width: 0;             /* Prevent overflows */
  }
  .process-tab-content {
    padding: 15px 10px;
  }
  .process-tab-panel img {
    width: 100%;
    margin-bottom: 10px;
  }
  .process-tab-panel p {
    font-size: 0.95rem;
  }
}

/* start client logo section */
.client-logo-section {
  background: #e2edee;
  padding: 70px 0;
  margin: 30px 0px;
}
@media (max-width: 768px) {
  .client-logo-section {
    padding: 40px 0;
  background: #e2edee;
  }
}
.client-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.5rem 2rem;
  background: #e2edee;
}
@media (max-width: 768px) {
  .client-logo-grid {
    padding: 0;
    background: transparent;
    gap: 0.5rem;
  }
}
.client-logo-item {
  flex: 0 0 calc((100% / 9) - (1rem * 2 / 9));
  max-width: calc((100% / 9) - (1rem * 2 / 9));
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 8px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .client-logo-item {
    flex: 0 0 calc((100% / 3) - (1rem * 2 / 3));
    max-width: calc((100% / 3) - (1rem * 2 / 3));
    padding: 5px;
    border-radius: 5px;
  }
}
.client-logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}
.client-logo-item img:hover {
  filter: none;
  opacity: 1;
}
/* portfolio section */

/* Container and drag behavior */
.portfolio-home{ padding: 50px 0px 70px 0px;}
#gallery {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
#gallery.active {
  cursor: grabbing;
}
/* Horizontal track */
#track {
  display: flex;
  transition: none;
}
/* Item cards */
.portfolio-item {
  scroll-snap-align: start;
  flex: 0 0 33%; /* full width on mobile */
  margin: 0 10px;
  background: #eff1f1;
  border-radius: 8px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}
/* Responsive adjustments */
@media (min-width: 320px) {
  .portfolio-item {
    flex: 0 0 100%;
  }
}
@media (min-width: 900px) {
  .portfolio-item {
    flex: 0 0 calc((100% / 3) - (20px * 2 / 3));
  }
}
.portfolio-item img {
  width: 100%;
  border-radius: 6px;
}
.title {
  margin-top: 8px;
  font-size: 20px;
  font-weight: bold;
  color: #008A8A;
}
.description {
  margin: 10px 0;
}
.portfolio-action-btn {
  padding: 6px 20px;
  background: #00000000;
  color: #000000;
  border: solid 1px;
  border-radius: 4px;
  border-color: #000000;
  font-size: 14px;
  cursor: pointer;
}

/* start faq */
.faq-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width:600px){ .faq-container { grid-template-columns: 1fr; } }

.faq-item {
  border: 1px solid #008A8A;
  border-radius:10px;
  padding:20px;
  cursor:pointer;
  transition:background .3s;
}
.faq-item:hover { background:#008a8a09; }

.faq-question {
  font-weight:bold;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-answer {
  display:none;
  margin-top:10px;
}
.faq-item.active .faq-answer { display:block; }
.arrow { transition: transform .3s ease; }
.faq-item.active .arrow { transform: rotate(180deg); }
/* end */



/* start product review */


.reviews-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .review-card {
      background-color: #008A8A;
      color: #fff;
      border-radius: 10px;
      padding: 20px;
      flex: 1 1 calc(33.33% - 40px); /* 3 in a row with spacing */
      position: relative;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .review-card:hover {
      transform: translateY(-5px);
    }

    .review-card img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #008A8A;
      position: absolute;
      top: -30px;
      left: 20px;
    }

    .review-content {
      padding-top: 40px;
    }

    .review-stars {
      color: gold;
      margin-bottom: 10px;
      font-size: 18px;
    }


    /* Responsive */
    @media (max-width: 768px) {
      .review-card {
        width: 100%;
        max-width: 90%;
      }
    }


/* end product review */








/* start faq */
.faq-container { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width:600px){ .faq-container { grid-template-columns: 1fr; } }

.faq-item {
  border: 1px solid #008A8A;
  border-radius:10px;
  padding:20px;
  cursor:pointer;
  transition:background .3s;
}
.faq-item:hover { background:#008a8a09; }

.faq-question {
  font-weight:bold;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-answer {
  display:none;
  margin-top:10px;
}
.faq-item.active .faq-answer { display:block; }
.arrow { transition: transform .3s ease; }
.faq-item.active .arrow { transform: rotate(180deg); }
/* end */


/* start */
.custom-carousel-container {
  position: relative;
  overflow: hidden;
  margin: 40px auto;
  width: 100%;
}
.custom-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}
.carousel-slide {
  min-width: calc(100% / 3 - 20px);
  box-sizing: border-box;
}
.card {
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card-img-top {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px #008a8a;
  cursor: pointer;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: center;
}
.carousel-btn.prev {
  left: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M15.41 7.41 14 6l-6 6 6 6 1.41-1.41L10.83 12z"/></svg>');
}
.carousel-btn.next {
  right: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M8.59 16.59 10 18l6-6-6-6-1.41 1.41L13.17 12z"/></svg>');
}
@media (max-width: 992px) {
  .carousel-slide {
    min-width: calc(100% / 2 - 10px);
  }
}
@media (max-width: 576px) {
  .carousel-slide {
    min-width: 100%;
  }
}

