@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
:root {
  /* --primary-color: linear-gradient(135deg, #2563eb, #10b981);
  --primary-hover: linear-gradient(135deg, #1d4ed8, #059669); 
  --money-accent: linear-gradient(135deg, #f59e0b, #d97706); */
  
  /* --primary-color: linear-gradient(135deg, #4c7ae7, #2bb389);
  --primary-hover: linear-gradient(135deg, #3a66d1, #1e9d7e);
  --money-accent: linear-gradient(135deg, #e6a336, #d18d2b); */

  --primary-color: linear-gradient(135deg, #6c8eff, #48d0b0);
  --primary-hover: linear-gradient(135deg, #5b7cec, #3ab89c);
  --money-accent: linear-gradient(135deg, #ffb347, #ff8c00);

  --text-color: #1f2937;
  --text-light: #6b7280;
  --bg-color: #ffffff;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  background-color: #f9fafb;

}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background-color: var(--bg-color);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 50;
}

.navbar-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.navbar-logo:hover {
  background: linear-gradient(to right, #2563eb, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transform: scale(1.2);
}

.navbar-logo img {
  height: 5.5rem;
  margin-right: 0.75rem;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.navbar-link {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar-link:hover {
  color: var(--primary-color);
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background: var(--primary-color); /* Replace solid color with gradient */
  height: 3px; /* Slightly thicker for gradient visibility */
  transition: var(--transition);
}

.navbar-link:hover::after {
  width: 100%;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.dropdown-icon {
  font-size: 0.75rem;
  margin-left: 0.25rem;
  transition: var(--transition);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 0.75rem 0;
  background-color: var(--bg-color);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 10;
  background: linear-gradient(to bottom, #ffffff, #f0fdfa); /* White to light green */
  border-image: var(--primary-color);
  border-image-slice: 1;
  padding: 2rem 1rem 2rem 1rem;
  border-radius: 15px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1.5rem;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.dropdown-item:hover {
  color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.1);
}

.login-btn {
  padding: 0.75rem 1.5rem;
  font-size: 16px;
  background: var(--money-accent);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.login-btn:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  animation: pulse 1.5s infinite;
}

.hamburger {
  display: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  z-index: 10;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-color);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.close-btn {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  z-index: 50;
}

.close-btn:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}


@media (max-width: 768px) {
  .navbar-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background: linear-gradient(to bottom right, #ffffff, #f8fafc);
      background-color: var(--bg-color);
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      padding: 5rem 2rem;
      gap: 1.5rem;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
      z-index: 40;
  }

  .navbar-links.active {
      right: 0;
  }

  .dropdown {
      width: 100%;
  }

  .dropdown-toggle {
      padding: 0;
  }

  .dropdown-menu {
      position: static;
      box-shadow: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      padding: 0;
      display: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      width: 100%;
  }

  .dropdown.active .dropdown-menu {
      display: block;
      max-height: 500px;
      padding: 2rem 1rem 2rem 1rem;
      border-radius: 15px;
  }

  .dropdown.active .dropdown-icon {
      transform: rotate(180deg);
  }

  .hamburger {
      display: block;
  }

  .close-btn {
      display: block;
  }

  .navbar-link::after {
      display: none;
  }
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.text-gradient {
  background: linear-gradient(90deg, #5a8de8, #2bbd9a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-paragraph {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 0.5rem;
  max-width: 600px;
}

.hero-button {
  background: linear-gradient(90deg, #5a8de8, #2bbd9a);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.hero-button i {
  transition: transform 0.3s ease;
}

.hero-button:hover i {
  transform: translateX(3px);
}

.hero-video-container {
  width: 40%;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Video wrapper for responsive aspect ratio */
.hero-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

/* Make the iframe fill the wrapper */
.hero-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
} 

/* Testimonials */
/* .testimonials {
  flex: 1;
  position: relative;
}

.testimonial-carousel {
  position: relative;
  min-height: 300px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial.active {
  opacity: 1;
  z-index: 1;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 3px solid #e2e8f0;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: #1e293b;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #3b82f6;
  transform: scale(1.2);
}

/* Animations */
/* @keyframes slideIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-slide-in {
  animation: slideIn 0.8s ease-out forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: var(--delay);
}

.animate-pop-in {
  animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: 0.8s;
  opacity: 0;
} */

/* registration form */

.registration-form {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 1px 1px rgba(128, 128, 128, 0.158);
  max-width: 500px;
  width: 100%;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.form-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.form-footer a:hover {
  text-decoration: underline;
}


/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .registration-form {
    width: 100%;
    margin-top: 3rem;
  }

  .hero-video-container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Video wrapper for responsive aspect ratio */
  .hero-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }
  
  /* Make the iframe fill the wrapper */
  .hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
  } 
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .registration-form {
    padding: 1.5rem;
    margin-top: 0;
  }
  
}

/* Courses Section */
/* ===== Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
}

.courses {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: 
      radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 25%),
      radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 25%),
      #f8fafc;
  background-size: 200% 200%;
  animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 0% }
  50% { background-position: 100% 100% }
  100% { background-position: 0% 0% }
}

.container {
  position: relative;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 1;
}

.bg-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
      radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 15%),
      radial-gradient(circle at 85% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 15%);
  z-index: 0;
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
      linear-gradient(to right, rgba(203, 213, 225, 0.1) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(203, 213, 225, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(90deg, #3b82f6, #10b981);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
}

.course-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  border: 1px solid #e2e8f0;
  background: white;
  color: #64748b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(90deg, #3b82f6, #10b981);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

/* Carousel Styles */
.course-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  padding: 1rem 0;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.course-card {
  position: relative;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  z-index: 1;
  min-width: calc(100% - 2rem);
  flex: 0 0 calc(100% - 2rem);
  margin: 0 0.33rem;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .course-card {
      min-width: calc(50% - 2rem);
      flex: 0 0 calc(50% - 2rem);
    
  }
}

@media (min-width: 1024px) {
  .course-card {
      min-width: calc(35.3% - 2rem);
      flex: 0 0 calc(33.33% - 2rem);
  }
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.1);
}

.card-header {
  position: relative;
}

.course-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-thumbnail {
  transform: scale(1.03);
}

.difficulty-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.difficulty-badge.beginner {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.difficulty-badge.intermediate {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.difficulty-badge.advanced {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.difficulty-badge.job-oriented {
  background: linear-gradient(135deg, #ffa200, #ffb700);
}


.card-body {
  display: flex;
  padding: 1.5rem;
  flex-grow: 1;
  flex-direction: column;
  justify-content: center;
}

.course-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #1e293b;
  line-height: 1.4;
}

.course-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.course-meta {
  display: flex;
  gap: 1.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.course-meta i {
  margin-right: 0.3rem;
  font-size: 0.8rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}

.know-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  width: 80%;
  justify-content: center;
  margin: 0 auto;
}

.know-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.2);
}

.know-more-btn i {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.know-more-btn:hover i {
  transform: translateX(3px);
}

.carousel-btn {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #3b82f6;
  color: white;
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #3b82f6;
  transform: scale(1.2);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .courses {
      padding: 4rem 0;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .course-carousel {
      padding: 0 1.5rem;
  }
  
  .filter-btn {
      padding: 0.6rem 1.2rem;
      font-size: 0.85rem;
  }

  .course-card {
            min-width: calc(49%) !important;
            flex: 0 0 calc(50%) !important;

  }

  .carousel-btn {
      display: none;
  }

  .course-thumbnail {
      height: 180px;
  }

  .section-subtitle {
      max-width: 90%;
      font-size: 1rem;
  }

  .course-title {
      font-size: 1.1rem;
  }

  .course-description {
      font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .courses {
      padding: 3rem 0;
  }

.course-card{
                  min-width: calc(100% - 1rem) !important;
      flex: 0 0 calc(100% - 1rem) !important;
}

  .course-thumbnail {
      height: 150px;
  }

  .section-title {
      font-size: 1.75rem;
  }

  .section-subtitle {
      font-size: 0.9rem;
  }

  .filter-btn {
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
  }

  .course-meta {
      gap: 1rem;
      font-size: 0.8rem;
  }

  .know-more-btn {
      padding: 0.6rem 1.2rem;
      font-size: 0.85rem;
      margin: 0 auto;
  }

  .carousel-dot {
      width: 8px;
      height: 8px;
  }

  .card-footer {
      padding: 1rem;
  }

  .course-carousel {
      padding: 0 0.5rem;
  }
}
/* Acheivements  */

/* Base Styles */
.success-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Typography */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Reasons Grid - Optimized */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  padding: 2.5rem;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
}

.reason-card {
  text-align: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border-radius: 0.75rem;
}

.reason-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  color: #3b82f6;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.reason-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
  letter-spacing: -0.1px;
}

.reason-card p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Stats Container - Optimized */
.stats-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
}

.metrics-title,
.companies-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  color: #1e293b;
  position: relative;
  padding-bottom: 0.75rem;
}

.metrics-title::after,
.companies-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #3b82f6;
  border-radius: 3px;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.metric-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.metric-item {
  margin-bottom: 0;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: #4D55CC;
  margin-bottom: 0.25rem;
  letter-spacing: -0.5px;
  font-feature-settings: 'tnum';
}

.metric-label {
  font-size: 0.95rem;
  color: #64748b;
  letter-spacing: 0.2px;
}

/* Companies Grid */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.logos-grid img {
  max-width: 95%;
  height: auto;
}

.logos-grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Background Elements */
.bg-blur-circle-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  z-index: 1;
}

.bg-blur-circle-2 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .logos-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

@media (max-width: 768px) {
  .success-section {
    padding: 4rem 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .reasons-grid,
  .stats-container {
    padding: 2rem;
  }
  
  .reason-icon {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }
  
  .metric-value {
    font-size: 1.75rem;
  }

  .logos-grid img {
    max-width: 95%;
    height: 2rem;
  }
}

@media (max-width: 640px) {
  /* Single column layout for both sections */
  .reasons-grid {
    grid-template-columns: 1fr;
    padding: 1.75rem;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .metric-value {
    font-size: 1.65rem;
  }
  
  .reason-card {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .success-section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .reasons-grid,
  .stats-container {
    padding: 1.5rem;
    border-radius: 1rem;
  }
  
  .reason-card h3 {
    font-size: 1.2rem;
  }
  
  .reason-icon {
    width: 60px;
    height: 60px;
  }
  
  .metric-value {
    font-size: 1.5rem;
  }
  
  .metrics-title,
  .companies-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 375px) {
  .reason-card {
    padding: 1rem;
  }
  
  .metric-value {
    font-size: 1.4rem;
  }
  
  .metric-label {
    font-size: 0.9rem;
  }
}


#contact-section{

    padding: 4rem 0 0 0;
}

.contact-container {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-icon {
  color: #2563eb;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-content h3 {
  color: #1f2937;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  letter-spacing: -0.3px;
}

.contact-content p {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  font-size: 1.2rem;
}

.contact-content a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;

}


/* video testimonials */
/* Base Styles */
.video-testimonials {
  position: relative;
  padding: 4rem 0;
  background: #f8fafc;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* ===== Section Header Styles ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1.5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  position: relative;
  text-align: center;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 1rem auto;
  line-height: 1.6;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Background Elements */
.bg-curve-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25"/><path fill="%23ffffff" d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5"/><path fill="%23ffffff" d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z"/></svg>');
  background-size: cover;
}

.bg-curve-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25"/><path fill="%23ffffff" d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5"/><path fill="%23ffffff" d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z"/></svg>');
  background-size: cover;
  transform: rotate(180deg);
}

.bg-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
}

/* Grid Layout */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Quote Column */
.quote-column {
  position: relative;
  z-index: 2;
}

.quote-card {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #3b82f6, #10b981);
}

.quote-mark {
  font-size: 5rem;
  color: #3b82f6;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -2rem;
}

blockquote p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #1e293b;
  margin-bottom: 2rem;
  font-weight: 500;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quote-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e2e8f0;
}

.quote-author strong {
  display: block;
  font-weight: 600;
  color: #1e293b;
}

.quote-author span {
  font-size: 0.9rem;
  color: #64748b;
}

/* Video Column */
.video-container {
  width: 80%;
  max-width: 800px;
  margin-left: auto;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-video {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  aspect-ratio: 16/9;
  border-radius: 1.5rem;
}

/* Button */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.view-all-btn i {
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .video-container {
    margin: 0 auto;
  }
  
  blockquote p {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .video-testimonials {
    padding: 3rem 0;
  }

  .video-container{
    width: 100%;
  }
  
  .quote-card {
    padding: 2rem;
  }
  
  .video-shape {
    transform: none;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}

/* Scroller Testimonials */
.scroller {
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  margin-top: 1rem;
}

.alumni{
  margin-top: 3.5rem;
  margin-bottom:1.5rem !important;
}

.scroller-inner {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 60s linear infinite;
  align-items: center;
}

@keyframes scroll {
  to {
      transform: translateX(calc(-50% - 15px));
  }
}

.scroller:hover .scroller-inner {
  animation-play-state: paused;
}

.testimonial-card {
  width: 300px;
  height: 120px;
  background: rgb(109 109 186 / 83%);
  border-radius: 15px;
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  align-content: center;
  justify-items: flex-start;
  padding: 15px 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
      to bottom right,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0) 60%
  );
  transform: rotate(30deg);
  pointer-events: none;
}

.testimonial-card-img-div {
  position: relative;
  z-index: 1;
}

.testimonial-card-img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-card-img {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.6);
}

.testimonial-card-details {
  padding-left: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-card-details h2 {
  margin-top: 10px;
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-card-details img {
  width: 80%;
  max-width: 180px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-top: 10px;
  transition: all 0.3s ease;
}

testimonial-card:hover .card-details img {
  opacity: 1;
  transform: scale(1.02);
}

testimonial-card h1 {
  color: white;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.company-testimonial-card > .company-logo > img{
  width: 100%;
  max-height: 100px;
  max-width: 180px;
}

/* community section */

/* Community Section Styles */
/* Base Styles */

/* Base Styles */
/* body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
} */

/* Community Section Styles */
.community-section {
  position: relative;
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: white;
  text-align: center;
  padding: 100px 20px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  isolation: isolate;
}

.dotted-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
      radial-gradient(circle at 25% 25%, 
          rgba(255,255,255,0.2) 1px, 
          transparent 1px),
      radial-gradient(circle at 75% 75%, 
          rgba(255,255,255,0.2) 1px, 
          transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  opacity: 0.8;
}

.curve {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: inherit;
  z-index: -1;
  clip-path: ellipse(75% 100% at center top);
}

.top-curve {
  top: -50px;
  transform: rotate(180deg);
}

.bottom-curve {
  bottom: -50px;
}

.community-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.community-heading {
  font-size: 2.8rem;
  margin-bottom: 25px;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.community-description {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
  opacity: 0.9;
}

.telegram-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  padding: 18px 36px;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-top: 20px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.telegram-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.telegram-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 136, 204, 0.4);
}

.telegram-button:hover::before {
  left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .community-section {
      padding: 80px 20px;
  }
  
  .community-heading {
      font-size: 2rem;
  }
  
  .community-description {
      font-size: 1.1rem;
      margin-bottom: 30px;
  }
  
  .telegram-button {
      padding: 15px 30px;
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .community-heading {
      font-size: 1.8rem;
  }
  
  .community-description {
      font-size: 1rem;
  }
  
  .dotted-pattern {
      background-size: 30px 30px;
  }
}

/* footer styles */
/* Footer Specific Variables */
.nextrole-footer {
  --footer-bg: #121212;
  --footer-text: #ffffff;
  --footer-accent: #6e8efb;
  --footer-divider: rgba(255, 255, 255, 0.1);
  --footer-link-opacity: 0.7;
}

/* Footer Base Styles */
.nextrole-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 60px 5% 30px;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Footer Rows */
.nextrole-footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* Row 1 Styles */
.nextrole-footer .brand-column {
  flex: 1;
  min-width: 200px;
}

.nextrole-footer .brand-name {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: var(--footer-text);
  letter-spacing: -0.5px;
}

.nextrole-footer .social-column {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nextrole-footer .social-icons {
  display: flex;
  gap: 20px;
}

.nextrole-footer .social-icons a {
  color: var(--footer-text);
  font-size: 1.2rem;
  transition: color 0.3s ease;
  opacity: var(--footer-link-opacity);
}

.nextrole-footer .social-icons a:hover {
  color: var(--footer-accent);
  opacity: 1;
}

/* Row 2 Styles */
.nextrole-footer .footer-column {
  flex: 1;
  min-width: 150px;
  margin-bottom: 20px;
  padding-right: 20px;
}

.nextrole-footer .column-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  color: var(--footer-text);
}

.nextrole-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nextrole-footer .footer-links li {
  margin-bottom: 12px;
}

.nextrole-footer .footer-links a {
  color: rgba(255, 255, 255, var(--footer-link-opacity));
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nextrole-footer .footer-links a:hover {
  color: var(--footer-text);
}

/* Row 3 Styles */
.nextrole-footer .copyright-column {
  width: 100%;
  text-align: center;
}

.nextrole-footer .copyright-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

/* Divider */
.nextrole-footer .footer-divider {
  border: none;
  height: 1px;
  background-color: var(--footer-divider);
  margin: 30px 0;
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nextrole-footer .footer-row {
      flex-direction: column;
  }
  
  .nextrole-footer .social-column {
      justify-content: flex-start;
      margin-top: 20px;
  }
  
  .nextrole-footer .footer-column {
      min-width: 100%;
      padding-right: 0;
      margin-bottom: 30px;
  }
  
  .nextrole-footer .column-heading {
      margin-bottom: 15px;
  }
}


/* portfolio building */
      
.career-acceleration-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9faff 0%, #f0f3ff 100%);
  font-family: 'Inter', sans-serif;
  position:relative;
  overflow: hidden;
}


/* Background element */

/* Background element */
.section-bg-new-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, 
    rgba(99, 102, 241, 0.3) 0%, 
    transparent 15%);
  background-size: 40px 40px;
  opacity: 0.4;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { background-position: 0 0 }
  100% { background-position: 1000px 500px }
}

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

}

.section-header {
  font-family: 'Inter', sans-serif;
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  color: #6b7280;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.roadmap-container {
  position: relative;
  padding: 0 2rem;
}

.roadmap-progress-line {
  position: absolute;
  left: 50px;
  top: 50px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(to bottom, #6366f1 0%, #8b5cf6 30%, rgba(139, 92, 246, 0.2) 100%);
  z-index: 0;
}

.roadmap-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.roadmap-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  border: 2px solid #e5e7eb;
  transition: transform 0.3s ease;
}

.step-icon:hover {
  transform: scale(1.1);
}

.step-connector {
  flex: 1;
  width: 3px;
  background: #d1d5db;
  margin: 1rem 0;
}

.step-content {
  background: rgba(255,255,255,0.95);
  padding: 2rem 2rem 0.8rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-left: 4px solid #6366f1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.step-number {
  color: #8b5cf6;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-title {
  font-size: 1.4rem;
  margin: 0;
}

.step-subtitle {
  color: #6b7280;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-features li {
  padding: 0.7rem 1rem;
  margin: 0.5rem 0;
  background: rgba(245, 247, 255, 0.5);
  border-radius: 8px;
  position: relative;
  padding-left: 2rem;
}

.step-features li::before {
  content: '▹';
  position: absolute;
  left: 0.8rem;
  color: #8b5cf6;
}

.progress-indicator {
  margin-top: 1.5rem;
  height: 6px;
  background: rgba(220, 220, 220, 0.3);
  border-radius: 3px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
  width: 0;
  transition: width 1s ease;
}

/* Hover Effects */
.roadmap-step:hover .step-content {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.15);
}

.roadmap-step:hover .step-features,
.roadmap-step:hover .progress-indicator {
  max-height: 500px;
  opacity: 1;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .roadmap-container {
      padding: 0 1rem;
  }

  .roadmap-step {
      grid-template-columns: 1fr;
      margin: 2rem 0;
  }

  .step-visual {
      display: none;
  }

  .roadmap-progress-line {
      display: none;
  }

  .step-content {
      padding: 1.5rem;
  }

  .step-title {
      font-size: 1.2rem;
  }

  .step-features,
  .progress-indicator {
      max-height: none;
      opacity: 1;
  }

  .roadmap-step:hover .step-content {
      transform: none;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
}


/* Hire Section CSS */
.hire-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
  overflow: hidden;
}

.abstract-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.gradient-circle {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, rgba(255,255,255,0) 70%);
  right: -300px;
  top: -200px;
}

.geometric-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.05'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.talent-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(255,255,255,0.95);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

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

.stat-icon {
  background: rgba(99,102,241,0.1);
  padding: 1rem;
  border-radius: 12px;
}

.stat-number {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #6b7280;
  font-size: 0.95rem;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 3rem;
  padding: 3rem 0;
  margin: 2rem 0;
  position: relative;
  z-index: 1;
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.company-testimonial-card{
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.company-scroller{
  padding: 0 !important;
}

.company-logo:hover {
  transform: scale(1.05);
}

.company-logo img {
  width: 100%;
  height: auto;
  max-width: 120px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.company-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.cta-container {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.cta-button {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(99,102,241,0.3);
}

@media (max-width: 768px) {
  .hire-section {
      padding: 4rem 0;
  }
  
  .talent-stats-grid {
      grid-template-columns: 1fr;
  }
  
  .company-grid {
      gap: 1.5rem;
      padding: 2rem 0;
  }
  
  .gradient-circle {
      display: none;
  }
}