/* head section Css */

:root {
  --primary: #4f46e5;
  --primary-light: #7c73ff;
  --secondary: #1e1e80;
  --accent: #7ec3ff;
  --text: #e2e8f0;
  --text-light: #cbd5e1;
}

/*body {*/
/*  margin: 0;*/
/*  font-family: 'Inter', 'Segoe UI', sans-serif;*/
/*  color: white;*/
/*  line-height: 1.6;*/
/*  position: relative;*/
/*  overflow-x: hidden;*/
/*  background: linear-gradient(135deg, #1f1f79 0%, #3e1f95 100%);*/
/*}*/

/* Background Elements */
.bg-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(108, 92, 231, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(0, 206, 201, 0.15) 0%, transparent 25%);
  z-index: -1;
  animation: float 15s ease-in-out infinite alternate;
}

.particles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: float-particle 15s infinite linear;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -20px); }
  100% { transform: translate(20px, 20px); }
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}


.hero-container {
  width: 100%;
}

.hero-section {
    
  padding: 60px 20px;
  /*position: relative;*/
  /*z-index: 1;*/
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .text-column {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}

.text-column {
  flex: 1 1 500px;
}

.hero-description {
  font-size: 1.02rem;
  color: #c0c0c0;
  margin-bottom: 1.5rem;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.features li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero-buttons a {
    padding: 14px 13px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    gap: 18px;
  }
  .btn-primary {
    padding: 14px;
  }
  .btn-outline {
    padding: 14px;
  }
}

.btn {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.neon-pink {
  background: #ff3cac;
  box-shadow: 0 0 15px #ff3cac;
  color: #fff;
}

.neon-blue {
  background: #00ffff;
  box-shadow: 0 0 15px #00ffff;
  color: #000;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px currentColor;
}

.image-column {
  flex: 1 1 400px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-image {
  max-width: 100%;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.feature-card:hover {
  box-shadow: 0 0 20px #00ffffaa;
  transform: scale(1.03);
}

/* Slider section */

:root {
  --primary: #4f46e5;
  --primary-light: #6366f1;
  --secondary: #1e1e80;
  --accent: #7ec3ff;
  --text: #e2e8f0;
  --text-light: #cbd5e1;
  --dark: #0f172a;
  --gray: #94a3b8;
  --light-gray: #f1f5f9;
}

.slider-section {
  padding: 100px 20px;
  background-color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-title span {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.slider-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.slider-prev,
.slider-next {
  background: var(--light-gray);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--primary);
  color: white;
  font-weight: 700;
  transform: translateY(-2px);
}

.slider-prev svg,
.slider-next svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--light-gray);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.slider-track {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16/9;
  margin: 0 auto;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateX(100%);
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.slide.prev {
  transform: translateX(-100%);
}

.slide.next {
  transform: translateX(100%);
}

.slide-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(79, 70, 229, 0.8) 0%, rgba(79, 70, 229, 0.4) 70%, transparent 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.slide-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-bottom: 15px;
  max-width: 70%;
}

.slide-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: white;
}

.slide-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 70%;
}

.student-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.student-name {
  font-weight: 600;
  margin-bottom: 4px;
}

.student-role {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Auto-sliding animation */
@keyframes slideAnimation {
  0%, 100% {
    opacity: 0;
    transform: translateX(100%);
  }
  5%, 25% {
    opacity: 1;
    transform: translateX(0);
  }
  30% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

.slide {
  animation: slideAnimation 15s infinite;
}

.slide:nth-child(1) {
  animation-delay: 0s;
}

.slide:nth-child(2) {
  animation-delay: 5s;
}

.slide:nth-child(3) {
  animation-delay: 10s;
}

@media (max-width: 1024px) {
  .slider-track {
    aspect-ratio: 16/9;
  }
  
  .slide-content {
    padding: 30px;
  }
  
  .slide-content h3,
  .slide-content p {
    max-width: 80%;
  }
  
  .slide-content h3 {
    font-size: 1.8rem;
  }
  
  .slide-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .slider-section {
    padding: 60px 20px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .slide-content {
    padding: 25px;
  }
  
  .slide-content h3{
      max-width: 90%;
  }
  .slide-content p {
    /*max-width: 90%;*/
    display: none;
  }
  
  .slide-content h3 {
    font-size: 1.5rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .slider-track {
    aspect-ratio: 16/9;
  }
  
  .slide-content {
  padding: 5px 20px;
  }
  
  .slide-content h3{
       max-width: 100%;
  }
  .slide-content p ,
  .student-name,
  .student-role{
    max-width: 100%;
  display: none;
  }
  
  .slide-content h3 {
    font-size: 1.3rem;
    padding-bottom: 10px;
  }
  
  .slide-content h3::after {
    width: 60px;
    height: 2px;
  }
  
  .slide-content p {
    font-size: 0.9rem;
  }
  
  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
  }
}
/* trusted-companies start */
  :root {
    --dark-bg: #0f111a;
    --primary-accent: #6366f1;
    --secondary-accent: #a5b4fc;
    --text-light: #e5e7eb;
    --text-muted: #9ca3af;
    --card-bg: rgba(255, 255, 255, 0.03);
  }

  .trusted-companies {
    background-color:#f8fafc;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
  }

  .trusted-companies::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    z-index: 0;
  }

  .trusted-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .section-header {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
  }

  .section-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-accent);
    margin-bottom: 16px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding: 0 20px;
  }

  .glow-bar {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--primary-accent), transparent);
    margin: 0 auto;
    opacity: 0.5;
  }

  .company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    justify-items: center;
  }

  .company-card {
    /*background: var(--card-bg);*/
    background: #fff;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    width: 100%;
    max-width: 200px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
  }

  .company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(165, 180, 252, 0.2);
  }

  .company-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;

  }

  .company-card:hover .company-logo {
    transform: scale(1.1);
  }

  .company-logo svg {
    width: 100%;
    height: 100%;
  }
  
   @media (max-width: 480px) {
   .company-logo {
   width:40%;
}
  }

  .company-name {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    transition: color 0.3s ease;
  }

  .company-card:hover .company-name {
    /* color: var(--secondary-accent); */
  }

  @media (max-width: 1024px) {
    .company-grid {
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .trusted-companies {
      padding: 80px 20px;
    }
    
    .company-grid {
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 15px;
    }
    
    .company-card {
      padding: 25px 15px;
    }
  }

  @media (max-width: 480px) {
    .company-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .section-header {
      margin-bottom: 40px;
    }
  }


/* trusted-companies end */


.mission-section {
  padding: 100px 20px;
  background-color: #f8fafc;
  position: relative;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  flex-direction: row-reverse;
}

.mission-image {
  flex: 1;
  min-width: 300px;
  height: 525px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.7) 0%, rgba(126, 195, 255, 0.5) 100%);
}

