/* Core Celestial External Stylesheet */
:root {
  --primary: #27A0C7;
  --accent: #fbc02d;
  --success: #43a047;
  --divider: #cfd4db;
  --bg: #f7f7f7;
  --text: #222;
  --muted: #555;
  --radius: 0;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}
body {
  margin: 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #222;
  margin-top: 0;
}
h1 { font-size: 2.5em; letter-spacing: -1px; }
h2 { font-size: 2em; }
h3 { font-size: 1.3em; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: sticky; top: 0; z-index: 10;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0.5em 1em;
  position: relative;
}
.nav img { height: 49px; width: auto; }
.nav-list {
  list-style: none; display: flex; gap: 2em; margin: 0; padding: 0;
  font-size: 1.1em;
  font-weight: 500;
  align-items: center;
  position: relative;
  transition: all 0.2s;
}
.nav-list li { position: relative; }
.nav a, .dropdown-trigger {
  text-decoration: none; color: var(--text); font-weight: 500;
  transition: color 0.2s, background 0.2s;
  padding: 0.3em 0.2em;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  outline: none;
  display: flex; align-items: center;
  cursor: pointer;
}
.nav a.active, .nav a:hover, .dropdown-trigger:focus {
  color: var(--primary);
}
.menu-toggle { display: none; background: none; border: none; font-size: 2em; cursor: pointer; color: var(--primary); }
.dropdown { position: relative; display: flex; align-items: center; }
.material-caret {
  font-size: 0.8em;
  margin-left: 0.2em;
  vertical-align: middle;
  position: relative;
  top: -1px;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
  display: inline-block;
}
.dropdown.open .material-caret { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 8px 32px rgba(30,136,229,0.13), 0 1.5px 6px rgba(0,0,0,0.04);
  border-radius: 12px;
  min-width: 480px;
  z-index: 9999;
  padding: 18px 32px;
  margin-top: 10px;
  flex-direction: row;
  gap: 36px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s cubic-bezier(.4,0,.2,1), transform 0.22s cubic-bezier(.4,0,.2,1);
}
.dropdown.open > .dropdown-menu {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scaleY(1);
}
.dropdown-menu li { 
  width: auto; 
  list-style: none;
}
.dropdown-menu a {
  display: block;
  padding: 0.5em 0.8em;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  background: none;
  border-radius: 6px;
  font-size: 1.1em;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover {
  background: var(--primary);
  color: #fff;
}
.center { text-align: center; }
.divider {
  height: 2px; background: var(--divider); width: 60px; margin: 0.5em auto 2em auto;
}
main { max-width: 1200px; margin: 0 auto; padding: 0 1em 0 1em; }
section { margin-bottom: 2px; }

/* Fix anchor link scrolling to prevent titles from being hidden behind fixed header */
#about, #mines, #usp, #timeline, #responsibility, #gemstones, #contact {
  scroll-margin-top: 80px;
}

