:root {
  /* Colors */
  /* --color-yellow: #F8F4E9; */
  /* --color-yellow: #E8DFD0; */
  /* --color-yellow: #C4B5A2; */
  /* --color-lumber: #7D6E5B; */
  /* --color-gold: #DFBD69; */
  /* --color-gold-light: #F5DEB3; */
  /* --color-gold-dark: #B8860B; */
  /* --color-rose-gold: #BE8A60; */
  /* --color-black: #2C2C2C; */
  /* --color-white: #FFFFFF; */
  /* --color-black: #000000; */
  /* --color-black: #6C6C6C; */
  --color-white: #ECECEC;



  --color-maroon: #6F2031;
  --color-gold: #D7B56D;
  --color-white: #FEFEFE;
  --color-lumber: #FBE5C9;
  --color-yellow: #FFFBDB;
  --color-black: #2B2A29;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 4px 20px rgba(43, 42, 41, 0.1);

  /* Typography */
  --font-sans: 'Poppins', sans-serif;
  --font-serif: 'Montserrat', sans-serif;
 

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-indices */
  --z-header: 100;
  --z-dropdown: 200;
  --z-modal: 300;

  /* Border Radius */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;

  /* Spacing (used with padding and margin) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
}

/* ==================== RESET & BASE STYLES ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  line-height: 1.5;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-normal);
}
.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  z-index: 1001;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

input,
textarea {
  width: 100%;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
/* .call-float {
  position: fixed;
  bottom: 100px; 
  left: 20px;
  z-index: 9999;
}

.call-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
} */

/* .call-float img:hover {
  transform: scale(1.1);
} */



/* .whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
} */

/* .whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
} */

/* .whatsapp-float img:hover {
  transform: scale(1.1);
} */


/* ==================== LAYOUT ==================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-maroon);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    color: var(--color-maroon);
  }
}

.section-subtitle {
  color: var(--color-black);
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-with-control {
  display: flex;
  text-align: center;
  justify-content: center;
  /* flex-direction: column; */
  margin-bottom: 2rem;

  /* background-color: red; */

}

@media (min-width: 768px) {
  .section-header-with-control {
    /* flex-direction: row; */
    /* justify-content: space-between;
      align-items: flex-end; */
    margin-bottom: 3rem;
  }

  .section-header-with-control .section-header {
    text-align: center;
    margin-bottom: 0;
    max-width: 60%;
  }
}

.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }
}

.jewellary123 {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;

  background-image: url('https://img.freepik.com/free-vector/shiny-diamond-banner_53876-93252.jpg?t=st=1743062676~exp=1743066276~hmac=1be2c4606f78222f3892e1bf2d392d85f62ddb1e3f02d76e3f2668ca78156a71&w=1380');
  /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: 100vh; Adjust height as needed */
  color: white;
  /* Ensure text is visible */
}








.logo img {
  width: 150px;
  /* Adjust width as needed */
  height: auto;
  /* Maintains aspect ratio */
}











.containerdp {
  width: 90%;
  max-width: 1200px;
  display: flex;
  font-family: var(--font-sans);
  align-items: center;
  gap: 30px;
  /* background: rgba(255, 255, 255, 0.1); */
  padding: 40px;
  border-radius: 15px;
  /* backdrop-filter: blur(8px); */
}

/* Left Section */
.left-sectiondp img {
  width: 100vw;
  border-radius: 20px;
  max-width: 500px;
  height: 400px;
  object-fit: cover;
}

/* Right Section */
.right-sectiondp {
  color: white;
  max-width: 600px;
}

.right-sectiondp h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.right-sectiondp h3 {
  font-size: 1.5rem;
  margin-top: 20px;
}

.right-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 10px;
  color: gray;
}

/* Responsive Design */
@media (max-width: 768px) {
  .containerdp {
    flex-direction: column;
    text-align: center;
  }
  .conatinerbb{
    flex-direction: column-reverse;
    text-align: center;
  }

  .left-sectiondp img {
    max-width: 300px;
  }
}


/* ==================== BUTTONS & CONTROLS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  text-align: center;
}

.btn i,
.btn svg {
  margin-right: 0.5rem;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-gold);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
}

.btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color var(--transition-normal);
}

.icon-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.slider-controls button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-yellow);
  transition: all var(--transition-normal);
}

.slider-controls button:hover {
  background-color: var(--color-yellow);
}

.view-all {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  font-weight: 500;
  color: var(--color-gold);
  transition: color var(--transition-normal);
}

.view-all i,
.view-all svg {
  margin-left: 0.5rem;
  font-size: 0.875rem;
}

.view-all:hover {
  color: var(--color-gold);
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--color-gold);
  color: var(--color-white);
  font-size: 0.75rem;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: 1.5rem 0;
  transition: all var(--transition-normal);

  background-image: url('https://www.dpjewellers.com/images/navbar-bg.webp');
  /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: 100vh; Adjust height as needed */
  color: #602222;
  /* Ensure text is visible */

}

