@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --primary-Color: #4e47ff;
  --secondary-Color: #ffffff;
  --primary-font: 'Raleway', sans-serif;
  --secondary-font: 'Inter', sans-serif;
}

::selection {
  background-color: #393E46;
  color: #DDE6ED;
}

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

body {
  font-family: var(--primary-font);
  background-color: #f5f8ff;
}

/* ================= HEADER ================= */
header {
  background-image: url(Hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  width: 100%;
}

/* ================= NAVBAR ================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 105px;
}

nav h2 {
  color: var(--primary-Color);
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 34px;
}

nav .signupbutton {
  border: none;
  background-color: var(--primary-Color);
  border-radius: 8px;
  padding: 10px;
  color: var(--secondary-Color);
  width: 120px;
  cursor: pointer;
}

/* ================= SIGN UP BUTTON HOVER ================= */
nav .signupbutton {
  border: none;
  background-color: var(--primary-Color);
  border-radius: 8px;
  padding: 10px;
  color: var(--secondary-Color);
  width: 120px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

nav .signupbutton:hover {
  background-color: #ff5c8d; 
  color: #ffffff; 
  transform: scale(1.05); 
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); 
}

/* ================= BANNER ================= */
.banner h1 {
  text-align: center;
  margin-top: 150px;
  font-size: 50px;
}

.banner-txt {
  border: none;
  background-color: var(--primary-Color);
  border-radius: 8px;
  padding: 10px;
  color: var(--secondary-Color);
  display: block;
  margin: 20px auto 0 auto;
  cursor: pointer;
}

.banner-txt {
  border: none;
  background-color: var(--primary-Color);
  border-radius: 8px;
  padding: 10px;
  color: var(--secondary-Color);
  width: 120px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-txt:hover {
  background-color: #ff5c8d; 
  color: #ffffff; 
  transform: scale(1.05); 
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); 
}

/* ================= MAIN ================= */
main {
  max-width: 1140px;
  margin: 0 auto;
}

section {
  margin-top: 200px;
}

/* ================= ACTION SECTION ================= */
.action-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.action-texts h2 {
  font-size: 42px;
  font-weight: 800;
}

.action-texts p {
  font-size: 24px;
  margin-top: 20px;
  color: rgba(37, 36, 50, 0.5);
}

.action-texts button {
  border: none;
  background-color: var(--primary-Color);
  border-radius: 8px;
  margin-top: 20px;
  padding: 10px;
  color: var(--secondary-Color);
  cursor: pointer;
}

.action-container img {
  border-radius: 40px;
}

.action-texts button {
  border: none;
  background-color: var(--primary-Color);
  border-radius: 8px;
  padding: 10px;
  color: var(--secondary-Color);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.action-texts button:hover {
  background-color: #ff5c8d; 
  color: #ffffff; 
  transform: scale(1.05); 
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); 
}

/* ================= PRODUCTIVE USERS ================= */
.productive-user {
  background-color: rgba(78, 71, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.productive-user h2 {
  text-align: center;
  font-size: 38px;
  color: #252432;
}

/* Full Stats Section Hover */
.productive-user {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
  padding: 40px 20px;
  border-radius: 12px;
}

.productive-user:hover {
  background-color: rgba(78, 71, 255, 0.2); 
  transform: translateY(-10px) scale(1.02);  
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.stats-container {
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
}

.stat-number {
  font-size: 80px;
  color: var(--primary-Color);
  font-family: var(--secondary-font);
  font-weight: 800;
}

.stat-para {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.5);
  font-family: var(--secondary-font);
  text-align: center;
}



/* ================= REVIEWS ================= */
.main-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin: 40px;
}

.section-title {
  margin-bottom: 40px;
  font-size: 2.2em;
  font-weight: 600;
  text-align: center;
}

.reviews-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  max-width: 1050px;
  width: 100%;
}

.review-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  width: 320px;
  display: flex;
  flex-direction: column;
}

.stars-container {
  color: #ffd700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.review-card-title {
  font-size: 1.3em;
  font-weight: 600;
}

