/**
* Template Name: Axis
* Template URL: https://bootstrapmade.com/axis-bootstrap-corporate-template/
* Updated: Sep 13 2025 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*
* ---------------------------------------------------------------
* CLEANUP NOTES (this pass):
* - Removed duplicate / dead rules (same selector redefined with the
*   declaration that was never actually winning the cascade removed).
* - Merged rules that were split across multiple far-apart blocks
*   (e.g. .about .image-wrapper, .about .stats-row, swiper pagination).
* - Consolidated many scattered "@media (max-width: 768px)" patch
*   blocks per section into a single media block per section.
* - Fixed a broken "body { ... a { ... }" nesting bug (missing
*   closing brace) and a missing "@media (max-width: 768px) {" wrapper
*   around the Contact section's mobile rules (it was leaking as
*   global/unconditional CSS before).
* - Removed two invalid declarations: "margin: left 0;" and
*   "width: 0% transparent;".
* - Re-grouped misplaced rules (logo styles, header.scrolled, footer
*   nav underline) back into their logical sections.
* ---------------------------------------------------------------
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
: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: "Lato", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #e2e2e4;
  --default-color: #102542;
  --heading-color: #102542;
  --accent-color: #102542;
  --surface-color: #F8F5EE;
  --contrast-color: #F4F5F0;
  --golden-headings:#D2A24A;
   --navy-deep:#070c1e;
    --navy:#0b1330;
    --navy-card:#101a3a;
    --gold:#e8b647;
    --gold-soft:#f4d78c;
    --ink:#f4ede0;
    --ink-dim:#9aa3c4;
    --line: rgba(232,182,71,0.35);
}

/* Nav Menu Colors */
:root {
  --nav-color: #D4A64A;
  --nav-hover-color: #100c0c;
  --nav-mobile-background-color: #f7f0f0;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #666666;
  --nav-dropdown-hover-color: #D4A64A;
}

/* Color Presets */
.light-background {
  --background-color: #F8F5EE;
  --surface-color: #fafcff;
}

.dark-background {
  --background-color: #1a1a1a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #262626;
  --contrast-color: #ffffff;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Lato", sans-serif;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

a:hover {
  color: #D4A64A;
  text-decoration: none;
}

/* Decorative underline-on-hover effect */
a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.25em;
  width: 0;
  height: 2px;
  border-radius: 8px;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

a:hover::after {
  animation: pulse11 500ms;
}

@keyframes pulse11 {
  0%   { width: 20%; }
  100% { width: 100%; }
}

h1, h2, h3, h4, h5, h6 {
  color:var(--golden-headings)!important;
  font-family: "Lato", sans-serif;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #180b0c;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #747c78;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 100px;
  margin-right: 80px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

/* Logo lockup used inside the header */
.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.logo-img {
  max-height: 100px;
  width: auto;
}

/* Scrolled header state */
.scrolled .header {
  isolation: isolate;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.scrolled .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
  z-index: -1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.scrolled {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1199px) {
  .header {
    padding: 12px 0;
  }
  .header .logo img {
    max-height: 80px;
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
  .header .logo img {
    max-height: 50px;
    margin-right: 15px;
  }
}

@media (max-width: 576px) {
  .header {
    padding: 8px 0;
  }
  .header .logo img {
    max-height: 65px;
    margin-right: 10px;
  }
  .header .logo h1 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.85);
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #D4A64A !important;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 40px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu a {
    position: relative;
    transition: all 0.3s ease;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #000818;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.88);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/* Animated underline under active/hovered nav links */
.navmenu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #D4A64A;
  transition: width 0.3s ease;
}

.navmenu a:hover::after,
.navmenu .active::after {
  width: calc(100% - 30px);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: #D4A64A;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 40px 0 20px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 { font-size: 2rem; }
  .page-title .title-wrapper p  { font-size: 1rem; }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 { font-size: 1.75rem; }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background:
    radial-gradient(circle at top right, rgba(212, 166, 74, 0.08), transparent 30%),
    #000818;
  scroll-margin-top: 87px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size: 2rem !important;
  line-height: 1.2;
  color: #fbfaf7;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.section-title .subtitle {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 400;
  color: #D4A64A;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  position: relative;
}

.section-title .subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: #a67c2d;
}

.section-title p {
  font-size: 1rem;
  line-height: 1.8;
  color: #D4A64A;
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .section-title h2 { font-size: 2rem; }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.hero-slider-full-width {
  position: relative;
  width: 100vw;
  height: 100vh;
  margin-left: calc(-50vw + 50%);
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  position: relative;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.5);
  transform-origin: center center;
  transition: transform 6s ease-out;
  will-change: transform;
  filter: brightness(0.55) contrast(1.05) saturate(1.1);
}

/* Hero Overlay with Text */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 200px;
}

.hero-overlay .container,
.hero-content {
  pointer-events: auto;
}

.hero-overlay .container {
  max-width: 1400px;
  width: 100%;
  padding: 0 70px;
  text-align: left;
}

.hero-content {
  padding: 80px 40px;
  max-width: 1100px;
}

.hero .hero-content h1 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}

.hero .hero-content p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 750px;
  line-height: 1.6;
}

.hero .hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.hero .hero-cta h3 {
  font-size: 2rem !important;
  color: #f8f7f6 !important;
  margin: 0 0 0.5rem 0;
  text-align: left;
  z-index: 5;
}

.hero .hero-cta p {
  font-size: 1rem !important;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1.5rem 0;
  text-align: left;
  max-width: 500px;
  z-index: 5;
}

.hero .hero-cta .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 30px 30px !important;
  border-radius: 6px;
  font-weight: 500!important;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease;
}

.hero .hero-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-cta .btn-secondary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  width: fit-content;
  background: #D4A64A;
  color: #000;
  padding: 5px!important ;
  border-radius: 0px;
  font-weight: 300!important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.hero .hero-cta .btn-secondary i {
  font-size: 1rem;
  color: #000000;
}

.hero .hero-cta .btn-secondary:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 12px 25px rgba(212, 166, 74, 0.35) !important;
}

/* Swiper Navigation */
.hero-swiper .swiper-pagination {
  position: absolute;
  bottom: 55px !important;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 20;
}

.hero-swiper .swiper-pagination-bullet {
  width: 15px !important;
  height: 2.2px !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.45) !important;
  opacity: 1 !important;
  margin: 0 !important;
}

