/* ===================================
   Updated Stylesheet - Dark Modern Design
   =================================== */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff6b00;
  --secondary-color: #ff8c00;
  --black: #0a0a0a;
  --dark-bg: #121212;
  --dark-card: #1a1a1a;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #333333;
  --gray-dark: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-tertiary: rgba(255, 255, 255, 0.5);
  --border-color: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-size: 15px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.btn-primary-large {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.btn-outline-dark:hover {
  background: var(--text-primary);
  color: var(--black);
}

.full-width {
  width: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Split Section */
.hero-split {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  padding: 100px 0 80px;
  position: relative;
}

.hero-split::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-split-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  align-items: center;
}

.hero-text-content {
  max-width: 600px;
}

.hero-name {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.hero-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin-bottom: 25px;
}

.hero-role {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-tagline {
  font-size: 22px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 35px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image-container {
  position: relative;
  width: 500px;
  height: 600px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.image-accent-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-color);
  border-radius: 12px;
  top: 20px;
  left: 20px;
  z-index: 1;
}

.image-accent-2 {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--primary-color);
  border-radius: 50%;
  bottom: -30px;
  left: -30px;
  z-index: 3;
  opacity: 0.9;
}

/* Animations */
.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Section Headers */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 70px;
}

.section-header-left {
  text-align: left;
  margin-bottom: 60px;
  max-width: 600px;
}

.section-cta {
  text-align: center;
  margin-top: 60px;
}

/* About Introduction */
.about-intro {
  background: var(--dark-bg);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.intro-badge {
  text-align: center;
  margin-bottom: 25px;
}

.intro-badge span {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 107, 0, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.intro-heading {
  font-size: 42px;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--text-primary);
}

.intro-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.intro-column p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.intro-column strong {
  color: var(--primary-color);
  font-weight: 600;
}

.intro-cta {
  margin-top: 30px;
}

/* Expertise Section */
.expertise-section {
  background: var(--black);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.expertise-card {
  padding: 45px 40px;
  background: var(--dark-card);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
}

.expertise-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.expertise-number {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
}

.expertise-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.expertise-card:hover .expertise-icon-wrapper {
  background: var(--primary-color);
}

.expertise-icon-wrapper i {
  font-size: 32px;
  color: var(--primary-color);
  transition: var(--transition);
}

.expertise-card:hover .expertise-icon-wrapper i {
  color: var(--white);
}

.expertise-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.expertise-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Ventures Modern */
.ventures-modern {
  background: var(--dark-bg);
}

.ventures-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.venture-modern-card {
  background: var(--dark-card);
  border-radius: 12px;
  padding: 40px 35px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.venture-modern-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.venture-modern-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.venture-logo {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.venture-logo img {
  max-width: 100%;
  height: auto;
}

.venture-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 20px;
}

.venture-modern-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.venture-modern-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.venture-highlights {
  list-style: none;
  margin-bottom: 30px;
  padding-left: 0;
}

.venture-highlights li {
  font-size: 14px;
  color: var(--text-tertiary);
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
}

.venture-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.venture-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
}

.venture-link:hover {
  gap: 12px;
}

.venture-link i {
  font-size: 14px;
}

/* Philosophy Modern */
.philosophy-modern {
  background: var(--black);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.philosophy-quote {
  font-size: 42px;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 25px 0 30px;
  font-weight: 600;
  position: relative;
  padding-left: 30px;
}

.philosophy-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--primary-color);
}

.philosophy-explanation {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.philosophy-focus {
  background: var(--dark-card);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.philosophy-focus h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: var(--text-primary);
}

.focus-list {
  list-style: none;
}

.focus-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.focus-list i {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Events Modern */
.events-modern {
  background: var(--dark-bg);
}

.events-list {
  max-width: 1000px;
  margin: 0 auto;
}

.event-modern-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 35px;
  background: var(--dark-card);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.event-modern-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
  transform: translateX(5px);
}

.event-date-box {
  text-align: center;
  padding: 20px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
  border: 2px solid var(--primary-color);
}

.event-day {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.event-month {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 1px;
}

.event-details-main h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.event-details-main > p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.6;
}

.event-meta {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.event-meta span {
  font-size: 14px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-meta i {
  color: var(--primary-color);
}

/* Contact Modern */
.contact-modern {
  background: var(--black);
}

.contact-modern-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-modern-info h2 {
  font-size: 42px;
  margin: 20px 0 25px;
  color: var(--text-primary);
}

.contact-modern-info > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.contact-modern-details {
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-detail-item i {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-detail-item .detail-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-detail-item a,
.contact-detail-item span {
  font-size: 16px;
  color: var(--text-secondary);
}

.contact-detail-item a:hover {
  color: var(--primary-color);
}

.social-modern {
  display: flex;
  gap: 12px;
}

.social-modern a {
  width: 45px;
  height: 45px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-primary);
  transition: var(--transition);
  border: 2px solid transparent;
}

.social-modern a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Modern Form */
.contact-modern-form {
  background: var(--dark-card);
  padding: 50px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.modern-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-field {
  position: relative;
  margin-bottom: 25px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 107, 0, 0.05);
}

.form-field label {
  position: absolute;
  left: 18px;
  top: 16px;
  color: var(--text-tertiary);
  pointer-events: none;
  transition: var(--transition);
  font-size: 15px;
}

.form-field input:focus + label,
.form-field input:valid + label,
.form-field textarea:focus + label,
.form-field textarea:valid + label {
  top: -10px;
  left: 12px;
  background: var(--dark-card);
  padding: 0 8px;
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  display: none;
  font-size: 14px;
}

.form-message.success {
  background: rgba(0, 200, 0, 0.1);
  border: 2px solid green;
  color: lightgreen;
  display: block;
}

.form-message.error {
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid red;
  color: lightcoral;
  display: block;
}

/* Footer */
.footer {
  background: var(--dark-bg);
  padding: 60px 0 20px;
  color: var(--text-primary);
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer .social-links {
  display: flex;
  gap: 12px;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.footer .social-links a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-tertiary);
}

/* No Content */
.no-content {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-tertiary);
  grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-split-container {
    gap: 60px;
    padding: 0 30px;
  }
  
  .hero-name {
    font-size: 56px;
  }
  
  .hero-image-container {
    width: 450px;
    height: 550px;
  }
}

@media (max-width: 992px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-left {
    justify-content: center;
  }
  
  .hero-text-content {
    max-width: 100%;
  }
  
  .hero-divider {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-right {
    justify-content: center;
  }
  
  .hero-image-container {
    width: 400px;
    height: 500px;
  }
  
  .intro-text-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .ventures-showcase {
    grid-template-columns: 1fr;
  }
  
  .philosophy-layout {
    grid-template-columns: 1fr;
  }
  
  .contact-modern-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .hero-name {
    font-size: 42px;
  }
  
  .hero-tagline {
    font-size: 18px;
  }
  
  .hero-image-container {
    width: 100%;
    max-width: 350px;
    height: 450px;
  }
  
  .section-heading {
    font-size: 36px;
  }
  
  .intro-heading {
    font-size: 32px;
  }
  
  .philosophy-quote {
    font-size: 32px;
  }
  
  .event-modern-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px;
  }
  
  .event-date-box {
    width: fit-content;
  }
  
  .modern-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-modern-form {
    padding: 30px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 36px;
  }
  
  .hero-role {
    font-size: 14px;
  }
  
  .hero-tagline {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .section-heading {
    font-size: 28px;
  }
  
  .expertise-card,
  .venture-modern-card {
    padding: 30px 25px;
  }
  
  .hero-image-container {
    height: 400px;
  }
  
  .image-accent-2 {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: -20px;
  }
}

/* Additional Dark Theme Enhancements */
.venture-modern-card:hover,
.expertise-card:hover,
.event-modern-card:hover {
  background: rgba(255, 107, 0, 0.03);
}

/* Scrollbar Styling for Dark Theme */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-medium);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Selection Styling */
::selection {
  background: var(--primary-color);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white);
}

.about {
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.3);
  border: 3px solid var(--primary-color);
}

.about-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-text p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 15px;
  border: 2px solid var(--primary-color);
}

.stat-item h4 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Journey/Timeline Section */
.journey {
  background: var(--black);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-content {
  display: flex;
  align-items: center;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  background: var(--primary-color);
  border: 4px solid var(--black);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-card {
  width: 45%;
  padding: 25px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  border-radius: 15px;
  border: 2px solid var(--primary-color);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-card {
  margin-left: auto;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-card {
  margin-right: auto;
  text-align: right;
}

.timeline-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.timeline-date {
  display: inline-block;
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Ventures Section */
.ventures {
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.venture-card {
  padding: 40px 30px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 20px;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.venture-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.3);
}

.venture-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  font-size: 36px;
  color: var(--white);
}

.venture-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--white);
}

.venture-card > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.7;
}

.venture-features {
  list-style: none;
  margin-bottom: 25px;
  text-align: left;
}

.venture-features li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
}

.venture-features i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Gallery Section */
.gallery {
  background: var(--black);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 25px;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--white);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--white);
  margin-bottom: 15px;
}

