/* Base Styles */
:root {
  --primary: #ff6b2b;
  --primary-dark: #e85a1f;
  --primary-light: #ff8f5e;
  --background: #ffffff;
  --surface: #f8f9fa;
  --text-color: #2c3e50;
  --text-secondary: #6c757d;
  --border-color: #e9ecef;
  --card-bg: #ffffff;
  --nav-bg: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.95);
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-color);
  background-color: var(--background);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Utility Classes */
.text-primary {
  color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  border-radius: 50px;
  padding: 8px 20px;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* Navigation */
.navbar {
  background: var(--nav-bg);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  height: 64px;
  padding: 0;
  border-bottom: 1px solid var(--border-color);
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow-x: hidden;
}

main.col {
  padding-top: 64px; /* Height of the navbar */
  min-height: calc(100vh - 64px);
  background: var(--background);
  position: relative;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

/* Header Left */
.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-brand {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.navbar-brand:hover {
  color: var(--text-color);
}

.navbar-brand small {
  font-size: 1rem;
  opacity: 0.6;
  font-weight: 400;
}

/* Logo Styles */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.logo-icon {
  font-size: 1.8rem;
  color: #ff6b00;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  margin-right: 0.2rem;
}

.logo-text {
  font-family: 'Allura', cursive;
  font-size: 2.4rem;
  font-weight: 900;
  color: #ff6b00;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  line-height: 0.8;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-text small {
  font-size: 2.2rem;
  font-family: 'Allura', cursive;
  font-weight: 900;
  color: #ff6b00;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  line-height: 0.8;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hamburger Menu */
.navbar-toggler {
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.navbar-toggler:hover {
  opacity: 1;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler i {
  font-size: 1.25rem;
}

/* Center Navigation */
.header-center {
  flex: 1;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.search-box {
  max-width: 260px;
  width: 100%;
}

.search-box .input-group {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--primary);
  transition: all 0.3s ease;
}

.search-box .input-group:hover {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 2px rgba(255, 107, 43, 0.1);
}

.search-box .input-group-text {
  background-color: transparent;
  border: none;
  color: var(--primary);
  opacity: 0.8;
  padding: 0.5rem 0.75rem;
}

.search-box .form-control {
  background: transparent;
  border: none;
  color: var(--text-color);
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
}

.search-box .form-control::placeholder {
  color: var(--primary);
  opacity: 0.7;
}

.search-box .form-control:focus {
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.08);
}

.main-nav .nav {
  gap: 2rem;
}

.main-nav .nav-link {
  color: var(--text-color);
  font-size: 0.85rem;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.main-nav .nav-link:hover {
  opacity: 1;
  color: var(--primary);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.register-btn,
.signin-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.register-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-color);
}

.register-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-color);
}

.signin-btn {
  background: var(--primary);
  border: none;
  color: var(--text-color);
}

.signin-btn:hover {
  background: var(--primary-dark);
  color: var(--text-color);
}

/* Sidebar Menu */
.offcanvas {
  background-color: var(--nav-bg);
  border-right: 1px solid var(--border-color);
  width: 280px;
}

.offcanvas-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.offcanvas-title {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0;
}

.btn-close {
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.btn-close:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.15);
}

.offcanvas-body {
  padding: 1.5rem 1rem;
}

.offcanvas-body .navbar-nav {
  gap: 0.5rem;
}

.offcanvas-body .nav-item {
  margin-bottom: 0.25rem;
}

.offcanvas-body .nav-link {
  color: var(--text-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  opacity: 0.8;
}

.offcanvas-body .nav-link:hover {
  background-color: rgba(255, 94, 0, 0.1);
  color: var(--primary);
  opacity: 1;
}

.offcanvas-body .nav-link.active {
  background-color: rgba(255, 94, 0, 0.15);
  color: var(--primary);
  opacity: 1;
}

.offcanvas-body .nav-link i {
  font-size: 1.25rem;
  width: 24px;
  margin-right: 12px;
  text-align: center;
  color: var(--primary);
}

/* Sidebar Styles */
.sidebar .sidebar-brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar .logo-icon {
  color: var(--primary);
  font-size: 1.5rem;
}

.sidebar .logo-text {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.25rem;
}

.sidebar .offcanvas-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

#sidebarMenu .nav-item {
  margin-bottom: 0.5rem;
}

#sidebarMenu .nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: var(--text-color);
  transition: all 0.3s ease;
  border-radius: 0.5rem;
}

#sidebarMenu .nav-link i {
  width: 1.5rem;
  font-size: 1.1rem;
  margin-right: 0.75rem;
  color: var(--text-secondary);
}