.hero-swiper .swiper-pagination-bullet-active {
  width: 45px !important;
  background: #b98721 !important;
}

.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  cursor: pointer;
  pointer-events: auto;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.hero-swiper .swiper-button-prev::before,
.hero-swiper .swiper-button-next::before {
  content: '';
  position: absolute;
  inset: -5px;
  z-index: -1;
}

.hero-swiper .swiper-button-prev:focus,
.hero-swiper .swiper-button-next:focus {
  outline: none;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.6);
}

.hero-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after {
  font-size: 20px;
}

/* Slide counter */
.slide-number {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: white;
  z-index: 20;
  font-size: 12px;
  letter-spacing: 2px;
}

.current-slide {
  font-size: 16px;
  font-weight: 300;
}


@media (max-width:768px){

    .hero{
        width:100%;
        overflow:hidden;
    }

    .hero-slider-full-width{
        width:100%;
        margin:0;
    }

    .hero-swiper .swiper-slide{
        width:100%;
    }

    .slider-image{
        width:100%;
        height:100%;
        object-fit:contain;
        object-position:center;
    }

}
@media (max-width:820px){
  .hero-content {
    padding: 200px 0;
    max-width: 1100px;
}
}
@media (max-width:820px){
.logo-img {
    max-height: 80px;
    width: auto;
}
.mobile-nav-toggle {
  font-size: 30px;
}


}
/* =========================================
   HERO RESPONSIVE
========================================= */

/* Laptop */
@media (max-width:1200px){

    .hero-overlay{
        padding-top:160px;
    }

    .hero-overlay .container{
        padding:0 80px;
    }
    
    .hero .hero-content h1{
        font-size:3.2rem;
    }
    

}

/* Tablet */
@media (max-width:992px){

    .hero,
    .hero-slider-full-width{
        min-height:75vh;
        height:75vh;
    }

    .hero-overlay{
        padding-top:140px;
    }

    .hero-overlay .container{
        padding:0 50px;
    }

    .hero .hero-content h1{
        font-size:2.7rem;
        line-height:1.2;
    }

    .hero .hero-content p{
        font-size:1rem;
        max-width:600px;
    }
     .hero .hero-cta h3{
        font-size:2.5rem;
      
    }
    .hero .hero-content p{
        font-size:1.5rem;
        line-height:1.7;
        max-width:100%;
    }

}

/* Mobile */
@media (max-width:768px){

    .hero,
    .hero-slider-full-width{
        min-height:100vh;
        height:100vh;
    }

    .hero-overlay{
        align-items:center;
        padding-top:0;
    }

    .hero-overlay .container{
        padding:30px 24px;
    }

    .hero-content{
        max-width:100%;
        padding:20px 0;
    }

    .hero .hero-content h1{
        font-size:2.2rem;
        line-height:1.2;
        margin-bottom:16px;
        letter-spacing:.5px;
    }

    .hero .hero-content p{
        font-size:1rem;
        line-height:1.7;
        max-width:100%;
    }

    .hero .hero-cta{
        margin-bottom:1.7rem;
    }

    .hero .hero-cta h3{
        font-size:2rem;
      
    }

    .hero .hero-cta p{
        font-size:.95rem;
    }

    .hero .hero-cta .btn-primary{
        padding:12px 26px;
    }


   
}
@media (max-width:768px){

.hero-swiper .swiper-pagination{
    bottom:35px !important;
}

.slide-number{
    bottom:12px;
}

}

/* Small Mobile */
@media (max-width:576px){

    .hero-overlay .container{
        padding:0 18px;
    }

    .hero .hero-content h1{
        font-size:1.8rem;
    }

    .hero .hero-content p{
        font-size:.95rem;
    }

}

@media (max-width:820px){
  .hero-content {
    padding: 200px 0;
    max-width: 1100px;
}
}
@media (max-width:820px){
.logo-img {
    max-height: 80px;
    width: auto;
}
.mobile-nav-toggle {
  font-size: 30px;
}


}
/* Extra Small */
@media (max-width:375px){

    .hero .hero-content h1{
        font-size:1.6rem;
    }

    .hero .hero-content p{
        font-size:.9rem;
    }

}
@media (max-width:768px){

    .slider-image{
        object-fit: cover;
        object-position: center;
    }
    .hero-overlay .container{
    padding: 0 20px;
}

}

@media (min-width:375px){
  .hero .hero-cta h3 {
        font-size: 1.5rem !important;
    }
}
@media (min-width:414px){
  .hero .hero-cta h3 {
        font-size: 1.9rem;
    }
    .hero .hero-cta p {
        font-size: 1.2rem;
    }
    .logo-img {
    max-height: 100px;
    width: auto;
}
.mobile-nav-toggle {
  font-size: 50px;
}
}
@media (min-width:430px){
  .hero .hero-cta h3 {
        font-size: 2.1rem;
    }
    .hero .hero-cta p {
        font-size: 1.3rem;
    }
    
}
@media (min-width:412px){
  .hero .hero-cta h3 {
        font-size: 2rem;
    }
    .hero .hero-cta p {
        font-size: 1.2rem;
    }
    
}
@media (min-width:768px){
  .hero .hero-cta h3 {
        font-size: 2.4rem;
    }
    .hero .hero-cta p {
        font-size: 1.5rem;
    }
    
}
.hero .hero-cta .btn-secondary {
  padding: 10px;
  font-weight: 500;
}
@media (max-width: 1024px) and (min-width:375px) {

  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    top: auto;
    bottom: 10px;  
    transform: none;
  }

  .hero-swiper .swiper-button-prev {
    left: 20px;
  }

  .hero-swiper .swiper-button-next {
    right: 20px;
  }
.hero-swiper .swiper-button-prev, .hero-swiper .swiper-button-next{
  width: 35px;
 height: 35px;
}
}
@media (min-width:375px) {
.hero-swiper .swiper-button-prev, .hero-swiper .swiper-button-next{
  width: 25px;
 height: 25px;
}
.hero-swiper .swiper-button-prev {
    left: 10px;
  }

  
  .hero-swiper .swiper-button-prev:after, .hero-swiper .swiper-button-next:after {
    font-size: 10px;
}
}