/* Privacy Policy Page Styles */
.privacy-section {
  padding: 120px 0 80px 0;
  background: #f7fafd;
  min-height: 100vh;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.privacy-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.privacy-container h1 {
  font-size: 3.2em;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -1px;
}

.privacy-content {
  background: #fff;
  padding: 80px 70px;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(30, 136, 229, 0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  margin: 0 auto;
  max-width: 900px;
}

.privacy-content h2 {
  font-size: 1.4em;
  font-weight: 700;
  color: #27A0C7;
  margin: 40px 0 20px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  font-size: 1.1em;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
}

.privacy-content a {
  color: #27A0C7;
  text-decoration: underline;
  font-weight: 500;
}

.privacy-content a:hover {
  color: #2196f3;
}

@media (max-width: 768px) {
  .privacy-section {
    padding: 100px 0 60px 0;
  }
  
  .privacy-container {
    padding: 0 15px;
  }
  
  .privacy-container h1 {
    font-size: 2em;
    margin-bottom: 30px;
  }
  
  .privacy-content {
    padding: 40px 30px;
  }
  
  .privacy-content h2 {
    font-size: 1.3em;
    margin: 30px 0 15px 0;
  }
  
  .privacy-content p {
    font-size: 1em;
    line-height: 1.6;
  }
}
.hero-section {
  background: #27A0C7;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hero-bg {
  width: 100vw;
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 0 0;
  gap: 56px;
  min-height: 520px;
}
.hero-box {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  padding: 56px 48px 44px 48px;
  max-width: 520px;
  min-width: 320px;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}
.hero-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.1em;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5em;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.hero-subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25em;
  color: #888;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.5;
}
.hero-img-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1 1 400px;
  min-width: 260px;
  max-width: 420px;
  height: 100%;
}
.hero-img {
  width: 100%;
  max-width: 400px;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.twocol {
  display: flex; flex-wrap: wrap; gap: 2em; align-items: center;
}
.twocol > div { flex: 1 1 320px; min-width: 260px; }
.imgbox img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.iconboxes {
  display: flex; gap: 1em; justify-content: center; flex-wrap: wrap; margin-top: 2em;
}
.iconbox {
  background: var(--bg); border-radius: 10px; padding: 1.2em 1em; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); flex: 1 1 120px; min-width: 120px;
}
.iconbox svg { margin-bottom: 0.5em; }
.timeline {
  max-width: 700px; margin: 0 auto 2em auto; position: relative;
  padding-left: 30px;
}
.timeline:before {
  content: ""; position: absolute; left: 12px; top: 0; bottom: 0; width: 4px; background: var(--divider);
  border-radius: 2px;
}
.event {
  position: relative; margin-bottom: 2em; padding-left: 32px;
}
.event:last-child { margin-bottom: 0; }
.event .dot {
  position: absolute; left: -2px; top: 0.3em; width: 20px; height: 20px; background: var(--primary);
  border-radius: 50%; border: 3px solid #fff; box-shadow: 0 0 0 2px var(--divider);
}
.event-year { font-weight: bold; color: var(--primary); }
.faq {
  max-width: 700px; margin: 0 auto;
}