#sidebarMenu .nav-link:hover {
  background: var(--primary-light);
  color: var(--primary);
}

#sidebarMenu .nav-link:hover i {
  color: var(--primary);
}

#sidebarMenu .nav-link.active {
  background: var(--primary);
  color: white;
}

#sidebarMenu .nav-link.active i {
  color: white;
}

#sidebarMenu .nav-link.active:hover {
  background: var(--primary);
  color: white;
}

/* Dropdown Styles */
#sidebarMenu .dropdown-menu {
  position: static !important;
  margin: 0.5rem 0 0.5rem 2.25rem;
  padding: 0.5rem 0;
  border: none;
  background: rgba(var(--primary-rgb), 0.05);
  box-shadow: none;
  transform: none !important;
}

#sidebarMenu .dropdown-item {
  padding: 0.5rem 1rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

#sidebarMenu .dropdown-item:hover {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
}

#sidebarMenu .dropdown-item i {
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

#sidebarMenu .dropdown-item:hover i {
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
}

.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px 30px 0 0;
  padding: 2rem;
  width: 100%;
  margin: 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35vh;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-header {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  color: var(--text-color);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
  width: 100%;
  display: block;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 500;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.stat-item p {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .hero-card {
    height: 40vh;
    padding: 1.75rem;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .stat-item h3 {
    font-size: 1.75rem;
  }

  .typing-text {
    min-width: 250px;
  }
}

@media (max-width: 576px) {
  .hero-card {
    height: 45vh;
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .hero-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .stat-item h3 {
    font-size: 1.5rem;
  }

  .stat-item p {
    font-size: 0.7rem;
  }

  .typing-text {
    min-width: 200px;
  }
}

/* Metaverse Section */
.metaverse-section {
  padding: 4rem 0;
}

.metaverse-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-width: 85%;
  margin: 0 auto;
}

.metaverse-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  display: block;
}

.metaverse-image:hover img {
  transform: scale(1.05);
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.section-text {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Trending Section */
.trending-section {
  padding: 1.5rem 0;
  background: linear-gradient(to right, var(--surface), var(--background));
  overflow: hidden;
}

.trending-slider {
  width: 100%;
  overflow: hidden;
}

.trending-track {
  display: flex;
  animation: marquee 20s linear infinite;
}

.trending-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  white-space: nowrap;
}

.trending-icon {
  width: 32px;
  height: 32px;
  background-color: #6c5ce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Explore Section */
.explore-section {
  padding: 6rem 0;
}

.event-card {
  position: relative;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.event-card:hover .event-image {
  transform: scale(1.1);
}

.event-image {
  position: absolute;
  inset: 0;
  background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Metaverse%20Events%20Website%20Design%20_%20Landing%20Page.jpg-448R7ROk4ofs7v0jIJ7L6omCuarPIq.jpeg");
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.event-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.event-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
}

.event-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.event-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.nav-prev {
  left: -20px;
}

.nav-next {
  right: -20px;
}

.arrow-left,
.arrow-right {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-left: 2px solid white;
}

.arrow-left {
  transform: rotate(-45deg);
}

.arrow-right {
  transform: rotate(135deg);
}

/* Footer */
.footer {
  background-color: var(--nav-bg);
  padding: 5rem 0 2rem;
  margin-top: 6rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.footer-brand h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  color: var(--text-color);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--text-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 94, 0, 0.3);
}

.footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-color);
}

.newsletter-form .input-group {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 0.5rem;
  border: 1px solid var(--primary);
  transition: all 0.3s ease;
}

.newsletter-form .form-control {
  background: transparent;
  border: none;
  color: var(--text-color);
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  border-radius: 50px;
}

.newsletter-form .form-control::placeholder {
  color: var(--primary);
  opacity: 0.7;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
}

.newsletter-form .input-group:focus-within {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 2px rgba(255, 107, 43, 0.1);
}

.newsletter-form .btn {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  border-radius: 50px;
}

.footer-bottom {
  padding-top: 2rem;
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--text-color);
}

/* Auth Modals */
.modal-dialog {
  max-width: 400px;
}

.modal-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-title {
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-body {
  padding: 1.5rem;
}

.auth-form {
  width: 100%;
}

.social-auth {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 43, 0.1);
}

.social-btn i {
  font-size: 1.25rem;
}

.social-btn.google i {
  color: #EA4335;
}

.social-btn.apple i {
  color: #ffffff;
}

