:root {
    --color-bg-black: #1D1D1D;
    --color-text: #333333;
    --color-light: #fff;
    --color-text-light: #444444;
    --font-base-family: "Lato", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --line-height: 1.2;
    --metric-rhythm: 2rem;
  }
  
  /**
  * SASS utils
  */
  .text-uppercase, .main .main__button {
    text-transform: uppercase;
  }
  
  .font-700, .main .main__button, .main .main__heading {
    font-weight: 700;
  }
  
  .font-300, .main .main__sub {
    font-weight: 300;
  }
  
  .font-400 {
    font-weight: 400;
  }
  
  /**
  * BASE
  */
 
 
  
  /**
   * FLOW UTILITY
   */
  .flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  
  .flow > * + * {
    margin-top: var(--metric-rhythm);
  }
  
  /**
  * MAIN
  */
  .main {
    grid-area: 2/1/6/2;
    padding: 2rem;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
  }
  
  .main .main__heading {
    font-size: 4rem;
    max-width: 13ch;
  }
  
  .main .main__sub {
    font-size: 1.5rem;
    max-width: 35ch;
  }
  
  .main .main__button {
    background: var(--color-bg-black);
    color: var(--color-light);
    font-size: 1rem;
    width: 16.5rem;
    height: 4.5rem;
    cursor: pointer;
    line-height: 1.4;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .main .main__button:hover {
    background-color: #333;
    transform: scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    body {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      padding: 0 1rem;
    }
  
    .section__img {
      grid-area: auto;
      margin-bottom: 2rem;
    }
  
    .main {
      grid-area: auto;
      padding: 1rem;
    }
  
    .main .main__heading {
      font-size: 2rem;
    }
  
    .main .main__sub {
      font-size: 1rem;
    }
  
    .main .main__button {
      width: 100%;
      height: auto;
      padding: 1rem;
    }
  }
  
  body {
    font-family: Arial, sans-serif;
   
    background-color: #f5f5f5;
}

.containe{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.image, .content {
    flex: 1;
    padding: 20px;
}

.image img {
    width: 100%;
    height: auto;
}

.content h2 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #232323;
}

.content p {
    font-size: 1em;
    color: #666;
}

.skills {
    list-style: none;
    padding: 0;
}

.skills li {
    background: #fff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-size: 1em;
    color: #333;
    display: flex;
    align-items: center;
}

.skills li::before {
    content: ">";
    margin-right: 10px;
    color: #1a73e8;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 20px;
    }

    .image, .content {
        padding: 10px;
    }

    .content h2 {
        font-size: 1.5em;
    }

    .content p {
        font-size: 0.9em;
    }

    .skills li {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .content h2 {
        font-size: 1.2em;
    }

    .content p {
        font-size: 0.8em;
    }

    .skills li {
        font-size: 0.8em;
    }
}



/* styles.css */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.contain {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.icon {
  font-size: 40px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.card:hover .icon {
  transform: scale(1.2);
}

.partners {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.partners img {
  margin: 0 10px;
  width: 100px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partners img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .card {
      width: 80%;
  }

  .partners img {
      width: 80px;
  }
}

@media (max-width: 480px) {
  .card {
      width: 100%;
  }

  .partners img {
      width: 60px;
  }
}
