@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet');

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  scroll-padding-top: 5.5rem;
  scroll-behavior: smooth;
  box-sizing: border-box;
  background: rgb(134,124,255);
  background: linear-gradient(100deg, rgba(134,124,255,1) 0%, rgba(176,223,255,1) 38%, rgba(241,242,195,1) 77%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header {
  background-color: transparent;
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .logo {
  display: flex;
  align-items: center;
}

.header .logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  margin-left: 0.5rem;
}

.header nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.header nav a {
  text-decoration: none;
  color: cornflowerblue;
  font-size: 1rem;
}

.hero {
  background-color: transparent;
  padding: 3rem 1rem;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
}

.hero h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.diff {
  background: linear-gradient(90deg , rgb(250, 177, 210) 0%, rgba(255,255,217,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo img {
  max-width: 3rem;;
}

.hero .btn {
  margin-top: 2rem;
  background: linear-gradient(90deg, #a1c4fd, #c2e9fb);
  color: white;
  font-weight: bold;
  font-size: 1.25rem; /* Increase font size */
  padding: 1.25rem 2.5rem; /* Increase padding */
  border-radius: 2.5rem;
  text-decoration: none;
  display: inline-block;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

.hero .btn:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

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

.hero img {
  max-width: 100%;
  border-radius: 0.5rem;
}

.about {
  padding: 3rem 1rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
  text-align: left;
}

.about h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.about p {
  margin-top: 1rem;
  font-size: 1rem;
  color: gray;
  line-height: 1.6;
}

/* contact */
#contact {
  padding: 60px 20px;
  text-align: center; /* Center-align the text within the section */
}

#contact h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.contact-wrapper {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form {
  max-width: 600px;
  width: 100%;
}

.contact-form .row.first {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  padding-bottom: 40px;
}

.contact-form span {
  color: white;
  font-size: 14px;
  line-height: 2rem;
}

.contact-form ::placeholder {
  color: grey;
}

.contact-form input,
textarea {
  background: none;
  border-bottom: 1px solid grey;
  height: 2rem;
  color: grey;
  font-size: 0.95rem;
  width: 100%;
}

.contact-wrapper .btn button {
  width: 100%;
  height: 2rem;
  background-color: #bedeed;
  color: var(--dark-gray);
  margin-top: 40px;
  transition: 0.3s ease;
  font-weight: 300;
}

.contact-wrapper .btn button:hover {
  color: var(--dark-gray);
  background-color: #b7e7ff;
}


.footer {
  color: white;
  padding: 0.5rem 0;
  text-align: center;
}

.footer .social-links a {
  color: #cbd5e0;
  margin: 0 0.5rem;
  text-decoration: none;
}

.footer .social-links a:hover {
  color: white;
}
