/* ================================================
   About Page Specific Styles - Luxury Corner
   ================================================ */
.about-hero p,
.section-values-gradient p,
.footer p,
.footer-links a {
  color: var(--text-gray) !important;
  font-size: 1.1rem !important;
}

/* --- Navigation & Navbar Transitions --- */
.navbar {
  background-color: transparent !important; /* Initial State: Transparent */
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: rgba(26, 26, 26, 0.95) !important; /* On Scroll State */
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: var(--shadow-soft);
}

.nav-logo {
  height: 70px;
  transition: var(--transition-fast);
}

.navbar.scrolled .nav-logo {
  height: 55px;
}

/* --- Hero Section Styling --- */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background: url("assets/bg.jpg") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
}

.about-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* Dark Overlay */
  z-index: 1;
}

.hero-content-box {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--primary-gold);
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

/* --- Breadcrumb Styling --- */
.breadcrumb-item a {
  color: var(--text-white);
  text-decoration: none;
  opacity: 0.8;
}
.breadcrumb-item a:hover {
  color: var(--primary-gold);
  opacity: 1;
}
.breadcrumb-item.active {
  color: var(--primary-gold) !important;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
  content: "|";
  padding: 0 10px;
}

/* --- About Main Section --- */
.sub-title {
  color: var(--primary-gold);
  font-weight: 700;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark-bg);
}

.main-title span {
  color: var(--primary-gold);
}

/* ---- */
.about-img-frame {
    position: relative;
    width: fit-content;
    padding: 15px; 
    z-index: 2;
}


.frame-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1.5px solid #f3b308;
    border-radius: 8px;
    z-index: -1;
    
    animation: borderFloat 2s infinite ease-in-out;
    opacity: 0.6;
}


.about-img-frame img {
    position: relative;
    border-radius: 5px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    z-index: 2;
   
    animation: imgBreath 2s infinite ease-in-out;
}


/* .luxury-light-beam {
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(243, 179, 8, 0.15),
        transparent
    );
    transform: skewX(-30deg);
    z-index: 3;
    animation: beamSweep 5s step-start ease-in-out;
} */

/* ---  (Animations) --- */

@keyframes borderFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, 15px); }
}

@keyframes imgBreath {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5px, -5px); }
}


@keyframes beamSweep {
    0% { left: -100%; }
    40% { left: 150%; }
    /* 100% { left: 150%; } */
}



/* --- Vision & Mission Cards --- */
.vision-mission-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  height: 100%;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vision-mission-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: var(--dark-bg);
  color: var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

/* values section */

.section-values-gradient {
  background: linear-gradient(135deg, #0d0d0d 0%, #393838 50%, #0d0d0d 100%);
  padding: 100px 0;
  position: relative;
  color: #ffffff;
}

.value-sub-title {
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.value-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #ffffff;
}

.value-card-premium {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 20px;
  border-radius: 20px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.value-card-premium:hover {
  background: rgba(255, 210, 41, 0.05);
  border-color: var(--primary-gold);
  transform: translateY(-10px);
}

.icon-box {
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 25px;
  transition: 0.4s;
}

.value-card-premium:hover .icon-box {
  transform: scale(1.2) rotate(5deg);
}

.value-card-premium h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.value-card-premium p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .value-card-premium {
    margin-bottom: 20px;
    padding: 30px 15px;
  }
}
/* --- Core Values Icons & Grid --- */
/* .value-card {
    padding: 20px 10px;
    transition: var(--transition-fast);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.value-card h4 {  color: #a0a0a0; font-size: 1.3rem; margin-bottom: 12px; }
.value-card p { font-size: 0.9rem; color: var(--text-white); } */

/* --- Why Choose Us List --- */
.why-list {
  list-style: none;
  padding: 0;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-bg);
}

.why-list li i {
  color: var(--primary-gold);
  margin-left: 15px;
  font-size: 1.4rem;
  margin-top: 5px;
}

/* --- Global Section Settings --- */
.section-padding {
  padding: 100px 0;
}
.bg-light {
  background-color: #f9f9f9 !important;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .about-hero h1 {
    font-size: 2.8rem;
  }
  .main-title {
    font-size: 2.2rem;
  }
  .section-padding {
    padding: 60px 0;
  }
}

/* ===========================
   WhatsApp Button
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 2rem;
  color: var(--text-white);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
  }
}

/* Fix Horizontal Scroll Issues */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* .container {
    max-width: 100vw;
    overflow: hidden;
}

.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

section {
    width: 100%;
    overflow: hidden; 
} */


[lang="en"] .why-list li i {
    margin-right: 10px; 
    margin-left: 0;
}