/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Test Mode Banner */
.test-mode-banner {
  background: #ff6b6b;
  color: white;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
}

/* Navigation */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-icon {
  font-size: 20px;
  color: #0b5adb;
  cursor: pointer;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.logo span {
  font-weight: 700;
  font-size: 18px;
  color: #0b5adb;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-center a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-center a:hover {
  color: #0b5adb;
}

.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown span {
  color: #333;
  font-weight: 500;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}

.dropdown-content a {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #f8f9fa;
  color: #0b5adb;
}

.login-btn {
  background: #0b5adb;
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.login-btn:hover {
  background: #3730a3;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.deadline-banner {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 30px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #e0e7ff;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #e0e7ff;
  line-height: 1.7;
}

.btn-primary {
  background: linear-gradient(45deg, #0b5adb, #7c3aed);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(11, 90, 219, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #0b5adb;
  padding: 12px 25px;
  border: 2px solid #0b5adb;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: #0b5adb;
  color: white;
}

.hero-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.interest-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.interest-form input,
.interest-form select {
  padding: 15px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.interest-form input:focus,
.interest-form select:focus {
  outline: none;
  border-color: #0b5adb;
}

.phone-input {
  display: flex;
  gap: 10px;
}

.country-code {
  flex: 0 0 100px;
}

.phone-input input {
  flex: 1;
}

.btn-submit {
  background: linear-gradient(45deg, #0b5adb, #7c3aed);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

/* Program Features */
.program-features {
  padding: 60px 0;
  background: #f8fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h4 {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature h3 {
  color: #1f2937;
  font-size: 1.3rem;
  font-weight: 700;
}

/* Company Logos */
.company-logos {
  padding: 80px 0;
  background: white;
}

.company-logos h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f2937;
}

.logos-slider {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: scroll 20s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  height: 60px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.logo-item:hover img {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* About EMC */
.about-emc {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.about-emc h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1f2937;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.about-item {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.about-item:hover {
  transform: translateY(-10px);
}

.about-item .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #0b5adb, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
}

.about-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}

.about-item p {
  color: #6b7280;
  line-height: 1.7;
}

.enroll-btn-container {
  text-align: center;
}

/* Bootcamp Overview */
.bootcamp-overview {
  padding: 100px 0;
  background: white;
}

.bootcamp-overview h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1f2937;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.overview-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #f8fafc;
  border-radius: 15px;
  transition: all 0.3s;
}

.overview-item:hover {
  background: #e0e7ff;
  transform: translateX(10px);
}

.overview-item .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #0b5adb, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.overview-item p {
  font-weight: 600;
  color: #1f2937;
}

.overview-image {
  text-align: center;
}

.overview-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Curriculum */
.curriculum {
  padding: 100px 0;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
}

.curriculum h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
}

.modules {
  max-width: 800px;
  margin: 0 auto;
}

.module {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.module:hover {
  background: rgba(255, 255, 255, 0.15);
}

.module-header {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 20px;
}

.module-number {
  background: linear-gradient(45deg, #0b5adb, #7c3aed);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.module h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.module-content {
  padding: 0 30px 25px;
  color: #e5e7eb;
  line-height: 1.7;
  display: none;
}

.module.active .module-content {
  display: block;
}

/* Program Designer */
.program-designer {
  padding: 100px 0;
  background: white;
}

.program-designer h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1f2937;
}

.designer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.designer-info h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1f2937;
}

.designer-info h4 {
  font-size: 1.2rem;
  color: #0b5adb;
  font-weight: 600;
  margin-bottom: 25px;
}

.designer-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 30px;
}

.achievements {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.achievements img {
  height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.achievements img:hover {
  opacity: 1;
}

.designer-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Tools Covered */
.tools-covered {
  padding: 100px 0;
  background: #f8fafc;
}

.tools-covered h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1f2937;
}

.tools-slider {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: scroll 25s linear infinite;
}

.tool-item {
  flex: 0 0 auto;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.tool-item:hover {
  transform: translateY(-5px);
}

.tool-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Student Reviews */
.student-reviews {
  padding: 100px 0;
  background: white;
}

.student-reviews h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1f2937;
}

.reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.review-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.reviewer-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 5px;
}

.reviewer-info p {
  color: #6b7280;
  font-size: 14px;
}

.review-card > p {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.company {
  color: #0b5adb;
  font-weight: 600;
  font-size: 14px;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  text-align: center;
  color: #1f2937;
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
}

/* Student Companies */
.student-companies {
  padding: 100px 0;
  background: #f8fafc;
}

.student-companies h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1f2937;
}

.companies-slider {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: scroll 20s linear infinite;
}

.company-logo img {
  height: 50px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.company-logo:hover img {
  opacity: 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #0b5adb;
  margin-bottom: 10px;
}

.stat p {
  color: #6b7280;
  font-weight: 600;
}

/* LinkedIn Activity */
.linkedin-activity {
  padding: 100px 0;
  background: white;
}

.linkedin-activity h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1f2937;
}

.linkedin-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.linkedin-post {
  background: #f8fafc;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.post-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.post-header h4 {
  font-weight: 700;
  color: #1f2937;
}

.post-header p {
  color: #6b7280;
  font-size: 14px;
}

.linkedin-post > p {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
}

.linkedin-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* Graduation Eligibility */
.graduation-eligibility {
  padding: 100px 0;
  background: #f8fafc;
  text-align: center;
}

.graduation-eligibility h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1f2937;
}

.graduation-eligibility p {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 50px;
}

.graduation-images {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.graduation-images img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.graduation-images img:hover {
  transform: scale(1.05);
}

/* Soft Skills */
.soft-skills {
  padding: 100px 0;
  background: white;
}

.soft-skills-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.skills-info h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1f2937;
}

.skills-info > p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 40px;
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.skill-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.skill-item p {
  color: #6b7280;
  line-height: 1.6;
}

/* Internship Program */
.internship-program {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.internship-program h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1f2937;
}

.internship-program > p {
  text-align: center;
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 60px;
}

.internship-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

.internship-info h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1f2937;
}

.internship-info p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.internship-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Program Highlights */
.program-highlights {
  padding: 100px 0;
  background: white;
  text-align: center;
}

.program-highlights h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1f2937;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.highlight {
  background: #f8fafc;
  padding: 25px 20px;
  border-radius: 15px;
  font-weight: 600;
  color: #1f2937;
  transition: all 0.3s;
}

.highlight:hover {
  background: #e0e7ff;
  transform: translateY(-3px);
}

/* Recognition */
.recognition {
  padding: 100px 0;
  background: #f8fafc;
  text-align: center;
}

.recognition h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: #1f2937;
}