.header.scrolled {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 0;
}

.header.scrolled .logo h1 {
  font-size: 1.5rem;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 80px;
  justify-content: space-between;
}

.logo h1 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--color-gold);
  transition: font-size var(--transition-normal);
}

@media (min-width: 1024px) {
  .logo h1 {
    font-size: 2rem;
  }

  .header.scrolled .logo h1 {
    font-size: 1.75rem;
  }
}

.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }

  .nav-menu {
    display: flex;
    gap: 2rem;
  }

  .nav-menu a {
    position: relative;
    font-weight: 500;
    /* padding: 0.5rem 0; */
  }

  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-normal);
  }

  .nav-menu a:hover::after,
  .nav-menu a.active::after {
    width: 100%;
  }

  .nav-menu a.active {
    color: var(--color-gold);
  }

  .dropdown {
    position: relative;
  }

  .dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: var(--z-dropdown);
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    transition: background-color var(--transition-fast);
  }

  .dropdown-menu a:hover {
    background-color: var(--color-yellow);
  }
}

.action-buttons {
  display: none;
}

@media (min-width: 1024px) {
  .action-buttons {
    display: flex;
    gap: 0.75rem;
  }
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  z-index: var(--z-dropdown);
  padding-top: 5rem;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-menu {
  margin-bottom: 2rem;
}

.mobile-nav-menu>li {
  border-bottom: 1px solid var(--color-white);
}

.mobile-nav-menu>li>a,
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 500;
}

.mobile-dropdown-toggle {
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.mobile-dropdown-toggle i {
  transition: transform var(--transition-normal);
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
  animation: fadeIn 0.3s ease;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--color-black);
}

.mobile-actions {
  margin-top: 2rem;
}

.mobile-action-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mobile-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background-color: var(--color-yellow);
  transition: background-color var(--transition-normal);
}

.mobile-btn:hover {
  background-color: var(--color-yellow);
}

.mobile-btn i {
  font-size: 1.25rem;
  color: var(--color-gold);
}

.mobile-search {
  margin-top: 1.5rem;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border-radius: var(--radius-md);
  background-color: var(--color-yellow);
}

.search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-black);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures video covers entire container while maintaining aspect ratio */
  top: 0;
  left: 0;
  z-index: -1;
  /* Ensures video stays behind content */
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  color: var(--color-white);
}

.hero-text-content {
  max-width: 550px;
}