.mission-content {
  flex: 1;
  min-width: 300px;
  justify-content: center;
  align-items: center;
}

.mission-content h2 {
  font-size: clamp(3rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--dark);
   text-align: center;
}

.mission-content h2 span {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
 
}

.mission-content p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
}
.mission-content ul li{
  color: var(--gray);

}

.values-grid {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));*/
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 10px;
}

.value-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 28px;
  margin-bottom: 15px;
  color: #8b5cf6;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .mission-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .mission-section {
    padding: 60px 20px;
  }
  
  .mission-image {
    height: 400px;
  }
}




.values-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.value-card2 {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 300px;
  
}

.value-card2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon2 {
  font-size: 28px;
  margin-bottom: 15px;
  /* color: ; */
  color:  var(--purple);
  
}

.value-card2 h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--dark);
   display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

}

.value-card2 p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
  /* line-height: 1.5; */
   display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}




/* Mission section end*/



.faq-section {
  padding: 100px 20px;
  background-color: white;
}
.faq-section1 {
  /* padding: px 20px; */
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  background: white;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8fafc;
}

.faq-item.active .faq-answer {
  padding: 20px 25px;
  max-height: 300px;
}

.faq-answer p {
  color: #3c3c3c;
  line-height: 1.6;
}

.faq-cta {
  text-align: center;
  margin-top: 60px;
}

.faq-cta p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.cta-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }
}
/* faq-section end */

.custom-css{
  display: flex;
  flex-direction: column;
   justify-content: end;
}


/* why-equiprobotech start */
  :root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --secondary: #1e40af;
    --dark: #0f172a;
    --gray: #475569;
    --light-gray: #f1f5f9;
    --white: #ffffff;
  }

  .why-equiprobotech {
    background-color: #f8fafc;
    padding: 20px 20px;
    position: relative;
    overflow: hidden;
  }

  .why-equiprobotech::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
    z-index: 0;
  }

  .section-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .section-header {
    margin-bottom: 80px;
    text-align: center;
  }

  .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }

  .section-title span {
    color: var(--dark);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
  }

  .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
  }

  .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, transparent 100%);
    z-index: -1;
  }

  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
  }

  .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }

  .feature-card:hover .card-bg {
    opacity: 0.05;
  }

  .card-content {
    padding: 30px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    transition: all 0.3s ease;
  }

  .feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
  }

  .feature-icon svg {
    width: 24px;
    height: 24px;
  }

  .feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 15px;
    color: var(--dark);
    transition: color 0.3s ease;
  }

  .feature-card:hover .feature-title {
    color: var(--primary);
  }

  .feature-desc {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.3s ease;
  }

  .feature-card:hover .feature-desc {
    color: var(--dark);
  }

  .feature-hover-content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }

  .feature-card:hover .feature-hover-content {
    height: 24px;
  }

  .feature-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
  }

  .feature-link svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .feature-link:hover {
    color: var(--secondary);
  }

  .feature-link:hover svg {
    transform: translateX(4px);
  }

  @media (max-width: 768px) {
    .why-equiprobotech {
      padding: 60px 20px;
    }
    
    .section-header {
      margin-bottom: 50px;
    }
    
    .features-grid {
      grid-template-columns: 1fr;
    }
  }

