/* Custom styles */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 70px; /* for fixed navbar */
}

/* Navbar styles */
.navbar-brand {
  font-weight: 700;
}

/* Hero section */
.hero-section {
  height: 100vh;
  background: url('img/hero.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-section .container {
  position: relative;
  z-index: 1;
}

/* Section headings */
section h2 {
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}
section h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #0d6efd;
  display: block;
  margin: 10px auto 0;
}

/* Card styles */
.card img {
  max-height: 150px;
  object-fit: cover;
}
.card .card-body img {
  max-width: 60px;
  margin-bottom: 15px;
}

/* FAQ Accordion */
.accordion-button {
  font-weight: 500;
}

/* Team Section */
#team .card-img-top {
  border: 3px solid #0d6efd;
}

/* Blog Section */
#blog .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Contact form */
#contact form {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
}

/* Footer */
footer a:hover {
  color: #0d6efd;
}

/* Additional spacing for sections */
section {
  padding-top: 60px;
  padding-bottom: 60px;
}


.product-block{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100%;
}

.product-block .text{
  padding: 30px 0;
}

.product-block .text h3{
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 15px;
}

.product-block .text p{
  margin-bottom: 0;
}

.product-block .text ul{
  padding-left: 0;
  margin-left: 0;
}

.product-block .text ul li{
  list-style-type: none;
}

.product-block .img{
  text-align: center;
}

.product-block .img img{
  width: 90%;
  max-height: 100%;
  object-fit: contain;
}

.btn-primary {
  background-color: #ff4444;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #e53636;
}

.btn-secondary {
  background-color: #f2f2f2;
  color: #333;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-secondary:hover {
  background-color: #e0e0e0;
}


@media (max-width: 991px) {
  .product-block{
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
  }
  .product-block .img img{
    width: 100%;
  }
}