@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");

:root {
  --primary-color: #ff581f;
  --secondary-color: #111111;
  --secondary-color-light: #232220;
  --text-light: #a3a3a3;
  --white: #ffffff;
  --black: #000000;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section_container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section_header {
  font-size: 2.5rem;
  font-weight: 600;
}

.section_subheader {
  position: relative;
  isolation: isolate;
  margin-bottom: 1rem;
  padding-left: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}

.section_subheader::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 45px;
  aspect-ratio: 1;
  background-color: var(--primary-color);
  z-index: -1;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1.5rem;
  outline: none;
  font-size: 1rem;
  color: var(--white);
  border-radius: 5px;
  cursor: pointer;
}

.btn_secondary {
  background-color: transparent;
  border: 1px solid var(--white);
}

.btn_primary {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn span {
  font-size: 1.2rem;
  transition: 0.3s;
}

.btn:hover span {
  transform: translateX(5px);
}

img {
  display: flex;
  width: 100%;
}
a {
  text-decoration: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "poppins", sans-serif;
  color: var(--white);
}

header {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.8)
    ),
    url(Assets/header.jpg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

nav {
  max-width: var(--max-width);
  margin: auto;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav_logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}
.nav_logo a {
  color: var(--white);
}
.nav_links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.link a {
  padding: 5px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: 0.3s;
}

.link a:hover {
  color: var(--primary-color);
}
.nav_menu_btn {
  display: none;
  font-size: 1.5rem;
}

.header_container {
  padding-block: 5rem 12rem;
}
.header_container h1 {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}
.header_container .btn {
  margin: auto;
}

.about {
  background-color: var(--secondary-color);
}
.about_container {
  padding-block: 0;
}
.about_grid {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  background-color: var(--secondary-color-light);
  transform: translateY(-5rem);
  border-radius: 10px;
}
.about_content .section_header {
  margin-bottom: 1rem;
}
.about_content .para {
  color: var(--text-light);
}
.about_list {
  display: grid;
  gap: 2rem;
}
.about_item {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.about_item span {
  padding: 13px 20px;
  font-size: 1.75rem;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-radius: 5px;
}
.about_item h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

.stats {
  background-color: var(--black);
}
.stats_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.stats_content .section_header {
  margin-bottom: 1rem;
}
.stats_content .para {
  margin-bottom: 2rem;
  color: var(--text-light);
}
.stats_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.stats_card span {
  font-size: 1.75rem;
  color: var(--primary-color);
}
.stats_card h4 {
  font-size: 2rem;
  font-weight: 700;
}
.stats_card p {
  font-weight: 500;
}
.stats_image {
  display: grid;
  gap: 2rem;
}
.stats_image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}

.banner {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("Assets/banner.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner_content {
  max-width: 800px;
}
.banner_content .section_header {
  margin-bottom: 1rem;
}
.banner_content .para {
  max-width: 600px;
  margin-bottom: 2rem;
}
.banner_btns {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.blog {
  background-color: var(--secondary-color);
}
.blog_grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog_card img {
  margin-bottom: 1rem;
  border-radius: 5px;
}
.blog_card > div {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog_card div span {
  font-size: 0.9rem;
  color: var(--text-light);
}
.blog_card div span i {
  margin-right: 5px;
  font-size: 1rem;
  color: var(--primary-color);
}
.blog_card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.blog_card p {
  color: var(--text-light);
}

.subscribe {
  background-image: linear-gradient(
    to right,
    rgba(0,0,0,.6),
    rgba(0,0,0,.6)
  ),
  url("Assets/subscribe.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.subscribe_container {
  max-width: 700px;
  text-align: center;
}
.subscribe_container .section_subheader {
  max-width: fit-content;
  margin-inline: auto;
}
.subscribe_container form {
  margin-block: 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.subscribe_container input {
  flex: 1;
  width: 100%;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  outline: none;
  border: 1px solid var(--white);
  border-radius: 5px;
}
.subscribe_container .btn {
  flex: 1;
  justify-content: center;
}
.subscribe_container .para a {
  color: var(--primary-color);
}

.customer {
  background-color: var(--secondary-color);
}
.customer_container .para {
  margin-block: 1rem 4rem;
  color: var(--text-light);
}
.swiper {
  width: 100%;
  padding-bottom: 4rem;
}
.customer_review .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
.customer_review_card {
  position: relative;
  isolation: isolate;
  min-width: 600px;
  margin-inline: auto;
  text-align: center;
}
.customer_review_card span {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 6rem;
  line-height: 4rem;
  color: var(--primary-color);
  opacity: 0.1;
}
.customer_review_card p {
  margin-bottom: 2rem;
  color: var(--text-light);
}
.customer_review_details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.customer_review_details img {
  max-width: 70px;
  border-radius: 100%;
}
.customer_review_details h4 {
  font-size: 1.2rem;
  font-weight: 500;
}
.customer_review_details h5 {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}