.hero-subtitle {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-description {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  max-width: 450px;
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.hero-indicators .indicator {
  width: 3rem;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.hero-indicators .indicator.active {
  width: 5rem;
  background-color: var(--color-gold);
}

/* ==================== CATEGORIES SECTION ==================== */
.featured-categories {
  padding: 5rem 0;
  background-image: url('../js/bg1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  background-color: var(--color-black);
  transition: transform var(--transition-normal);
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  opacity: 0.8;
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--color-white);
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.category-description {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-gold);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-link i {
  transition: transform var(--transition-normal);
}

.category-card:hover .category-link i {
  transform: translateX(4px);
}






/* our store */
.store-section {
  font-family: 'Arial', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.ourupperclass{
  background-image: url('../assests/bg-2.webp');
  width: 100vw;


}



.store-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.store-image {
  flex: 1 1 250px;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.store-image:hover {
  transform: scale(1.03);
}

.store-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.location-link {
  display: inline-block;
  background-color: #4a6bff;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.location-link:hover {
  background-color: #3a56d4;
}

@media (max-width: 768px) {
  .store-images {
    flex-direction: column;
    align-items: center;
  }

  .store-image {
    flex: 1 1 auto;
    width: 100%;
    max-width: 400px;
  }
}


.video-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-section h2 {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-size: 2rem;
}

.video-section p {
  text-align: center;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.video-container {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

.video-player {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
}

.video-caption {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  color: #444;
  min-height: 24px;
}

.video-progress {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: background-color 0.3s;
}

.progress-dot.active {
  background-color: #4CAF50;
}

@media (max-width: 768px) {
  .video-section {
    padding: 30px 15px;
  }

  .video-container {
    width: 95%;
  }
}














/* why */
  

.bannerbt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0; /* Keep it below other content */
}

.why-rr-container {
  max-width: 100vw;
  padding: 10px 20px;
  position: relative;
  background-image: url('../assests/bg-2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  padding-top: 40px; /* Push content below the image */
}

.why-rr-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}



.why-rr-content {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}





/* Value Grid Styles */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  perspective: 1000px;
}

.value-card {
  background: rgba(254, 254, 254, 0.9);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  border: 1px solid var(--color-gold);
}

.value-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(43, 42, 41, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-yellow);
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--color-maroon);
  transition: var(--transition);
}

.value-card:hover .value-icon {
  transform: scale(1.1);
  background-color: var(--color-maroon);
  color: var(--color-gold);
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--color-maroon);
  font-weight: 600;
}

.value-card p {
  font-size: 1rem;
  color: var(--color-black);
  margin-bottom: 20px;
}

.learn-more {
  display: inline-block;
  padding: 8px 25px;
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-maroon);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.learn-more:hover {
  background: var(--color-maroon);
  color: var(--color-white);
  border-color: var(--color-maroon);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .value-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
  }
  
  .why-rr-container {
      background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
      font-size: 2.2rem;
  }
  
  .why-rr-container {
      padding: 80px 20px;
  }
  
  .value-card {
      padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
      font-size: 1.8rem;
  }
  
  .value-grid {
      grid-template-columns: 1fr;
  }
}























































/* ==================== PRODUCTS SECTION ==================== */
.featured-products {
  padding: 5rem 0;
  background: url('https://img.freepik.com/free-vector/eye-catching-filigree-floral-art-background-vintage-style_1017-49568.jpg?t=st=1743051084~exp=1743054684~hmac=4aeef75ca0490e9c929844a7241c4e6e48d06fbfacbb2ecee62e644e18c63854&w=1380 ') no-repeat center center/cover;
  /* padding: 60px 0; */
  text-align: center;
}



.featured-video:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .product-card {
    width: calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .product-card {
    width: calc(100.333% - 1rem);
  }
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-badge.new {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.product-card:hover .product-actions {
  transform: translateY(0);
}

.quick-view-btn,
.add-to-cart-btn {
  padding: 0.5rem;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
}

.quick-view-btn {
  border: 1px solid var(--color-yellow);
}

.quick-view-btn:hover {
  background-color: var(--color-white);
}

.add-to-cart-btn {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.add-to-cart-btn:hover {
  background-color: var(--color-gold);
}

.product-info {
  padding: 1rem;
}

.product-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  transition: color var(--transition-normal);
}

.product-title:hover {
  color: var(--color-gold);
}

.product-category {
  color: var(--color-black);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.product-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-lumber);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
}

.product-rating i {
  color: #FFD700;
}

/* ==================== STORY SECTION ==================== */
.story-section {
  padding: 5rem 0;
  /* background-color: var(--color-lumber); */
  color: var(--color-black);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: url('https://img.freepik.com/free-photo/top-view-elegant-wedding-rings-with-copy-space_23-2148483559.jpg?t=st=1743062449~exp=1743066049~hmac=8507a27a78c139a116920dd88f5a9799435cadc439e4a40fe66089f6a92f0b05&w=1380 ') no-repeat center center/cover;
  /* padding: 60px 0; */
  text-align: center;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0v20H0V0h20zM6.5 5.5H10a2.5 2.5 0 1 1 0 5H6.5v-5zm7 9.5h-7v-4H10a2.5 2.5 0 1 1 0 5z' fill='%23FFFFFF' fill-opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.story-content {
  position: relative;
  z-index: 1;
}

.gold-text {
  color: var(--color-gold);
}

.story-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.story-image-container {
  position: relative;
  z-index: 1;
}

.decorative-border {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(223, 189, 105, 0.3);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.top-left {
  top: -2rem;
  left: -2rem;
  transform: rotate(6deg);
}

.bottom-right {
  bottom: -2rem;
  right: -2rem;
  transform: rotate(-6deg);
}

.story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--color-white);
}

.caption-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.caption-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.caption-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
  padding: 5rem 0;
  background-color: var(--color-yellow);
}

.testimonial-slider-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-slider {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-content {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonial-content {
    grid-template-columns: 1fr 2fr;
  }
}

.testimonial-image {
  background-color: var(--color-lumber);
  position: relative;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0v20H0V0h20zM6.5 5.5H10a2.5 2.5 0 1 1 0 5H6.5v-5zm7 9.5h-7v-4H10a2.5 2.5 0 1 1 0 5z' fill='%23FFFFFF' fill-opacity='0.2'/%3E%3C/svg%3E");
  opacity: 0.2;
}

.testimonial-image img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-gold);
  position: relative;
  z-index: 1;
}

