@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap');

/* ------------------------------ */
/* RESET & BASE STYLES */
/* ------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #f3f0eb, #e8e2d9, #f5f2ec);
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  justify-content: center;
  align-items: center;
}

h1, h2 {
  font-size: 40px;
  margin-top: 40px;
}

/* ------------------------------ */
/* SCROLLBAR STYLES */
/* ------------------------------ */
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  background: transparent;
}
html::-webkit-scrollbar-thumb {
  background: var(--yellow);
}


  
  




/* ============================
   WHY MEERU SECTION
============================ */

.whySection {
  margin-top: 13%;
  width: 100%;
  margin-bottom: 18%;  
  height: auto !important;

}

.whyM {
  text-align: center;
  margin-bottom: 4%;
  color: #111111;
  font-size: 3.5rem;
}

.featureh {
  margin-bottom: 8% !important;
}

.feature-card.icon {
  background-color: white;
  border-radius: 50%;
  padding: 15px;
  margin-right: 20px;
  font-size: 28px;
  color: #801336;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 162px;
  min-height: 118px;
}

.features-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 120px;
}

.feature-item {
  text-align: center;
  max-width: 120px;
}

.feature-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgb(225, 225, 225);  /* Default white background */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background-color 0.3s ease;
}


.feature-icon img {
 
  object-fit: cover; /* Keeps the image proportionate */
  transition: filter 0.3s ease; /* Smooth transition for the image */
}

.feature-icon:hover,
.feature-icon:active {
  background-color: rgb(104, 34, 34);  /* Gold background on hover or touch */
}
.feature-icon:hover img,
.feature-icon:active img {
  filter: brightness(0) invert(1);
}

.feature-text {
  font-size: 22px;
  width: 190px;
  color: #333;
}


/* ================================
   WIDE CATEGORY SECTION
================================ */

/* Section Wrapper */
.wide-category-section {
  max-width: 1400px;
  margin: auto;
  text-align: center;
  margin-top: -153px;
  margin-bottom: 112px;
}

/* Section Title */
.wide-category-section h2,
#wide {
  font-size: 3.5rem;
  margin-bottom: 40px;
  color: black;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: font-size 0.3s ease;
}

/* Responsive Grid Layout for Categories */
.wide-category-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

/* Individual Category Card */
.category-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-10px);
}

.category-card img {
  width: 100%;
  height: auto;
  display: block;
}

.category-card h3 {
  font-size: 20px;
  color: #111;
  padding: 16px;
  margin: 0;
  text-align: center;
}

/* ================================
   CAROUSEL INSIDE CATEGORY
================================ */

/* Carousel Wrapper */
.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 16px;
}

/* Carousel Slide */
.carousel-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Small Pattern Over Image */
.small-pattern {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 140px;
  height: 140px;
  border: 6px solid #822c4a;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  z-index: 2;
}



/* Carousel Controls */
.carousel-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}

.carousel-controls button {
  background: #f7cb65;
  border: none;
  border-radius: 50%;
  padding: 10px 14px;
  margin: 0 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.carousel-controls button:hover {
  background: #e0b64a;
}



/* ============================
   WHO WE ARE SECTION
============================ */
.who-we-are {

  padding: 60px 0px;
  margin-top: 20rem;
  color: #fff;
  width: 100%;
 
}
.container {
  background: linear-gradient(to right, #3d0017, #800033, #4f0022);
  max-width: 1456px;
  width: 100%;
  margin: 40px auto; /* Adds 40px top & bottom space, auto centers horizontally */
  display: block;
  border-radius: 12px;
  padding: 20px; /* Optional: Adds inner space inside container */
}

.section-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 60px;
}

.section-heading {
  font-size: 40px;
  color: #f3c55b;
  margin-bottom: 20px;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center the content */
  margin-bottom: 40px; /* Add gap between rows */
}

.reverse-row {
  flex-direction: row-reverse;
}

.custom-row .col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 20px;
}

.custom-row p {
  font-size: 16px;
  line-height: 1.7;
}

/* Image Container */
.image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: auto;
  border: 4px solid #f3c55b;
}

.image-container img {
  width: 100%;
  display: block;
  border-radius: 12px;
  transition: opacity 0.5s ease-in-out;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.image-container:hover .hover-image {
  opacity: 1;
}

.image-container:hover .main-image {
  opacity: 0;
}
#who {

  font-weight: 500;
  font-size: 3.5rem;
  margin-bottom: 40px;
  color: rgb(255, 255, 255);
  
  
  }








/* ============================
   BRANCHES SECTION
============================ */
.branches-section {
  text-align: center;
  padding: 80px 20px;
}



.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.branch-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
  width: 450px;
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon-circle {
  width: 100px;
  height: 100px;
  background: #f4f4f4;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 50px;
  height: 50px;
}

.branch-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.branch-card .phone,
.branch-card .email {
  margin: 5px 0;
  color: #555;
  font-size: 16px;
}

