/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.mail {
  position: fixed;
  z-index: 996;
  opacity: 1;
  right: 0.5rem;
  top: 22rem;
  background: #1469c7;
  width: 2.5rem;
  height: 2.5rem;
}

.mail i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.call {
  position: fixed;
  z-index: 996;
  opacity: 1;
  right: 0.5rem;
  top: 19.4rem;
  background: #c90000;
  width: 2.5rem;
  height: 2.5rem;
}

.call i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

:root {
  --default-font:
    "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1a3a5c; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ededed; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --dark-color: #1b1b1b;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529; /* The default color of the main navmenu links */
  --nav-hover-color: #1a3a5c; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1a3a5c; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

hr {
  border: 1px solid #adadadff;
  margin: 0.8rem 0;
}

.accent-color {
  color: var(--accent-color);
}

.surface-color {
  background-color: var(--surface-color);
}

.fs-p8rem {
  font-size: 0.8rem;
}

.max-width {
  max-width: 400px;
}

.letter-spacing-p025rem {
  letter-spacing: 0.025rem;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

.breadcrumb {
  margin-block: 0;
}

.breadcrumb-section {
  position: sticky;
  top: 5rem;
  z-index: 99;
  background-color: var(--background-color);
  border-bottom: 1px solid var(--surface-color);
}

section {
  padding: 60px 10px;
  overflow: hidden;
}

.section-title {
  text-align: center;
}

.section-title h2 {
  font-size: 22px;
  font-weight: 800;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  color: var(--accent-color);
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title h2::before {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

@media (max-width: 992px) {
  .section-title h2::after {
    content: "";
    width: 18px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
  }

  .section-title h2::before {
    content: "";
    width: 18px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
  }
  .section-title h2 {
    font-size: 20px;
    line-height: 1;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: red;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: var(--accent-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo img {
  max-height: 80px;
}

@media (max-width: 428px) {
  #header .logo .companyname {
    visibility: hidden;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 17px;
  color: #ffffff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--accent-color);
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  font-weight: 400;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #e1444d;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  margin-top: 1.1rem;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul li a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
  color: var(--accent-color);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(63, 73, 83, 0.9);
  transition: 0.3s;
  z-index: 9999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--accent-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--accent-color);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/* home page section */

.hero-fixed {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: left; /* Force left alignment */
}

.hero-content h1 {
  font-size: 3.5rem;
}

.hero-image {
    text-align: left; /* Image also left */
}

.hero-logo {
    max-width: 600px;
    width: 100%;
}

@media (max-width: 992px) {
    .hero-fixed {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-logo {
        max-width: 300px;
    }

    .hero-content h1 {
  font-size: 2rem;
}
}

.about-heading {
  color: var(--accent-color);
}

.sustainability-bg {
  --default-color: #ffffff;
  --background-color: #000000;
  --heading-color: #ffffff;
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.sustainability-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay-2 {
position: absolute;
  inset: 0;
  background: var(--dark-color);
  opacity: 0.7;
  z-index: 1;
}

.sustainability-bg .container {
  position: relative;
  z-index: 3;
}

/* The custom card styling for the 'Sustainability' text */
.sustainability-card {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 2.5rem;
  max-width: 480px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

/* Positioning the card to center-left */
.card-positioner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding-left: 2rem;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
  .sustainability-card {
    max-width: 90%;
    padding: 1.5rem;
  }
  .card-positioner {
    left: 50%;
    transform: translate(-50%, -50%);
    padding-left: 0;
    width: 100%;
  }
}

/* Custom style for the large, elegant headline to match the image's font and color */
.elegant-headline {
  font-family: var(--heading-font);
  color: #1a3a5c;
  font-weight: 700;
  line-height: 1.2;
  font-style: italic;
}

/* Section container styling */
.ethics-section {
  background-color: var(--surface-color);
  padding: 20px;
}

.ethics-section p {
  text-align: justify;
}

/* Mobile adjustment for smaller headlines */
@media (max-width: 640px) {
  .elegant-headline {
    font-size: 1.6rem;
  }
}

/* Custom media query for 770px */
@media (max-width: 770px) {
  .custom-row {
    flex-direction: column !important;
  }
  .custom-row > div {
    width: 100%;
  }
}

.luxury-title {
  color: #0a3c60;
  font-size: 2rem;
  letter-spacing: 0.5px;
}

/* Premium Card */
.luxury-card {
  background: #ffffff;
  padding: 35px 30px;
  border: 2px solid transparent;
  transition: 0.35s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.lux-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #f5f7fa;
  border: 2px solid #dce3ea;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.lux-icon i {
  font-size: 28px;
  color: #0c4f77;
}

.luxury-card h4 {
  color: #0b4f77;
  font-weight: 700;
  margin-bottom: 10px;
}

.luxury-card p {
  color: #545454;
  margin: 0;
  line-height: 1.5;
}

.logomeaning p,
.diamond p {
  text-align: justify !important;
}

/* Mobile below 770px */
@media (max-width: 770px) {
  .logomeaning > div,
  .diamond > div {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .logomeaning img,
  .diamond img {
    width: 100% !important;
    max-width: 100% !important;
  }

  .logomeaning,
  .diamond {
    flex-direction: column !important;
  }

  .text-md-start {
    text-align: center !important;
  }
}

@media (max-width: 770px) {
  .cert-row {
    flex-direction: column !important;
  }

  .cert-row .col-md-5,
  .cert-row .col-md-7 {
    width: 100% !important;
    max-width: 100% !important;
  }

  .cert-row img {
    margin-bottom: 20px;
  }
}

/* Title */
.diamond-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  position: relative;
  padding-bottom: 10px;
}

.diamond-title::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--accent-color);
  display: block;
  margin: 10px auto 0;
  opacity: 0.4;
}

/* Card */
.clean-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.clean-card .card-title {
  font-weight: bold;
}

/* Icon */
.icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--background-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 26px;
  margin: 0 auto 20px;
}

/* Button */
.premium-btn {
  background-color: var(--accent-color);
  padding: 10px 24px;
  color: #fff;
  font-weight: 600;
  border-radius: 0;
}

.premium-btn:hover {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
  .clean-card {
    padding: 30px 22px;
  }
  .diamond-title {
    font-size: 1.8rem;
  }
}

.content-rjc {
  background-color: var(--surface-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact .info-item i {
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h4,
.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--default-color);
  text-align: center;
}

/* --------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact .contact-form {
  background-color: var(--surface-color);
  border: 1px solid var(--accent-color);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .contact-form {
    padding: 20px;
  }
}

.contact .contact-form input[type="text"],
.contact .contact-form input[type="email"],
.contact .contact-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 4px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form input[type="text"]:focus,
.contact .contact-form input[type="email"]:focus,
.contact .contact-form textarea:focus {
  border-color: var(--accent-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem
    color-mix(in srgb, var(--accent-color), transparent 75%); /* Custom focus glow */
}

.contact .contact-form input[type="text"]::placeholder,
.contact .contact-form input[type="email"]::placeholder,
.contact .contact-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
}

.contact .contact-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}



/* -------- footer ----------- */

.custom-footer {
  background: var(--accent-color);
  color: #1b2b47;
  flex-wrap: wrap;
}

.footer-logo {
  max-height: 100px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--contrast-color);
  text-align: justify;
}

.footer-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--contrast-color);
  text-decoration: none;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 3px;
  flex-wrap: wrap;
}

.contact-box span a {
  flex-wrap: wrap;
  color: var(--contrast-color) !important;
}

.contact-box i {
  font-size: 18px;
  color: var(--contrast-color);
}

.store-btn {
  height: 42px;
  cursor: pointer;
  transition: 0.3s;
}

.store-btn:hover {
  opacity: 0.85;
}

.footer-line {
  border-color: #b8b8b8;
}

.footer-bottom-text {
  color: var(--contrast-color);
  font-size: 14px;
}


.video-wrapper {
    max-width: 900px;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* softer shadow */
}

video {
  aspect-ratio: 16 / 9;
}

.play-button {
    z-index: 2;
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.video-wrapper {
    max-width: 900px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* Thumbnail overlay */
.video-wrapper.thumbnail::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.43);
    z-index: 1;
    transition: 0.3s ease;
}

/* Play button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
    transition: 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    color: #0d6efd;
}