:root {
  --primary: #F57C00; /* Teddy Tapisery Orange */
  --dark: #121212;
  --darker: #0a0a0a;
  --light: #1e1e1e;
  --text-dark: #e0e0e0;
  --text-light: #ffffff;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  background-attachment: fixed;
}
/* Typography & Bootstrap Overrides for Dark Mode */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.5px;
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6, p, .text-dark, .text-muted, .text-body, .card-title, .card-text {
  color: var(--text-dark) !important;
}
.card, .list-group-item, .modal-content, .bg-light, .bg-white {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-dark) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Bootstrap Overrides for Primary Color */
.text-danger { color: var(--primary) !important; }
.btn-danger { background-color: var(--primary); border-color: var(--primary); color: #fff; transition: all 0.3s ease; }
.btn-danger:hover { 
  background-color: #e67300; 
  border-color: #e67300; 
  color: #fff; 
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4);
}
.btn-outline-danger { color: var(--primary); border-color: var(--primary); transition: all 0.3s ease; }
.btn-outline-danger:hover { 
  background-color: var(--primary); 
  color: #fff; 
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4);
}
.bg-danger { background-color: var(--primary) !important; }


/* Header & Nav */
.top-bar {
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 8px 0;
}
.top-bar a {
  color: var(--text-light);
  text-decoration: none;
  margin-right: 15px;
}
.navbar {
  background-color: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand {
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 1.5rem;
}
.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 15px;
  transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../../uploads/background.png') center 40% / cover no-repeat fixed;
  display: flex;
  align-items: center;
  color: white;
}
.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(135deg, #F57C00, #FFD54F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1552831388-6a0b35077328?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
  padding: 100px 0;
  color: white;
  text-align: center;
}
.page-header h1 {
  background: linear-gradient(135deg, #F57C00, #FFD54F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
}

/* Cards & Services */
.service-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dark);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.service-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.service-img {
  height: 200px;
  object-fit: cover;
}

/* Gallery */
.filter-btn {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--text-dark);
  padding: 8px 20px;
  margin: 5px;
  border-radius: 25px;
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: white;
}
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 30px;
}
.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Team */
.team-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 3px solid var(--primary);
}

/* Footer */
footer {
  background-color: var(--darker);
  color: var(--text-light);
  padding: 50px 0 20px;
}
footer a {
  color: var(--text-light);
  text-decoration: none;
}
footer a:hover {
  color: var(--primary);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--darker);
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #e67300;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.service-card, .gallery-item {
  animation: fadeInUp 0.8s ease forwards;
}

/* Pointer for lightbox */
.gallery-img, .service-img {
  cursor: pointer;
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 110px; /* Above WhatsApp */
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
}
#backToTop:hover {
  background-color: #e67300;
  transform: translateY(-5px);
}