.testimonial-text {
  padding: 2rem;
}

@media (min-width: 768px) {
  .testimonial-text {
    padding: 3rem;
  }
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: #FFD700;
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
}

@media (min-width: 768px) {
  .testimonial-quote {
    font-size: 1.25rem;
  }
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 1.125rem;
}

.author-role {
  color: var(--color-black);
  font-size: 0.875rem;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.testimonial-arrow:hover {
  background-color: var(--color-yellow);
}

.testimonial-indicators {
  display: flex;
  gap: 0.5rem;
  margin: 0 1.5rem;
}

.testimonial-indicators .indicator {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-yellow);
  transition: all var(--transition-normal);
}

.testimonial-indicators .indicator.active {
  width: 1.5rem;
  border-radius: var(--radius-full);
  background-color: var(--color-gold);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 5rem 0;
  background-color: var(--color-lumber);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0H0v40h40V0zm0 0v40M0 0h40' stroke='%23CCCCCC' stroke-opacity='0.2' fill='none' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-content {
  background-color: var(--color-yellow);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .cta-content {
    padding: 4rem;
  }
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-text {
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: var(--color-lumber);
  color: var(--color-black);
}

.newsletter-section {
  background-color: #e7dcc7;
  padding: 3rem 0;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.newsletter-text {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.newsletter-form input {
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
  padding: 0.875rem 1.5rem;
  background-color: var(--color-white);
  color: var(--color-gold);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-normal);
  min-width: 150px;
}

.newsletter-form button:hover {
  background-color: rgba(255, 255, 255, 0.97);
}

.main-footer {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 2px;
  background-color: var(--color-gold);
}

.footer-text {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  color: var(--color-maroon);
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
}

.social-icons a:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  opacity: 0.8;
  transition: all var(--transition-normal);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-gold);
  padding-left: 0.25rem;
}

.contact-info li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-info i {
  color: var(--color-gold);
  min-width: 1rem;
  margin-top: 0.25rem;
}

.contact-info span {
  opacity: 0.8;
}

.certificates-grid {
 
}

.certificate {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.certificate:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.certificate-name {
   font-weight: 600; 
   font-size: 0.75rem; 
   text-transform: uppercase; 
   letter-spacing: 1px; 
   margin-bottom: 0.25rem; 
  
  
}

.certificate-detail {
   font-size: 0.75rem; */
   opacity: 0.7;
}

.bottom-footer {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-footer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .bottom-footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  opacity: 0.7;
  font-size: 0.875rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.legal-links a {
  font-size: 0.75rem;
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}

.legal-links a:hover {
  opacity: 1;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 1s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(20px);
  animation: slideInRight 1s ease-out forwards;
  animation-delay: var(--delay, 0s);
}

/* Set animation delays for hero elements */
.hero-slide .hero-subtitle {
  --delay: 0.3s;
}

.hero-slide .hero-title {
  --delay: 0.5s;
}

.hero-slide .hero-description {
  --delay: 0.7s;
}

.hero-slide .btn {
  --delay: 0.9s;
}

* {
    box-sizing: border-box;
  }

  .laaaaaaa {
    width: 100%;
    padding: 20px;
      background-image: url('../assests/timeline-white-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
    
  }

  .containermain {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .section-header {
    text-align: center;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    color: #602222;
    /* color: #222; */
  }

  /* Video container responsive */
  .video-carousel {
  position: relative;
  width: 100%;
  max-width: 100vw; /* adjust as needed */
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.video-containerss {
  position: relative;
  width: 100%;
  height: auto;
}

.carousel-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}



/* for pop up */
/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  width: 90%;
  max-width: 850px; /* Slightly narrower for better focus */
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.popup-content img {
  width: 100%;
  max-height: 350px; /* Fixed height for consistency */
  object-fit: contain; /* Shows full image without cropping */
  margin: 15px 0;
  border-radius: 4px;
  background: #f8f8f8; /* Shows if image has transparency */
}

.popup-content h2 {
  color: #b38b6d;
  margin: 10px 0;
  font-size: 1.5rem;
}

.popup-content p {
  color: #555;
  margin: 10px 0 20px;
  font-size: 0.9rem;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

.close-btn:hover {
  color: #333;
}

#viewCollectionBtn {
  background-color: #b38b6d;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
  margin-top: 10px;
}

#viewCollectionBtn:hover {
  background-color: #9a755a;
  transform: translateY(-2px);
}
.naveen123{
  background-color: #be596b;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,123,255,0.2);
    transition: all 0.3s ease;
}