body {
    font-family: "Open Sans", sans-serif;
}  
 
 /* Description styles */
 .company-info {
    display: flex;
    font-family: "Open Sans", sans-serif;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    margin: 10px auto; /* Center the container horizontally */
}

.left-column {
    flex: 1;
    padding-right: 20px;
}

p {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #687187;
    line-height: 1.8;
    text-align: justify;
}

.right-column {
    flex: 1;
}

.animated-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 90px;
}

.animated-images img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}
/* Media query for smaller screens */
@media only screen and (max-width: 1176px) {
    

    /* Description styles */
    .company-info {
        flex-direction: column;
        width: 100%;
    }

    .left-column,
    .right-column {
        flex: 1;
        margin: 0;
        padding: 0 10px;
    }

    .animated-images {
        margin-top: 20px;
    }
}
/*our services*/
.our-services {
    display: flex;
    flex-wrap: wrap;
    font-family: "Open Sans", sans-serif;
    justify-content: space-between;
    text-align: center;
    width: 75%;
    margin: 0 auto;
}

.section-title {
    width: 100%;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.service-container {
    flex-basis: calc(25% - 70px);
    margin-right: 70px;
    margin-bottom: 30px; /* Adjust the margin to reduce the vertical gap */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border: 2px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    padding: 15px;
    background-color: white; /* Initially white background */
}


.service-container img {
    width: 50%;
    height: 100px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.service-container h3 {
    top: 10px;
    font-size: 16px;
    margin-top: 8px;
    font-family: "Open Sans", sans-serif;
    position: relative;
    z-index: 2;
    color: black
}

.service-container p{
  margin-top: 20px;
    word-spacing: 0.15em; /* Adjust this value as needed */
    font-size: 14px;
    color: #333;
    font-family: "Open Sans", sans-serif;
    position: relative;
    z-index: 2;
    line-height: 1.9;
    text-align: justify;
}

.service-container:hover {
    border-color: transparent;
    transform: scale(1.05);
    background-color: white; /* Change background color on hover */
}

.service-container:hover img {
    transform: scale(1.1) rotate(-2deg); /* Add a light shake effect on hover */
}

.service-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 100%; /* Initially cover only the top with white color */
    background: linear-gradient(to bottom, #FFA500 0%, #FFA500 100%);
    z-index: 1;
    transition: bottom 0.8s ease; /* Adjust the duration to control the speed of the animation */
}
.service-container:hover p {
    color: black; /* Change the text color to black on hover */
}
.service-container:hover::before {
    bottom: 0; /* Move the overlay to cover the entire container */
}

/* Responsive styles for small screens (max-width: 874px) */
@media only screen and (max-width: 874px) {
    .service-container {
        flex-basis: 100%;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .section-title {
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }
}

/* Responsive styles for screens between 875px and 1176px */
@media only screen and (min-width: 875px) and (max-width: 1176px) {
    .service-container {
        flex-basis: calc(40% - 20px); /* Show two items in a row with some spacing */
    }

    /* Repeated styles for section-title; if they are the same, you can keep them outside of media queries */
    .section-title {
        width: 100%;
        margin-top: 30px;
        text-align: center;
    }
}
/*tech*/
.container0302 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Styles for the our-tech section */
.our-tech {
    padding: 50px 0;
}

.section-title1{
    font-size: 2rem;
    margin-top: -30px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.tech-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
}

.tech-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.tech-item:hover {
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.tech-item img {
    width: 150px;
    height: 100px;
    margin-bottom: 15px;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.tech-item:hover img {
    transform: scale(1.1);
}

.tech-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 10px;
    text-align: center;
}

/* Add animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-item {
    animation: fadeIn 0.5s ease-in-out;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .tech-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
.animate-charcter
{
    
  background-image: linear-gradient(
    -225deg,
    #2ba42d 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 5s linear infinite;
  display: inline-block;
      font-size: 35px;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
/* why us */
 
  .intro {
    width: 50%;
    text-align: center;
    margin: 20px auto 40px;
  }
  
  .intro h2 {
    font-size: 2rem;
    color: #333;
  }
  
  .intro p {
    color: #777;
  }
  
  @media (max-width: 785px) {
    .intro {
      width: 100%;
      margin: 20px auto;
    }
  
    .intro h1 {
      font-size: 1.8em;
    }
  
    .intro p {
      font-size: .95em;
    }
  }
  
  .benefits {
    width: 550px;
    height: 550px;
    margin: 20px auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #333;
    background-image: url("../images/IT/whycenter.jpg");
    background-size: cover;
    background-position: center center;
    background-blend-mode: overlay;
    color: white;
  }
  
  @media (max-width: 785px) {
    .benefits {
      width: 100%;
      min-height: 650px;
      border-radius: 5px;
      align-items: flex-end;
      padding-bottom: 25px;
      margin: 10px auto;
    }
  }
  
  .benefits .main {
    width: 75%;
    text-align: center;
  }
  .benefits .content h3{
    color: rgb(2, 2, 2);
    width: 150%;
  }
  .benefits .main h2 {
    
    text-transform: uppercase;
  }
  
  .benefits .main p {
    width: 95%;
    font-size: .95em;
    margin-top: 10px;
  }
  
  @media (max-width: 785px) {
    .benefits .main {
      width: 90%;
    }
  
    .benefits .main h2 {
      font-size: 1.4em;
    }
  
    .benefits .main p {
      width: 95%;
      margin: 0 auto;
      font-size: .9em;
    }
  }
  
  .branch {
    width: 70%;
    padding: 10px;
    position: absolute;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    transition: .4s;
  }
  
  .branch .img-box {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: var(--bgColor);
    border: 4px solid white;
    background-image: var(--srcImage);
    background-repeat: no-repeat;
    background-size: 46px;
    background-position: center center;
    pointer-events: none;
  }
  
  .branch .content {
    width: calc(100% - 85px);
    pointer-events: none;
  }
  
  .branch h3 {
    color: #242424;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .branch .content p {
    margin-top: 10px;
    font-size: .9em;
    color: #777;
  }
  
  @media (max-width: 785px) {
    .branch {
      width: 98%;
      border-radius: 4px;
      background-color: rgba(220,220,220,.9);
      padding: 6px;
    }
    .branch .content h3 {
      text-transform: capitalize;
      font-size: 1.2em;
      
    }
  
    .branch .content p {
      font-size: 0.9em;
      margin-top: 5px;
      color: #444;
    }
  }
  
  .processor .content,
  .tree-chart .content {
    padding-left: 15px;
  }
  
  .processor {
    top: -10px;
    left: calc(-55% + 74px);
    flex-direction: row-reverse;
  }
  
  .server {
    top: -10px;
    right: calc(-55% + 54px);
  }
  
  .tree-chart {
    bottom: -10px;
    left: calc(-55% + 54px);
    flex-direction: row-reverse;
  }
  
  .idea {
    bottom: -10px;
    right: calc(-55% + 54px);
  }
  
  @media (max-width: 785px) {
    .processor {
      top: 3px;
      left: 1%;
      flex-direction: row-reverse;
    }
  
    .server {
      top: 106px;
      right: 1%;
    }
  
    .tree-chart {
      bottom: auto;
      top: 209px;
      left: 1%;
      flex-direction: row-reverse;
    }
  
    .idea {
      bottom: auto;
      top: 312px;
      right: 1%;
    }
  }
/*contact icons*/
.contact-icons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.contact-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
    background-color: #333;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icons a:hover {
    background-color: #555;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.contact-icons a.whatsapp {
    background-color: #25D366; /* WhatsApp green color */
}

.contact-icons a.email {
    background-color: #FFD700; /* Email icon color */
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
    .contact-icons {
        bottom: 10px;
        left: 10px;
    }
}
/*banner*/
.banner {
    display: flex;
    width: 70%;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff; /* Set background color to white */
    padding: 50px 20px;
}

.left-side img {
    width: 100%;
    max-width: 600px; /* Adjust the maximum width of the image */
    animation: slideInLeft 1s ease-in-out, pulse 2s infinite alternate; /* Animation for the image */
}

.right-side {
    flex: 1;
    margin-left: 20px; /* Adjust the spacing between left and right sides */
    text-align: center;
}

.right-side h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.right-side p {
    font-size: 18px;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #2ba42d;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #228c26;
}

/* Animation for the image */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Additional animation for pulsating effect */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

@media screen and (max-width: 768px) {
  .banner {
      flex-direction: column; /* Change flex direction to stack elements vertically */
      align-items: center;
      padding: 20px; /* Adjust padding */
  }

  .left-side {
      order: 2; /* Change the order of left-side to appear below */
      margin-bottom: 20px; /* Add spacing between left-side and right-side */
  }

  .left-side img {
      max-width: 100%; /* Adjust image width */
      margin-bottom: 20px; /* Add spacing between image and text */
  }

  .right-side {
      margin-left: 0; /* Remove margin */
      text-align: center;
  }

  .right-side h2 {
      font-size: 24px; /* Adjust font size */
      margin-bottom: 10px; /* Adjust margin */
  }

  .right-side p {
      font-size: 16px; /* Adjust font size */
      margin-bottom: 20px; /* Adjust margin */
  }
}