/* Google fonts added using @import */
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/*  font-family: "Work Sans", serif; */

* {
  margin: 0;
  padding: 0;
}

/* Banner Section Style added */
#banner {
  background-color: antiquewhite;
  height: 615px;
  background-image: linear-gradient(
      00deg,
      rgb(16, 16, 16) -19.5%,
      rgba(16, 16, 16, 0) 100%
    ),
    url(../assets/images/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#banner .banner-content {
  width: 685px;
}

#banner .banner-content .subtitle {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0%;
  margin-bottom: 10px;
  text-align: center;
  font-family: Work Sans;
  opacity: 0.8;
}

#banner .banner-content .title {
  color: rgb(255, 255, 255);
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
  letter-spacing: 0%;
  margin-bottom: 14px;
  text-align: center;
  font-family: Work Sans;
}

#banner .banner-content .description {
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0%;
  margin-bottom: 24px;
  text-align: center;
  font-family: Work Sans;
  opacity: 0.7;
}

/* Button Style added */

.btn {
  padding: 16px 20px 16px 20px;
  background: rgb(82, 195, 3);
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  border: none;
  border-radius: 8px;
  letter-spacing: 0%;
  text-align: center;
  font-family: Work Sans;
  cursor: pointer;
}

.btn-container {
  text-align: center;
}

/* Card Box Section Style added */

/* Card Box info/title Style added */
#card-box {
  width: 1400px;
  margin: 100px auto;
}

#card-box .subtitle {
  font-size: 18px;
  text-align: center;
  line-height: 28px;
  font-weight: 500;
  font-family: Work Sans;
  letter-spacing: 0%;
  color: rgb(16, 16, 16);
  opacity: 0.6;
}

#card-box .title {
  font-size: 40px;
  text-align: center;
  line-height: 50px;
  font-weight: 600;
  font-family: Work Sans;
  letter-spacing: 0%;
  color: rgb(16, 16, 16);
  opacity: 0.6;
}

/* Card Container or Card Style added */

.card-container {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  font-family: Work Sans;
}

.card {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.card .card-image {
  width: 400px;
}

.card .card-image img {
  width: 100%;
}

.card .item-name {
  background: rgba(82, 195, 3, 0.15);
  padding: 14px 32px 14px 32px;
  border-radius: 8px;
  cursor: pointer;
}

.card p span {
  display: block;
  text-align: center;
}

/* card button added */
.card-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

/* About Us Section Style added */

#about-us {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 50px;
}

/* left side about image style added */
.about-image {
  width: 50%;
}

.about-image img {
  width: 100%;
  height: 100%;
}

/* right side about content style added */
.about-content {
  width: 50%;
  height: 400px;
  font-family: Work Sans;
}

.about-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: rgb(16, 16, 16);
  text-align: center;
  margin-bottom: 30px;
}

.about-content h2 span {
  display: block;
  text-align: center;
}

.about-content p {
  font-size: 24px;
  font-weight: 500;
  color: rgb(16, 16, 16);
  opacity: 0.6;
  text-align: center;
  margin-bottom: 40px;
}

.about-content h4 {
  font-size: 32px;
  font-weight: 600;
  color: rgb(16, 16, 16);
  opacity: 0.7;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Social media logo style added */

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  text-decoration: none;
  width: 40px;
  height: 40px;
}

.social-links {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.fa-facebook {
  color: #0866ff;
  font-size: 70px;
}

.fa-instagram {
  color: #be02df;
  font-size: 70px;
}

.fa-github {
  color: #171515;
  font-size: 70px;
}

.fa-linkedin {
  color: #0077b5;
  font-size: 70px;
}

.fa-x-twitter {
  color: #1d1d1d;
  font-size: 70px;
}

.fa-youtube {
  color: #ff0033;
  font-size: 70px;
}

/* -----Zoom Effect----- */

/* .social-links a:hover {
  transform: scale(1.5);
  transition: 0.5s ease-in-out;
} */

/* -----Rotate Effect----- */

.social-links a:hover {
  transform: rotate(360deg);
  transition: 1s ease;
}

/* Social Section Style added */

#social {
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0)
    ),
    url("../assets/images/social-bg.png");
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  font-family: Work Sans;
  background-size: cover;
}

.social-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: rgb(16, 16, 16);
  text-align: center;
  margin-bottom: 30px;
}

.social-content h2 span {
  display: block;
  text-align: center;
}

.social-content p {
  font-size: 24px;
  font-weight: 500;
  color: rgb(16, 16, 16);
  opacity: 0.7;
  text-align: center;
  margin-bottom: 40px;
}

.social-content h4 {
  font-size: 32px;
  font-weight: 600;
  color: rgb(16, 16, 16);
  opacity: 0.8;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* footer style added */
#footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 25px;
  color: #333333;
  font-size: 20px;
  font-family: Work Sans;
  border-top: 2px solid #dddddd;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

#footer p {
  margin: 0;
  font-weight: 500;
}
