/* General Body & Typography */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}


/* Reusing main page font for titles */
.animated-title,
.section-title {
    font-family: 'Cinzel Decorative', serif;
    background: linear-gradient(90deg, #ffffff, #fadd7e, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite; /* Reusing shine animation */
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Animations from main page */
@keyframes shine {
    to { background-position: 200% center; }
}

/* Hero Section */
.about-hero {
    position: relative;
    height: 60vh; /* Shorter hero section for about page */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
    background-attachment: fixed; /* Parallax effect */
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden; /* For any internal sparkles */
}

.hero-content {
    z-index: 10;
}

.about-hero h1 {
    font-size: 4em;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1.5em;
    color: #bbb;
    margin-top: 0;
}

.back-home-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9em;
    color: #000;
    text-decoration: none;
    background: linear-gradient(110deg, #fadd7e, #ffffff);
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 10;

     
    /* box-shadow: 0 0 10px #fadd7e; */
}

.back-home-btn.glow-btn:hover {
    transform: scale(1.05);
     box-shadow: 0 0 5px #fadd7e;
}

.floating-dots::before, .floating-dots::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 300%;
  top: -100%;
  left: -50%;
  background: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBg 15s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.floating-dots::after {
  animation-direction: reverse;
  opacity: 0.5;
}


@keyframes shine {
  to {
    background-position: 200% center;
  }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes moveBg {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10%, 10%); }
} 
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .floating-dots::before,
  .floating-dots::after {
    background: radial-gradient(#ffffff 2px, transparent 2px);
    background-size: 60px 60px;
  }
}

/* .diamond-radiance-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  background: #000;
  padding: 150px 10%;
  flex-wrap: wrap;
}

.diamond-info {
  max-width: 500px;
  color: #fadd7e;
  text-align: left;
  transition: all 0.3s ease;
  z-index: 2;
}

.diamond-info h2 {
  font-size: 2.8rem;
  font-family: 'Cinzel Decorative', cursive;
  margin-bottom: 20px;
   background: linear-gradient(90deg, #ffffff, #fadd7e, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     animation: shine 6s linear infinite; 
}

.diamond-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
}

.radiant-facets {
  position: relative;
  width: 400px;
  height: 400px;
}

.facet {
  position: absolute;
  width: 140px;
  height: 140px;
  line-height: 140px;
  border-radius: 50%;
  background: rgba(250, 221, 126, 0.05);
  border: 2px solid #fadd7e33;
  color: #ffffff;
  font-weight: 600;
  backdrop-filter: blur(10px);
  text-align: center;
  font-size: 0.9rem;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 2;
}

.facet:hover {
  background: #ffffff;
  color: #000;
  transform: scale(1.2) translate(-50%, -50%);
  box-shadow: 0 0 30px #fadd7e88;
}

.radiant-facets .facet:nth-child(1) { top: -5%; left: 50%; }
.radiant-facets .facet:nth-child(2) { top: 10%; left: 90%; }
.radiant-facets .facet:nth-child(3) { top: 90%; left: 90%; }
.radiant-facets .facet:nth-child(4) { top: 105%; left: 50%; }
.radiant-facets .facet:nth-child(5) { top: 90%; left: 10%; }
.radiant-facets .facet:nth-child(6) { top: 10%; left: 10%; }
.radiant-facets .facet:nth-child(7) { top: 50%; left: -10%; }
.radiant-facets .facet:nth-child(8) { top: 50%; left: 110%; }

@media (max-width: 960px) {
  .diamond-radiance-section {
    flex-direction: column;
    padding: 100px 5%;
  }
  .diamond-info {
    text-align: center;
  }
}


.center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: #fadd7e;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.center-icon.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
} */
/* .diamond-radiance-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: #000;
  padding: 10vw 5%;
  flex-wrap: wrap;
  overflow: hidden; 
  min-height: 100vh; 
}

.diamond-info {
  max-width: 500px;
  color: #fadd7e;
  text-align: left;
  transition: all 0.3s ease;
  z-index: 2;
  flex: 1;
}

.diamond-info h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-family: 'Cinzel Decorative', cursive;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff, #fadd7e, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}

.diamond-info p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: #ffffff;
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.radiant-facets {
  position: relative;
  width: clamp(250px, 40vw, 400px);
  height: clamp(250px, 40vw, 400px);
  margin: 0 auto;
}

.facet {
  position: absolute;
  width: clamp(80px, 12vw, 120px);
  height: clamp(80px, 12vw, 120px);
  line-height: clamp(80px, 12vw, 120px);
  border-radius: 50%;
  background: rgba(250, 221, 126, 0.05);
  border: 2px solid #fadd7e33;
  color: #ffffff;
  font-weight: 600;
  backdrop-filter: blur(10px);
  text-align: center;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 2;
}

.facet:hover, .facet.active {
  background: #ffffff;
  color: #000;
  transform: scale(1.2) translate(-50%, -50%);
  box-shadow: 0 0 30px #fadd7e88;
}

.radiant-facets .facet:nth-child(1) { top: 0%; left: 50%; }
.radiant-facets .facet:nth-child(2) { top: 20%; left: 85%; }
.radiant-facets .facet:nth-child(3) { top: 80%; left: 85%; }
.radiant-facets .facet:nth-child(4) { top: 100%; left: 50%; }
.radiant-facets .facet:nth-child(5) { top: 80%; left: 15%; }
.radiant-facets .facet:nth-child(6) { top: 20%; left: 15%; }
.radiant-facets .facet:nth-child(7) { top: 50%; left: 0%; }
.radiant-facets .facet:nth-child(8) { top: 50%; left: 100%; }

.center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(40px, 8vw, 64px);
  color: #fadd7e;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.center-icon.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.diamond-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-gems {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.diamond-img {
  position: absolute;
  width: clamp(30px, 5vw, 50px);
  animation: float 10s ease-in-out infinite;
}

.diamond-1 { top: 10%; left: 20%; animation-delay: 0s; }
.diamond-2 { top: 30%; left: 70%; animation-delay: 2s; }
.diamond-3 { top: 60%; left: 30%; animation-delay: 4s; }
.diamond-4 { top: 80%; left: 80%; animation-delay: 6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 960px) {
  .diamond-radiance-section {
    flex-direction: column;
    padding: 15vw 5%;
    gap: 20px;
  }
  .diamond-info {
    text-align: center;
    max-width: 100%;
  }
  .radiant-facets {
    width: clamp(200px, 60vw, 300px);
    height: clamp(200px, 60vw, 300px);
  }
  .facet {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    line-height: clamp(60px, 15vw, 80px);
    font-size: clamp(0.6rem, 2.5vw, 0.8rem);
  }
  .radiant-facets .facet:nth-child(1) { top: 0%; left: 50%; }
  .radiant-facets .facet:nth-child(2) { top: 25%; left: 80%; }
  .radiant-facets .facet:nth-child(3) { top: 75%; left: 80%; }
  .radiant-facets .facet:nth-child(4) { top: 100%; left: 50%; }
  .radiant-facets .facet:nth-child(5) { top: 75%; left: 20%; }
  .radiant-facets .facet:nth-child(6) { top: 25%; left: 20%; }
  .radiant-facets .facet:nth-child(7) { top: 50%; left: 5%; }
  .radiant-facets .facet:nth-child(8) { top: 50%; left: 95%; }
}

@media (max-width: 600px) {
  .radiant-facets {
    width: clamp(150px, 80vw, 250px);
    height: clamp(150px, 80vw, 250px);
  }
  .facet {
    width: clamp(50px, 18vw, 70px);
    height: clamp(50px, 18vw, 70px);
    line-height: clamp(50px, 18vw, 70px);
    font-size: clamp(0.5rem, 3vw, 0.7rem);
  }
} */
.diamond-radiance-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  background: #000;
  /* padding: 150px 10%;
   */
   padding: 150px 11% 150px 3%;
  flex-wrap: wrap;
  overflow: hidden;
  min-height: 100vh;
}