.recognition p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.awards-slider {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  animation: scroll 15s linear infinite;
}

.award {
  background: white;
  padding: 30px 40px;
  border-radius: 15px;
  font-weight: 700;
  color: #0b5adb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

/* Journey Steps */
.journey-steps {
  padding: 100px 0;
  background: white;
}

.journey-steps h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1f2937;
}

.journey-steps > p {
  text-align: center;
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.step {
  background: #f8fafc;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-5px);
}

.step h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.step p {
  color: #6b7280;
  line-height: 1.7;
}

/* Intern Testimonials */
.intern-testimonials {
  padding: 100px 0;
  background: #f8fafc;
}

.intern-testimonials h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1f2937;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.testimonial:hover {
  transform: translateY(-5px);
}

.testimonial p {
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.author {
  color: #0b5adb;
  font-weight: 700;
  text-align: right;
}

/* Certification */
.certification {
  padding: 100px 0;
  background: white;
}

.certification h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #1f2937;
}

.certification > p {
  text-align: center;
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.certification-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.certificate-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.price-original {
  font-size: 1.2rem;
  color: #6b7280;
  text-decoration: line-through;
  margin-bottom: 10px;
}

.price-discounted {
  font-size: 3rem;
  font-weight: 800;
  color: #0b5adb;
  margin-bottom: 10px;
}

.price-note {
  color: #6b7280;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 8px 0;
  color: #374151;
  position: relative;
  padding-left: 25px;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.pricing-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* How Program Works */
.how-program-works {
  padding: 100px 0;
  background: #f8fafc;
}

.how-program-works h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1f2937;
}

.program-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.program-step {
  background: white;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  color: #1f2937;
  position: relative;
  padding-left: 60px;
}

.program-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #0b5adb, #7c3aed);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.program-steps {
  counter-reset: step-counter;
}

/* Community Section */
.community-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0b5adb, #7c3aed);
  text-align: center;
  color: white;
}

.community-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.community-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ */
.faq {
  padding: 100px 0;
  background: white;
}

.faq h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1f2937;
}

.faq-items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 20px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #0b5adb;
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
}

.faq-question i {
  color: #6b7280;
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 25px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1f2937, #374151);
  text-align: center;
}

.btn-large {
  font-size: 1.2rem;
  padding: 20px 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-center {
    display: none;
  }

  .designer-content {
    grid-template-columns: 1fr;
  }

  .internship-content {
    grid-template-columns: 1fr;
  }

  .soft-skills-content {
    grid-template-columns: 1fr;
  }

  .certification-content {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .reviews-slider {
    grid-template-columns: 1fr;
  }

  .linkedin-posts {
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .about-emc h2,
  .bootcamp-overview h2,
  .curriculum h2,
  .program-designer h2,
  .tools-covered h2,
  .student-reviews h2,
  .student-companies h2,
  .linkedin-activity h2,
  .graduation-eligibility h2,
  .internship-program h2,
  .program-highlights h2,
  .recognition h2,
  .journey-steps h2,
  .intern-testimonials h2,
  .certification h2,
  .how-program-works h2,
  .community-section h2,
  .faq h2 {
    font-size: 2rem;
  }

  .company-logos h2 {
    font-size: 1.8rem;
  }

  .hero-form {
    padding: 30px 20px;
  }

  .about-item,
  .review-card,
  .linkedin-post,
  .testimonial,
  .step {
    padding: 25px 20px;
  }
}
