* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #221796;
  }
  
  .header {
    background-color: #2f6e24;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  logo img {
    width: 40px;
    height: 40px;
  }
  
  .logo span {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
  }
  
  .navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .navbar a:hover {
    color: #007bff;
  }
  
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.slider-container {
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-300%);
  }
  100% {
      transform: translateX(0);
    }
  }
  
  .slider {
    animation: slide 10s infinite;
  }


  
  btn-login {
    background-color: #007bff;
    color: rgb(188, 23, 23) !important;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.3s;
  }
  
  .btn-login:hover {
    background-color: #0056b3;
  }

  .skill-navbar {
    background-color: #361a9c;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }
  
  .skill-navbar .container {
    display: flex;
    justify-content: center;
  }
  
  .skill-nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .skill-nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .skill-nav-links li a:hover {
    background-color: #007bff;
    color: #932727;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #18079d;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  .header {
    background: #0d8989;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo img {
    width: 40px;
    height: 40px;
  }
  
  .logo span {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
  }
  
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
  }
  
  .navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  }
  
  .btn-login {
    background-color: #007bff;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
  }
  
  .skill-navbar {
    background-color: #983f00;
    padding: 10px 0;
    border-bottom: 1px solid #570101;
  }
  
  .skill-nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .skill-nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #333;
    padding: 6px 12px;
    border-radius: 5px;
  }
  
  .skill-nav-links a:hover {
    background-color: #007bff;
    color: white;
  }
  .hero {
    background: linear-gradient(135deg, #eaf4ff, #ffffff);
    padding: 60px 0;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .hero-text h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
  }
  
  .hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555;
  }
  .cta-btn {
    background: #007bff;
    color: rgb(21, 122, 176);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .cta-btn:hover {
    background: #0056b3;
  }
  
  .hero-image img {
    max-width: 100%;
    height: auto;
  }
  
  .section-title {
    font-size: 28px;
    margin: 40px 0 20px;
    text-align: center;
    color: #2c3e50;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  .skill-card {
    background-color: rgb(36, 155, 202);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
    text-decoration: none;
    color: #333;
    transition: 0.3s ease;
  }
  
  .skill-card:hover {
    background-color: #5e1799;
    color: rgb(197, 38, 38);
    transform: translateY(-5px);
  }
  course-category {
    background: #8c0f86;
    padding: 40px 0 20px;
    text-align: center;
  }
  
  .course-category h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
  }
  
  .category-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    background: #19acc0;
    border: 1px solid #007bff;
    color: #007bff;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }
  filter-btn.active,
  .filter-btn:hover {
    background: #007bff;
    color: rgb(147, 15, 67);
  }
  
  .course-grid {
    padding: 30px 0;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
  
  .course-card {
    background: #cf3c1a;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: 0.3s;
  }
  
  .course-card:hover {
    transform: translateY(-5px);
    background: #007bff;
    color: white;
  }
  course-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .course-card p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .course-card a {
    text-decoration: none;
    font-weight: 500;
    color: #007bff;
    border: 1px solid #007bff;
    padding: 8px 14px;
    border-radius: 6px;
    transition: 0.3s;
    background: rgb(230, 18, 18);
  }
  
  .course-card:hover a {
    background: rgb(2, 113, 154);
    color: #007bff;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background: #260ca5;
    color: #333;
  }
  
  .ai-section {
    padding: 40px 20px;
    text-align: center;
  }
  
  .ai-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
  }
  
  .ai-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
  }
  
  .ai-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .tool-btn {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    background-color: #007bff;
    color: white;
    font-weight: 500;
    transition: 0.3s ease;
  }
  
  .tool-btn:hover {
    background-color: #0056b3;
  }
  
  .chat-box {
    background-color: rgb(26, 148, 178);
    max-width: 700px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }
  
  .chat-display {
    max-height: 300px;
    overflow-y: auto;
    text-align: left;
    padding: 10px;
    border: 1px solid #004b50;
    border-radius: 6px;
    margin-bottom: 15px;
    background-color: #b81b1b;
  }
  
  .message {
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  .message.bot {
    color: #007bff;
  }
  
  .message.user {
    text-align: right;
    color: #222;
  }
  
  .chat-input-group {
    display: flex;
    gap: 10px;
  }
  .chat-input-group input {
    flex: 1;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #e81414;
    border-radius: 6px;
  }
  
  .chat-input-group button {
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    color: rgb(66, 150, 13);
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
  }
  
  .chat-input-group button:hover {
    background-color: #0056b3;
  }
  .start-ai-biz {
  background: #0a799b;
  padding: 60px 20px;
  text-align: center;
}

.start-ai-biz .container {
  max-width: 1200px;
  margin: auto;
}

.text-area {
  margin-bottom: 40px;
}

.biz-heading {
  font-size: 32px;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 10px;
}

.biz-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 0;
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.biz-card {
  background: rgb(146, 3, 3);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  padding: 25px;
  transition: 0.3s ease;
  text-align: center;
}

.biz-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.biz-card img {
  max-width: 90px;
  margin-bottom: 15px;
}

.biz-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #007bff;
}

