body {
  background-color: black;
}

p {
  color: white;
  /* // line-height: 2rem; */
  font-size: large;
}

.hero {
  background-image: url(../walltech/img/Assets/Front-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* optional: ensures the image covers the entire section */
  background-position: center;
  /* optional: centers the image */
  width: 100%;
  height: 90vh;
}

.logo-img {
  width: 200px;
  height: 50px;
}

.hero-section {
  /* // margin-top: 50%; */
}

.hero-text {
  font-weight: 700;
  color: white;
  margin-top: 40%;
  font-size: 45px;
}

.hero-span {
  color: #0f94c0;
}

.hero-btn {
  padding: .5rem;
  background-color: #0f94c0;
  color: rgb(0, 0, 0);
  border-radius: 10px;
  border: none;
  font-weight: 700;
  font-size: large;
}

/* // features */
.brand-section {
  /* // padding: 60px 0;
    // text-align: center; */
}

.brand-section h1 {
  font-weight: bold;
}

.features {
  background: #111;
  padding: 40px 20px;
  border: 1px solid #333;
  border-radius: 10px;
}

.feature-icon {
  font-size: 40px;
  /* // color: #00d4ff; */
  margin-bottom: 15px;
}

.features-title {
  color: white;
}

.feature-img {
  width: 300px;
  height: 60px;
}

.feature-subtitle {
  color: white;
}

.feature-icon h5 {
  font-weight: 700 !important;
  font-size: large;
}

/* // video-section
  // .video-section{
  //   background: 
  //   radial-gradient(circle at -4% 100%, rgba(0, 177, 213, 1) -30%, rgba(0, 0, 0, 0.95) 40%, #000000 100%),
  //   radial-gradient(circle at 50% 100%, rgba(0, 177, 213, 1) 0%, rgba(0, 0, 0, 0.95) 40%, #000000 100%);
  // background-color: #000; /* fallback */



.video {
  border: 1px solid #333;
  border-radius: 10px;
}

.video {
  padding: 1rem;
}

.about-btn {
  background: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 10px;
  padding: 8px 16px;
  cursor: pointer;
}

.product-img {
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
}

.product-label {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}


/* // brands */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  max-width: 80%;
  /* Reduce image size */
  height: auto;
  object-fit: contain;
  padding: 10px;
  /* Add internal space */
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.05);
  /* Optional: hover effect */
}

.About-page {
  background-image: url(../walltech/img/Assets/about-page.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* optional: ensures the image covers the entire section */
  background-position: center;
  /* optional: centers the image */
  width: 100%;
  height: 90vh;
}

.about-text {

  font-weight: 500;
  color: white;
  margin-top: 40%;
  font-size: 45px;
}

.about-span {
  color: #0f94c0;
  font-weight: 700;

}

.btn-about {
  background: transparent;
  border: 1px solid white;
  border-radius: 10px;
  padding: 8px 16px;

}

.btn-about:hover {
  background-color: #0f94c0;
}

.why-card h4 {
  color: white;
}

.why-card {
  border: 1px solid rgba(255, 255, 255, 0.377);
  border-radius: 10px;
  padding: 1.5rem 1rem 2rem 1rem;
  height: 250px;
}

.why-card img {
  padding-top: 3rem;
}

.contact-page {
  background-image: url(../walltech/img/Assets/welltect-contact.png);
  background-size: cover;
  /* optional: ensures the image covers the entire section */
  background-position: center;
  /* optional: centers the image */
  width: 100%;
  height: 1100px;
  /* // margin-top: 10%; */
}

.contact-title h1 {
  color: white;
  text-align: center;
  font-weight: 800;
  /* // font-size: xx-large; */
  font-size: 50px;
}

.contact-para {
  font-size: 20px;
  font-weight: 400;
}

.contact-form {

  margin: 0 auto;
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #666;
  color: #fff;
  padding: 10px 0;
  margin-bottom: 20px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
  font-style: italic;
}

.contact-form button {
  background-color: #00d0ff;
  border: none;
  padding: 8px 16px;
  color: #000;
  cursor: pointer;
  border-radius: 4px;
  font-weight: bold;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Default: 2 items for mobile */
  gap: 2rem;
  padding: 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .products-container {
    grid-template-columns: repeat(3, 1fr);
    /* 3 items on tablet and desktop */
  }
}

.product {
  /* background-color: #111; */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.product:hover {
  transform: scale(1.03);
}

.product img {
  width: 100%;
  height: auto;
  display: block;
}

.product-title {
  padding: 1rem;
  font-size: 1.2rem;
  color: white;
  font-weight: 500;
}

.sub-header {
  display: flex;
  align-items: center;
  height: 100px;

  color: #00BFFF;
  font-family: Arial, sans-serif;
  font-size: 30px;
  font-weight: bold;
  position: relative;
}

.sub-header::after {
  content: '';
  height: 1px;
  background-color: #555;
  flex-grow: 1;
  margin-left: 20px;
}

@media only screen and (max-width: 768px) {

  .hero-text {
    margin-top: 50% !important;
    font-size: 25px !important;
  }

  .feature-img {
    width: 150px !important;
    height: 40px !important;
  }

  .features-title {
    font-size: large;
  }

  .product-img {
    height: 450px !important;
  }

  .card-top {
    margin-top: 10px !important;
  }

  .products-container {
    padding: .5rem;
  }

  .contact-title h1 {
    font-size: 35px !important;
  }

  .contact-para {
    font-size: 15px;
  }

  .contact-page {
    height: 250px !important;

  }

  .home-about-img {

    height: 450px !important;
  }

  .logo-img {
    width: 150px;
    height: 40px;
  }
  .footer-padding {
    padding: 15px 0;
  }
}


@media (max-width: 575.98px) {
  .feature-img {
    width: 150px !important;
    height: 40px !important;
  }

  .features-title {
    font-size: large;
  }
}


@media (min-width: 576px) and (max-width: 767.98px) {}



@media (min-width: 992px) and (max-width: 1199.98px) {}


@media (min-width: 1200px) {}

.navbar-custom {
  background-color: #000;
}

.nav-item {
  padding-left: 15px;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.nav-link {
  color: #fff !important;
}

.nav-link:hover,
.nav-link.active {
  color: #0dcaf0 !important;
}

.footer {
  background-color: #00B8D9;
  color: white;
  padding: .5rem;
}

.footer-padding {
  padding: 40px 0;
}
.footer-logo{
  width: 200px;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .logo {
  font-size: 32px;
  font-weight: bold;
  color: black;
}

.footer .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-color: white;
  border-radius: 50%;
  text-decoration: none;
}

.footer .social-icons i {
  font-size: 15px;
  color: black;
}

.footer .section-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer .text-light {
  color: #cfeaf5 !important;
}

.social-icons i {}


@media (max-width: 576px) {
  .features-title {
    font-size: 1.2rem;
    padding-top: 10px;
  }

  .feature-img {
    max-width: 150px;
  }
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: #f1efef;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}