/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services-page{
  background-color: rgb(0, 0, 0,0.1);
}

#services{

  background-color: rgb(0, 0, 0,0.5); /* Dark background for contrast */
  padding: 60px 0;
  border-radius: 16px; /* Padding for the section */
  margin: 8px;
}

.services-h2{
  font-size: 38px;
}


.center {
  display: flex;
  justify-content: center; /* Center horizontally */
  gap: 30px; /* Adjust spacing between the two divs */
}

.center > div {
  flex: 0 1 auto; /* Ensure the children don't stretch and maintain their size */
}



  .services .service-item {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 1);
    height: 100%;
    padding: 60px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 16px;
  }
  
  
  .services .service-item .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
  }
  
  .services .service-item .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
  }
  
  .services .service-item .icon svg {
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .services .service-item .icon svg path {
    transition: 0.5s;
    fill: color-mix(in srgb, var(--default-color), transparent 95%);
  }
  
  .services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
  }
  
  .services .service-item p {
    line-height: 24px;
    font-size: 20px;
    margin-bottom: 0;
  }
  
  .services .service-item:hover {
    box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
  }
  
  .services .service-item.item-cyan i {
    color: #0dcaf0;
  }
  
  .services .service-item.item-cyan:hover .icon i {
    color: #fff;
  }
  
  .services .service-item.item-cyan:hover .icon path {
    fill: #0dcaf0;
  }
  
  .services .service-item.item-orange i {
    color: #fd7e14;
  }
  
  .services .service-item.item-orange:hover .icon i {
    color: #fff;
  }
  
  .services .service-item.item-orange:hover .icon path {
    fill: #fd7e14;
  }
  
  .services .service-item.item-teal i {
    color: #20c997;
  }
  
  .services .service-item.item-teal:hover .icon i {
    color: #fff;
  }
  
  .services .service-item.item-teal:hover .icon path {
    fill: #20c997;
  }
  
  .services .service-item.item-red i {
    color: #df1529;
  }
  
  .services .service-item.item-red:hover .icon i {
    color: #fff;
  }
  
  .services .service-item.item-red:hover .icon path {
    fill: #df1529;
  }
  
  .services .service-item.item-indigo i {
    color: #6610f2;
  }
  
  .services .service-item.item-indigo:hover .icon i {
    color: #fff;
  }
  
  .services .service-item.item-indigo:hover .icon path {
    fill: #6610f2;
  }
  
  .services .service-item.item-pink i {
    color: #f3268c;
  }
  
  .services .service-item.item-pink:hover .icon i {
    color: #fff;
  }
  
  .services .service-item.item-pink:hover .icon path {
    fill: #f3268c;
  }
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/


/*mobile*/
/* Mobile App Development Section */
.mobile-app-development-section {
  background-color: rgb(0, 0, 0,0.5); /* Dark background for contrast */
  padding: 60px 0;
  border-radius: 16px; /* Padding for the section */
  margin: 8px;
}

.image-container {
  text-align: center;
}

.mobile-app-img {
  width: 80%; /* Decrease the width to make the image smaller */
  border-radius: 20px; /* Rounded corners */
  transition: transform 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-app-img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
}

.text-container {
  text-align: left;
  padding-left: 20px;
}

.text-container h2 {
  font-size: 38px;
  margin-bottom: 20px;
  border-bottom: 2px solid #8dd8d3;
  display: inline-block;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.text-container p {
  font-size: 18px;
  line-height: 1.8;
  animation: fadeInText 2s ease-in-out forwards;
}

/* Animation for the text */
@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Adding AOS (Animate On Scroll) Library */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

@media (max-width: 992px) {
  .text-container h2 {
    font-size: 30px;
  }

  .text-container p {
    font-size: 20px;
  }

  .mobile-app-img {
    width: 100%; /* Make image responsive */
  }
}












/*ai-solutions*/

.ai-solutions {
  padding: 40px;
  text-align: center;
  font-family:var(--font-family);

  background-color: rgb(0, 0, 0,0.5); /* Dark background for contrast */
  padding: 60px 0;
  border-radius: 16px; /* Padding for the section */
  margin: 8px;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}


.images-container {
  display: flex;
  justify-content: space-around;
  margin-bottom: 30px;
}

.image-box {
  width: 30%;
  border-radius: 50%;
  overflow: hidden;
  background-color: #111;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
}

.image-box img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

.ai-solutions p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 10px;
}




