/* Reset & Theme Variables */
:root {
  --primary: #FF5A5F;
  --accent: #00A699;
  --dark: #484848;
  --light: #F5F5F5;
  --font-main: 'Poppins', sans-serif;
  --radius: 10px;
}

.vf-launcher-bubble {
  display: none !important;
}

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

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: var(--dark);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  top: 0;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--dark);
  width: 100%;
}

#logo-icon {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a {
  padding: 0.5rem 0;
  width: 100%;
  display: block;
}


.nav-links a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem;
  background-color: #FFF5F5;
  overflow: hidden;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  width: 100%;
  min-height: auto;

}

.hero-text {
  max-width: 48%;
  flex: 1 1;
  min-width: 300px;
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

.hero-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

#big-picture {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: 0;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  
}


.button-group {
  display: flex;
  gap: 1.25rem;
}

button {
  padding: 0.75rem 1.75rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
button:hover {
  transform: scale(1.05);
  background-color: var(--accent);
  transition: 0.3s ease;
}


#primary-button,
.primary-button {
  background-color: var(--primary);
  color: #fff;
}

#secondary-button,
.secondary-button {
  background-color: var(--accent);
  color: #fff;
}

button:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

.hero-image {
  max-width: 45%;
  text-align: center;
}

#big-picture {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Features Section */
.features {
  padding: 5rem 4rem;
  background-color: #ffffff;
  width: 100%;
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
  color: var(--primary);
}

.features-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.feature-card {
  background-color: var(--light);
  padding: 2rem;
  border-radius: var(--radius);
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.03);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.feature-card p {
  color: var(--dark);
}

/* Testimonial Section */
.testimonial-section {
  padding: 5rem 4rem;
  background-color: #f9f9f9;
  text-align: center;
  width: 100%;
}

.testimonial-section h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Call to Action */
.cta-section {
  text-align: center;
  padding: 5rem 4rem;
  background-color: #ffffff;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

.client-area {
  background-color: var(--light);
  padding: 5rem 4rem;
  text-align: center;
}

.client-card {
  background-color: #fff;
  padding: 3rem;
  max-width: 500px;
  margin: 2rem auto;
  border-radius: var(--radius);
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.client-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.client-login,
.client-signup {
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: #fff;
  background-color: var(--primary);
  border-radius: var(--radius);
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.client-signup {
  background-color: var(--accent);
}

.client-login:hover,
.client-signup:hover {
  opacity: 0.9;
}



/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  background-color: var(--light);
  font-size: 0.875rem;
  color: var(--dark);
}
.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Mobile responsiveness */

/* Improved Responsive Design */
@media screen and (max-width: 1024px) {
  .navbar {
    flex-direction: column;
    padding: 1rem 2rem;
  }

@media screen and (max-width: 768px) {
  #big-picture {
    max-height: 250px;
  }
}

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .button-group {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-image {
    width: 100%;
    margin-top: 1.5rem;
    justify-content: center;
  }

  .hero-image img,
  #big-picture {
    max-width: 90%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
}

.carousel {
  position: relative;
  max-width: 700px;
  margin: 2rem auto;
  overflow: hidden;
  min-height: 150px;
}

.testimonial {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.4s ease;
  font-style: italic;
  font-size: 1.1rem;
  color: #555;
  padding: 1rem;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;

}

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



.carousel-buttons {
  text-align: center;
  margin-top: 1rem;
}

.carousel-track {
  position: relative;
  height: 180px;
  min-height: 160px;
}

.carousel-buttons button {
  background-color: var(--primary);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  transition: background-color 0.3s ease;
}

.carousel-buttons button:hover {
  background-color: var(--accent);
}

.footer-socials {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-socials a {
  color: var(--dark);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--primary);
}