@media (max-width:740px) and (min-width:360px) {

  .hero-swiper .swiper-button-prev,
  .hero-swiper .swiper-button-next {
    top: auto;
    bottom: 10px;  
    transform: none;
  }

  .hero-swiper .swiper-button-prev {
    left: 20px;
  }

  .hero-swiper .swiper-button-next {
    right: 20px;
  }
.hero-swiper .swiper-button-prev, .hero-swiper .swiper-button-next{
  width: 35px;
 height: 35px;
}
.hero-swiper .swiper-button-prev, .hero-swiper .swiper-button-next{
  width: 25px;
 height: 25px;
}
.hero-swiper .swiper-button-prev {
    left: 10px;
  }

  .hero-swiper .swiper-button-next {
    right: 10px;
  }
  .hero-swiper .swiper-button-prev:after, .hero-swiper .swiper-button-next:after {
  font-display:none;
}
}
/*--------------------------------------------------------------
# hero  Section content transform
--------------------------------------------------------------*/
.hero-cta{
    opacity:0;
    transform:translateY(60px);
}

.hero-cta.animate{
    animation:heroText .8s ease forwards;
}

@keyframes heroText{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero-swiper .swiper-slide .slider-image {
  transform: scale(1.01);
}

.hero-swiper .swiper-slide-active .slider-image {
  transform: scale(1.04);
}
.hero-swiper .swiper-wrapper{
    transition-timing-function: cubic-bezier(0.4,0,0.2,1) !important;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 20px;
  padding-bottom: 20px;
}

.about .row {
  align-items: center !important;
}

/* --- Content column --- */
.about .content {
  padding-right: 0px;
}

@media (min-width: 768px) {
  .about .content {
    padding-right: 40px;
  }
}

.about .content h2 {
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 30px;
  color: #D4A64A;
  position: relative;
}

.about .content h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(to right, #D4A64A, transparent);
}

.about .content p {
  font-size: 1rem;
  font-weight: 200!important;
  line-height: 1.7;
  margin-bottom: 2px;
  max-width: 95%;
  color: rgba(255, 255, 255, 0.78);
}

.about .content .lead {
  font-size: 17px;
  font-weight: 200;
  line-height: 1.7;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Vision card --- */
.vision-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 166, 74, 0.12);
  backdrop-filter: blur(10px);
  transition: 0.35s ease;
}

.vision-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 166, 74, 0.35);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

/* --- Stats row --- */
.about .stats-row {
  display: flex;
  gap: 40px;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 166, 74, 0.12);
}

.about .stats-row .stat-item .stat-number {
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  color: #D4A64A;
  font-family: var(--heading-font);
}

.about .stats-row .stat-item .stat-label {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #D4A64A;
  margin-top: 8px;
}

.stat-item {
  transition: 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

/* --- CTA buttons --- */
.about .cta-section {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.about .cta-section .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: #D4A64A;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about .cta-section .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.about .cta-section .btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
  color: #D4A64A;
  text-decoration: none;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about .cta-section .btn-outline:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* --- Image column --- */
.about .image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(212, 166, 74, 0.10);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.about .image-wrapper::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -25px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(212, 166, 74, 0.18);
  border-radius: 30px;
  z-index: -1;
}

.about .image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(212, 166, 74, 0.08), transparent);
  border-radius: 30px;
  z-index: -2;
  filter: blur(10px);
}

.about .image-wrapper img {
  border-radius: 28px;
  box-shadow: 0 0 40px rgba(212, 166, 74, 0.08);
  transition: all 0.4s ease;
}

.about .image-wrapper img:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 60px rgba(212, 166, 74, 0.14);
}

.about .image-wrapper .floating-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  max-width: 280px;
}

.about .image-wrapper .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about .image-wrapper .floating-card .card-content .icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about .image-wrapper .floating-card .card-content .icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.about .image-wrapper .floating-card .card-content .text h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
}

.about .image-wrapper .floating-card .card-content .text p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
}

/* --- Legacy story --- */
.story-year {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 120px;
  font-weight: 700;
  color: rgba(212, 166, 74, 0.06);
  line-height: 1;
  pointer-events: none;
}

.story-highlight {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #D4A64A !important;
}

.legacy-story p {
  font-size: 1.05rem;
  font-weight: 200!important;
  line-height: 2;
  margin-bottom: 22px;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.78);
}

/* --- Mission grid --- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 35px;
}

.mission-card {
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(212, 166, 74, 0.10);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  background: rgba(212, 166, 74, 0.08);
  filter: blur(60px);
}

.mission-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 166, 74, 0.35);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.mission-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(212, 166, 74, 0.10);
  border: 1px solid rgba(212, 166, 74, 0.18);
}

.mission-icon i {
  font-size: 24px;
  color: #D4A64A;
}

.mission-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

/* Mobile accordion behaviour for mission cards */
.mission-header {
  display: none;
  align-items: center;
  cursor: pointer;
}

.mission-header h4 {
  margin: 0 0 0 14px;
  flex: 1;
  color: #D4A64A;
  font-size: 16px;
  font-weight: 500;
}

.toggle-icon {
  color: #D4A64A;
  font-size: 24px;
  font-weight: 300;
}

.mission-content {
  display: block;
  margin-top: 0;
}
.toggle-icon{
    pointer-events: auto !important;
    cursor: pointer;
    position: relative;
    z-index: 100;
}

.mission-header{
    position: relative;
}

.mission-card::before,
.mission-card::after{
    pointer-events: none;
}
.legacy-quote {
  text-align: center;
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: 2px;
  color: rgba(212, 166, 74, 0.85);
  font-weight: 400;
  position: relative;
}

.legacy-quote::before,
.legacy-quote::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  margin: 0 12px;
  vertical-align: middle;
  background: linear-gradient(to right, transparent, rgba(212, 166, 74, 0.5), transparent);
}

/* --- About: tablet/desktop breakpoints --- */
@media (max-width: 992px) {
  .about .row {
    text-align: center;
  }
  .about .stats-row {
    justify-content: center;
  }
  .about .image-wrapper .floating-card {
    position: static;
    margin-top: 30px;
    max-width: none;
  }
  .section-title{
    margin-bottom: 0;
  }
}