/* why-equiprobotech end */



/* learning-paths-section start */

  :root {
    --blue: #3b82f6;
    --purple: #8b5cf6;
    --green: #10b981;
    --red: #ef4444;
    --orange: #f97316;
    --dark: #111827;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
  }

  .learning-paths-section {
    width: 100%;
    padding: 100px 20px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
  }

  .learning-paths-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    z-index: 0;
  }

  .learning-paths-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
#cus{
    color: #FFF;
}
  .section-header {
    margin-bottom: 60px;
    text-align: center;
  }

  .section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    color:#0f172a;
    line-height: 1.2;
  }

  .section-header h2 span {
    background: linear-gradient(90deg, var(--blue), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .learning-paths-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
  }

  .lp-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
  }

  .lp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    opacity: 0.1;
    z-index: 0;
  }

  .blue .card-bg { background-color: var(--blue); }
  .purple .card-bg { background-color: var(--purple); }
  .green .card-bg { background-color: var(--green); }
  .red .card-bg { background-color: var(--red); }
  .orange .card-bg { background-color: var(--orange); }

  .card-content {
    padding: 30px;
    position: relative;
    z-index: 1;
  }

  .icon-container {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
  }

  .blue .icon-container { background-color: rgba(59, 130, 246, 0.1); color: var(--blue); }
  .purple .icon-container { background-color: rgba(139, 92, 246, 0.1); color: var(--purple); }
  .green .icon-container { background-color: rgba(16, 185, 129, 0.1); color: var(--green); }
  .red .icon-container { background-color: rgba(239, 68, 68, 0.1); color: var(--red); }
  .orange .icon-container { background-color: rgba(249, 115, 22, 0.1); color: var(--orange); }

  .lp-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--dark);
  }

  .lp-card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .meta span {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    background-color: var(--light-gray);
    color: var(--gray);
  }

  .view-path {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
  }

  .view-path svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }

  .view-path:hover {
    color: var(--blue);
  }

  .view-path:hover svg {
    transform: translateX(4px);
  }

  .blue .view-path:hover { color: var(--blue); }
  .purple .view-path:hover { color: var(--purple); }
  .green .view-path:hover { color: var(--green); }
  .red .view-path:hover { color: var(--red); }
  .orange .view-path:hover { color: var(--orange); }

  .view-all-btn {
    background: linear-gradient(90deg, var(--blue), var(--purple));
    color: white;
    padding: 16px 32px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  }

  .view-all-btn svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
  }

  .view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  }

  .view-all-btn:hover svg {
    transform: translateX(4px);
  }

  @media (max-width: 768px) {
    .learning-paths-section {
      padding: 60px 20px;
    }
    
    .learning-paths-cards {
      grid-template-columns: 1fr;
    }
  }

/* learning-paths-section End */


/* newsletter-section start */

  :root {
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --secondary: #312e81;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #94a3b8;
    --dark-blue: #1e1b4b;
  }

  .newsletter-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--secondary) 100%);
    color: var(--light);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
  }

  .newsletter-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    z-index: 0;
    animation: pulse 15s infinite alternate;
  }

  .newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .newsletter-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--light);
  }

  .section-title span {
    background: linear-gradient(90deg, #a5b4fc, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
  }

  .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .form-group {
    position: relative;
    flex: 1;
    min-width: 280px;
  }

  .newsletter-form input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .newsletter-form input::placeholder {
    color: var(--gray);
  }

  .newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(165, 180, 252, 0.3);
  }

  .email-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    width: 20px;
    height: 20px;
  }

  .subscribe-btn {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
  }

  .subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
  }

  .subscribe-btn:active {
    transform: translateY(0);
  }

  .subscribe-btn svg {
    transition: transform 0.3s ease;
  }

  .subscribe-btn:hover svg {
    transform: translateX(4px);
  }

  .newsletter-privacy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 20px;
  }

  .newsletter-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
  }

  .stat-box {
    text-align: center;
  }

  .stat-value {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.5;
    }
    100% {
      transform: scale(1.2);
      opacity: 0.2;
    }
  }

  @media (max-width: 768px) {
    .newsletter-section {
      padding: 80px 20px;
    }
    
    .newsletter-form {
      flex-direction: column;
    }
    
    .form-group {
      min-width: 100%;
    }
    
    .subscribe-btn {
      width: 100%;
    }
    
    .newsletter-stats {
      gap: 30px;
      margin-top: 40px;
    }
  }

  @media (max-width: 480px) {
    .newsletter-stats {
      gap: 20px;
    }
  }