.diamond-info {
  max-width: 500px;
  color: #fadd7e;
  text-align: left;
  transition: all 0.3s ease;
  z-index: 2;
  flex: 1;
}

.diamond-info h2 {
  font-size: 2.8rem;
  font-family: 'Cinzel Decorative', cursive;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff, #fadd7e, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}

.diamond-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.radiant-facets {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.facet {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(250, 221, 126, 0.05);
  border: 2px solid #fadd7e33;
  color: #ffffff;
  font-weight: 600;
  backdrop-filter: blur(10px);
  text-align: center;
  font-size: 0.9rem;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.facet:hover, .facet.active {
  background: #ffffff;
  color: #000;
  transform: scale(1.2) translate(-50%, -50%);
  box-shadow: 0 0 30px #fadd7e88;
}

/* Original laptop facet positions */
.radiant-facets .facet:nth-child(1) { top: -5%; left: 50%; }
.radiant-facets .facet:nth-child(2) { top: 10%; left: 90%; }
.radiant-facets .facet:nth-child(3) { top: 90%; left: 90%; }
.radiant-facets .facet:nth-child(4) { top: 105%; left: 50%; }
.radiant-facets .facet:nth-child(5) { top: 90%; left: 10%; }
.radiant-facets .facet:nth-child(6) { top: 10%; left: 10%; }
.radiant-facets .facet:nth-child(7) { top: 50%; left: -10%; }
.radiant-facets .facet:nth-child(8) { top: 50%; left: 110%; }

.center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: #fadd7e;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.center-icon.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
      z-index: 3;
}
/* 
.diamond-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
} */

/* .floating-gems {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
} */

.diamond-img {
  position: absolute;
  width: clamp(30px, 5vw, 50px);
  animation: float 10s ease-in-out infinite;
}

.diamond-1 { top: 10%; left: 20%; animation-delay: 0s; }
.diamond-2 { top: 30%; left: 70%; animation-delay: 2s; }
.diamond-3 { top: 60%; left: 30%; animation-delay: 4s; }
.diamond-4 { top: 80%; left: 80%; animation-delay: 6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 960px) {
  .diamond-radiance-section {
    flex-direction: column;
    padding: 80px 5%;
    gap: 30px;
  }
  .diamond-info {
    margin-top: 200px;
    text-align: center;
    max-width: 100%;
  }
  
.diamond-info h2 {
  font-size: 2.2rem;
}
  .radiant-facets {
    margin-top: 50px;
    width: clamp(200px, 60vw, 400px);
    height: clamp(200px, 60vw, 350px);
  }
  .facet {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    font-size: clamp(0.5rem, 2.5vw, 0.7rem);
    padding: 5px;
  }
  /* Adjusted positions to maintain diamond shape */
  .radiant-facets .facet:nth-child(1) { top: 5%; left: 50%; }
  .radiant-facets .facet:nth-child(2) { top: 20%; left: 80%; }
  .radiant-facets .facet:nth-child(3) { top: 80%; left: 80%; }
  .radiant-facets .facet:nth-child(4) { top: 95%; left: 50%; }
  .radiant-facets .facet:nth-child(5) { top: 80%; left: 20%; }
  .radiant-facets .facet:nth-child(6) { top: 20%; left: 20%; }
  .radiant-facets .facet:nth-child(7) { top: 50%; left: 10%; }
  .radiant-facets .facet:nth-child(8) { top: 50%; left: 90%; }
}

@media (max-width: 600px) {
  .diamond-radiance-section {
    padding: 50px 5%;
  }
  .radiant-facets {
    width: clamp(150px, 80vw, 340px);
    height: clamp(150px, 80vw, 340px);
  }
  .facet {
    width: clamp(50px, 18vw, 70px);
    height: clamp(50px, 18vw, 70px);
    font-size: clamp(0.4rem, 3vw, 0.6rem);
    padding: 4px;
  }
  /* Tighter positions for mobile */
  .radiant-facets .facet:nth-child(1) { top: 10%; left: 50%; }
  .radiant-facets .facet:nth-child(2) { top:24%; left: 75%; }
  .radiant-facets .facet:nth-child(3) { top: 76%; left: 75%; }
  .radiant-facets .facet:nth-child(4) { top: 90%; left: 50%; }
  .radiant-facets .facet:nth-child(5) { top: 75%; left: 25%; }
  .radiant-facets .facet:nth-child(6) { top: 24%; left: 25%; }
  .radiant-facets .facet:nth-child(7) { top: 50%; left: 15%; }
  .radiant-facets .facet:nth-child(8) { top: 50%; left: 85%; }
}
/* new section */
.why-unique-section {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 80px 20px;
  background-color: #000;
}

.why-card {
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 3;
  /* background: none; */
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  max-height: 500px;
}

.why-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.why-card.reverse {
  flex-direction: row-reverse;
}

.why-image {
  flex: 1;
  animation: floatImage 6s ease-in-out infinite;
  text-align: center;
  z-index: 3;
}

.why-image img {
width:  100%;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  z-index: 3;
}
.img-1 img{
  width:  70% !important;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.why-text {
  flex: 1;
  color: #f4f4f4;
  z-index: 3;
}

.glow-heading {
   font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffffff, #fadd7e, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

  @media (max-width: 768px) {
      .why-card {
        flex-direction: column !important;
        align-items: center;
        gap: 30px;
        margin-bottom: 60px;
      }

      .why-image img {
        max-width: 100%;
      }

      .glow-heading {
        font-size: 1.8rem;
        text-align: center;
      }

      .why-text {
        text-align: center;
        padding: 0 10px;
      }

      .why-text p {
        font-size: 1rem;
      }

      .floating-gems .diamond-img {
        width: 40px;
      }
    }

 .fade-in-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease-out forwards;
}

/* Keyframes for fade and upward slide */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




