* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:Arial, Helvetica, sans-serif;
  color: #000000;
  background-image: url(picture/background-image.jpg);
}
html {
  scroll-behavior: smooth;
  color: #000000;
}




.header {
  background-color: #1e293b !important; /* dark blue-gray */
}






.scroll-animate-y {
  opacity: 0;
  transform: translateY(50px); /* bigger slide distance */
  transition: transform 1s ease-out, opacity 1s ease-out;
  will-change: transform, opacity;
}

.scroll-animate-y.active {
  opacity: 1;
  transform: translateY(0);
}







/* ===== Tile Section ===== */
.tile-section-1 {
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  padding-top: 5rem;
}

/* Hero intro */
.tile-hero {
  background-color:#1e293b;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  padding-top: 5rem;
  padding-bottom: 10rem;
  text-align: center;
  position: relative;
}



.tile-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.tile-hero h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.tile-hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 2rem;
}

.tile-btn {
  display: inline-block;
  border: solid 1px white;
  border-radius: 50px;
  color: #fff;
  padding: 0.9rem 2rem;
  text-decoration: none;
  transition: all 0.5s ease;
}

.tile-btn:hover {
  background: #ffffff;
  color: black;

}


/* Responsive */
@media (max-width: 900px) {
  .tile-hero h2 {
    font-size: 2.3rem;
  }

  .tile-hero p {
    font-size: 1rem;
  }

  .tile-gallery {
    height: 60vh;
  }
}

@media (max-width: 600px) {
  .tile-hero {
    padding: 4rem 1.5rem;
  }

  .tile-btn {
    padding: 0.7rem 1.5rem;
  }

  .prev, .next {
    font-size: 1.5rem;
    padding: 0.3rem 0.7rem;
  }
  .scroll-arrow {
    top: 70% !important;
  }
}
@media (max-width: 500px) {
    .scroll-arrow {
    top: 75% !important;
  }
}
@media (max-width: 400px) {
    .scroll-arrow {
    top: 85% !important;
  }
}

/* Scroll Arrow - always centered */
.section-border {
  height: 0.1px;
}

.scroll-arrow {
  font-size: 1.3rem;
  color: rgb(255, 255, 255);
  cursor: pointer;
  position: absolute;
  right: 5%;
  top: 70%;
  transform: translateX(-50%);
  width: 85px;
  height: 85px;
  background: transparent;
  border-radius: 50%;
  border: solid 1px rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: bounce 1.5s infinite;
  z-index: 90;
  transition: transform 0.3s ease, background 0.3s ease;
}

.scroll-arrow:hover {
  background: #1e293b;
  transform: translateX(-50%) scale(1.2);
  color: white;
}



















/* =======================================================
   UNIVERSAL TILE DIVISION STYLE — UNIFORM GRID FIX
   ======================================================= */

/* ===== SECTION WRAPPER ===== */
.stone-division-description {
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  padding: 6rem 3rem;
  font-family: 'Poppins', sans-serif;
}

/* ===== CONTAINER ===== */
.stone-division-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== TEXT AREA ===== */
.stone-text {
  flex: 1 1 45%;
  background: #ffffff;
  border-left: 4px solid #1e293b;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stone-text:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ===== HEADING ===== */
.stone-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.stone-heading img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

/* ===== PARAGRAPH ===== */
.stone-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1.5rem;
}

/* ===== FEATURES LIST ===== */
.stone-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stone-features li {
  padding: 0.8rem 0;
  border-bottom: 1px dashed #cbd5e1;
  color: #0f172a;
  font-size: 1rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border-radius: 8px;
  padding-left: 0.5rem;
}

.stone-features li:hover {
  background-color: #f1f5f9;
  transform: translateX(6px);
}

/* ===== GALLERY ===== */
.stone-gallery {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== PERFECT 2×2 IMAGE GRID ===== */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

.tile-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* Keeps uniform fill */
  aspect-ratio: 1 / 1;    /* Ensures equal sizing */
  border-radius: 12px;
  display: block;
  transition: opacity 0.6s ease, transform 0.4s ease;
}

