/* CSS Document */

.titleSubMain {
    font-family: sans-serif;
    max-width: 1200px;
    margin: auto;
  }

.titleSubMain h1 {
font-size: 5rem;
color: white;
}

.titleSubMain p {
    font-size: 1.5rem;
    color: white;
    padding: 0% 1% 0%;
    margin-top: 30px;
    font-family: sans-serif;
    font-weight: normal;
}

.twoButtons {
    display: flex; /* Align buttons horizontally */
    justify-content: center; /* Center buttons */
    gap: 40px; /* Space between buttons */
    margin: 40px 0; /* Add space above and below */
  }

  .twoButtons a {
    text-decoration: none; /* Remove underline */
  }
  
  .buttonUx {
    display: inline-block;
    padding: 10px 20px; /* Adjust button size */
    text-decoration: none; /* Remove underline */
    font-family: sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff; /* Text color */
    background-color: #178da7; /* Button color */
    border: none; /* Remove border */
    border-radius: 5px; /* Smooth corners */
    transition: all 0.3s ease; /* Add hover transition */
  }
  
  .buttonUx:hover {
    background-color: #005f99; /* Darker shade on hover */
    transform: scale(1.05); /* Slight zoom effect */
  }

  .container25-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    background-color: black;
  }
  
  .gradient {
    
    width: 100%;
    height: 100%;
    background: linear-gradient(black, transparent 90%, black, transparent 90%);
    
  }

  .allCards25 {
    margin: auto;
    max-width: 1200px;
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    pointer-events: none;
    padding-top: 50px;
    
  }
  
  .card25 {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0.8rem;
    padding: 20px;    
    width: 30%;
    box-sizing: border-box;
    pointer-events: auto; /* To allow interaction since parent has pointer-events: none */
    margin: 0 1%;
    display: flex;
    flex-direction: row; /* in case you want internal layout control */
    justify-content: space-between;
    gap: 20px;
    align-items: top;
    transition: all 0.3s ease-in-out;
    
  }

  .card25:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
    background-color:  rgba(2, 72, 115, 0.7); /* Soft glow effect */
    text-decoration: none;
}
  
 
  
  .card25_1-img {
    background-image: url("images/symbols/code.png");
    min-width: 34px;
    height: 34px;
    background-size: contain; /* or 'cover' if you want it to fill the box */
    background-repeat: no-repeat;
    background-position: top;
  }
  .card25_2-img {
    background-image: url("images/symbols/cms.png");
    min-width: 34px;
    height: 34px;
    background-size: contain; /* or 'cover' if you want it to fill the box */
    background-repeat: no-repeat;
    background-position: top;
  }

  .card25_3-img {
    background-image: url("images/symbols/cellphone.png");
    min-width: 35px;
    height: 35px;
    background-size: contain; /* or 'cover' if you want it to fill the box */
    background-repeat: no-repeat;
    background-position: top;
  }


  
.contentCard {
    flex: 2;
    padding-right: 2%;
    flex-grow: 1;
    height: 100%;
    display: flex;
    flex-direction: column; /* Ensures content spreads from top to bottom */
    justify-content: space-between; /* Adjusts content alignment if needed */
}

  .contentCard p {
    margin-top: 25px;
    line-height: 20px;
  }

  .guion {
    display: flex;
    align-items: flex-end;
    margin-top: 10%;
  }

  .guion img {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.articleStyle1 {
    font-size: 1.2rem;
    color: white;
    text-decoration: none; /* Remove underline */
    padding: 40px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    font-family: sans-serif;
    font-weight: normal;
    width: 100%; 
    box-shadow: 0px 4px 6px rgba(211, 211, 211, 0.6);
    padding-bottom: 30px;
}

.aStyleContainer {
    
    max-width: 1300px;
    margin: auto;
    padding-left: 2%;
}

.flex2 h1 {
  color: black;
  font-family: "Open Sans", sans-serif;
  font-size: 100px;
  font-weight: 500;
  letter-spacing: -4px;
 
}

.flex2 p {
  color: rgb(68, 67, 67);
  font-family: "Open Sans", sans-serif; 
  margin-top: 6px;
}

.flex2 h4 {
  color: rgb(46, 45, 45);
  font-family: "Open Sans", sans-serif; 
  letter-spacing: -1px; 
  
}

.buttonsAbout {
  display: flex; /* Aligns buttons side by side */
  justify-content: left;
  gap: 20px; /* Adds space between buttons */
  margin-top: 20px; /* Adds space above the buttons */
}

.button25, .button25-2 {
  padding: 10px 24px;
  padding-top: 14px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out; /* Smooth hover effect */
}

.button25 {
  background-color: #2EDFF2; /* Light blue */
  color: white;
  border: none;
}


.button25-2 {
  background: transparent;
  color: black;
  border: 2px solid black;
}

.button25-2 a {
  text-decoration: none; /* Remove underline */
  color: black; /* Text color */
}

.button25:hover {
  background-color: #3586D5; /* Darker blue on hover */
}

.button25-2:hover {
  background-color: black;
}

.button25-2:hover a {
  color: white; /* Change text color on hover */
}

.button25:hover a {
  text-decoration: none;
}






  



@media all and (max-width: 980px) {
    .titleSubMain h1 {
        font-size: 2.5rem ;
        margin-top: 30px;
    }
    .titleSubMain p {
        font-size: 1rem;
        margin-top: 20px;
    }

    

    .twoButtons {        
        margin: 40px 0; /* Add space above and below */
      }
}

@media all and (max-width: 868px) {
    .titleSubMain h1 {
        font-size: 1.5rem ;
    }
    .titleSubMain p {
        font-size: 1rem;
        margin-top: 20px;
    }

    .twoButtons {        
        margin: 10px 0; /* Add space above and below */        
      }

      .buttonUx {
        padding: 10px 12px; /* Adjust button size */
        font-size: 12px;
      }

      .allCards25 {
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center cards horizontally */
        padding-top: 0px;
      }
      .card25 {
        width: 80%; /* Adjust card width for smaller screens */
        margin: 10px 0; /* Add space between cards */
        padding: 10px; /* Adjust padding for smaller screens */
      }

      .card25:hover {
        transform: none; /* Removes scaling */
        background-color: initial; /* Resets to default background */
        text-decoration: inherit; /* Resets text decoration */
    }

      .container25-1 {
        height: 700px; /* Adjust height for smaller screens */
      }

      .buttonsAbout {
        justify-content: center;
      }
}

@media all and (max-width: 648px) {
  .titleSubMain h1 {
      
      margin-top: 10px;
  }
  .titleSubMain p {
      
      margin-top: 10px;
  }

  .flex2 h1 {
    font-size: 60px;
   
  }

  .twoButtons {        
    margin: 20px 0; /* Add space above and below */
  }
  .container25-1 {
    height: 800px; /* Adjust height for smaller screens */
  }
}