.contact {
  background: var(--bg); border-radius: var(--radius); padding: 2em; max-width: 600px; margin: 0 auto;
  box-shadow: var(--shadow);
}
.contact-form label { display: block; margin: 1em 0 0.3em 0; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 0.7em; border: 1px solid var(--divider); border-radius: 6px; font-size: 1em;
}
.contact-form button {
  margin-top: 1em; background: var(--primary); color: #fff; border: none; padding: 0.8em 2em;
  border-radius: 6px; font-size: 1em; cursor: pointer; font-weight: 600;
}
footer {
  background: #222; color: #fff; text-align: center; padding: 1.5em 0 1em 0; font-size: 0.95em;
}
/* ABOUT US SECTION - IMPROVED */
.about-section {
  background: #f7fafd;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 48px 0 80px 0; /* Reduce top padding to remove white gap */
  z-index: 1;
}
.about-head {
  text-align: center;
  margin-bottom: 48px;
}
.about-head h2 {
  font-size: 1.3em;
  letter-spacing: 2px;
  color: #222;
  margin: 0;
}
.about-tagline {
  font-size: 1.1em;
  color: #555;
  margin: 0.5em 0 1.5em 0;
  font-weight: 500;
}
.divider {
  height: 2px;
  background: var(--primary);
  width: 60px;
  margin: 0.5em auto 2em auto;
  border-radius: 2px;
}
.about-row {
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(30, 136, 229, 0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  overflow: hidden;
  align-items: stretch;
  min-height: 260px;
  transition: box-shadow 0.2s;
}
.about-card:hover {
  box-shadow: 0 12px 40px rgba(30, 136, 229, 0.16), 0 2px 8px rgba(0,0,0,0.06);
}
.about-card-reverse {
  flex-direction: row-reverse;
}
.about-card-img {
  flex: 1 1 380px;
  min-width: 220px;
  max-width: 420px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.about-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.about-card:hover .about-card-img img {
  transform: scale(1.04);
}
.about-card-content {
  flex: 2 1 0;
  padding: 54px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-card-content h3 {
  font-size: 1.25em;
  font-weight: 700;
  margin: 0 0 0.7em 0;
  color: #222;
  letter-spacing: 0.5px;
  display: block;
  border-bottom: 2px solid #e3eaf3;
  padding-bottom: 0.3em;
}
.about-icon {
  font-size: 1.1em;
  vertical-align: middle;
}
.about-card-content p {
  color: #444;
  font-size: 1.07em;
  margin: 0;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .about-row {
    gap: 32px;
  }
  .about-card, .about-card-reverse {
    flex-direction: column !important;
    min-height: 0;
  }
  .about-card-img {
    max-width: 100%; min-width: 0; height: 180px;
  }
  .about-card-img img {
    height: 180px;
  }
  .about-card-content {
    padding: 24px 14px;
  }
}
@media (max-width: 900px) {
  .nav-list {
    flex-direction: column;
    gap: 0;
    position: absolute; top: 100%; right: 0; left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: none;
  }
  .nav-list.open { display: flex; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    min-width: 0;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    flex-direction: column;
    gap: 0;
    left: 0;
    top: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: flex;
  }
  .dropdown-menu a {
    padding: 0.7em 1.2em;
    font-size: 1em;
  }
} 
/* USP Section: Enhanced Premium Look */
.usp-section {
  background: #27a0c7;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0 80px 0; /* More vertical padding */
  z-index: 1;
}

.usp-head {
  text-align: center;
  color: #fff;
  margin-bottom: 32px; /* Reduce gap to connect headline to cards */
}

.usp-head h2 {
  color: #fff;
}

.usp-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.usp-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 40px rgba(39,160,199,0.16), 0 1.5px 6px rgba(0,0,0,0.04); /* Stronger shadow */
  padding: 40px 32px 32px 32px;
  flex: 1 1 420px;
  min-width: 320px;
  max-width: 480px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s;
}

.usp-card:hover {
  box-shadow: 0 16px 48px rgba(39,160,199,0.22), 0 2px 8px rgba(0,0,0,0.06);
}
.usp-icon {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-card h3 {
  font-size: 1.18em;
  font-weight: 700;
  color: #222;
  margin: 0 0 0.7em 0;
  letter-spacing: 0.5px;
}
.usp-card p {
  color: #444;
  font-size: 1.04em;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .usp-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 8px;
  }
  .usp-card {
    max-width: 100%;
    width: 100%;
    padding: 32px 12px 28px 12px;
  }
} 
/* Timeline Section: Modern Horizontal Timeline */
.timeline-section {
  background: #27a0c7;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0 80px 0;
  z-index: 1;
}
.timeline-head {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
.timeline-head h2 {
  color: #fff;
}
.timeline-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.timeline-event {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 340px;
}
.timeline-dot {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid #2196f3;
  border-radius: 50%;
  margin-bottom: 16px;
  z-index: 2;
}
.timeline-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 40px rgba(39,160,199,0.13), 0 1.5px 6px rgba(0,0,0,0.04);
  padding: 32px 24px 24px 24px;
  text-align: center;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-year {
  font-size: 1.3em;
  font-weight: 700;
  color: #27a0c7;
  margin-bottom: 10px;
}
.timeline-desc {
  color: #222;
  font-size: 1em;
}
/* Timeline connecting line */
.timeline-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 4px;
  background: #2196f3;
  z-index: 1;
}
.timeline-event:first-child .timeline-dot {
  margin-left: 0;
}
.timeline-event:last-child .timeline-dot {
  margin-right: 0;
}
/* Responsive: stack vertically on mobile */
@media (max-width: 900px) {
  .timeline-row {
    flex-direction: column;
    gap: 48px;
    align-items: center;
  }
  .timeline-row::before {
    top: 0;
    left: 28px;
    right: auto;
    width: 4px;
    height: 100%;
  }
  .timeline-event {
    flex-direction: row;
    align-items: flex-start;
    min-width: 0;
    max-width: 100%;
  }
  .timeline-dot {
    margin: 0 24px 0 0;
  }
  .timeline-card {
    text-align: left;
    align-items: flex-start;
    min-width: 0;
    max-width: 100%;
  }
} 
/* Timeline Section: Premium Vertical Timeline on White */
.timeline-section-white {
  background: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0 80px 0;
  z-index: 1;
}
.timeline-head-white {
  text-align: center;
  color: #222;
  margin-bottom: 40px;
}
.timeline-head-white h2 {
  color: #222;
  font-weight: 700;
  letter-spacing: 2px;
}
.divider-blue {
  width: 60px;
  height: 4px;
  background: #27a0c7;
  margin: 18px auto 0 auto;
  border-radius: 2px;
}
/* Improved double timeline: left/right split */
.timeline-vertical {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}
.timeline-vertical::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #27a0c7;
  transform: translateX(-50%);
  z-index: 0;
}
.timeline-event-vertical {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin-bottom: 56px;
  z-index: 1;
  flex: 1;
}
.timeline-event-vertical.right {
  flex-direction: row-reverse;
  justify-content: flex-start;
}
.timeline-card-vertical {
  flex-basis: 40%;
  max-width: 400px;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 40px rgba(39,160,199,0.13), 0 1.5px 6px rgba(0,0,0,0.04);
  padding: 32px 24px 24px 24px;
  text-align: left;
  position: relative;
  z-index: 2;
}
.timeline-event-vertical:not(.right) .timeline-card-vertical {
  margin-right: 56px !important;
  margin-left: 0 !important;
  text-align: right;
}
.timeline-event-vertical.right .timeline-card-vertical {
  margin-left: 56px !important;
  margin-right: 0 !important;
  text-align: left;
}
.timeline-dot-vertical {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid #27a0c7;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  z-index: 2;
}
.timeline-year-vertical {
  font-size: 1.2em;
  font-weight: 700;
  color: #27a0c7;
  margin-bottom: 10px;
}
.timeline-desc-vertical {
  color: #222;
  font-size: 1em;
}
@media (max-width: 900px) {
  .timeline-vertical::before {
    left: 24px;
    transform: none;
  }
  .timeline-event-vertical,
  .timeline-event-vertical.right {
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 40px;
  }
  .timeline-dot-vertical {
    left: 24px;
    transform: none;
    position: absolute;
    top: 16px;
  }
  .timeline-card-vertical {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0 0 0 48px;
    text-align: left;
  }
} 
/* Timeline Section: Stacked Card Timeline */
.timeline-section-stacked {
  background: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0 80px 0;
  z-index: 1;
}
.timeline-head-stacked {
  text-align: center;
  color: #222;
  margin-bottom: 40px;
}
.timeline-head-stacked h2 {
  color: #222;
  font-weight: 700;
  letter-spacing: 2px;
}
.timeline-stacked {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.timeline-card-stacked {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(39,160,199,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  border-left: 6px solid #27a0c7;
  padding: 32px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.timeline-year-stacked {
  font-size: 1.15em;
  font-weight: 700;
  color: #27a0c7;
  margin-bottom: 6px;
}
.timeline-desc-stacked {
  color: #222;
  font-size: 1em;
}
@media (max-width: 600px) {
  .timeline-stacked {
    gap: 24px;
  }
  .timeline-card-stacked {
    padding: 24px 16px 20px 16px;
  }
} 
/* Responsibility Section: Premium Card Row */
.responsibility-section {
  background: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0 80px 0;
  z-index: 1;
}
.responsibility-head {
  text-align: center;
  color: #222;
  margin-bottom: 40px;
}
.responsibility-head h2 {
  color: #222;
  font-weight: 700;
  letter-spacing: 2px;
}
.responsibility-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px auto;
}
.responsibility-intro h3 {
  font-size: 1.2em;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}
.responsibility-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.responsibility-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(39,160,199,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  gap: 12px;
}
.responsibility-icon {
  margin-bottom: 10px;
}
.responsibility-title {
  font-weight: 700;
  color: #222;
  font-size: 1.1em;
}
.responsibility-desc {
  color: #444;
  font-size: 1em;
}
@media (max-width: 900px) {
  .responsibility-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .responsibility-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    align-items: flex-start;
  }
} 
/* Gemstones Section: Premium Two-Column and Card Row */
.gemstones-section {
  background: #f7fafd;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 90px 0 90px 0;
  z-index: 1;
}
.gemstones-head {
  text-align: center;
  color: #222;
  margin-bottom: 48px;
}
.gemstones-head h2 {
  color: #222;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 2.1em;
  margin-bottom: 0.2em;
}
.gemstones-main {
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 56px auto;
  padding: 0 16px;
}
.gemstones-text {
  flex: 1 1 380px;
  min-width: 260px;
  max-width: 520px;
}
.gemstones-text h3 {
  font-size: 1.2em;
  font-weight: 600;
  color: #222;
  margin-bottom: 16px;
}
.gemstones-imgbox {
  flex: 1 1 480px;
  min-width: 260px;
  max-width: 520px;
  display: flex;
  justify-content: center;
}
.gemstones-imgbox img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: 0 12px 48px rgba(39,160,199,0.18), 0 2px 8px rgba(0,0,0,0.08);
  border: 3px solid #e3f2fd;
}
.gemstones-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.gemstones-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(39,160,199,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  border-left: 6px solid #27a0c7;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 520px;
  flex: 1 1 480px;
  gap: 12px;
}
.gemstones-icon {
  margin-bottom: 10px;
}
.gemstones-title {
  font-weight: 700;
  color: #222;
  font-size: 1.1em;
}
.gemstones-desc {
  color: #444;
  font-size: 1em;
}
@media (max-width: 900px) {
  .gemstones-main {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
  }
  .gemstones-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .gemstones-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    align-items: flex-start;
  }
} 
.gemstones-info-blocks {
  max-width: 1100px;
  margin: 0 auto 48px auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.gemstones-info-block {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(39,160,199,0.08);
  padding: 36px 32px 32px 32px;
  text-align: left;
  border-left: 6px solid #27a0c7;
}
.gemstones-info-block h4 {
  color: #222;
  font-size: 1.18em;
  font-weight: 700;
  margin-bottom: 12px;
}
.gemstones-info-block p {
  color: #444;
  font-size: 1.04em;
  margin: 0;
}
@media (max-width: 900px) {
  .gemstones-main {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
  }
  .gemstones-info-blocks {
    gap: 24px;
  }
}
/* Mines Section: Premium Card Grid */
.mines-section {
  background: #fff;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 80px 0 80px 0;
  z-index: 1;
}
.mines-head {
  text-align: center;
  color: #222;
  margin-bottom: 32px;
}
.mines-head h2 {
  color: #222;
  font-weight: 700;
  letter-spacing: 2px;
}
.mines-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px auto;
  color: #444;
  font-size: 1.08em;
}
.mines-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.mines-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(39,160,199,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
  max-width: 520px;
  flex: 1 1 480px;
  overflow: hidden;
}
.mines-imgbox {
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7fafd;
}
.mines-imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mines-content {
  padding: 28px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mines-title {
  font-weight: 700;
  color: #222;
  font-size: 1.1em;
  margin-bottom: 4px;
}
.mines-desc {
  color: #444;
  font-size: 1em;
}
@media (max-width: 900px) {
  .mines-row {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .mines-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    align-items: flex-start;
  }
  .mines-imgbox {
    height: 180px;
  }
} 
.contact-section {
  background: #f7fafd;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 90px 0 90px 0;
  z-index: 1;
}
.contact-head {
  text-align: center;
  color: #222;
  margin-bottom: 40px;
}
.contact-head h2 {
  color: #222;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 2em;
  margin-bottom: 0.2em;
}
.contact-row {
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-form {
  flex: 1 1 420px;
  max-width: 480px;
}
.contact-details {
  flex: 1 1 340px;
  max-width: 420px;
  text-align: left;
  margin: 0;
  align-self: center;
}
@media (max-width: 900px) {
  .contact-row {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .contact-form, .contact-details {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .contact-details {
    align-self: flex-start;
  }
}
.contact-details {
  text-align: center;
  margin-bottom: 32px;
}
.contact-address {
  font-size: 1.08em;
  color: #222;
  margin-bottom: 12px;
}
.contact-address a {
  color: #27a0c7;
  text-decoration: underline;
}
.contact-social {
  margin-bottom: 12px;
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #27a0c7;
  color: #fff;
  border-radius: 0;
  padding: 8px 20px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1em;
  transition: background 0.2s;
}
.contact-social-btn:hover {
  background: #2196f3;
}
.contact-form {
  background: #fff;
  max-width: 480px;
  margin: 0 auto;
  padding: 36px 32px 32px 32px;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(39,160,199,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea {
  border: 1.5px solid #e3f2fd;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1em;
  font-family: inherit;
  background: #f9fbfd;
  color: #222;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #27a0c7;
  outline: none;
}
.contact-form button {
  background: #27a0c7;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.08em;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #2196f3;
}
@media (max-width: 600px) {
  .contact-form {
    padding: 24px 12px 20px 12px;
  }
} 
.contact-details-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(39,160,199,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
  border-left: 6px solid #27a0c7;
  padding: 36px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: center;
}
.contact-address, .contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08em;
  color: #222;
  margin-bottom: 8px;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .contact-details-card {
    padding: 24px 12px 20px 12px;
    align-self: stretch;
  }
} 
.contact-footer-bar {
  margin-top: 48px;
  padding: 20px 0 10px 0;
  text-align: center;
  color: #222;
  font-size: 1em;
  background: #e3f2fd;
  border-radius: 0 0 18px 18px;
}
.contact-footer-bar a {
  color: #27a0c7;
  text-decoration: underline;
  font-weight: 500;
} 
.site-footer {
  background: var(--primary);
  color: #fff;
  padding: 32px 0 20px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  font-size: 1em;
  border-top: 2px solid #e3f2fd;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 16px;
}
.footer-left a, .footer-social {
  color: #fff;
}
.footer-left a:hover, .footer-social:hover {
  color: #e3f2fd;
}
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
} 
.contact-section-modern {
  background: linear-gradient(120deg, #f7fafd 60%, #fffbe9 100%);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 120px 0 60px 0;
  margin-top: 60px;
  z-index: 1;
}
.contact-modern-row {
  display: flex;
  flex-direction: row;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
  padding: 0 16px;
}
.contact-modern-left,
.contact-modern-form {
  flex: 1 1 0;
  max-width: 520px;
  min-width: 0;
}
.contact-modern-left h2 {
  font-size: 2.2em;
  font-weight: 800;
  margin-bottom: 16px;
}
.contact-modern-desc {
  font-size: 1.08em;
  color: #444;
  margin-bottom: 32px;
}
.contact-modern-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-modern-list li {
  font-size: 1.08em;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #222;
}
.contact-modern-list a {
  color: #222;
  text-decoration: underline;
  font-weight: 500;
}
.contact-modern-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.contact-modern-icon.email::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url('data:image/svg+xml;utf8,<svg fill="%2327a0c7" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 2v.01L12 13 4 6.01V6h16zM4 20V8.99l8 6.99 8-6.99V20H4z"/></svg>') no-repeat center/contain;
}
.contact-modern-icon.address::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url('data:image/svg+xml;utf8,<svg fill="%23fbc02d" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>') no-repeat center/contain;
}
.contact-modern-icon.phone::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url('data:image/svg+xml;utf8,<svg fill="%2327a0c7" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.62 10.79a15.05 15.05 0 006.59 6.59l2.2-2.2a1 1 0 011.11-.21c1.21.49 2.53.76 3.88.76a1 1 0 011 1V20a1 1 0 01-1 1C10.07 21 3 13.93 3 5a1 1 0 011-1h3.5a1 1 0 011 1c0 1.35.26 2.67.76 3.88a1 1 0 01-.21 1.11l-2.2 2.2z"/></svg>') no-repeat center/contain;
}
.contact-modern-form {
  flex: 1 1 420px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-modern-form input,
.contact-modern-form textarea {
  border: 1.5px solid #e3f2fd;
  border-radius: 8px;
  padding: 14px 14px;
  font-size: 1em;
  font-family: inherit;
  background: #fff;
  color: #222;
  transition: border 0.2s;
  box-shadow: 0 2px 8px rgba(39,160,199,0.04);
}
.contact-modern-form input:focus,
.contact-modern-form textarea:focus {
  border: 1.5px solid #27a0c7;
  outline: none;
}
.contact-modern-form textarea {
  min-height: 100px;
  resize: vertical;
}
.contact-modern-submit {
  background: #27a0c7;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.08em;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(39,160,199,0.08);
}
.contact-modern-submit:hover {
  background: #2196f3;
  filter: none;
  box-shadow: 0 4px 16px rgba(39,160,199,0.12);
}
@media (max-width: 900px) {
  .contact-modern-row {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }
  .contact-modern-left, .contact-modern-form {
    max-width: 100%;
    width: 100%;
  }
} 
.section-divider {
  width: 100vw;
  height: 4px;
  background: linear-gradient(90deg, #27a0c7 0%, #2196f3 100%);
  margin: 0;
  border: none;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: 2;
  opacity: 0.18;
} 
.about-section {
  background: #f7fafd;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 48px 0 80px 0; /* Reduce top padding to remove white gap */
  z-index: 1;
}
.usp-section {
  margin-bottom: 0;
  padding-bottom: 48px; /* Reduce bottom padding if needed */
}
.section-divider {
  margin-top: 0;
  margin-bottom: 0;
} 
.contact-section-modern {
  padding-top: 80px;
  margin-top: 1px;
}
.gemstones-section {
  padding-bottom: 48px;
  margin-bottom: 0;
}
.site-footer {
  padding-top: 32px;
} 
.mines-section {
  padding-top: 32px;
  margin-top: 0;
  padding-bottom: 80px;
  margin-bottom: 0;
}
.section-divider {
  margin-top: 0;
  margin-bottom: 0;
} 