:root {
  --primary: #4F46E5;
  --accent: #06B6D4;
  --bg: #F9FAFB;
  --text-main: #111827;
  --text-secondary: #6B7280;
}
*, html{
    padding: 0;
    margin: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}
.padding-left {
  padding-left: 40px;
}
.padding-right {
  padding-right: 40px;
}


/*  NAVBAR BASE */
.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* LOGO */
.logo {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #4F46E5;
}

/*  NAV LINKS */
.nav-links {
  display: flex;
  gap: 80px;
  margin-right: 100px;
}

.nav-links a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  color: #111827;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
}

/* Hover effect */
.nav-links a:hover {
  color: #4F46E5;
}

/*  CTA BUTTON  */
.cta-btn {
  background-color: #4F46E5;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
  margin-left: 100px;
  
   transition: transform 0.2s ease-in-out;
}

.cta-btn:hover {
  background-color: #4338CA;
 
  transform: scale(1.05);
}
.hamburger {
  display: none;
}
.hamburger span {
  display: none;
  width: 25px;
  height: 3px;
  background-color: #111827;
  margin: 5px 0;
   transition: all 0.3s ease-in-out;
}


/*  HERO SECTION  */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 80px;
  background-color: #F9FAFB;
  gap: 40px;
}

/* HERO TEXT  */
.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 20px;
}

.hero-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #6B7280;
  margin-bottom: 30px;
  line-height: 1.6;
}

/*  hero BUTTON  */
.primary-btn {
  background-color: #4F46E5;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition:  0.3s ease-in-out;
}

.primary-btn:hover {
  background-color: #4338CA;
transform: scale(1.08);}


.features {
  padding: 60px 20px;
  text-align: center;
}

.features-container {

  display: flex;
  flex-direction: row;
  gap:54px;
  padding-top: 54px;
  margin: auto 0;
  justify-content: center;
  align-items: stretch;
  
}

.feature-card {
  background: white;
  padding: 72px 32px;
  border-radius: 12px;
  flex: 1;
  max-width: 320px;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}


.feature-card:hover {
  
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.icon {
  font-size: 30px;
  margin-bottom: 10px;
}





/* TESTIMONIAL SECTION */
.testimonials {
  padding: 80px 20px;
  text-align: center;
  background: #f8fafc;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #111827;
}

.testimonial-wrapper {
  position: relative;
  max-width: 700px;
  margin: auto;
  

}

.testimonial-container {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: 20px;
}
.testimonial-card {
  min-width: 100%;
  background: white;
  padding: 80px 10px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

.testimonial-card p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card h4 {
  color: #4F46E5;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4F46E5;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.3s;
  z-index: 1000;
}

.prev-btn:hover,
.next-btn:hover {
  background: #3730a3;
}

.prev-btn {
  left: -80px;
}

.next-btn {
  right: -80px;
}


footer{
    background-color:var(--bg);
    padding: 80px;
    

}
.footer-logo h3 {
  color:#4F46E5;
}
.footer-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}
.footer-links a , .footer-social a{
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: var(--text-main);
    
   

}
.footer-links a:hover , .footer-social a:hover{
    color: var(--primary);
}
.footer-social{
  display: flex;
  gap: 20px;
    
}
 .copyright{
    text-align: center;
    margin-top: 40px;
    color: var(--text-secondary);
    font-style: italic;
 }


/* Tablet */
@media (max-width: 767px) {
  .features-container {
    display: flex;
    flex-direction: column;
  }
  

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background: white;
    align-items: center;
    justify-content: center;
    padding-bottom: 44px; 
    
  
    
    
    
  }
  .nav-links a {
        width:  100px;

  }
  
  .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
 
  .cta-btn {
    display: none;
    margin-left: 0;
    
  }
   .nav-links.open {
    display: flex;
  }

  .cta-btn.open {
    display: block;
    
  }



.hamburger , .hamburger span{
  display: block;
}
.hero {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin:  auto 0;
  padding: 80px 40px;

}
.hero-image{
  display: none;
}
.hero-text {
  width: 100%;
}

.hero-text h1 {
  font-size: 24px;
  
}

.hero-text p {
  
  font-size: 16px;
 
}
body{
  /* display: flex; */
  width: 100%;

}


.testimonials {
  padding: 60px 16px;
  
}



.testimonial-wrapper {
  position: relative;
  max-width: 320px;
  margin: auto;
}
  
.testimonial-viewport {
  overflow: hidden;
  border-radius: 20px;
}

.prev-btn {
  left: -48px;
}

.next-btn {
  right: -48px;
}





footer{
  padding: 40px;
  max-width: 100%;
}
.footer-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
.footer-social{
  gap: 12px;
}
}

@media (min-width: 768px) and (max-width: 1023px) {

  .navbar {
    padding: 20px 30px;
  }

  .nav-links {
    display: flex;
    gap: 30px;
    margin-right: 0;
  }

  .cta-btn {
    margin-left: 20px;
  }

  .hamburger {
    display: none;
  }

}


/* Desktop */
@media (min-width: 1024px) {
}