/* ===== Splash Screen ===== */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 1s ease;
}

.splash-content {
    text-align: center;
}

/* Logo */
#splash-screen img {
    width: 120px;
    margin-bottom: 15px;
    animation: logoPulse 2s infinite;
}

/* Brand Name */
.brand-name {
    color: #E7C253;
    font-size: 32px;
    letter-spacing: 5px;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

/* Tagline */
.brand-tagline {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 1.5s;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes logoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.hide-splash {
    opacity: 0;
}


.section-padding h2 {
    letter-spacing: 1px;
}

.list-unstyled li {
    margin-bottom: 12px;
}





/* ================================
   HERO (LIGHT MODE)
================================ */



/* ===== ABOUT HERO ===== */
.about-hero {
    position: relative;
    height: 55vh;
    background: url('../images/header-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.about-overlay {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    position: relative;
}

.about-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Gold decorative line */
.gold-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #ffd700);
    border-radius: 5px;
}

/* About List */
.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 12px;
    font-weight: 500;
}

/* Image Styling */
.about-image {
    transition: 0.6s ease;
}

.about-image:hover {
    transform: scale(1.05);
}





/* ===== SERVICES HERO ===== */
.services-hero {
    position: relative;
    height: 55vh;
    background: url('../images/header-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.services-overlay {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
}

.services-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Service Cards Premium Hover */
.service-card {
    border: none;
    transition: all 0.4s ease;
    border-radius: 12px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* CTA Section */
.services-cta {
    position: relative;
    height: 40vh;
    background: url('../images/luxury-cta.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
}

.services-cta .services-overlay {
    background: rgba(0,0,0,0.7);
}







/* ===== CONTACT HERO ===== */
.contact-hero {
    position: relative;
    height: 55vh;
    background: url('../images/header-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-overlay {
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.6));
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-subtitle {
    font-size: 16px;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Contact Cards */
.contact-card {
    border: none;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* CTA Section */
.contact-cta {
    position: relative;
    height: 40vh;
    background: url('../images/luxury-cta.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
}

.contact-cta .contact-overlay {
    background: rgba(0,0,0,0.75);
}



.container,
.container-fluid {
  max-width: 100%;
}





/* ================================
   ROOT VARIABLES (LIGHT MODE)
================================ */
:root {
  --bg-color: #ffffff;
  --text-color: #222222;
  --section-bg: #f8f9fa;
  --card-bg: #ffffff;
  --navbar-bg: #0f172a;
  --footer-bg: #000000;
  --accent-color: #f59e0b;
}

/* ================================
   GLOBAL STYLES
================================ */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  scroll-behavior: smooth;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
  width: 100%;
}

.section-padding,
section {
  padding: 100px 0;
}

.bg-light {
  background-color: var(--section-bg) !important;
  transition: background-color 0.3s ease;
}

.card {
  background-color: var(--card-bg);
  border: none;
  transition: all 0.3s ease;
}

/* ================================
   DARK MODE VARIABLES
================================ */
/* DARK MODE */
.dark-mode {
  --bg-color: #121212;
  --text-color: #ffffff;
  --section-bg: #1e1e1e;
  --card-bg: #1f1f1f;
  --navbar-bg: #000000;
  --footer-bg: #000000;
}

/* Apply global text color */
.dark-mode body,
.dark-mode p,
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6,
.dark-mode span,
.dark-mode li,
.dark-mode a,
.dark-mode small {
  color: #ffffff !important;
}

/* Navbar */
.dark-mode .navbar {
  background-color: var(--navbar-bg) !important;
}

.dark-mode .navbar a {
  color: #ffffff !important;
}

/* Cards */
.dark-mode .card {
  background-color: var(--card-bg) !important;
  color: #ffffff !important;
}

/* Sections */
.dark-mode .bg-light {
  background-color: var(--section-bg) !important;
}

/* Footer */
.dark-mode footer {
  background-color: var(--footer-bg) !important;
  color: #ffffff !important;
}

/* Muted text fix */
.dark-mode .text-muted {
  color: #dddddd !important;
}

/* Form controls */
.dark-mode .form-control {
  background-color: #2a2a2a;
  color: #ffffff;
  border-color: #444;
}

.dark-mode .form-control::placeholder {
  color: #cccccc;
}


/* ===== DARK MODE SERVICES FIX ===== */

.dark-mode .bg-light {
  background-color: var(--section-bg) !important;
}

.dark-mode .service-card {
  background-color: var(--card-bg) !important;
  color: #ffffff !important;
}

.dark-mode .service-card h5,
.dark-mode .service-card p {
  color: #ffffff !important;
}

/* Force white text inside any card */
.dark-mode .card {
  color: #ffffff !important;
}

/* Optional: Slight shadow glow for premium look */
.dark-mode .service-card {
  box-shadow: 0 0 20px rgba(255, 193, 7, 0.1);
}

.services-section {
  background-color: var(--section-bg);
}



/* ================================
   NAVBAR
================================ */
.navbar {
  background: var(--navbar-bg) !important;
  transition: background 0.3s ease;
}

.navbar-brand span {
  color: #E7C253;
}

.navbar-logo {
  height: 45px;
  width: auto;
}

/* ================================
   HERO SECTION
================================ */
.hero {
  height: 100vh;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.65);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 span {
  color: var(--accent-color);
}

/* Background Video */
.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(95%);
}



/* ================================
   ABOUT SECTION
================================ */
.about-section {
  background: var(--section-bg);
}

.about-section img {
  transition: transform 0.6s ease;
}

.about-section img:hover {
  transform: scale(1.05);
}

/* ================================
   SERVICE CARD HOVER
================================ */
.service-card {
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ================================
   CONTACT SECTION
================================ */
.contact-section {
  background: var(--navbar-bg);
  color: #fff;
}

/* ================================
   FOOTER
================================ */
footer {
  background: var(--footer-bg);
  color: #aaa;
  padding: 15px 0;
  text-align: center;
  transition: background 0.3s ease;
}

/* ================================
   CUSTOM ANIMATION (Optional if not using AOS)
================================ */
.animate-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 1s ease;
}

.animate-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1s ease;
}

.animate-show {
  opacity: 1;
  transform: translateX(0);
}

/* ================================
   BUTTON STYLING
================================ */
.btn-warning {
  background-color: var(--accent-color);
  border: none;
}

.btn-warning:hover {
  background-color: #d97706;
}

/* ================================
   SMOOTH TRANSITIONS FOR DARK MODE
================================ */
.navbar,
.card,
section,
footer {
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ================================
   RESPONSIVE IMPROVEMENTS
================================ */
@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }

  .section-padding,
  section {
    padding: 70px 0;
  }
}


/* ===== VISION & MISSION PREMIUM STYLE ===== */

.vision-mission-section {
  background: var(--section-bg);
  position: relative;
}

/* Section Title */
.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  position: relative;
}

.gold-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b, #ffcc70);
  border-radius: 10px;
  margin-top: 15px;
}

/* Cards */
.vm-card {
  background: var(--card-bg);
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
}

/* Icon Box */
.icon-box {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #f59e0b, #ffcc70);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 22px;
}

/* Dark Mode Enhancement */
.dark-mode .vm-card {
  background: #1f2937;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.dark-mode .vm-card:hover {
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.25);
}



/* ===== FOUNDER SECTION ===== */

.founder-section {
  background: var(--section-bg);
}

/* Image Styling */
.founder-img-wrapper {
  position: relative;
  display: inline-block;
  padding: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #ffcc70);
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
  transition: all 0.5s ease;
}

.founder-img {
  border-radius: 50%;
  width: 320px;
  height: 320px;
  object-fit: cover;
  border: 6px solid #fff;
}

/* Hover Glow */
.founder-img-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(245, 158, 11, 0.35);
}

/* Signature */
.signature {
  font-style: italic;
  font-weight: 500;
  color: #f59e0b;
}

/* Dark Mode */
.dark-mode .founder-img {
  border: 6px solid #1f1f1f;
}

.dark-mode .founder-img-wrapper {
  box-shadow: 0 20px 40px rgba(245, 158, 11, 0.35);
}



.visitor-counter{
    margin-top:10px;
    font-size:14px;
    letter-spacing:1px;
    color:#facc15;
}

.visitor-counter i{
    margin-right:6px;
}

.dark-mode .visitor-counter{
    color:#ffffff;
}