.divider {
  position: relative;
  text-align: center;
  margin: 1.5rem 0;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 30px);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.divider span {
  color: var(--text-secondary);
  background: rgba(10, 10, 32, 0.8);
  padding: 0 1rem;
  font-size: 0.9rem;
}

.form-floating > .form-control {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--text-color);
  height: calc(3.5rem + 2px);
  padding: 1.5rem 0.75rem 0.5rem;
  backdrop-filter: blur(5px);
}

.form-floating > .form-control:focus {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 43, 0.1);
}

.form-floating > label {
  color: var(--text-secondary);
  padding: 1rem 0.75rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--primary);
  transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
}

.form-check-input {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-check-label a {
  color: var(--primary);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.forgot-password {
  color: var(--primary);
  font-size: 0.9rem;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
  color: var(--primary);
}

.modal .btn-close {
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal .btn-close:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.15);
}

.modal .btn-primary {
  height: 48px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: var(--primary);
  border: none;
  transition: all 0.3s ease;
}

.modal .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 43, 0.2);
}

/* Property Grid */
.explore-section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.property-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.property-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: #f8f9fa;
  border-radius: 16px 16px 0 0;
}

.property-image iframe {
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.5s ease;
}

.property-card:hover .property-image iframe {
  transform: scale(1.05);
}

.property-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 1;
}

