/* Imports the 'Raleway' and 'inter' font from Google Fonts. */

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

/* Reset default browser styles and set box-sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Raleway font family for body tag or all elements. */
body {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
}

/* Add a primary color variable */
:root {
  --primary-color: #4e47ff;
}

/* Common Button styls */
.btn-primary {
  background-color: var(--primary-color);
  padding: 12px 36px;
  border-radius: 10px;
  border: 1px solid var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.5s ease;
}

.btn-primary:hover {
  background-color: #150df3;
  border: 1px solid #0800fc;
  color: rgb(213, 216, 240);
  scale: 1.05;
}

/* Custom styles start below */

/* Header Related Style */
.header {
  background-image: url(./images/Hero-bg.png);
}
.navbar {
  padding: 50px 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar h1 {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 34px;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
}

.banner {
  padding: 155px 0px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-content: center;
  align-items: center;
}

.banner h1 {
  font-size: 65px;
  font-weight: 700;
  text-align: center;
  color: #252432;
}

/* Main Section related Style */

.main {
  background-color: #f5f8ff;
  padding: 110px 150px;
  width: auto;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 110px;
}

/* Action section related styles */
.action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.action img {
  border-radius: 42px;
}

.text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
.text h1 {
  font-size: 42px;
  font-weight: 700;
  color: #252432;
}
.text p {
  font-size: 24px;
  line-height: 30px;
  color: rgba(37, 36, 50, 0.5);
}

/* Productive Users Section Related Styles */

.productive {
  padding: 50px 80px;
  border-radius: 24px;
  background: rgba(78, 71, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
.productive h1 {
  color: rgb(37, 36, 50);
  font-weight: 700;
  font-size: 38px;
  text-align: center;
}

.activity {
  display: flex;
  justify-content: space-around;
}

.activity-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.activity-text h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 80px;
  color: var(--primary-color);
}
.activity-text p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.5);
}

/* Users’ Feedback Section Related Styles */

.fb-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.fb-section h1 {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}

.feedback {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.fb-card {
  border: 1px solid rgb(242, 237, 237);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fb-text {
  font-family: "Inter", sans-serif;
  color: rgb(30, 30, 30);
}

.fb-text h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
.fb-text p {
  font-size: 16px;
}

.avater {
  display: flex;
  gap: 12px;
}

.avater img {
  size: 40px;
  border-radius: 50%;
}
.avater h4 {
  font-size: 14px;
  line-height: 1.6;
  color: rgb(117, 117, 117);
}
.avater p {
  font-size: 14px;
  color: rgba(179, 179, 179, 1);
}

/* Ready to focus better section related styles */
.focus {
  background-color: white;
  padding: 70px 150px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.focus h1 {
  font-size: 50px;
  font-weight: 700;
}

.focus p {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  color: rgba(0, 0, 0, 0.5);
}

.focus img {
  border-radius: 48px;
}

/* Let’s Get In Touch Section related styeles */
.get-in-touch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.left {
  flex: 1 1 50%;
}
.left h1 {
  font-size: 100px;
  font-weight: 700;
}
.right {
  flex: 1 1 50%;
}
.right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input label {
  font-weight: 500;
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

.input input,
.input textarea {
  font-weight: 500;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  padding: 20px 32px;
  border-radius: 10px;
  border: 1px solid rgb(214, 221, 237);
}
.input textarea {
  height: 100px;
}

/* Footer Related Styles */
.footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 100px 0px;
  justify-content: center;
  align-items: center;
  max-width: 520px;
  margin: 0 auto;
}

.footer h1 {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 100px;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
}
.footer p,
a {
  color: rgb(137, 135, 161);
  font-size: 16px;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.footer ul {
  display: flex;
  list-style-type: none;
  gap: 50px;
}
.footer a {
  text-decoration: none;
}