.biz-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}
.biz-card a {
  display: inline-block;
  background: #007bff;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.biz-card a:hover {
  background: #0056b3;
}
.ai-students {
  background: #ad6013;
  padding: 60px 20px;
  text-align: center;
}

.ai-students .container {
  max-width: 1000px;
  margin: auto;
}

.student-heading {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.student-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.student-tools {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.student-tool-card {
  background: #d8aa14;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  max-width: 600px;
  width: 100%;
  transition: transform 0.3s ease;
}

.student-tool-card:hover {
  transform: translateY(-5px);
}

.student-tool-card img {
  max-width: 100px;
  margin-bottom: 15px;
}

.tool-content h3 {
  font-size: 20px;
  color: #007bff;
  margin-bottom: 8px;
}

.tool-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 14px;
}
.tool-content a {
  background-color: #007bff;
  color: rgb(125, 18, 18);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.tool-content a:hover {
  background-color: #0056b3;
}


.tool-of-day {
  background: #6f1898;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.tool-of-day .container {
  max-width: 900px;
  margin: auto;
}

.tool-heading {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.tool-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.tool-card {
  background: rgb(155, 18, 201);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-img {
  width: 100px;
  margin-bottom: 15px;
}

.tool-content h3 {
  font-size: 22px;
  color: #007bff;
  margin-bottom: 12px;
}

.tool-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

.tool-content a {
  background: #007bff;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.tool-content a:hover {
  background: #0056b3;
}

.remote-jobs {
  background: #9a0d8a;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.remote-jobs .container {
  max-width: 900px;
  margin: auto;
}

.jobs-heading {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.jobs-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.job-card {
  background: #7c0926;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  padding: 25px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
flex-wrap: wrap;
  transition: transform 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-info {
  text-align: left;
  flex: 1;
}

.job-info h3 {
  font-size: 18px;
  color: #007bff;
  margin-bottom: 6px;
}

.job-info p {
  font-size: 14px;
  color: #333;
  margin: 2px 0;
}

.apply-btn {
  background: #007bff;
  color: rgb(216, 22, 22);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.apply-btn:hover {
  background: #0056b3;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #137db2;
}

.skill-engine {
  background: #906208;
  padding: 60px 20px;
  text-align: center;
}

.skill-engine .container {
  max-width: 900px;
  margin: auto;
}

.skill-heading {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.skill-subtitle {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

#interestSelect {
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #1728a6;
  outline: none;
  margin: 20px 0;
}

.career-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.career-card {
  background: rgb(18, 33, 172);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

.career-card h3 {
  color: #007bff;
  margin-bottom: 10px;
}

.career-card p {
  color: #444;
  font-size: 14px;
  margin-bottom: 12px;
}

.career-card a {
  display: inline-block;
  padding: 10px 16px;
  background: #007bff;
  color: rgb(253, 56, 56);
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.career-card a:hover {
  background: #0056b3;
}

.ai-hindi-courses {
  background: #890e1c;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.ai-hindi-courses .container {
  max-width: 900px;
  margin: auto;
}

.section-heading {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.course-card {
  background: rgb(191, 69, 16);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 25px;
  text-align: left;
margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-5px);
}

.course-card h3 {
  font-size: 20px;
  color: #007b5e;
  margin-bottom: 8px;
}

.course-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 10px;
}

.course-card a {
  background: #00a86b;
  color: rgb(192, 103, 61);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: background 0.3s ease;
}

.course-card a:hover {
  background: #007b5e;
}

.ai-income-blueprint {
  background: #04859f;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.ai-income-blueprint .container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.section-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.step-card {
  background: rgb(170, 9, 192);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
}

.step-card h3 {
  font-size: 20px;
  color: #9e0c90;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 14px;
}

.step-card a {
  text-decoration: none;
  background: #eaff00;
  color: rgb(187, 7, 7);
  padding: 10px 16px;
  border-radius: 6px;
  display: inline-block;
  font-size: 14px;
transition: 0.3s;
}

.step-card a:hover {
  background: #10c443;
}

.freelancer-toolkit {
  background: #c5ce10;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.freelancer-toolkit .container {
  max-width: 1100px;
  margin: auto;
}

.section-heading {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.toolkit-card {
  background: rgb(4, 114, 141);
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease;
}

.toolkit-card:hover {
  transform: translateY(-5px);
}

.toolkit-card h3 {
  color: #007bff;
  font-size: 20px;
  margin-bottom: 10px;
}

.toolkit-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}
.toolkit-card a {
  display: block;
  padding: 10px 14px;
  margin-top: 8px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s ease;
}

.toolkit-card a.ai-hack {
  background: #28a745;
}

.toolkit-card a:hover {
  background: #0056b3;
}

.paying-ai-tools {
  background: #f59c4e;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.paying-ai-tools .container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.tools-flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.tool-card {
  background: rgb(15, 136, 50);
  width: 280px;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-8px);
}

.tool-card h3 {
  font-size: 18px;
  color: #007bff;
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.tool-card a {
  display: inline-block;
  padding: 10px 14px;
  background: #28a745;
  color: rgb(190, 6, 6);
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.tool-card a:hover {
  background: #1e7e34;
}

.resume-review-section {
  background: #bcc11d;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: auto;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.upload-box {
  background: #710794;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
 gap: 15px;
}

.upload-box input[type="file"] {
  border: 1px solid #803500;
  padding: 8px;
  border-radius: 6px;
  width: 60%;
}

.upload-box button {
  background-color: #007bff;
  color: rgb(188, 32, 160);
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.upload-box button:hover {
  background-color: #0056b3;
}

.file-name {
  margin-top: 5px;
  font-size: 14px;
  color: #333;
}
#resultBox {
  background: #e6ffec;
  border-left: 6px solid #28a745;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  display: none;
}

#resultBox ul {
  list-style: none;
  padding-left: 0;
}

#resultBox li {
  margin-bottom: 10px;
  font-size: 15px;
}

.tools-suggest {
  margin-top: 50px;
}

.tools-suggest h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.tools-grid a {
  text-decoration: none;
  font-size: 14px;
  color: #222;
  background: #e92828;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.tools-grid a:hover {
  transform: translateY(-4px);
}


.startup-idea-section {
  background: #42ba0677;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  color: #2c2c2c;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.generate-btn {
  background-color: #ff7a00;
  color: #c31313;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.generate-btn:hover {
  background-color: #e76600;
}

.idea-box {
  margin-top: 30px;
  background: #43ba0b;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.idea-box h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 10px;
}

.idea-box p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}

.idea-links a {
  display: inline-block;
  margin: 8px 10px;
  padding: 8px 16px;
  background: #04d3de;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
transition: all 0.3s ease;
}

.idea-links a:hover {
  background: #007bff;
  color: #ac0c0c;
}

.hidden {
  display: none;
}
.cover-letter-section {
  background: #0a07b3;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  color: #2c2c2c;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.form-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}

.form-box input, .form-box textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #9db014;
  font-size: 15px;
  font-family: inherit;
}

.form-box textarea {
  height: 100px;
  resize: vertical;
}

.form-box button {
  background-color: #007bff;
  color: rgb(204, 174, 64);
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.output-box {
  background: #40ad46;
  padding: 20px;
  border-left: 5px solid #231f00;
  border-radius: 10px;
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
}
.output-box textarea {
  width: 100%;
  height: 180px;
  padding: 12px;
  font-size: 15px;
  border: 1px solid #fc3434;
  border-radius: 8px;
  resize: vertical;
  margin-top: 10px;
  font-family: inherit;
}

.output-box button {
  margin-top: 12px;
  background-color: #28a745;
  color: #d03434;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.tools-suggest {
  margin-top: 40px;
}

.tools-suggest h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.tools-grid a {
  text-decoration: none;
  font-size: 14px;
  color: #222;
  background: #773c3c;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.tools-grid a:hover {
  transform: translateY(-4px);
}

.hidden {
  display: none;
}

.tool-finder-section {
  background: #cbbc12;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  color: #2c2c2c;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

#searchInput {
  width: 80%;
  max-width: 500px;
  padding: 12px;
  border: 1px solid #bdbd0b;
  font-size: 16px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.tool-card {
  background: #2aaa1e;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  width: 220px;
  text-align: left;
  text-decoration: none;
  color: #333;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: transform 0.3s;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-card img {
  width: 40px;
  height: 40px;
}
.tool-card h4 {
  font-size: 18px;
  margin: 0;
}

.tool-card p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #666;
}
.govt-prep-section {
  background: #b7187f;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  color: #2c2c2c;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.quiz-selector {
  margin-bottom: 30px;
}

.quiz-selector select, .quiz-selector button {
  padding: 12px;
  font-size: 16px;
  margin: 0 10px;
  border-radius: 8px;
  border: 1px solid #15afac;
}

.quiz-box {
  background: #b32525;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
}

.options-box button {
  margin: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  background: #007bff;
  color: #4fa107;
  cursor: pointer;
  transition: 0.3s;
}

.options-box button:hover {
  background: #0056b3;
}

.answer {
  font-size: 18px;
  margin-top: 15px;
}
.tools-suggest {
  margin-top: 40px;
}

.tools-suggest h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.tools-grid a {
  text-decoration: none;
  font-size: 14px;
  color: #222;
  background: #a48f08;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}
.tools-grid a:hover {
  transform: translateY(-4px);
}

.hidden {
  display: none;
}

.student-ai-section {
  background: #2974a6;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  color: #2b2b2b;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.student-tool-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.tool-card {
  background: #cb0909;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 25px 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-card img {
  width: 48px;
  height: 48px;
}

.tool-card h3 {
  margin-top: 10px;
  font-size: 18px;
  color: #222;
}

.tool-card p {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
}
.badge {
  background-color: #39b9e4;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 12px;
  display: inline-block;
  margin-top: 6px;
}

.tool-card a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  background-color: #007bff;
  color: rgb(15, 104, 14);
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.tool-card a:hover {
  background-color: #0056b3;
}


.yt-ideas-section {
  background: #90550e;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  color: #2b2b2b;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 35px;
}

.yt-idea-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.idea-card {
  background: #c70c0c;
  padding: 25px;
  border-radius: 14px;
  width: 270px;
  text-align: left;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s;
}

.idea-card:hover {
  transform: translateY(-6px);
}

.idea-card h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 8px;
}

.idea-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.idea-card a {
  display: inline-block;
  margin: 6px 6px 0 0;
  padding: 8px 12px;
  background-color: #007bff;
  color: rgb(178, 25, 25);
  border-radius: 6px;
 font-size: 13px;
  text-decoration: none;
}

.idea-card a:hover {
  background-color: #0056b3;
}

.ai-roadmap-section {
  background: #0b529a;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #222;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.download-btn {
  display: inline-block;
  margin-bottom: 30px;
  background-color: #007bff;
  color: #ac1010;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
}

.download-btn:hover {
  background-color: #0056b3;
}

.roadmap-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.day-card {
  background: #5e0808;
  border-left: 6px solid #007bff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  width: 260px;
  text-align: left;
}

.day-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #333;
}

.day-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}
.day-card a {
  display: inline-block;
  font-size: 13px;
  color: #b71e98;
  text-decoration: none;
  font-weight: 500;
}

.day-card a:hover {
  text-decoration: underline;
}


.chatbot-builder-section {
  background: #ddb71f;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  color: #2b2b2b;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.chatbot-builder {
  max-width: 600px;
  margin: auto;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.bot-settings input {
  width: 48%;
  padding: 10px;
  margin: 6px 1%;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.bot-settings button {
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #26ff00;
  color: rgb(163, 4, 4);
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.chat-box {
  background: #f1f1f1;
  margin: 20px 0;
  padding: 15px;
  border-radius: 10px;
  height: 220px;
  overflow-y: auto;
  text-align: left;
}
.message {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  max-width: 80%;
}

.message.bot {
  background-color: #e1f5fe;
  color: #66b939;
}

.message.user {
  background-color: #dcedc8;
  margin-left: auto;
  color: #33691e;
}

.chat-input {
  display: flex;
  gap: 10px;
}

.chat-input input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.chat-input button {
  padding: 10px 18px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.tool-links {
  margin-top: 30px;
}

.tool-links h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tool-links a {
  display: inline-block;
  margin: 6px;
  padding: 8px 14px;
  background-color: #1da14e;
  color: rgb(181, 16, 16);
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.tool-links a:hover {
  background-color: #4527a0;
}


.college-projects-section {
  background-color: #4662d1;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.project-list {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.project-item {
  background: #92a437;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.project-item h3 {
  font-size: 18px;
  color: #333;
  margin: 0;
}

.project-item p.description {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.project-item a {
  color: #007bff;
  text-decoration: underline;
}

.hidden {
  display: none;
}
.internship-section {
  background-color: #d2c816;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.internship-section .section-title {
  font-size: 30px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.internship-section .section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.filter-bar {
  margin-bottom: 30px;
}

.filter-bar select {
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ad3c3c;
}

.internship-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.internship-card {
  background: #0e6ea2;
  padding: 20px;
  width: 270px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  text-align: left;
}

.internship-card h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 8px;
}

.internship-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}
.internship-card a {
  display: inline-block;
  padding: 8px 14px;
  background-color: #007bff;
  color: rgb(173, 61, 61);
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
}

.internship-card a:hover {
  background-color: #0056b3;
}

.ai-price-section {
  background: #e88c3c;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.filter-bar {
  margin-bottom: 30px;
}

.filter-bar select {
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.tool-card {
  background: #aa1010;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  padding: 20px;
  width: 260px;
  text-align: left;
  transition: all 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-5px);
}

.tool-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.tool-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.tool-card a {
  display: inline-block;
  padding: 8px 14px;
  background-color: #ff6600;
  color: rgb(239, 216, 237);
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.tool-card a:hover {
  background-color: #e65c00;
}

.compare-section {
  background: #2694b3;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.compare-section .section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.compare-section .section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.compare-card {
  background: rgb(7, 149, 162);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  padding: 25px;
  width: 280px;
  transition: 0.3s;
  text-align: left;
}

.compare-card:hover {
  transform: translateY(-5px);
}

.compare-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #007acc;
}

.compare-card ul {
  list-style: none;
  padding: 0;
}

.compare-card li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
}

.compare-card a {
  color: #007bff;
  text-decoration: underline;
  font-weight: 500;
}

.govt-exam-section {
  background: #07b30f;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.govt-exam-section .section-title {
  font-size: 30px;
  color: #2c3e50;
  font-weight: 700;
}

.govt-exam-section .section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.exam-action {
  margin-bottom: 25px;
}

.exam-action input[type="file"] {
  padding: 10px;
  border-radius: 6px;
  margin-right: 10px;
}

.exam-action button {
  background-color: #0066ff;
  color: rgb(158, 44, 44);
  padding: 10px 18px;
  border: none;
 border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.exam-action button:hover {
  background-color: #004cc0;
}

.exam-links {
  text-align: left;
  max-width: 600px;
  margin: 30px auto;
}

.exam-links h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.exam-links ul {
  list-style: none;
  padding-left: 0;
}

.exam-links li {
  margin-bottom: 8px;
  font-size: 14px;
}
.exam-links a {
  color: #007bff;
  text-decoration: underline;
}

#predictionResult {
  background: #2311c8;
  margin-top: 30px;
  padding: 20px;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.hidden {
  display: none;
}
.ai-job-section {
  background-color: #b02121;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.job-tool-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.job-tool-card {
  background-color: #bfb114;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  padding: 20px;
  width: 270px;
  text-align: left;
  transition: all 0.3s ease;
}

.job-tool-card:hover {
  transform: translateY(-5px);
}

.job-tool-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #d40000;
}

.job-tool-card p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}
.job-tool-card a {
  display: inline-block;
  padding: 8px 12px;
  background: #e63946;
  color: rgb(76, 51, 219);
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.job-tool-card a:hover {
  background: #ba2d36;
}
.ai-case-section {
  background: #e2df32;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.ai-case-section .section-title {
  font-size: 30px;
  font-weight: bold;
  color: #14532d;
  margin-bottom: 10px;
}

.ai-case-section .section-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 40px;
}

.case-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.case-card {
  background-color: #891717;
  padding: 25px;
  width: 300px;
  border-radius: 12px;
box-shadow: 0 10px 20px rgba(0,0,0,0.07);
  text-align: left;
  transition: 0.3s ease-in-out;
}

.case-card:hover {
  transform: translateY(-5px);
}

.case-card h3 {
  font-size: 18px;
  color: #065f46;
  margin-bottom: 12px;
}

.case-card p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.case-card a {
  display: inline-block;
  padding: 8px 14px;
  background: #16a34a;
  color: #f92a2a;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}
.case-card a:hover {
  background: #15803d;
}


.resume-builder-section {
  background: #37b4cd;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.resume-builder-section .section-title {
  font-size: 30px;
  color: #1a237e;
  font-weight: 700;
  margin-bottom: 10px;
}

.resume-builder-section .section-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.builder-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}
.builder-card {
  background-color: #e93d3d;
  padding: 22px;
  width: 260px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  text-align: left;
  transition: all 0.3s ease;
}

.builder-card:hover {
  transform: translateY(-6px);
}

.builder-card h3 {
  font-size: 18px;
  color: #0d47a1;
  margin-bottom: 10px;
}

.builder-card p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

.builder-card a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background: #1e88e5;
  color: #c7ad1b;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.builder-card a:hover {
  background: #1565c0;
}

.meme-generator-section {
  background: #0c97a9;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.meme-generator-section .section-title {
  font-size: 30px;
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
}

.meme-generator-section .section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.meme-generator-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.meme-generator-box input {
  padding: 10px;
  width: 300px;
  font-size: 15px;
  border: 1px solid #cd0d0d;
  border-radius: 6px;
}

.meme-generator-box button {
  padding: 10px 18px;
  background: #f39c12;
  color: rgb(0, 5, 55);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.meme-generator-box button:hover {
  background: #e67e22;
}

.meme-output {
  margin-top: 30px;
}

.meme-output img {
  max-width: 100%;
  max-height: 400px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.meme-output p {
  margin-top: 10px;
  font-size: 16px;
  color: #222;
}

.hidden {
  display: none;
}

.career-planner-section {
  background: #30ae0e;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.career-card {
  background: #d3d017;
  border-radius: 12px;
  padding: 20px 25px;
  text-align: left;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-5px);
}

.career-card h3 {
  font-size: 20px;
  color: #1f2937;
  margin-bottom: 15px;
  border-bottom: 1px solid #2cadb4;
  padding-bottom: 10px;
}

.career-card ul {
  list-style: none;
  padding-left: 0;
}

.career-card li {
  font-size: 15px;
  color: #333;
  padding: 8px 0;
  border-bottom: 1px dashed #d01111;
}

.career-card a {
  color: #0d6efd;
  text-decoration: none;
}


.career-card a:hover {
  text-decoration: underline;
}


.launchpad-section {
  background: #e1d119;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.tool-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 40px;
}
.tool-form input,
.tool-form textarea {
  padding: 12px;
  font-size: 15px;
  border: 1px solid #eb7207;
  border-radius: 8px;
  width: 100%;
  resize: vertical;
}

.tool-form button {
  background: #7c3aed;
  color: rgb(219, 137, 31);
  padding: 12px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.tool-form button:hover {
  background: #5b21b6;
}

.uploaded-tools {
  background: #83076a;
  padding: 25px;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.uploaded-tools h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.uploaded-tools ul {
  list-style: none;
  padding-left: 0;
}

.uploaded-tools li {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #d59004;
  font-size: 15px;
}

.uploaded-tools li a {
  color: #2563eb;
  text-decoration: none;
}

.uploaded-tools li a:hover {
  text-decoration: underline;
}
.site-footer {
  background-color: #0f172a;
  color: #f1f5f9;
  padding: 60px 20px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand h2 {
  font-size: 28px;
  color: #cdd70c;
}

.footer-brand h2 span {
  color: #38bdf8;
}

.footer-brand p {
  font-size: 14px;
  color: #bd9119;
  margin-top: 10px;
  max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #38bdf8;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #38bdf8;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}
.social-icons img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #334155;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 14px;
  color: #94a3b8;
}

/* ----------------------------------------
   📱 Responsive Design: Mobile (up to 600px)
------------------------------------------- */
@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }

  .navbar, .footer-section {
    flex-direction: column;
    text-align: center;
  }

  .product-card {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .banner-text h2 {
    font-size: 18px;
  }

  .slider img {
    height: 150px;
  }

  .section-title {
    font-size: 20px;
    text-align: center;
  }
}

/* ✅ Mobile Responsive Fix */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  .container, .section, .tool-section, .products, .row, .grid {
    width: 100% !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 10px !important;
    box-sizing: border-box;
  }

  .tool-card, .product, .box, .card {
    width: 95% !important;
    max-width: 400px;
    margin: 10px auto !important;
    box-sizing: border-box;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: auto;
  }
  h1, h2, h3, p {
    text-align: center !important;
    font-size: 1.2rem !important;
  }

  .btn, button {
    width: 100% !important;
    padding: 10px !important;
    font-size: 1rem !important;
    margin-top: 10px;
  }

  nav, header, footer {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  nav a {
    display: block !important;
    padding: 10px;
    width: 100%;
  }
}

