:root {
  --blue: #1d4ed8;
  --red: #dc2626;
  --black: #000000;
  --white: #ffffff;
  --accent: #0ea5e9;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: var(--black);
  color: var(--white);
}

/* Product Layout */
.product-box {
  width: 90%;
  /* max-width: 1200px; */
  min-height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  padding: 15px;
  transition: all 0.3s ease-in-out;
}

.product-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(14, 165, 233, 0.6);
}

.content-box {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.content-box h2 {
  color: var(--accent);
  margin-bottom: 10px;
}

.content-box p {
  color: #d1d5db;
  line-height: 1.6;
}

.image-box {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
  transition: 0.4s;
}

.image-box img:hover {
  transform: scale(1.05);
}

/* Responsive Fix */
@media (max-width: 768px) {

  .content-box,
  .image-box {
    height: auto;
    text-align: center;
  }

  .image-box img {
    max-height: 250px;
  }
}


.summery-sec {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.summery-sub-sec {
  width: 90%;
  height: 100%;
  border-radius: 40px;
  margin-top: 20px;
  padding: 40px;
}

.summery-sub-sec:hover {
  box-shadow: 0 0 25px rgba(14, 165, 233, 0.6);
  transition: all 0.3s ease-in-out;
  transform: translateY(0.5);
}

.summery-sub-sec h2 {
  font-weight: 700;
  color: #E21E24;
}

.summery-sub-sec p {
  margin-top: 20px;
}






/* OTHERS PRODUCTS PAGE CSS START */


.card-text {
  color: #a3a3a3;
  /* lighter gray */
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 576px) {
  #footer-part {
    margin-top: -48px;
    text-align: center;
  }

  #footer-part .col-md-3 {
    text-align: center;
  }

  #footer-part img {
    margin: 0 auto 15px;
    display: block;
  }

  .social-icons {
    justify-content: center;
  }

  .summery-sub-sec {
    height: auto;
    margin-top: 550px;
  }

  #bottom-text {
    font-size: 16px;
    line-height: 1.6;
    color: #D1D5DB;
    text-align: center;
  }

  #footer {
    height: auto;
    margin-top: 580px;
  }

  #footer-part .col-md-3 p {
    margin: 6px 0;
    display: flex;
    align-items: flex-start;
    /* icon top sathe line up */
    justify-content: center;
    /* center ma rakhe */
  }

  #footer-part .col-md-3 i {
    margin-right: 8px;
    min-width: 18px;
    /* icon ne fix width */
    text-align: center;
  }
}



@media (min-width: 577px) and (max-width: 991px) {

  /* Tablet */
  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.85rem;
  }

  .navbar-toggler-icon {
    color: white;
  }

  .summery-sub-sec {
    height: auto;
  }

  .summery-sub-sec:hover {
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.6);
    transition: all 0.3s ease-in-out;
    transform: translateY(0.5);
  }

  .summery-sec {
    height: auto;
  }

  .summery-sub-sec p {
    font-size: 16px;
    line-height: 20px;
    color: #D1D5DB;
    /* margin-top: 20px; */
  }

  .summery-sub-sec {
    height: auto;
  }

  #footer {
    margin-top: 80px;
  }

}

@media (min-width: 992px) {

  /* PC / Full Screen */
  .card-title {
    font-size: 1.2rem;
  }

  .card-text {
    font-size: 0.9rem;
  }

  .summery-sub-sec:hover {
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.6);
    transition: all 0.3s ease-in-out;
    transform: translateY(0.5);
  }

  .summery-sec {
    height: auto;
  }

  .summery-sub-sec p {
    font-size: 16px;
    line-height: 24px;
    color: #D1D5DB;
    /* margin-top: 20px; */
  }

  .summery-sub-sec {
    height: auto;
  }

  #footer {
    margin-top: 80px;
  }


}




/* OTHERS PRODUCTS PAGE CSS END */