/* --- About: mobile (consolidated) --- */
@media (max-width: 768px) {
  .about .row {
    display: flex;
    flex-direction: column;
  }

  .image-col {
    order: 1;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0 !important;
    margin-bottom: 30px;
  }
  .section-title{
    margin-bottom: 0;
  }

  .content-col {
    order: 2;
    width: 100% !important;
    padding-left: 0;
    padding-right: 0;
  }

  .about .image-wrapper {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 -12px !important;
    max-width: 320px;
  }

  .about .image-wrapper img,
  .about .image-wrapper .img-fluid {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }

  .about .content h2 {
    font-size: 32px;
  }

  .about .content p {
    max-width: 100%;
  }

  .about .content .lead {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0;
  }

  .vision-card {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 30px;
  }

  .about .stats-row {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }


  .mission-header {
    display: flex;
  }

  .mission-icon {
    margin-bottom: 0;
  }

  .mission-content {
    display: none;
    margin-top: 15px;
  }

  .mission-card.active .mission-content {
    display: block;
  }

  /* Premium mobile presentation for the legacy story */
  .legacy-story {
    position: relative;
    padding: 22px 18px 18px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(212, 166, 74, 0.10);
    border-left: 3px solid #D4A64A;
    overflow: hidden;
    backdrop-filter: blur(10px);
  }

  .story-year {
    top: -8px;
    right: 10px;
    font-size: 85px;
    color: rgba(212, 166, 74, 0.05);
  }

  .story-highlight {
    display: inline-block;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 30px;
    background: rgba(212, 166, 74, 0.08);
    border: 1px solid rgba(212, 166, 74, 0.15);
    color: #D4A64A !important;
    font-size: 0.88rem;
    line-height: 1.6;
    font-style: italic;
  }

  .legacy-story p {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 100%;
  }

  .legacy-story p:nth-of-type(2)::first-letter {
    float: left;
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    color: #D4A64A;
    margin-right: 8px;
    margin-top: 2px;
  }
}

