.admin-section {
  margin-top: 60px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
}

.admin-section h2 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 20px;
}

.table-controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

#searchInput {
  padding: 10px;
  width: 220px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#addInvestorBtn {
  padding: 10px 18px;
  background: #ffd700;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

#investorTable {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

#investorTable th, #investorTable td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

#investorTable th {
  background: #111;
  color: #fff;
}

.edit-btn, .delete-btn {
  padding: 6px 10px;
  margin-right: 4px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.edit-btn {
  background: #3498db;
  color: #fff;
}

.delete-btn {
  background: #e74c3c;
  color: #fff;
}

.portfolio-download {
  text-align: center;
  margin: 30px 0;
}

.portfolio-download button {
  background: #ffd700;
  color: #000;
  padding: 12px 24px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.portfolio-download button:hover {
  background: #e6c200;
}

.admin-tools-section {
  background: #111;
  color: #fff;
  padding: 60px 20px;
}

.tools-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tools-form label {
  font-size: 0.95rem;
  color: #ccc;
  display: flex;
  flex-direction: column;
}

.tools-form input,
.tools-form textarea,
.tools-form select {
  padding: 12px;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  margin-top: 6px;
}

.tools-form button {
  padding: 14px;
  background: #ffd700;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.system-settings-section {
  background: #0d0d0d;
  color: #fff;
  padding: 60px 20px;
}

.settings-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.settings-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: #ccc;
}

.settings-form input,
.settings-form select {
  padding: 12px;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  margin-top: 6px;
}

.settings-form button {
  padding: 14px;
  background: #ffd700;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.activity-log-section {
  background: #0a0a0a;
  padding: 60px 20px;
  color: #fff;
}

.activity-log-container {
  max-width: 800px;
  margin: 20px auto;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(255,215,0,0.1);
  font-family: 'Poppins', sans-serif;
}

.activity-entry {
  padding: 10px;
  border-bottom: 1px solid #333;
  font-size: 0.95rem;
  color: #ccc;
}

.activity-entry:last-child {
  border-bottom: none;
}

/* Header Navigation */
.site-header {
  position: sticky;
  top: 0;
  background-color: #000;
  z-index: 1000;
  padding: 15px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 32px;
  width: auto;
}

.logo span {
  color: #ffd700;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffd700;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.8));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-content h1 {
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: #ffd700;
}

.hero-content p {
  font-size: 1.1rem;
  color: #eee;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #ffd700;
  color: #000;
}

.primary-btn:hover {
  background: #e6c200;
}

.secondary-btn {
  background: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
}

.secondary-btn:hover {
  background: #ffd700;
  color: #000;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  background: #0a0a0a;
  padding: 100px 20px;
  color: #fff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  color: #ffd700;
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.about-text p {
  font-size: 1.05rem;
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  min-width: 280px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.values-section {
  background: #111;
  padding: 100px 20px;
  text-align: center;
}

.values-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #ffd700;
  margin-bottom: 50px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px 25px;
  width: 300px;
  color: #fff;
  box-shadow: 0 6px 14px rgba(255, 215, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(255, 215, 0, 0.15);
}

.value-card h3 {
  color: #ffd700;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1.2s ease-out forwards;
}

.fade-in.delay {
  animation-delay: 0.3s;
}

.fade-in.delay-2 {
  animation-delay: 0.6s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.projects-section {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.projects-section h2 {
  color: #ffd700;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-subtext {
  color: #ccc;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: #1b1b1b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
  text-align: left;
}

.project-info h3 {
  color: #ffd700;
  margin-bottom: 5px;
}

.project-info p {
  font-size: 0.95rem;
  color: #ccc;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border: 4px solid #fff;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.status {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: bold;
}

.status.ongoing {
  background: #ffd700;
  color: #000;
}

.status.sold {
  background: #8b0000;
  color: #fff;
}

.status.upcoming {
  background: #444;
  color: #ccc;
}

.testimonials-section {
  background: #111;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2.4rem;
  color: #ffd700;
  margin-bottom: 40px;
}

.testimonial-slider {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  position: relative;
}

.testimonial {
  flex: 0 0 100%;
  max-width: 600px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
  opacity: 1;
}

.testimonial p {
  font-size: 1.1rem;
  color: #ccc;
}

.testimonial .author {
  margin-top: 10px;
  font-weight: 600;
}

.testimonial-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.testimonial-button {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.testimonial-button:hover {
  background: #e6c200;
}
.contact-section {
  background: #0d0d0d;
  color: #fff;
  padding: 80px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  color: #ffd700;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #ccc;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  font-size: 0.95rem;
}

.contact-form button {
  padding: 12px;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #e6c200;
}

/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.newsletter-section {
  background: #111;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-container h2 {
  font-size: 2rem;
  color: #ffd700;
  margin-bottom: 10px;
}

.newsletter-container p {
  color: #ccc;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
  width: 280px;
}

.newsletter-form button {
  padding: 12px 24px;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #e6c200;
}

.investment-section {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.investment-section h2 {
  color: #ffd700;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.investment-intro {
  color: #ccc;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: left;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.1);
}

.plan-card h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

.plan-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.plan-details {
  margin-top: 15px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.plan-card.active .plan-details {
  max-height: 300px;
  opacity: 1;
}
.footer {
  background: #000;
  color: #fff;
  padding: 60px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.footer-brand,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1;
  min-width: 220px;
}

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

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: #ffd700;
}

.footer-contact p {
  font-size: 0.95rem;
  margin: 6px 0;
  color: #ccc;
}

.footer-social .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social img {
  width: 24px;
  height: 24px;
}

.footer-divider {
  border-color: #333;
  margin: 30px 0 20px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}


/* Admin Dashboard */
.dashboard-header {
  background: #111;
  color: #ffd700;
  padding: 20px;
  text-align: center;
  border-bottom: 2px solid #333;
}
.logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.logo-area img {
  width: 40px;
  height: 40px;
}
.admin-analytics {
  padding: 40px 20px;
  background: #0d0d0d;
  color: #fff;
}
.admin-analytics h2 {
  text-align: center;
  color: #ffd700;
  margin-bottom: 30px;
}
.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.analytics-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #ffd700;
}
.analytics-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #ffd700;
}
.analytics-card p {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}
.chart-section {
  background: #0a0a0a;
  padding: 60px 20px;
  color: #fff;
}
.chart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
canvas {
  background: #111;
  padding: 20px;
  border-radius: 12px;
}


.badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  display: inline-block;
}

.badge.approved {
  background-color: #4caf50;
  color: #fff;
}

.badge.pending {
  background-color: #ff9800;
  color: #fff;
}

.broadcast-section {
  background: #0a0a0a;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.broadcast-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.broadcast-form input,
.broadcast-form textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
  font-size: 1rem;
  width: 100%;
}

.broadcast-form button {
  padding: 14px;
  background: #ffd700;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.broadcast-form button:hover {
  background: #e6c200;
}

.broadcast-status {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #00ff99;
}

.plan-editor-section {
  background: #111;
  padding: 60px 20px;
  color: #fff;
}

.plan-editor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
}

.plan-editor-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 280px;
}

.plan-editor-card input {
  padding: 10px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #000;
  color: #ffd700;
}

.plan-editor-card button {
  padding: 10px;
  background: #ffd700;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.plan-editor-card button:hover {
  background: #e6c200;
}
