/* Heading */
.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .section-heading {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  .section-heading {
    font-size: 3.5rem;
  }
}

/* Divider line */
.section-divider {
  border-top: 1px solid #ddd;
  margin: 1.5rem 0;
}

/* Info block */
.info-label {
  color: #6b7280;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.info-value {
  font-weight: 600;
  font-size: 1rem;
}

/* Paragraph */
.about-text {
  font-size: 18px;
  color: #1f2937;
  line-height: 1.6;
  font-family: var(--bs-body-font-family);
}

/* Categories */
.categories-title {
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.9rem;
}

@media (min-width: 768px) {
  .categories-title {
    font-size: 1.875rem;
    /* ~30px */
  }
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.categories-item {
  padding: 0 0.8rem;
  position: relative;
  white-space: nowrap;
}

.categories-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  border-right: 1px solid #9ca3af;
}





.modern-section {
  padding: 50px 20px;
  text-align: center;
}

.modern-heading {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .modern-heading {
    font-size: 3rem;
  }
}

.modern-subtext {
  max-width: 500px;
  margin: 0 auto 30px;
  font-size: 1rem;
  color: #444;
}

.modern-image {
  width: 100%;
  height: 80vh;
  border-radius: 8px;
}






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

  .modern-image {
    height: 30vh;
  }

  .modern-section {
    padding: 0px;

  }
}




.about-section {
  padding: 60px 0;
}

.about-title {
  font-size: 38px;
  font-weight: 400;
}

.about-subtitle {
  font-size: 16px;
  color: #555;
  margin-top: 15px;
}

.coating-section {
  margin-top: 40px;
}

.coating-item {
  text-align: center;
  margin-bottom: 30px;
}

.coating-item img {
  width: 100%;
  max-width: 150px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.coating-item p {
  font-size: 16px;
  color: #333;
  margin: 0;
  font-family: var(--bs-body-font-family);
}


@media (max-width: 768px) {
  .about-section {
    text-align: center;
  }
}

.coating-section h5 {
  font-size: 18px;
  font-weight: 600;

}





.service-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}



.glass-title {
  border-bottom: 1px solid #aaa;
  padding-bottom: 6px;
  margin-bottom: 20px;
  font-weight: 600;
}






.zigzag-box {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.zigzag-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.zigzag-body {
  padding: 20px;
}

.zigzag-body h5 {
  font-weight: 600;
}

.zigzag-body a {
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  color: #000;
}

.zigzag-body a:hover {
  text-decoration: underline;
}

.zigzag-box h5 {
  font-size: 20px;
  font-weight: 600 !important;
}


.text-15 {
  font-size: 16px;
  font-family: var(--bs-body-font-family);
}



.gallery-section {
  padding: 40px 0;
}

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

  .gallery-section {
    padding: 60px 10px;
  }

  .glass-title {
    font-size: 25px;
  }
}

.gallery-title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.gallery-row {
  row-gap: 1.5rem;
}

.gallery-col {
  padding: 0 0.75rem;
}

.gallery-box {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
  /* smooth effect */
}

.gallery-box:hover .gallery-img {
  transform: scale(1.08);
  /* halka zoom */
}

@media (min-width: 768px) {
  .modern-heading {
    font-size: 3rem;
  }
}


 /* Circular button style */
  .circle-back {
    position: fixed; /* Fix position */
    bottom: 20px; /* Screen ke bottom se */
    left: 20px;   /* Screen ke left se */
    width: 60px;  /* Width of circle */
    height: 60px; /* Height of circle */
    background-color: black; /* Background black */
    color: white; /* Icon color white */
    border-radius: 50%; /* Circle shape */
    display: flex; /* Flexbox for centering icon */
    align-items: center; /* Vertical center */
    justify-content: center; /* Horizontal center */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Shadow for depth */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s, transform 0.2s;
    z-index: 1000; /* Ensure it stays on top */
  }

  /* Hover effect */
  .circle-back:hover {
    background-color: #333; /* Slightly lighter on hover */
    transform: scale(1.05); /* Slight zoom on hover */
  }