.bg{
  position: fixed;
  position: fixed;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}





/*web*/
/* Web Development Section */
.web-development {
  background-color: rgb(0, 0, 0,0.5); /* Dark background for contrast */
  padding: 60px 0;
  border-radius: 16px; /* Padding for the section */
  margin: 8px;
}



.section-list {
  list-style: disc inside;
  font-size: 20px;
  line-height: 1.8;
}

.section-list li {
  margin-bottom: 15px;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.img-small {
  grid-row: span 1;
  height: 100%;
  object-fit: cover;
}

.img-large {
  grid-row: span 2; /* Make this image span two rows */
  height: 100%;
  object-fit: cover;
}

.image-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .section-list {
    font-size: 20px;
  }

  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }

  .img-large {
    grid-row: span 1;
  }
}





/*desktop*/
/* Desktop Applications Section */
.desktop-applications {
  background-color: rgb(0, 0, 0,0.5); /* Dark background for contrast */
  padding: 60px 0;
  border-radius: 16px; /* Padding for the section */
  margin: 8px;
}

.app-card {
  background-color: #111; /* Slightly lighter background for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* Center text in the card */
  padding: 10px; /* Reduce padding to decrease card height */
}

.app-card:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
}

.app-image {
  width: 100%;
  max-height: 300px; /* Limit the height of the image */
  object-fit: cover; /* Ensure the image scales without distortion */
  margin-bottom: 10px; /* Reduce space between image and text */
  border-bottom: 2px solid #333; /* Subtle separation between image and text */
}

.app-card-body {
  padding: 10px; /* Reduce padding to decrease card height */
  flex-grow: 1;
  height: 50%;
}

.app-card-title {
  font-size: 22px; /* Slightly reduce font size */
  font-weight: 600;
  margin-bottom: 10px; /* Reduce bottom margin to decrease height */
}

.app-card p {
  font-size: 20px; /* Slightly reduce font size */
  line-height: 1.4; /* Adjust line height to be more compact */
  margin-bottom: 0; /* Remove margin at the bottom */
}

@media (max-width: 992px) {
  .app-card-title {
    font-size: 18px; /* Further reduce font size on smaller screens */
  }

  .app-card p {
    font-size: 12px; /* Further reduce font size on smaller screens */
  }

  .app-image {
    width: 100%; /* Full width for smaller screens */
    max-height: 200px; /* Further limit image height on small screens */
  }
}











/* Internet of Things Section */
.iot-section {
  background-color: rgb(0, 0, 0,0.5); /* Dark background for contrast */
  padding: 60px 0;
  border-radius: 16px; /* Padding for the section */
  margin: 8px;
}



.iot-list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 20px;
  line-height: 1.8;
}

.iot-list li {
  margin-bottom: 18px;
}


.image-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1000px) {
  .image-circle {
    width: 350px;
    height: 350px;
  }
}








.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
  }
  
  .service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
  }
  
  .service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
  }
  
  .service-details .services-list a:hover {
    border-color: var(--accent-color);
  }
  
  .service-details .services-img {
    margin-bottom: 20px;
  }
  
  .service-details h3 {
    font-size: 26px;
    font-weight: 700;
  }
  
  .service-details h4 {
    font-size: 20px;
    font-weight: 700;
  }
  
  .service-details p {
    font-size: 15px;
  }
  
  .service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  
  .service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
  }
  
  .service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
  }
  
  /*--------------------------------------------------------------
  # Starter Section Section
  --------------------------------------------------------------*/
  .starter-section {
    /* Add your styles here */
  }  