/* newsletter-section end */




/* cta-section start */

  :root {
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #4338ca;
    --secondary: #312e81;
    --text-dark: #0f172a;
    --text-light: #f8fafc;
    --accent: #a5b4fc;
  }

  .cta-section {
    width: 100%;
    padding: 100px 20px;
    /* background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%); */
    background: #FFF;
    position: relative;
    overflow: hidden;
  }

  .cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgb(0 0 0 / 10%);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }

  .cta-text {
    flex: 1;
    max-width: 700px;
  }

  .cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-dark);
  }

  .cta-title span {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
  }

  .cta-button {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
    white-space: nowrap;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
  }

  .cta-button:active {
    transform: translateY(0);
  }

  .cta-button svg {
    transition: transform 0.3s ease;
  }

  .cta-button:hover svg {
    transform: translateX(4px);
  }

  .cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .decoration-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(165, 180, 252, 0.15) 0%, transparent 70%);
  }

  .decoration-dots {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(79, 70, 229, 0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
  }

  @media (max-width: 1024px) {
    .cta-container {
      padding: 50px 40px;
    }
    
    .cta-content {
      gap: 30px;
    }
  }

  @media (max-width: 768px) {
    .cta-section {
      padding: 60px 20px;
    }
    
    .cta-container {
      padding: 40px 30px;
    }
    
    .cta-content {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }
    
    .cta-button {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .cta-container {
      padding: 40px 20px;
    }
  }

/* cta-section end */


    /* Interactive Gallery */
    .gallery-section {
      padding:100px 20px;
      background: #fff;
    }

    .gallery-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(4, 150px);
      gap: 20px;
    }

    .gallery-item {
      border-radius: 15px;
      overflow: hidden;
      position: relative;
      transition: all 0.3s ease;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .gallery-item:hover {
      transform: scale(1.03);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-item:nth-child(1) {
      grid-column: span 6;
      grid-row: span 3;
    }

    .gallery-item:nth-child(2) {
      grid-column: span 3;
      grid-row: span 2;
    }

    .gallery-item:nth-child(3) {
      grid-column: span 3;
      grid-row: span 2;
    }

    .gallery-item:nth-child(4) {
      grid-column: span 6;
      grid-row: span 3;
    }

    .gallery-item:nth-child(5) {
      grid-column: span 3;
      grid-row: span 2;
    }

    .gallery-item:nth-child(6) {
      grid-column: span 3;
      grid-row: span 2;
    }

    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 20px;
      background: linear-gradient(360deg, rgba(139, 92, 246, 1), rgba(139, 92, 246, 0));



      
      color: white;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }

    .gallery-item:hover .gallery-caption {
      transform: translateY(0);
    }



/* Mobile styles - transforms to slider */
@media (max-width: 768px) {
  .gallery-section {
    padding: 40px 0;
  }
  
  .gallery-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
    grid-template-columns: unset;
    grid-template-rows: unset;
    gap: 10px;
    padding: 0 20px 20px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }
  
  .gallery-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
  }
  
  .gallery-item {
    flex: 0 0 85%;
    scroll-snap-align: start;
    height: 300px;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-item:last-child {
    margin-right: 0;
  }
  
  /* Reset all grid positioning for mobile */
  .gallery-item:nth-child(n) {
    grid-column: unset;
    grid-row: unset;
  }
  
  .gallery-caption {
    transform: translateY(0);
    padding: 15px;
    background: linear-gradient(360deg, rgba(139, 92, 246, 0.9), rgba(139, 92, 246, 0.5));
  }
  
  /* Optional: Add navigation dots */
  .gallery-nav {
    display: flex;
    justify-content: center;
    padding: 15px 0;
  }
  
  .gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .gallery-dot.active {
    background: rgba(139, 92, 246, 1);
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .gallery-item {
    flex: 0 0 90%;
    height: 250px;
  }
  
  .gallery-caption {
    padding: 10px;
    font-size: 14px;
  }
}


