  :root
{
    /**COLORS***/
    --primary-color:#34a2ce;
    --secondady-color: #6247c5;
    --accent-color:#f0b240;
    --background-color:#e7e5e5  ;
    --text-color-light:#ffffff;
    --text-color-darklight:#807e7e;
    --text-color-dark:#000000;

     /**SPACING***/
    --spacing-mini: 0.8rem;
    --spacing-small: 1rem;
    --spacing-medium: 1.2rem;
    --spacing-large: 1.8rem;

     /**FONT-SIZE***/
    --font-size-small: 1rem;
    --font-size-medium:1.4rem;
    --font-size-large:1.8rem;

     /**FONT-FAMILY***/
     --font-family: 'roboto', Arial, Helvetica, sans-serif;

}
    .mainSection {
      background: #2e2e2e;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
    }
  .comingSoon-section-title-skills {
    font-size: 6rem;
    font-weight: 300;
    color: var(--text-light);
    margin: 1rem;
    text-align: center;
}
.sub-title {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-align:center;
}

  .skills-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      width: 100%;
      padding: 20px;
    }

    .skill-card {
      background: #f0eeee;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      padding: 20px;
      text-align: center;
      transition: transform 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      min-height: 300px; /* same size for all cards */
    }

    .skill-card:hover {
      transform: translateY(-5px);
      cursor: pointer;
    }

    .skill-logo {
      width: 60px;
      height: 60px;
      margin-bottom: 10px;
    }

    .skill-card h3 {
      margin-bottom: 8px;
      font-size: 20px;
      color: #333;
    }

    .skill-card p {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .progress-container {
      background: #eee;
      border-radius: 10px;
      height: 20px;
      width: 100%;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .progress-bar {
      height: 100%;
      width: 0;
      border-radius: 10px;
      transition: width 1.5s ease;
    }

    .percentage-text {
      font-size: 18px;
      font-weight: bold;
      color: #333;
    }

    /* Different colors */
    .html { background: #e34c26; }
    .css { background: #264de4; }
    .javascript { background: #f0db4f; }
    .react { background: #61dafb; }
    .bootstrap { background: #7952b3; }
    .git { background: #f1502f; }
    .php { background: #8892bf; }
    .excel { background: #217346; }
    .sql { background: #00618a; }
    /* 📱 Responsive styling */
/* ===================== */
@media (max-width: 768px) {
  .comingSoon-section-title-skills {
    font-size: 3.5rem;
  }

  .skills-section {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }

  .skill-card {
    min-height: 250px;
    padding: 15px;
  }

  .skill-logo {
    width: 50px;
    height: 50px;
  }

  .skill-card h3 {
    font-size: 18px;
  }

  .skill-card p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .comingSoon-section-title-skills {
    font-size: 2.2rem;
    margin: 0.5rem;
  }

  .skills-section {
    grid-template-columns: 1fr; /* stack cards */
    gap: 12px;
  }

  .skill-card {
    min-height: auto; /* let cards adjust */
    padding: 12px;
  }

  .skill-card h3 {
    font-size: 16px;
  }

  .skill-card p {
    font-size: 12px;
  }

  .percentage-text {
    font-size: 14px;
  }
}