:root{
  --primaryColor:#338d78;
  --middleColor:#4cac97f2;
  --helperColor:#48BDA3F2;
  --lightHelper:#DBDBDB;
  --transparentColor:#66d2cf88;
  --shadow:rgba(189, 188, 188, 0.514);
 /* --------------------------------- */
  --whatsappColor:#25D366;
  --white:#ffff;
  --blue: #1877F2;
  --green: #25D366;

  --gray:  #f8f8f8;
}
.containerServices {
   width: 98%;
    margin: 50px auto 0px auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
  }

  .images-column {
    width:  40%;
    height: 400px;
    position: relative;
  }

  .images-column img {
    position: absolute;
    width: 55%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .images-column img:nth-child(1) {
    top: 0;
    right: 0;
    transform: rotate(-6deg);
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
  }
  
  .images-column img:nth-child(2) {
    top: 60px;
    right: 200px;
    transform: rotate(4deg);
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    -o-transform: rotate(4deg);
  }
  
  .images-column img:nth-child(3) {
    bottom: 0;
    right: 30px;
    transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
  }

  .images-column img:nth-child(4) {
    bottom: 0px;
    right: 200px;
    transform: rotate(4deg);
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    -o-transform: rotate(4deg);
  }
  
  .images-column img:hover {
    transform: scale(1.03) rotate(0deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 10;
    -webkit-transform: scale(1.03) rotate(0deg);
    -moz-transform: scale(1.03) rotate(0deg);
    -ms-transform: scale(1.03) rotate(0deg);
    -o-transform: scale(1.03) rotate(0deg);
  }

  .text-column {
    width:  45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .small-title {
    position: relative;
    display: inline-block;
    width: fit-content;
    background-color: var(--lightHelper);
    color: var(--helperColor);
    padding: 6px 18px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 15px;
    overflow: visible;
    z-index: 1;
  }
  
  
  h1 {
    font-size: 2rem;
 
    color: var(--primaryColor);
   width: fit-content;
   margin: auto;
    line-height: 1.1;
  }

  p.description {
    font-size: 1.1rem;
    line-height: 2rem;
    color: #575757;
  }
  
  ul.features-list {
    list-style: inside disc;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #444;
    padding-right: 10px;
  }
  
  ul.features-list li {
    margin-bottom: 12px;
  }
  
  .text-column a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 50%;
    margin: auto;
    padding: 10px ;
    background: var(--shadow);
    color: var(--primaryColor);
    font-weight: 400;
    font-size: medium;
    text-decoration: none;
    border-radius: 25px;
    border: none;
    transition: border-radius 0.5s ease-in-out;
}

.text-column a:hover{
    border-radius: 0px 25px;
}

.icon{
width: 15%;
max-height: 50px;
border-radius: 10px;
background-color: rgba(255, 255, 255, 0);
}
/* ================= Animations ================= */

/* ================= Button Enhancement ================= */
.text-column a {
  background: linear-gradient(135deg, var(--helperColor), var(--primaryColor));
  color: var(--white);
  transition: transform 0.3s ease, background 0.5s ease;
}

.text-column a:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--primaryColor), var(--helperColor));
  border-radius: 30px;
}

  /* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

  @media (max-width:800px) {
    .containerServices {
      width: 98%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
    }

    .images-column {
      width:  90%;
      margin: auto;
    }

    .text-column {
      width:  98%;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .text-column a{
      width: 90%;
      margin: auto;
    }

    .images-column {
      display: grid;
      grid-template-columns: repeat(1, minmax(160px, 1fr));
      gap: 12px;
      position: static !important;
      height: auto !important;
     
    }
  
    .images-column img {
      position: static !important;
      width: 70%;
      margin: auto;
      height: auto;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      transition: transform 0.3s ease;
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes rotateIn {
      from { opacity: 0; transform: scale(0.9) rotate(-10deg); }
      to { opacity: 1; transform: scale(1) rotate(0); }
    }
    
    @keyframes pulseGlow {
      0% { box-shadow: 0 0 0 rgba(74,124,210,0.5); }
      70% { box-shadow: 0 0 20px rgba(74,124,210,0.3); }
      100% { box-shadow: 0 0 0 rgba(74,124,210,0); }
    }
    
    /* ================= Apply ================= */
    .images-column img {
      animation: rotateIn 1s ease forwards;
      opacity: 0;
    }
    .images-column img:nth-child(1) { animation-delay: 0.2s; }
    .images-column img:nth-child(2) { animation-delay: 0.4s; }
    .images-column img:nth-child(3) { animation-delay: 0.6s; }
    .images-column img:nth-child(4) { animation-delay: 0.8s; }
    
    .text-column h1 {
      animation: fadeInUp 1s ease forwards;
      opacity: 0;
      animation-delay: 0.5s;
    }
    
    .text-column p.description {
      animation: fadeInUp 1.2s ease forwards;
      opacity: 0;
      animation-delay: 0.7s;
    }
    
    .small-title {
      animation: pulseGlow 2.5s infinite;
    }
    
  }