/* Global */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: white;
  color: #333;
}

/* Header */
.resume-builder-header {
 background: linear-gradient(to bottom, #edd2f8, #bdd3ff);
  text-align: center;
  padding: 70px;
}
.ai-feedback-badge {
  display: inline-block;
  font-size: 0.9rem;
  background: #f4f4f6;
  color: #7a7a7a;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgb(226, 224, 224);
  font-weight: 500;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

.ai-feedback-badge span {
  font-weight: bold;
  color: #937bca;
}

.resume-builder-header h1 {
  max-width: 900px;
  font-size: 50px;
  line-height: 1.2;
  margin: auto;
}

.resume-builder-header p {
  font-size: 1.2rem;
  margin: 20px auto;
  max-width: 800px;
  line-height: 1.5;
  color: #333;
}

.resume-builder-highlight {
  background: linear-gradient(to right, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.resume-builder-hero-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

.resume-builder-btn {
  padding: 0.75rem 4rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.resume-builder-btn.start-btn {
  background: linear-gradient(to right, #6366f1, #ec4899);
  color: white;
}

.resume-builder-btn.explore-btn {
  background-color: #ffffff;
  color: #191717;
}

.resume-builder-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}


/* Responsive */
@media (max-width: 768px) {
  .resume-builder-header {
    padding: 50px 16px;
  }

  .resume-builder-header h1 {
    text-align: left;
    font-size: 2.2rem;
    margin-left: 10px;
  }

  .resume-builder-header p {
    font-size: 1rem;
  }

  .resume-builder-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    
  }

  .resume-builder-btn {
    width: 100%;
    max-width: 320px;
  
  }

  .resume-builder-features-container {
    grid-template-columns: 1fr;
  }
}

/* wave */
.resume-builder-header {
  position: relative; /* REQUIRED for absolute waves */
  overflow: hidden;
}

/* Waves */
.waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  z-index: 1;
}

/* Content stays above waves */
.resume-builder-header > *:not(.waves) {
  position: relative;
  z-index: 2;
}

/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

/* Keyframes (MISSING in your code) */
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* Mobile fix */
@media (max-width: 768px) {

    .waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    min-height: 50px;
    z-index: 0;
  }
}


/* ============================
🌟 Base Styles for Resume Section
============================= */


.resume-section {
   max-width: 1400px;
  color: rgb(85, 82, 82);
  display: flex;
  flex-direction: row;
  margin: auto;
  flex-wrap: wrap;
  margin-top: 50px;


}

.resume-content,
.resume-card-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 5%;
  box-sizing: border-box;
}


.resume-content h2 {
  color: rgb(48, 46, 46);
  font-size: 3rem;
  font-weight: 900;
  margin: 5px 0;
  max-width: 600px;
  line-height: 1.2;
  text-align: start;
}

.resume-content p {
  text-align: start;
  font-size: 1.2rem;
  color: #696565;
  max-width: 600px;
  margin-bottom: 30px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.feature {
  background: rgba(75, 53, 244, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  min-width: 230px;
  flex: 1;
}

.feature::before {
  content: "✔️";
  color: #22c55e;
  margin-right: 10px;
  font-size: 1.2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #6a11cb;
  padding: 14px 80px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  align-self: flex-start;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.resume-card-container {
  position: relative;
  align-items: center;
}
.resume-card-container img{
  width: 140%;
}

.more-btn {
  display: inline-block;
  background: linear-gradient(to right, #8e20c9, #e808b8);
  color: white;
  padding: 10px 25px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 20px;
  animation: fadeIn 1.5s ease-in-out infinite alternate;
}

/* Responsive: stack vertically on small screens */


@media (max-width: 768px) {

  .resume-main-section {
    height: auto;
  }


  .resume-section {
    flex-direction: column;
    width: 100%;
  

  }
.resume-card-container{
  flex: 1;
}
  .resume-content,
  .resume-card-container {
  
    width: 100%;
    padding: 30px 5%;
    align-items: center;
    text-align: center;
    margin-top: 0px;
  }

  .resume-content h2 {
    font-size: 2rem;
   
  }

  .resume-content p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .features {
    justify-content: center;
  }

  .feature {
    min-width: 80%;
    text-align: left;
  }


  .cta-button {
    align-self: center;
    padding: 14px 80px;
  }


  .more-btn {
    font-size: 0.9rem;
    padding: 8px 20px;
  }
  .resume-card-container img{
  width: 100%;
}


}







/* resume-template-builder */
.resume-template-builder-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  width: 95%;
  margin: auto;
  color: white;
  margin-top: 60px;
}
.resume-template-builder-content,
.resume-template-builder-card-container {
  flex: 1;
  padding: 10px 5%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.resume-template-builder-proven {
  font-weight: 700;
  font-size: 1rem;
  color: #facc15;
  display: flex;
  align-items: center;
}
.resume-template-builder-proven::before {
  content: "\2B50";
  margin-right: 8px;
  font-size: 1.2rem;
}
.resume-template-builder-content h2 {
  font-size: 3rem;
  font-weight: 900;
  margin: 10px 0;
  max-width: 600px;
  text-align: start;
  color: rgb(48, 46, 46);
}
.resume-template-builder-content p {
  font-size: 1.2rem;
  color: #4e4d4d;
  max-width: 600px;
  text-align: start;
  margin-bottom: 30px;
}
.resume-template-builder-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.resume-template-builder-feature {
 color: #635d5d;
  background: rgba(68, 45, 240, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 230px;
  flex: 1;
  display: flex;
  align-items: center;
}
.resume-template-builder-feature::before {
  content: "\2714";
  color: #22c55e;
  margin-right: 10px;
}
.resume-template-builder-cta {
  background: #fff;
  color: #6a11cb;
  padding: 14px 80px;
  border-radius: 14px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  align-self: flex-start;
}
.resume-template-builder-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}
.resume-template-builder-card-container {
  align-items: center;
  display: flex;
  justify-content: center;
}
.resume-template-builder-card {
  background: #fff;
  color: #1f2937;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  transform: rotate(-2deg);
  position: relative;
   animation: shakeCard 4s ease-in-out infinite;
}
@keyframes shakeCard {
  0%, 100% { transform: rotate(-1deg); }
  25% { transform: rotate(1deg); }
  50% { transform: rotate(-0.5deg); }
  75% { transform: rotate(0.5deg); }
}

.resume-template-builder-card h2 {
  font-size: 2rem;
  margin-bottom: 5px;
}
.resume-template-builder-card p,
.resume-template-builder-card ul {
  font-size: 1rem;
  color: #4b5563;
  margin: 5px 0;
}
.resume-template-builder-card ul {
  padding-left: 20px;
}
.resume-template-builder-card .section-title {
  font-weight: bold;
  margin-top: 20px;
  color: #000;
}
.resume-template-builder-more-btn {
  display: inline-block;
  background: linear-gradient(to right, #8e20c9, #e808b8);
  color: white;
  padding: 10px 25px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}
.badge-top,
.badge-bottom {
  position: absolute;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  color: white;
}
.badge-top {
  top: -20px;
  right: -20px;
  background: #22c55e;
}
.badge-bottom {
  bottom: -20px;
  left: -20px;
  background: #f97316;
}
@media (max-width: 768px) {
  .resume-template-builder-section {
    flex-direction: column;
    width: 100%;
  }
  .resume-template-builder-content,
  .resume-template-builder-card-container {
    width: 100%;
    padding: 30px 5%;
    align-items: center;
    text-align: center;
  }
  .resume-template-builder-content h2 {
    font-size: 2rem;
    
  }
  .resume-template-builder-content p {
    font-size: 1rem;
  }
  .resume-template-builder-feature {
    min-width: 80%;
    text-align: left;
  }
  .resume-template-builder-card {
    max-width: 90%;
    transform: none;
    padding: 30px;
    text-align: left;
  }
.resume-template-builder-card{
  order: 0;
}
.resume-template-builder-content{
    
       order: -1; /* moves card above content */
    margin-bottom: 20px;
}
}




/* Professional Resume Examples Template */


    .home-template-resume-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      min-height: 600px;
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 20px;
      gap: 80px;
      box-sizing: border-box;
    }

    .home-template-resume-text {
      flex: 1 1 400px;
      max-width: 600px;
    }

    .home-template-resume-text h2 {
       font-size: 3rem;
  font-weight: 900;
  margin: 10px 0;
  max-width: 600px;
  text-align: start;
   color: rgb(48, 46, 46);
    }

    .home-template-resume-text p {
      font-size: 1.1rem;
      color: #4b5563;
      margin-bottom: 20px;
    }

    .home-template-resume-text button {
      padding: 12px 24px;
      font-size: 1rem;
      background-color: #3b82f6;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .home-template-resume-slider {
      flex: 1 1 400px;
      max-width: 500px;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      aspect-ratio: 3 / 4;
      perspective: 1000px;
      transform-style: preserve-3d;
      
    }

    .home-template-resume-img {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  background-color: transparent; /* <-- Add this just in case */
  transform: rotateY(90deg) scale(0.95);
  transition: transform 1.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 1.6s ease-in-out;
  backface-visibility: hidden;
}


    .home-template-resume-img.active {
      opacity: 1;
      transform: rotateY(0deg) scale(1);
      z-index: 1;
    }

    @media (max-width: 768px) {
      .home-template-resume-section {
        flex-direction: column;
        padding: 30px 16px;
        text-align: center;
        gap: 0px;
      }

        .home-template-resume-text h2 {
       font-size: 2rem;
  font-weight: 900;
  margin: 10px 0;
  max-width: 600px;
  text-align: center;
  color: #111127;
    }

      .home-template-resume-slider {
        width: 90%;
        aspect-ratio: 3 / 4;
      }

      .home-template-resume-img {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .home-template-resume-section {
        flex-direction: column;
      
        gap: 0px;
      }

      .home-template-resume-text h2 {
        font-size: 2.2rem;
        text-align: left;
      }

      .home-template-resume-text p {
        font-size: 1rem;
      }

      .home-template-resume-text button {
        width: 100%;
      }

      .home-template-resume-slider {
        height: auto;
      }

      .home-template-resume-img {
        width: 100%;
      }
    }


























/* =======================
   🔧 Coding Tools Section
   ======================= */
 
.tools-section {
  padding: 10px 20px;
 background: radial-gradient(circle at top left, #c6e8ff 0%, #fde1f9 100%);
  text-align: center;
  border-radius: 70px 70px 0px 0px;
  margin: 20px;
  margin: auto;
  max-width: 1400px;
  padding-bottom: 40px;
  padding-top: 40px;
  font-family: 'Inter', sans-serif;
}
.tools-header h2{
    font-size: 3rem;
    color: #1f1e1e;
}

.tools-header p {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* 🔲 Grid layout for cards */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
}

/* 🃏 Tool card styles */
.tools-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tools-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* 🧩 Icon inside card */
.tools-icon {
  background: var(--icon-bg);
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 20px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tools-icon img {
  width: 30px;
  height: 30px;
}

/* 📝 Card title */
.tools-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 5px;
}

/* 📄 Card description */
.tools-card p {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 18px;
}
.tools-section a {
  text-decoration: none;
}
/* 🔻 Separator line at bottom of card */
.card-line {
  width: 80%;
  height: 6px;
  border-radius: 20px;
  background-color: #e5e7eb;
}

.tools-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg, #eef2ff);
  border-radius: 50%;
}

.tools-icon img {
  width: 46px;
  height: 46px;
}
/* 📱 Responsive tweaks */
@media (max-width: 768px) {
  .tools-header h2 {
    font-size: 1.5rem;
  
  }

  .tools-grid {
    gap: 20px;
  }

  .tools-card {
    padding: 25px 16px;
  }
}