.property-price {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.property-content {
  padding: 1.5rem;
}

.property-content h3 {
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.property-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.location {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location i {
  color: var(--primary);
}

.like-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.25rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.like-btn:hover {
  background: rgba(255, 94, 0, 0.1);
  color: var(--primary);
}

.like-btn.active {
  color: var(--primary);
}

.like-btn.active i {
  font-weight: 900;
}

/* Add animation for like button */
@keyframes likeAnimation {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.like-btn:active {
  animation: likeAnimation 0.3s ease;
}

/* View More Button */
.view-more-btn {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 1rem 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background: var(--primary);
  color: var(--text-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 94, 0, 0.3);
}

.view-more-btn i {
  transition: transform 0.3s ease;
}

.view-more-btn:hover i {
  transform: translateX(5px);
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transition: all 0.8s ease;
}

[data-animate="fade-up"] {
  transform: translateY(50px);
}

[data-animate="fade-down"] {
  transform: translateY(-50px);
}

[data-animate="fade-left"] {
  transform: translateX(-50px);
}

[data-animate="fade-right"] {
  transform: translateX(50px);
}

[data-animate="zoom-in"] {
  transform: scale(0.9);
}

[data-animate].animate {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Add stagger effect for children */
[data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

[data-animate-stagger].animate > * {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-stagger].animate > *:nth-child(1) { transition-delay: 0.1s; }
[data-animate-stagger].animate > *:nth-child(2) { transition-delay: 0.2s; }
[data-animate-stagger].animate > *:nth-child(3) { transition-delay: 0.3s; }
[data-animate-stagger].animate > *:nth-child(4) { transition-delay: 0.4s; }

/* Media Queries */
@media (min-width: 992px) {
  .circular-element {
    display: block;
  }

  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 991px) {
  .hero-section,
  .metaverse-section,
  .explore-section {
    padding: 6rem 0 3rem;
  }

  .hero-title,
  .section-title {
    font-size: 2.5rem;
  }

  .hero-image,
  .metaverse-image {
    height: 350px;
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-title,
  .section-title {
    font-size: 2rem;
  }

  .hero-image,
  .metaverse-image {
    height: 300px;
  }

  .stats-container {
    gap: 2rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }
}

@media (max-width: 991.98px) {
  .header-center {
    display: none;
  }

  .container-fluid {
    padding: 0 1rem;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand small {
    display: none;
  }

  .register-btn,
  .signin-btn {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 991.98px) {
  .footer {
    padding: 4rem 0 2rem;
  }
  
  .footer-content {
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 1rem;
  }
  
  .hero-image-container {
    height: 400px;
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-bottom-links {
    gap: 1rem;
  }
  
  .hero-image-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 0 3rem;
  }
  
  .metaverse-section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 5rem 0 2rem;
  }
  
  .metaverse-section {
    padding: 2rem 0;
  }
}

/* Typing Animation Styles */
.typing-text {
  display: inline-block;
  font-weight: 600;
  color: var(--text-color);
  min-width: 300px;
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background-color: var(--primary);
  margin-left: 2px;
  animation: blink 0.7s infinite;
  vertical-align: middle;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Search Bar */
.search-bar {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-left: 2.5rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--background);
  color: var(--text-color);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 43, 0.1);
}

.search-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.9;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  opacity: 0.8;
}

/* Footer enhancements */
.footer-title {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-content h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-link:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-bottom {
  color: var(--text-secondary);
}

.footer-bottom strong {
  color: var(--primary);
}

/* Explore Page Styles */
.explore-main {
  padding-top: 80px;
  background-color: var(--surface);
  min-height: 100vh;
}

/* Navigation Pills */
.explore-nav {
  background-color: var(--nav-bg);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
  position: sticky;
  top: 64px;
  z-index: 100;
}

.explore-nav .nav-pills {
  gap: 1rem;
}

.explore-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.explore-nav .nav-link:hover {
  color: var(--text-color);
}

.explore-nav .nav-link.active {
  background-color: var(--primary);
  color: var(--background);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 1rem 0;
}

/* Property Card */
.gallery-item .property-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item .property-card:hover {
  transform: translateY(-5px);
}

/* Card Header */
.gallery-item .card-header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  background: var(--card-bg);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-weight: 500;
  color: var(--text-color);
}

.property-type {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Card Image */
.gallery-item .card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-item .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item .property-card:hover .card-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  color: var(--background);
  font-weight: 500;
}

.view-360 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

/* Card Footer */
.gallery-item .card-footer {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  background: var(--card-bg);
}

.engagement {
  display: flex;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.engagement span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.engagement span:hover {
  color: var(--primary);
}

.more-options {
  background: none;
  border: none;
  color: var(--text-secondary);
  padding: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.more-options:hover {
  color: var(--primary);
}

/* Load More Button */
.load-more {
  padding: 0.75rem 2rem;
  font-weight: 500;
  margin: 2rem 0;
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: all 0.3s ease;
}

.load-more:hover {
  background-color: var(--primary);
  color: var(--background);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .explore-nav .nav-pills {
    gap: 0.5rem;
  }

  .explore-nav .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .explore-nav {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 0.5rem;
  }

  .explore-nav::-webkit-scrollbar {
    height: 4px;
  }

  .explore-nav::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
  }
}

/* Property Viewer Modal */
.property-viewer-modal .modal-dialog {
  max-width: 90vw;
}

.property-viewer-modal .modal-content {
  background-color: var(--bs-dark);
  color: var(--bs-light);
  border-radius: 1rem;
  overflow: hidden;
}

.property-viewer-modal .modal-header {
  padding: 1.5rem 2rem;
  background-color: rgba(0, 0, 0, 0.5);
}

.property-viewer-modal .modal-title-wrapper {
  flex: 1;
}

.property-viewer-modal .modal-title {
  color: var(--bs-light);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.property-viewer-modal .property-location {
  color: var(--bs-gray-400);
  font-size: 0.9rem;
}

.property-viewer-modal .btn-close {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 0.75rem;
  margin: -0.75rem -0.75rem -0.75rem auto;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.property-viewer-modal .btn-close:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.property-viewer {
  position: relative;
  background-color: var(--bs-dark);
}

.viewer-header {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.viewer-header .user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.viewer-header .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.viewer-header .user-details {
  display: flex;
  flex-direction: column;
}

.viewer-header .user-name {
  color: var(--bs-light);
  font-weight: 500;
}

.viewer-header .property-type {
  color: var(--bs-gray-400);
  font-size: 0.9rem;
}

.viewer-actions {
  display: flex;
  gap: 1rem;
}

.viewer-actions .btn {
  color: var(--bs-light);
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  transition: background-color 0.3s ease;
}

.viewer-actions .btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.viewer-actions .btn-like.active,
.viewer-actions .btn-like .fas.text-danger {
  color: var(--bs-danger);
}

.viewer-content {
  position: relative;
  width: 100%;
  height: 70vh;
  background-color: #000;
}

.viewer-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.viewer-footer {
  padding: 1.5rem 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-details {
  display: flex;
  gap: 2rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bs-gray-300);
}

.detail-item i {
  color: var(--bs-primary);
}

.property-engagement {
  display: flex;
  gap: 1.5rem;
  color: var(--bs-gray-400);
}

.property-engagement i {
  margin-right: 0.5rem;
}

/* Make gallery items clickable */
.gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

/* Developers Page Styles */
.developers-main {
  padding-top: 64px; /* Match navbar height */
  margin-top: 0;
}

.developers-hero {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  padding: 6rem 0;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  text-align: center;
}

.developers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/pattern.png');
  opacity: 0.1;
}

.hero-title {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  text-align: center;
}

.team-section {
  padding: 4rem 0;
  background: var(--surface);
  position: relative;
  z-index: 1;
}

.team-card {
  perspective: 1000px;
  height: 450px;
  margin-bottom: 2rem;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.team-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

.card-front {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-back {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  padding: 2rem;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.avatar-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
  padding: 0 1rem;
}

.team-bio {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 1rem 0;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.expertise-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-color);
}

.expertise-list i {
  color: var(--primary);
  font-size: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}

@media (max-width: 768px) {
  .developers-hero {
    padding: 4rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .team-card {
    height: 400px;
  }
  
  .avatar-wrapper {
    width: 120px;
    height: 120px;
  }

  .team-description,
  .team-bio {
    font-size: 0.9rem;
  }

  .expertise-list li {
    font-size: 0.9rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(to bottom right, #f8f9fa, #e9ecef);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 
    0 10px 20px rgba(0, 0, 0, 0.05),
    0 6px 6px rgba(0, 0, 0, 0.02),
    inset 0 -5px 12px rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.08),
    0 10px 10px rgba(0, 0, 0, 0.04),
    inset 0 -5px 12px rgba(255, 255, 255, 0.7);
}

.testimonial-card .rating {
  color: #ffc107;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.author-info h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
}

.author-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #718096;
}

[data-animate-delay="100"] { animation-delay: 0.1s; }
[data-animate-delay="200"] { animation-delay: 0.2s; }
[data-animate-delay="300"] { animation-delay: 0.3s; }

.testimonials-section {
  background: linear-gradient(to bottom right, rgba(248, 249, 250, 0.9), rgba(233, 236, 239, 0.9)), 
              url('assets/real-estate.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Team Section Styles */
.developers-main {
  padding-top: 80px;
}

.developers-hero {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  padding: 6rem 0;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.developers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('assets/pattern.png');
  opacity: 0.1;
}

.hero-title {
  color: white;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.team-section {
  padding: 4rem 0;
}

.team-card {
  perspective: 1000px;
  height: 400px;
  margin-bottom: 2rem;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.team-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

.card-front {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-back {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  padding: 2rem;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.avatar-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.expertise-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-color);
}

.expertise-list i {
  color: var(--primary);
  font-size: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .team-card {
    height: 350px;
  }
  
  .avatar-wrapper {
    width: 120px;
    height: 120px;
  }
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-delay="100"] {
  transition-delay: 0.1s;
}

[data-animate-delay="200"] {
  transition-delay: 0.2s;
}

[data-animate-delay="300"] {
  transition-delay: 0.3s;
}

/* Create 3D Page Styles */
.create3d-hero {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  padding: 4rem 2rem;
  margin-bottom: 2rem;
  width: 100%;
  display: block;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.upload-section {
  padding: 2rem;
  width: 100%;
  display: block;
}

.upload-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  display: block;
  width: 100%;
}

.upload-header {
  text-align: center;
  margin-bottom: 2rem;
}

.upload-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.upload-icon i {
  font-size: 24px;
  color: white;
}

.upload-area {
  border: 2px dashed var(--border-color);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  background: var(--surface);
  cursor: pointer;
  margin-bottom: 2rem;
}

.upload-area:hover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
}

.upload-area.drag-over {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
}

.upload-content i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.upload-options {
  margin-bottom: 2rem;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.option-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.preview-section {
  padding: 2rem 0;
}

.preview-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.preview-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

/* Main content layout */
.create3d-main {
  margin-top: 64px; /* Exactly the height of the navbar */
  min-height: calc(100vh - 64px);
  background-color: var(--background);
  display: block;
  width: 100%;
}

/* Reset main content styles */
.container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow-x: hidden;
}

main.col {
  padding-top: 64px; /* Height of the navbar */
  min-height: calc(100vh - 64px);
  background: var(--background);
  position: relative;
}

/* Hero Section */
.create3d-hero {
  background: var(--primary);
  padding: 4rem 2rem;
  width: 100%;
  display: block;
}

.hero-content {
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Upload Section */
.upload-section {
  padding: 3rem 0;
  background: var(--background);
  width: 100%;
  display: block;
}

.upload-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

/* Preview Section */
.preview-section {
  padding: 2rem 0;
  background: var(--background);
  width: 100%;
  display: block;
}

.preview-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Auth Buttons */
.mobile-auth {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.mobile-auth .btn {
  padding: 0.75rem 1rem;
  font-weight: 500;
}

.mobile-auth .btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}

/* Header Right - Hide on Mobile */
.header-right {
  gap: 1rem;
}

@media (max-width: 767.98px) {
  .header-right {
    display: none;
  }
}