.review-card-text {
  font-size: 0.95em;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.reviewer-section {
  display: flex;
  align-items: center;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

/* ===== WHAT OUR USERS SAY CARD HOVER WITH COLOR =====*/
.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}

.review-card:nth-child(1):hover {
  background-color: #e0f7fa; 
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.review-card:nth-child(2):hover {
  background-color: #fff3e0; 
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.review-card:nth-child(3):hover {
  background-color: #fce4ec;
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ================= EXTRA SECTION ================= */
.extra-section-container {
  background-color: #fff;
  text-align: center;
  padding: 56px 50px 50px;
  border-radius: 20px;
}

.extra-section-container img {
  border-radius: 45px;
}

.extra h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

.extra p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 20px; 
}

.extra button {
  border: none;
  background-color: var(--primary-Color);
  border-radius: 8px;
  padding: 15px 30px; 
  color: var(--secondary-Color);
  cursor: pointer;
  margin-top: 20px; 
  margin-bottom: 20px; 
  font-size: 18px;
}

/* Get Started Free Button Hover */
.extra button {
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.extra button:hover {
  background-color: #ff5c8d;  
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


/* ================= CONTACT FORM ================= */

.container {
  display: flex;
  background-color: #f5f8ff;
  border-radius: 10px;
  max-width: 1200px;
  width: 100%;
}

.left-section {
  flex: 1;
  padding: 50px;
}

.left-section h1 {
  font-size: 3.5em;
  max-width: 400px;
}

.right-section {
  flex: 1;
  padding: 50px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.submit {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-Color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

/* Get in Touch Button Hover */
.submit {
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.submit:hover {
  background-color: #ff5c8d;  
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}


/* ================= FOOTER ================= */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
}

footer h2 {
    font-size: 60px;
    color: var(--primary-Color);
    font-weight: 800;
    margin-bottom: 15px;
}

footer p {
    font-size: 15px;
    color: #8987a1;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-nav ul {
    display: flex;
    justify-content: center; 
    align-items: center;     
    gap: 37px;               
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-nav li {
    list-style: none;
}

.footer-nav a {
    text-decoration: none;
    color: #8987a1;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

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


@media (max-width: 768px) {

  nav {
    margin: 0 20px;
    flex-direction: column;
    gap: 15px;
  }

  nav h2 {
    font-size: 26px;
  }

  nav .signupbutton {
    width: 100%;
    max-width: 180px;
  }

  header {
    min-height: 420px;     
    background-size: cover;
    background-position: center;
    padding: 30px 0;
  }

  .banner h1 {
    font-size: 32px;
    margin-top: 80px;
    padding: 0 15px;
    text-align: center;
  }

  .banner-txt {
    width: 120px;
    display: block;
    margin: 20px auto 0 auto;
    text-align: center;
  }

  .action-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .action-texts h2 {
    font-size: 30px;
  }

  .action-texts p {
    font-size: 16px;
  }

  .action-container img {
    width: 100%;
    height: 320px;        
    object-fit: cover;
    border-radius: 20px;
  }

  .stats-container {
    display: flex;
    flex-direction: column;   
    justify-content: center;  
    align-items: center;     
    gap: 25px;
    text-align: center;
    margin-top: 25px;
  }

  .stats-container > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-para {
    font-size: 18px;
    margin-top: 5px;
  }

  .review-card {
    width: 100%;
  }

  .reviewer-avatar {
    width: 45px;
    height: 45px;
    object-fit: cover;
  }

  .extra-section-container {
    padding: 30px 20px;
  }

  .extra h2 {
    font-size: 32px;
  }

  .extra-section-container img {
    width: 100%;
    height: 300px;            
    object-fit: cover;
    border-radius: 25px;
  }

  .container {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    padding: 25px;
  }

  .left-section h1 {
    font-size: 32px;
  }

  /* ================= FOOTER ================= */
  footer h2 {
    font-size: 36px;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 15px;
  }

}