.branch-card .address {
  background: #eee;
  border-radius: 0 0 20px 20px;
  padding: 15px;
  margin-top: 20px;
  font-size: 14px;
  color: #444;
}





/* ================================
   CULTURED STONES SECTION
================================ */
.cultured-stones {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #000;
}

/* Section Title */


/* Paragraph Description */
.cultured-stones p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #444;
}

/* ========== Feature Grid Layout ========== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ========== Feature Card Styling ========== */
.feature-card {
  display: flex;
  align-items: center;
  background-color: #f3f3f3;
  padding: 20px;
  border-radius: 120px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

/* Hover Effects on Card */
.feature-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(to right, #3d0017, #800033, #4f0022);
}

/* ========== Icon Container ========== */
.feature-card .icon {
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 60px;
  transition: background-color 0.3s ease;
}

/* Icon Image Inside */
.feature-card .icon img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}

/* Icon Hover Effect */
.feature-card:hover .icon {
  background-color: rgb(104, 34, 34); /* Dark red */
}

.feature-card:hover .icon img {
  filter: brightness(0) invert(1); /* Turn image white */
}

/* ========== Text Content ========== */
.feature-card h3 {
  margin: 0;
  font-size: 18px;
  color: #111;
  transition: color 0.3s ease;
}

.feature-card p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #555;
  transition: color 0.3s ease;
}

/* Text color on hover */
.feature-card:hover h3,
.feature-card:hover p {
  color: white;
}


/* ================================
   PROJECT SECTION
================================ */


.projects-section {
  padding: 40px;
  background-color: #fff;
  text-align: center;
}



.projects-container {
  display: flex;
  flex-wrap: nowrap; 
    width: 100%;
  justify-content: center;

  gap: 30px;
  overflow-x: auto; 
  padding: 20px;
}


.project-card {
  display: flex;
  background-color: #f5f5f5;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 600px;
  padding: 20px;
  text-align: left;
}

.project-image {
  width: 200px;
  height: 200px;
  padding: 1% 1%;
  object-fit: cover;
  border: 4px solid #8c3b5d;
  border-radius: 6px;
  margin-right: 20px;
}

.project-content {
  flex: 1;
}

.project-title {
  color: #8c3b5d;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  color: #8c3b5d;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
  margin-left: 54%;
}

.read-more span {
  display: inline-block;
  background-color: #f3c745;
  padding: 4px 8px;
  border-radius: 50%;
  margin-left: 6px;
  font-size: 0.9rem;
}





.zoom-box {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 180px;
  height: 180px;
  border-radius: 15px;
  background-color: #fff;
  overflow: hidden;
  border: 5px solid #93354d;
}

.zoom-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  left: 40px;
  bottom: 40px;
  color: #f4c76b;
  font-size: 24px;
  font-weight: bold;
}





  /* ================================
    VIDEO SECTION
  ================================ */


  #unique-patterns-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  

  .play-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background-color: #f3c623;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
  }

  .play-btn::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid #7c318f;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: 3px;
  }

  #card-1-pattern {
    background-image: url('https://cdn.fliki.ai/image/page/660ba680adaa44a37532fd97/666310fc647d79dc96fd21a3.jpg');
  }

  #card-2-pattern {
    background-image: url('https://cdn.fliki.ai/image/page/660ba680adaa44a37532fd97/666310fc647d79dc96fd21a3.jpg');
  }

  #card-3-pattern {
    background-image: url('https://cdn.fliki.ai/image/page/660ba680adaa44a37532fd97/666310fc647d79dc96fd21a3.jpg');
  }

  /* Modal Styles */
  #video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
  }

  #video-container {
    position: relative;
    width: 80%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    background: #000;
  }

  #local-video {
    width: 100%;
    height: 100%;
    border: none;
    background: black;
  }

  #close-btn {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }

/* ================================
   TESTIMONIAL SECTION
================================ */
.profile-section {
  text-align: center;
  background-color: white;
  padding: 50px 20px 0;
  font-family: Arial, sans-serif;
}

/* ========== Testimonial Card ========== */
.testimonial-card {
  background: #fff;
  margin: auto;
  padding: 30px 40px;
  border-radius: 12px;
  max-width: 700px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}



.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  max-height: 150px;
  overflow-y: auto;
  padding-right: 10px;
}

.stars {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #FFA500; /* Orange star color */
}

/* ========== Footer Background for Testimonials ========== */
.testimonial-footer {
  background-color: black;
  padding: 80px 20px 40px;
  margin-top: -10px;
}

/* ========== Profile Thumbnails Section ========== */
.profile-thumbnails {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  overflow-x: hidden;
}

/* ========== Individual Profile ========== */
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 5px;
  border-radius: 100px;
  transition: transform 0.3s ease;
}

/* Profile Image */
.profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid transparent;
  transition: 0.3s ease;
}

/* Active Profile Styling */
.profile.active {
  background-color: #333;
}

.profile.active img {
  width: 70px;
  height: 70px;
  border: 3px solid #FFA500;
  transform: scale(1.1);
}

/* Profile Name */
.profile-name {
  margin-top: 5px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}