.view-image {
  background: var(--primary-color);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  font-size: 20px;
  transition: var(--transition);
}

.view-image:hover {
  transform: scale(1.1);
}

/* Events Section */
.events {
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.event-card {
  background: rgba(255, 107, 0, 0.05);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: var(--transition);
}

.event-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 107, 0, 0.3);
}

.event-image {
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.event-card:hover .event-image img {
  transform: scale(1.1);
}

.event-content {
  padding: 30px;
  position: relative;
}

.event-date {
  position: absolute;
  top: -30px;
  right: 30px;
  background: var(--primary-color);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.5);
}

.date-day {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.date-month {
  display: block;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
}

.event-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--white);
}

.event-content > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

.event-details {
  margin-bottom: 20px;
}

.event-details p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.event-details i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Contact Section */
.contact {
  background: var(--black);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 80px;
}

.contact-info h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--white);
}

.contact-item p {
  color: rgba(255, 255, 255, 0.8);
}

.social-links-large {
  display: flex;
  gap: 15px;
}

.social-links-large a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 50%;
  font-size: 20px;
  transition: var(--transition);
}

.social-links-large a:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
  background: rgba(255, 107, 0, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid var(--primary-color);
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 107, 0, 0.3);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group label {
  position: absolute;
  left: 15px;
  top: 15px;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transition: var(--transition);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
  top: -10px;
  left: 10px;
  background: var(--black);
  padding: 0 5px;
  font-size: 12px;
  color: var(--primary-color);
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  display: none;
}

.form-message.success {
  background: rgba(0, 255, 0, 0.1);
  border: 2px solid green;
  color: lightgreen;
  display: block;
}

.form-message.error {
  background: rgba(255, 0, 0, 0.1);
  border: 2px solid red;
  color: lightcoral;
  display: block;
}

/* Calendly Section */
.calendly-section {
  margin-top: 80px;
  text-align: center;
}

.calendly-section h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.calendly-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--primary-color);
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}