@media (max-width: 576px) {
  .about .stats-row {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

}
/*--------------------------------------------------------------
# ABOUT SECTION — RESPONSIVE ADDITIONS
Append this at the END of your about.css (after everything else)
so these rules win the cascade. Targets the classes actually used
in your current HTML (wrap, grid, vision-icon, icon-ring, etc.)
--------------------------------------------------------------*/

/* ---------- Tablet (≤992px) ---------- */
@media (max-width: 992px) {
  .about-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
  .about-content {
    margin:0;
  }

  .about-content h2 {
    font-size: 30px;
    text-align: center;
  }

  .wrap {
    max-width: 100%;
    padding: 0;
  }
::-webkit-progress-inner-element .style {
    margin-bottom: 0;
  }
  .eyebrow {
    justify-content: center;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stats-row {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 16px;
  }
}

/* ---------- Mobile (≤768px) ---------- */
@media (max-width: 768px) {
  .about {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .about-content {
    margin:0;
  }
  ::-webkit-progress-inner-element .style {
    margin-bottom: 0;
  }

  /* Main heading */
  .about-content h2 {
    font-size: 24px;
    line-height: 1.35;
    text-align: center;
  }

  /* Legacy story block (already has a base mobile style in your
     old CSS via .legacy-story — this just tightens spacing) */
  .legacy-story {
    padding: 20px 16px 16px;
  }
  .legacy-story .reveal-text {
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
  }

  /* Vision block */
  .section-title {
    font-size: 20px;
    text-align: center;
  }
  .vision-card {
    padding: 20px;
    text-align: center;
  }
  .vision-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vision-divider {
    width: 40px;
    height: 1px;
    margin: 12px auto;
  }
  .vision-text {
    font-size: 14px;
    line-height: 1.8;
  }

  /* Mission grid — stacks to one column, no accordion needed
     since current markup has no header/toggle elements */
  .grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .card.mission-card {
    padding: 18px;
    text-align: center;
  }
  .icon-ring {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .underline {
    width: 30px;
    height: 1px;
    margin: 0 auto 12px;
  }

  /* Stats row */
  .stats-row {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    padding-top: 16px;
  }
  .stat-number {
    font-size: 20px;
  }
  .stat-label {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  /* Journey timeline header, when embedded inside this section,
     centers to match the rest of the mobile layout */
  .journey-wrap .header {
    text-align: center;
  }
  .journey-wrap .eyebrow-rule {
    justify-content: center;
  }
  .journey-wrap .emblem {
    margin-left: auto;
    margin-right: auto;
  }
  .journey-wrap .desc {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Small phones (≤576px) ---------- */
@media (max-width: 576px) {
  .about-content h2 {
    font-size: 21px;
  }
  .story-highlight {
    font-size: 1rem;
  }
  .legacy-story p {
    font-size: 13px;
  }
  .stats-row {
    gap: 8px;
  }
  .stat-number {
    font-size: 18px;
  }
  .stat-label {
    font-size: 7.5px;
  }
  .journey-wrap .title {
    font-size: 2rem;
  }
  .about-content {
    margin:0;
  }
  ::-webkit-progress-inner-element .style {
    margin-bottom: 0;
  }
}

/* ---------- Very small phones (≤400px) ---------- */
@media (max-width: 400px) {
  .stats-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-item {
    flex: 0 0 45%;
    text-align: center;
  }
  .icon-ring,
  .vision-icon {
    width: 42px;
    height: 42px;
  }
  .about-content {
    margin:0;
  }
  ::-webkit-progress-inner-element .style {
    margin-bottom: 0;
  }
}
/*=========================================
 OUR BUSINESSES
=========================================*/

.business{
    background:#020b1d;
    padding:20px 0;
    position:relative;
    overflow:hidden;
}

/* Background Glow */

 .business-heading h2::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    background:radial-gradient(circle,
    rgba(212,166,74,.08),
    transparent 70%);

    left:-250px;

    bottom:-250px;

    pointer-events:none;

}

/*========================
Heading
========================*/

.business-heading{

    text-align:center;

    margin-bottom:50px;

}

.business-heading h2{

    color:#D4A64A;

    font-size:20px;

    font-weight:200;

    margin-bottom:12px;

}

.business-heading p{

    color:rgba(255,255,255,.72);

    font-size:18px;

    margin-top:20px;

}

/*========================
Divider
========================*/

.business-divider{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

}

.business-divider .line{

    width:170px;

    height:2px;

    background:linear-gradient(to right,
    transparent,
    #D4A64A,
    transparent);

}

.business-divider .diamond{

    width:12px;

    height:12px;

    transform:rotate(45deg);

    background:#D4A64A;

    box-shadow:0 0 18px rgba(212,166,74,.7);

}

/*========================
Grid
========================*/

.business-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:26px;

}

/*========================
Card
========================*/

.business-card{

    background:linear-gradient(
    180deg,
    rgba(255,255,255,.04),
    rgba(255,255,255,.015));

    border:1px solid rgba(212,166,74,.28);

    border-radius:18px;

    min-height:340px;

    padding:38px 25px;

    text-align:center;

    transition:.45s;

    position:relative;

    overflow:hidden;

}

.business-card:hover{

    transform:translateY(-8px);

    border-color:#D4A64A;

    box-shadow:

    0 18px 45px rgba(0,0,0,.35),

    0 0 30px rgba(212,166,74,.15);

}

/* top glow */

.business-card::before{

    content:"";

    position:absolute;

    width:160px;

    height:160px;

    right:-80px;

    top:-80px;

    border-radius:50%;

    background:rgba(212,166,74,.06);

    filter:blur(45px);

}

/*========================
Icon
========================*/

.business-icon{

    width:82px;

    height:82px;

    margin:auto;

    margin-bottom:10px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#D4A64A;

    font-size:42px;

}

/*========================
Heading
========================*/

.business-card h3{

    color:#D4A64A;

    font-size:15px;

    letter-spacing:1px;

    margin-bottom:22px;

    font-weight:200;

}

/*========================
Separator
========================*/

.business-line{

    width:70%;

    height:1px;

    margin:0 auto 28px;

    background:linear-gradient(to right,
    transparent,
    rgba(212,166,74,.35),
    transparent);

}

/*========================
Brands
========================*/

.business-card ul{

    padding:0;

    margin:0;

    list-style:none;

}

.business-card li{

    color:#fff;

    font-size:18px;

    margin-bottom:18px;

    font-weight:400;

}

.business-card li:last-child{

    margin-bottom:0;

}

/*========================
Bottom Glow
========================*/

.bottom-glow{

    display:flex;

    justify-content:center;

    margin-top:20px;

}

.bottom-glow span{

    width:260px;

    height:2px;

    background:linear-gradient(to right,
    transparent,
    #D4A64A,
    transparent);

    position:relative;

}

.bottom-glow span::after{

    content:"";

    position:absolute;

    width:10px;

    height:10px;

    border-radius:50%;

    background:#D4A64A;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    box-shadow:

    0 0 10px #D4A64A,

    0 0 25px rgba(212,166,74,.8);

}

/*========================
Responsive
========================*/

@media(max-width:1200px){

.business-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.business-grid{

grid-template-columns:repeat(2,1fr);

}

.business-heading h2{

font-size:42px;

}

}

@media(max-width:576px){

.business-grid{

grid-template-columns:1fr;

}

.business-card{

min-height:auto;

}

.business-heading h2{

font-size:34px;

}

.business-divider .line{

width:70px;

}

}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  text-align: center;
  margin-bottom: 40px;
  transition: all 0.3s ease-in-out;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}

.team .team-member .member-img img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.team .team-member:hover .member-img img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team .team-member .member-info h4 {
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #D4A64A;
  line-height: 1.3;
}

.team .team-member .member-info span {
  display: block;
  font-size: 0.9rem;
  color: #D4A64A;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.team .team-member .member-info p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 25px;
  padding: 0 10px;
}

.team .team-member .member-info .social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.team .team-member .member-info .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50%;
  color: #D4A64A;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.team .team-member .member-info .social a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .team .team-member .member-info h4 { font-size: 1.3rem; }
  .team .team-member .member-info p  { font-size: 0.9rem; }
}

@media (max-width: 768px) {
  .team .team-member .member-info h4 {
    font-size: 1.2rem;
  }
  .team .team-member .member-info p {
    padding: 0;
    font-size: 0.85rem;
  }
  .team .team-member .member-info .social {
    gap: 12px;
  }
  .team .team-member .member-info .social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact .info-item {
  margin-bottom: 30px;
}

.contact .info-item .info-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.contact .info-item .info-icon i {
  font-size: 24px;
  color: #D4A64A;
}

.contact .info-item .info-content h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #D4A64A;
  letter-spacing: -0.3px;
}

.contact .info-item .info-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.contact .contact-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact .contact-details .detail-item:last-child {
  margin-bottom: 20px;
}

.contact .contact-details .detail-item .detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-details .detail-item .detail-icon i {
  font-size: 18px;
  color: #D4A64A;
}

.contact .contact-details .detail-item .detail-content {
  flex: 1;
}

.contact .contact-details .detail-item .detail-content .detail-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #D4A64A;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.contact .contact-details .detail-item .detail-content .detail-value {
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}



.contact .form-header h3 {
  font-size: 32px;
  font-weight: 300;
  color: var(--heading-color);
  margin: 0;
  letter-spacing: -0.4px;
}

.contact .form-wrapper {
  background-color: #ededf6;
  padding: 10px 15px;
  border-radius: 10px;
}



.contact .form-wrapper .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.contact .form-wrapper .form-group input,
.contact .form-wrapper .form-group select,
.contact .form-wrapper .form-group textarea {
  width: 100%;
  border: 1px solid #b3b0b0;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact .form-wrapper .form-group input:focus,
.contact .form-wrapper .form-group select:focus,
.contact .form-wrapper .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .form-wrapper .form-group input::placeholder,
.contact .form-wrapper .form-group select::placeholder,
.contact .form-wrapper .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .form-wrapper .form-group select {
  cursor: pointer;
}

.contact .form-wrapper .form-group select option {
  padding: 10px;
}

.contact .form-wrapper .form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact .form-wrapper .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.contact .form-wrapper .submit-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.contact .form-wrapper .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .form-wrapper .submit-btn:hover i {
  transform: translateX(4px);
}

/* NOTE: this block was missing its "@media (max-width: 768px)"
   wrapper in the source file, which made it apply at ALL widths
   and silently override the desktop spacing above. Restored here. */
@media (max-width: 768px) {
  .contact .info-item {
    margin-bottom: 50px;
  }
  .contact .info-item .info-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }
  .contact .info-item .info-icon i {
    font-size: 20px;
  }
  .contact .info-item .info-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .contact .contact-details .detail-item {
    margin-bottom: 32px;
  }
  .contact .form-header {
    margin-bottom: 32px;
  }
  .contact .form-header h3 {
    font-size: 24px;
  }
  .contact .modern-form .form-group {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .contact .form-wrapper {
    border-radius: 0px;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-content {
  font-size: 16px;
  line-height: 1.7;
}

.privacy .privacy-content .last-updated {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}

.privacy .privacy-content .last-updated p {
  margin: 0;
  color: var(--heading-color);
}

.privacy .privacy-content .privacy-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .privacy-section h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}

.privacy .privacy-content .privacy-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.privacy .privacy-content .privacy-section h4 {
  color: var(--heading-color);
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.privacy .privacy-content .privacy-section h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section ul,
.privacy .privacy-content .privacy-section ol {
  margin: 20px 0;
  padding-left: 30px;
}

.privacy .privacy-content .privacy-section ul li,
.privacy .privacy-content .privacy-section ol li {
  margin-bottom: 10px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .info-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .info-box h4 {
  color: var(--heading-color);
  margin-top: 0;
}

.privacy .privacy-content .privacy-section .highlight-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: var(--contrast-color);
  margin: 40px 0;
}

.privacy .privacy-content .privacy-section .highlight-box i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .highlight-box h4 {
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .highlight-box p {
  color: var(--contrast-color);
  margin: 0;
  opacity: 0.9;
}

.privacy .privacy-content .privacy-section .security-measures {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy .privacy-content .privacy-section .security-measures .measure-item i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item h5 {
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .rights-list {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  margin-bottom: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .rights-list .right-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.privacy .privacy-content .privacy-section .rights-list .right-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 20px;
  margin-top: 5px;
  min-width: 24px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div {
  flex: 1;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div h5 {
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .cookie-types {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .cookie-types h4 {
  margin-bottom: 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table {
  margin: 0;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead th {
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 15px 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody td {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 15px 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.privacy .privacy-content .contact-section {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .contact-section h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.privacy .privacy-content .contact-section h3:after {
  background: var(--accent-color);
}

.privacy .privacy-content .contact-section .contact-info {
  margin-top: 30px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 18px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item span {
  color: var(--default-color);
}

@media (max-width: 768px) {
  .privacy .privacy-content {
    font-size: 15px;
  }
  .privacy .privacy-content .privacy-section h3 {
    font-size: 24px;
  }
  .privacy .privacy-content .privacy-section h4 {
    font-size: 20px;
  }
  .privacy .privacy-content .privacy-section .security-measures .row > div {
    margin-bottom: 20px;
  }
  .privacy .privacy-content .privacy-section .rights-list .right-item {
    flex-direction: column;
    text-align: center;
  }
  .privacy .privacy-content .privacy-section .rights-list .right-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}

.error-404 .error-content {
  margin-bottom: 80px;
}

.error-404 .error-content .error-number {
  font-size: 8rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  opacity: 0.8;
}

.error-404 .error-content .error-title {
  font-size: 3rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

.error-404 .error-content .error-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-content .error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.error-404 .error-content .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-content .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-content .search-section .search-label {
  font-size: 1rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 500;
}

.error-404 .error-content .search-section .search-form {
  max-width: 400px;
  margin: 0 auto;
}

.error-404 .error-content .search-section .search-form .search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input {
  width: 100%;
  padding: 16px 60px 16px 20px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 1rem;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn {
  position: absolute;
  right: 8px;
  background: var(--accent-color);
  border: none;
  border-radius: 6px;
  padding: 12px;
  color: var(--contrast-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.error-404 .error-content .search-section .search-form .search-input-group .search-btn i {
  font-size: 1rem;
}

.error-404 .helpful-links .links-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

.error-404 .helpful-links .link-item {
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-10px);
}

.error-404 .helpful-links .link-item .link-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.error-404 .helpful-links .link-item:hover .link-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.error-404 .helpful-links .link-item h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.error-404 .helpful-links .link-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.error-404 .helpful-links .link-item .link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  gap: 12px;
}

.error-404 .helpful-links .link-item .link-cta i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover i {
  transform: translateX(3px);
}

@media (max-width: 992px) {
  .error-404 {
    padding: 80px 0;
  }
  .error-404 .helpful-links .link-item {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
    min-height: auto;
  }
  .error-404 .error-content {
    margin-bottom: 60px;
  }
  .error-404 .error-content .error-number {
    font-size: 6rem;
  }
  .error-404 .error-content .error-title {
    font-size: 2.5rem;
  }
  .error-404 .error-content .error-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .error-404 .helpful-links .links-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .error-number {
    font-size: 4.5rem;
  }
  .error-404 .error-content .error-title {
    font-size: 2rem;
  }
  .error-404 .error-content .error-actions {
    flex-direction: column;
    align-items: center;
  }
  .error-404 .error-content .error-actions .btn-primary,
  .error-404 .error-content .error-actions .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
.career-section{
    position: relative;
    padding:120px 0;
    background: url("../img/career-bg.png") center center/cover no-repeat;
    overflow:hidden;
}
.career-overlay{
    min-height:80vh;
    display:flex;
    align-items:center;
}

.career-content{
    width:100%;
}

.career-left{
    width:40%;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:flex-end;
    margin-left:25px;
    margin-top:340px;   
}

.career-left .subtitle{
    color:#D4A64A;
    font-size:18px;
    letter-spacing:3px;
    margin-bottom:20px;
}
.career-btn{
     position: absolute;
    left: 220px !important;
    bottom: 50px !important;
    display:inline-flex;
    align-items:center;
    gap:18px;

    padding:10px 50px;

    border:none;
    border-radius:60px;
      text-decoration:none;
    background:linear-gradient(90deg,#b97a2b,#f2c66a,#d4a64a);

    color:#071120;

    font-size:20px;
    font-weight:400;

    cursor:pointer;
    
    transition:.35s;
}

.career-btn i{

    font-size:20px;
    transition:.35s;
}


.career-btn:hover {

    transform:translateX(6px);
    color:#0b1330 !important;
}


.career-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.career-form input,
.career-form select,
.career-form textarea{

    width:100%;
    padding:18px 20px;

    border:1px solid #c9c9c9;
    border-radius:12px;

    font-size:16px;
    outline:none;
    transition:.3s;
    background:#fff;
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus{

    border-color:#D4A64A;
    box-shadow:0 0 0 4px rgba(212,166,74,.18);

}
.career-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 20px;
}

.career-box{
    width:100%;
    max-width:900px;
    background:#ededf6;
    padding:60px;
    border-radius:30px;
    display:block;
    box-shadow:0 15px 40px rgba(0,0,0,.2);
}

.career-box h2{
    text-align:center;
    margin-bottom:35px;
    color:#0b1a35;
    font-size:36px;
}
.career-form textarea{
    min-height:140px;
    resize:none;
}

.career-form button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:12px;

    background:#0b1a35;

    color:#fff;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.career-form button:hover{

    background:#D4A64A;
    color:#0b1a35;

}

.career-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 20px;
    background-position:center;
    background-repeat:no-repeat;
}

@media screen and (max-width:768px){

    .career-page{
        background-position:center;
        background-repeat:no-repeat;

    }

}


.about-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    
}

.about-content{
    flex:1;
}

.about-content h2{
    font-size:25px;
    font-weight:300;
    margin-bottom :10px;
}

.legacy-story p{
    font-size:15px;
    line-height:1.9;
    margin-bottom:10px;
    color:#faf6f6;
}

.about-image{
    flex:0 0 42%;
    display:flex;
    justify-content:center;
}

.about-image img{
    width:100%;
    max-width:470px;
    border-radius:20px;
    transition:.5s;
    animation:float 4s ease-in-out infinite;
}

.about-image img:hover{
    transform:scale(1.03);
}

@keyframes float{

0%,100%{
    transform:translateY(0);
}

50%{
    transform:translateY(-15px);
}

}

@media(max-width:992px){

.about-wrapper{
    flex-direction:column;
    text-align:center;
}

.about-image{
    margin-top:40px;
}



/*====================
mission-vission
====================*/
}
.wrap {
    max-width: 640px;
    margin: 0 auto;
    padding: 10px 8px 15px;
    background: transparent;
  }

  .eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0 0 10px;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
  }

  .eyebrow .line {
    height: 1px;
    width: 130px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
  }

  .eyebrow .diamond {
    width: 7px;
    height: 7px;
    background: #d4af37;
    transform: rotate(45deg);
    flex: none;
  }

  h2.section-title {
    font-size:28px;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #f7e08a 0%, #d4af37 45%, #a9791f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 18px rgba(212,175,55,0.25);
  }

  .card {
    position: relative;
    border-radius: 18px;
    border: 1px solid rgba(212,175,55,0.55);
    background: transparent;
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
  }
.vision-card{
     width:100%;
    max-width:none;
    padding:30px;
    margin-bottom:10px;
    padding:5px 10px;
    text-align:center;
    border:1px solid rgba(217,165,91,.7);
    border-radius:22px;
    position:relative;
    color:#f4f1ea;
}

.vision-icon{
    width:50px;
    height:50px;
    border:1px solid #d9a55b;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 5px;
    color:#d9a55b;
    font-size:28px;
    background:rgba(255,255,255,.02);
    box-shadow:0 0 20px rgba(217,165,91,.15);
}

.vision-divider{
    width:90px;
    height:1px;
    margin:0 auto 25px;
    background:linear-gradient(to right,
    transparent,
    #d9a55b,
    transparent);
}


  .mission-title {
    margin-bottom:5px;
    animation-delay: 0.3s;
  }
.grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
}
.mission-card{
    min-height:230px;
    padding:28px 22px;
}

  .mission-card:nth-child(1) { animation-delay: 0.45s; }
  .mission-card:nth-child(2) { animation-delay: 0.6s; }
  .mission-card:nth-child(3) { animation-delay: 0.75s; }
  .mission-card:nth-child(4) { animation-delay: 0.9s; }

  .icon-ring {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 1.5px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulseGlow 3.2s ease-in-out infinite;
  }

  .icon-ring svg {
    width: 20px;
    height: 20px;
  }

  .mission-card .underline {
    width: 60px;
    height: 1px;
    margin: 0 auto 5px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
  }

  .mission-card p {
    color: #f4f1ea;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 6px rgba(212,175,55,0.25); }
    50%      { box-shadow: 0 0 18px rgba(212,175,55,0.65); }
  }

  @media (max-width: 480px) {
    .grid { grid-template-columns: 1fr; }
    .vision-card { flex-direction: column; text-align: center; }
    .vision-divider { display: none; }
  }
  .about-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
}

.about-content{
    width:48%;
}
.wrap{
    flex: 1;
    max-width: 720px;
    width: 100%;
}

@media(max-width:991px){

.about-wrapper{
    flex-direction:column;
}

.about-content,
.wrap{
    width:100%;
}

}
.reveal-text{
    line-height:1.9;
    margin-bottom:22px;
}

.char{
    opacity:0;
    transform:translateY(20px);
    display:inline-block;
    will-change:transform,opacity;
}
.about-content{
    flex: 1 1 0;
    min-width: 0;
    margin-top:30px;
}

.legacy-story{
    width:100%;
    margin-bottom:50px;
}

.legacy-story p{
    max-width:none;
    width:100%;
    word-break: normal;
    overflow-wrap: normal;
}
.reveal-text .word{
    display:inline-block;
    white-space:nowrap;
}

.reveal-text .char{
    display:inline-block;
}
.journey-wrap{
    max-width:500px;
    margin:0 auto;
    padding: 15px 10px 20px;
  
  }

  /* ---------- Ambient background ---------- */
  .ambient{
    position:absolute; inset:0; pointer-events:none; z-index:0; overflow:hidden;
  }
  
  @keyframes twinkle{ 0%,100%{opacity:.15; transform:scale(.7)} 50%{opacity:1; transform:scale(1.2)} }

  /* ---------- Header ---------- */
  .header{ z-index:2; text-align:left; }
  .emblem{ width:34px; height:34px; margin-bottom:22px; opacity:.9; }
  .eyebrow-rule{ display:flex; align-items:center; gap:14px; margin-bottom:22px; }
  .eyebrow-rule::before, .eyebrow-rule::after{ content:''; height:1px; width:70px; background:linear-gradient(90deg, transparent, var(--gold), transparent); }

  h1.title{
    font-family:"Lato", sans-serif;
    font-weight:300;
    font-size: clamp(1.5rem, 2vw, 3.2rem);
    letter-spacing:.02em;
    margin:0 0 10px;
    line-height:1.05;
  }
  h1.title .accent{ color:var(--gold); font-style:italic; font-weight:500; }

  .tagline{
    font-family:"Lato", sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.10rem);
    color:var(--gold-soft);
    margin:0 0 12px;
  }

  .desc{
    max-width:480px;
    color:var(--ink-dim);
    font-size:.70rem;
    line-height:1.7;
  }

  /* ---------- Timeline ---------- */
  .timeline{
    position:relative;
    z-index:2;
    margin: 0 auto;
    padding-left: 0;
  }

  .track-line{
    position:absolute;
    left:50%;
    top:6px;
    bottom:6px;
    width:2px;
    transform:translateX(-50%);
    background: linear-gradient(to bottom, transparent, var(--line) 4%, var(--line) 96%, transparent);
  }

  .track-line .fill{
    position:absolute;
    left:0; top:0; width:100%;
    height:0%;
    background:linear-gradient(to bottom, var(--gold-soft), var(--gold));
    box-shadow:0 0 12px 1px rgba(232,182,71,.55);
    transition:height .15s linear;
  }

  .track-line .comet{
    position:absolute;
    left:50%; top:0%;
    width:11px; height:11px;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:var(--gold-soft);
    box-shadow:0 0 16px 5px rgba(244,215,140,.85), 0 0 3px 1px #fff;
    transition: top .15s linear;
  }

  .item{
    position:relative;
    display:grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items:center;
    margin-bottom:3px;
    min-height:50px;
  }

  .node{
    position:relative;
    grid-column:2;
    justify-self:center;
    width:22px; height:22px;
    border-radius:50%;
    background:var(--navy);
    border:2px solid var(--gold);
    z-index:3;
    opacity:0;
    transform:scale(.4);
    transition: opacity .45s ease, transform .45s ease;
  }
  .node::after{
    content:'';
    position:absolute; inset:5px;
    border-radius:50%;
    background:var(--gold-soft);
    opacity:0;
    transition: opacity .3s ease .1s;
  }
  .item.in-view .node{ opacity:1; transform:scale(1); }
  .item.in-view .node::after{ opacity:1; }

  .year{
    font-family:"Lato", sans-serif;
    font-weight:400;
    font-size:2rem;
    color:var(--gold-soft);
    letter-spacing:.02em;
    opacity:0;
    transition: opacity .6s ease, transform .6s ease;
  }

  .item:nth-child(odd) .year{ grid-column:1; text-align:right; padding-right:34px; transform:translateX(-18px); }
  .item:nth-child(even) .year{ grid-column:3; text-align:left; padding-left:34px; transform:translateX(18px); order:2;}
  .item.in-view .year{ opacity:1; transform:translateX(0); }

  .timeline .card{
    position:relative;
    grid-column:3;
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 16px;
    border-radius:14px;
    border:1px solid rgba(232,182,71,.28);
    box-shadow: 0 10px 30px -12px rgba(0,0,0,.55);
    opacity:0;
    transform: translateX(34px);
    transition: opacity .6s ease, transform .6s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .timeline .item:nth-child(even) .card{
    grid-column:1;
    transform:translateX(-34px);
}

.timeline .item.in-view .card{
    opacity:1;
    transform:translateX(0);
}

.timeline .card:hover{
      border-color: rgba(232,182,71,.75);
    box-shadow: 0 14px 34px -10px rgba(0,0,0,.65), 0 0 0 1px rgba(232,182,71,.2);
  }

  .icon{
    flex:0 0 auto;
    width:46px; height:46px;
    border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(255,255,255,.06);
    border:1px solid rgba(232,182,71,.35);
  }
  .icon svg{ width:24px; height:24px; stroke:var(--gold-soft); fill:none; }

.timeline .card .label{
      font-size:1.rem;
    font-weight:300;
    letter-spacing:.01em;
    color:var(--ink);
  }
  .timeline .card .sub{
    font-size:.76rem;
    color:var(--ink-dim);
    margin-top:2px;
    letter-spacing:.02em;
  }

  /* per-card palette accents */
  .p1{ background:linear-gradient(135deg,#241a12,#1c130c); }
  .p2{ background:linear-gradient(135deg,#122317,#0d1a12); }
  .p3{ background:linear-gradient(135deg,#12204a,#0d1836); }
  .p4{ background:linear-gradient(135deg,#122317,#0d1a12); }
  .p5{ background:linear-gradient(135deg,#1a1533,#130f26); }
  .p6{ background:linear-gradient(135deg,#241a12,#1c130c); }
  .p7{ background:linear-gradient(135deg,#12231c,#0d1915); }
  .p8{ background:linear-gradient(135deg,#1a1533,#130f26); }
  .p9{ background:linear-gradient(135deg,#241d10,#1a150a); }
  .p10{ background:linear-gradient(135deg,#2a1420,#1c0e17); }

  .row{
    align-items:center;
    margin:auto !important;
  }
  @media (max-width:768px){

.grid{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:12px !important;
}

}
@media (max-width: 768px) {

    .business-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .business-card{
        padding: 18px 14px;
        min-height: 220px;
    }

    .business-icon{
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .business-card h3{
        font-size: 15px;
    }

    .business-card li{
        font-size: 13px;
    }
    .business-heading h2 {
          font-size: 1.3rem !important;
    }
}
/* Mobile Banner */
@media (max-width: 768px){

    .career-section{
   background: url("../img/career-mobile.png") center center/cover no-repeat;      
  min-height: 450px;   
    }

}
.career-btn{
      position: absolute;
    left: 90px;
    bottom: 10px;
}
/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {

    .career-section{
 background: url("../img/career-mobile.png") center center/cover no-repeat; 
         background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        min-height: 500px; 

}
}
/* Tablet */
@media (max-width: 1024px) {

    .career-btn{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 100px;

        padding: 10px 40px;
        font-size: 18px;

        white-space: nowrap;
    }

}

/* Mobile */
@media (max-width: 768px) {

    .career-btn{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;

        padding: 10px 30px;
        font-size: 16px;

        white-space: nowrap;
    }

}
@media (max-width: 768px) {

  .about .stats-row{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;   /* Ek hi line me */
    gap: 8px;
  }

  .about .stats-row .stat-item{
    flex: 1;
    text-align: center;
    min-width: 0;
  }

  .about .stats-row .stat-item .stat-number{
    font-size: 20px;
  }

  .about .stats-row .stat-item .stat-label{
    font-size: 8px;
    line-height: 1.3;
    letter-spacing: 0.5px;
  }


}
@media (max-width:768px){

    .career-section{
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        background-color: #000; /* ya website ka background color */
    }

}