.tile-grid img:hover {
  transform: scale(1.05);
}

/* ===== ABOUT SECTION ===== */
.about-tile-division {
  background: #1e293b;
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-inner h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.about-inner p {
  font-size: 1.1rem;
  color: #e5e5e5;
  line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 950px) {
  .stone-division-inner {
    flex-direction: column;
    align-items: center;
  }

  .stone-text,
  .stone-gallery {
    flex: 1 1 100%;
    max-width: 90%;
  }

  .tile-grid {
    max-width: 500px;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 600px) {
  .tile-grid {

    max-width: 400px;
    aspect-ratio: auto;
  }
  .stone-division-description{
    padding: 1vh;
  }
  .tile-grid img {
    aspect-ratio: 1 / 1;
  }

  .stone-heading {
    font-size: 1.6rem;
  }

  .about-inner h2 {
    font-size: 1.7rem;
  }

  .about-inner p {
    font-size: 1rem;
  }
}



#stone-section{
  margin-top: 15vh;
}










/* =======================================================
   QUOTE SECTION STYLE
   ======================================================= */

.quote-section {
  width: 100%;
  height: 100%;
  padding: 10vh 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.quote-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-title {
  font-size: 7rem;
  font-weight: bold;
  width: 65%;
  text-align: left;
  border-bottom: solid 1px black;
  margin-bottom: 10rem;
}

.quote-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.quote-left-buttons {
  display: flex;
  gap: 1rem;
}

.quote-right-info {
  text-align: right;
  width: 30%;
}

.quote-description {
  margin-bottom: 1vh;
  font-size: 1rem;
  color: #000;
}

.quote-social-row {
  display: inline-block;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.quote-social-row i {
  margin: 0.7vh;
  font-size: 1.4rem;
}

.quote-social-row i:hover {
  transform: scale(1.2) !important;
}

.quote-email {
  margin-left: 2rem;
}

/* ===== BUTTONS ===== */
.btn-container {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 10vh;
}

.btn-animation {
  position: relative;
  display: inline-block;
  padding: 10px 3vh;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  border: 2px solid #000000;
  border-radius: 20px;
  overflow: hidden;
  transition: all 1s;
  z-index: 1;
}

.btn-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000000;
  border: 2px solid #000000;
  transition: all 1s ease;
  z-index: -1;
}

.btn-animation:hover::before {
  left: 0;
}

.btn-animation:hover {
  color: #ffffff;
  transform: scale(1.05);
  border: 2px solid #000000;
}

/* ===== RESPONSIVE QUOTE SECTION ===== */
@media (max-width: 1400px) {
  .quote-title {
    font-size: 5rem;
    width: 70%;
    text-align: left;
    margin: 6vh;
  }

  .quote-container {
    height: auto;
  }
}

@media (max-width: 1200px) {
  .quote-section {
    padding-bottom: 0vh;
  }

  .quote-title {
    font-size: 4rem;
    width: 70%;
    text-align: left;
    margin: 1vh;
  }

  .quote-container {
    height: auto;
  }
}

@media (max-width: 900px) {
  .quote-section {
    height: auto;
    padding: 10vh 5vw;
    margin-top: 10vh;
  }

  .quote-container {
    height: auto;
  }

  .quote-title {
    font-size: 4rem;
    width: 90%;
    text-align: left;
    margin: 1vh;
    padding-bottom: 4vh;
  }

  .quote-bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
    margin-top: 4vh;
  }

  .quote-left-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .quote-right-info {
    text-align: center;
    width: 100%;
  }

  .quote-description {
    font-size: 0.95rem;
    max-width: 90%;
    margin: 0 auto 1rem auto;
  }

  .quote-social-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .quote-email {
    margin-left: 0;
    display: block;
    margin-top: 0.5rem;
  }
}

@media (max-width: 768px) {
  .quote-title {
    font-size: 3rem;
  }

  .quote-description {
    font-size: 0.9rem;
  }

  .stat-btn-1,
  .stat-btn-2 {
    font-size: 0.85rem;
    padding: 10px 18px;
  }

  .quote-social-row i {
    font-size: 1.2rem;
  }
}
