/*
Theme Name: hello-elementor-child
Theme URI: [Enter the URL of your child theme's website or leave it blank]
Description: My custom child theme based on generatepress.
Author: Arham
Author URI: [Your website URL or leave it blank]
Template: hello-elementor
Version: 1.0
*/

/* Custom styles go below this line */

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100vw;
    max-width: 100%;
    padding: 10px 20px;
    margin: 0 auto;
    background: transparent;
    justify-content: center;
    box-sizing: border-box;
}

.stat-item {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 700;
    color: #222;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-width: 160px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.stat-item:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.stat-main {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.stat-sub {
    font-size: 0.9rem;
    color: #777;
    font-weight: 400;
}

.technology-posts-list, .posts-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.single-technology-post, .single-tech-post {
  width: 220px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  padding: 0;
}

.single-technology-post:hover, .single-tech-post:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.single-technology-post img, .single-tech-post img {
  max-width: 100%;
  height: auto;
  display: block;
  padding: 15px;
}

.single-technology-post h3, .single-tech-post h3 {
  background-color: #f0f8ff;
  margin: 0;
  padding: 10px;
  font-size: 1.15em;
  color: #333;
	
}

@media (max-width: 1024px) {
  .single-technology-post, .single-tech-post {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .single-technology-post, .single-tech-post {
    width: 180px;
  }
}

@media (max-width: 480px) {
  .single-technology-post, .single-tech-post {
    width: 160px;
  }

  .single-technology-post img, .single-tech-post img {
    padding: 10px;
  }

  .single-technology-post h3, .single-tech-post h3 {
    font-size: 1em;
    padding: 8px;
  }
}

.key-features-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.key-feature-card {
  flex: 1 1 calc(33.33% - 12px);
  min-width: 210px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px 28px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
  cursor: default;
  text-align: center;
}

.key-feature-card:hover {
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.key-feature-card h3 {
  margin: 0;
  font-weight: 600;
  font-size: 1.1em;
  color: #222;
}

@media (max-width: 768px) {
  .key-feature-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .key-feature-card {
    flex: 1 1 100%;
    min-width: auto;
  }
}

.use-case-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
}

.use-case-card {
  flex: 1 1 calc(33.33% - 18px);
  min-width: 230px;
  background: #f9f9f9;
  border: 1px solid #bbb;
  border-radius: 12px;
  padding: 22px 30px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  transition: box-shadow 0.3s ease;
  cursor: default;
  text-align: left;
  display: flex;
  align-items: center;
}

.use-case-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.use-case-card h4 {
  margin: 0;
  font-weight: 600;
  font-size: 1.10em;
  color: #333;
  flex: 1;
}

.use-case-icon {
  color: #f39c12;
  font-size: 1.0em;
  margin-right: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .use-case-card {
    flex: 1 1 calc(50% - 18px);
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .use-case-card {
    flex: 1 1 100%;
    min-width: auto;
  }
}
.tech {
    background-color: #12A597EB;
    color: white;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 14px;
}

.progress-bars-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.progress-bar-wrapper {
    margin-bottom: 15px;
}

.skill-name {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.progress-bar {
    width: 100%;
    background-color: #eee;
    border-radius: 25px;
    overflow: hidden;
    height: 25px;
}

.progress-fill {
    height: 100%;
    background-color: #12A597EB;
    text-align: right;
    line-height: 25px;
    color: white;
    font-weight: bold;
    padding-right: 10px;
    border-radius: 25px 0 0 25px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 14px;
}

.specialities-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px 0;
}

.speciality-box {
    display: inline-block;
    background-color: #12A597EB;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.speciality-box:hover {
    transform: scale(1.05);
    background-color:#12A597EB;
}

.profile-keys-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.profile-key-box {
    flex: 0 1 calc(50% - 10px);
    text-align: center;
    background-color:  #12A597EB;
    color: #fff;
    padding: 8px 12px;
    border-radius: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.profile-key-box:hover {
    transform: scale(1.05);
    background-color: #12A597EB;
}

/* ✅✅✅ Sirf responsive additions ✅✅✅ */

@media (max-width: 600px) {
    .stats-container {
        padding: 10px;
        gap: 14px;
    }
    .stat-item {
        min-width: 140px;
        padding: 18px;
    }
    .stat-main {
        font-size: 1.15rem;
    }
    .stat-sub {
        font-size: 0.8rem;
    }
}

@media (max-width: 500px) {
    .progress-bar {
        height: 20px;
    }
    .progress-fill {
        line-height: 20px;
        font-size: 12px;
        padding-right: 6px;
    }
}

@media (max-width: 480px) {
    .speciality-box {
        font-size: 12px;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .profile-key-box {
        flex: 0 1 100%;
        font-size: 13px;
        padding: 7px 10px;
    }
}


