:root {
  --color-black: #050505;
  --color-dark: #000000;
  --color-white: #ffffff;
  --color-gold: #FFD700;
  --color-royal-yellow: #FCC200;
  --color-royal-yellow-hover: #eebb00;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --gold-glow: rgba(255, 215, 0, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-sans);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#app {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Ambient Glows */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.glow-top-left {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  top: -200px;
  left: -200px;
}

.glow-bottom-right {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  z-index: 10;
  position: relative;
}

.logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.login-link {
  font-weight: 500;
  opacity: 1 !important;
}

/* Hero Section */
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.headline {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.text-serif {
  font-family: var(--font-serif);
}

.italic {
  font-style: italic;
  font-weight: 400;
}

.subheadline {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 480px;
}

.cta-group {
  display: flex;
  gap: 1.5rem;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--color-royal-yellow);
  color: var(--color-black);
  border: 1px solid var(--color-gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-royal-yellow-hover);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.network-container {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.network-graphic {
  width: 45%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 215, 0, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-1 {
  width: 450px;
  height: 450px;
  animation: spin 20s linear infinite;
}

.ring-2 {
  width: 350px;
  height: 350px;
  border-style: dashed;
  animation: spin-reverse 25s linear infinite;
}

/* Founder Card */
.founder-card {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 280px;
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  align-items: center;
  animation: slide-up 1s ease-out 0.5s backwards;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.founder-image-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--color-gold);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.founder-info p {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 0.3rem;
}

.founder-status {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  color: var(--color-gold);
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 5px var(--color-gold);
}

/* Footer */
.footer {
  padding: 2rem 4rem;
  font-size: 0.9rem;
  opacity: 0.6;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.contact-info .gold-text {
  color: var(--color-gold);
}

.separator {
  margin: 0 0.5rem;
  color: var(--color-gold);
}

.partners {
  display: flex;
  gap: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin-reverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Mobile Navigation Base --- */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-gold);
  cursor: pointer;
  z-index: 20;
}

@media (max-width: 1024px) {
  .headline {
    font-size: 3rem;
  }

  .navbar {
    padding: 1.5rem 2rem;
  }

  .hero {
    padding: 0 2rem;
  }
}

/* --- Full Page Snap Scroll & New Sections (Global) --- */
html.snap-html {
  overflow: hidden;
  height: 100%;
}

body.snap-scroll-body {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  display: block;
}

.snap-section {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  background-color: var(--color-black);
  overflow: hidden;
}

.fixed-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.section-title {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-align: center;
}

.text-gold {
  color: var(--color-gold);
}

.gold-separator {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0 auto 3rem auto;
}

/* Services */
.services-visual-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.services-collage {
  max-width: 800px;
  width: 90%;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.1);
}

.services-labels {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.services-labels span {
  border: 1px solid var(--color-gold);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.services-labels span:hover {
  background: var(--color-gold);
  color: black;
  opacity: 1;
}

/* --- New Services Page Enhancements --- */
.services-hero {
  padding: 8rem 2rem 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero .headline-lg {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: var(--font-serif);
}

.services-hero p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.services-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.service-card-enhanced {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card-enhanced:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.service-card-enhanced:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  color: var(--color-gold);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-card-enhanced:hover .service-icon-wrapper {
  background: var(--color-gold);
  color: var(--color-black);
  transform: scale(1.1) rotate(5deg);
}

.service-icon {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
}

.service-card-enhanced h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.service-card-enhanced p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.service-cta {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-gold);
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s;
}

.service-card-enhanced:hover .service-cta {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .services-hero .headline-lg {
    font-size: 3rem;
  }
}

/* --- Contact Page Styles --- */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-form-wrapper {
  flex: 2;
  min-width: 300px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 12px;
}

.contact-info-wrapper {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 2rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1rem;
  border-radius: 4px;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-detail-item {
  margin-bottom: 1.5rem;
}

.contact-detail-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
}

.contact-detail-value {
  font-size: 1.1rem;
  font-family: var(--font-serif);
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    width: 100%;
  }
}


.service-card-enhanced p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.service-cta {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-gold);
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s;
}

.service-card-enhanced:hover .service-cta {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .services-hero .headline-lg {
    font-size: 3rem;
  }
}

.vision-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1000px;
  padding: 0 2rem;
}

.puzzle-graphic {
  width: 400px;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.2));
  animation: float 5s ease-in-out infinite;
}

.vision-quote {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.mission-sub {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 400px;
}

/* Testimonials */
.testimonial-slider {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #111;
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 2.5rem;
  width: 400px;
  border-radius: 8px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.15);
  border-color: var(--color-gold);
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  font-style: italic;
  opacity: 0.9;
}

.testimonial-author {
  text-align: right;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* --- Helper Classes for About Us --- */
.text-left {
  text-align: left;
}

.separator-left {
  margin: 0 0 2rem 0;
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.about-intro-wrapper {
  max-width: 900px;
  text-align: left;
}

.founder-section-container {
  gap: 5rem;
}

.static-founder-card {
  position: relative;
  right: auto;
  bottom: auto;
  width: 320px;
  animation: none;
}

.wrapper-lg {
  width: 100px;
  height: 100px;
}

.founder-name-lg {
  font-size: 1.4rem;
}

.founder-role {
  font-size: 0.9rem;
}

.max-w-500 {
  max-width: 500px;
}

.quote-lg {
  font-size: 2.5rem;
}

.text-block {
  opacity: 0.9;
  font-size: 1rem;
  line-height: 1.8;
}

/* --- Mobile Media Queries --- */
@media (max-width: 768px) {

  /* Navigation */
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    transition: 0.4s ease;
    z-index: 15;
  }

  .nav-links.active {
    right: 0;
  }

  /* Typography */
  .headline {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .vision-quote {
    font-size: 1.8rem;
  }

  /* Layout Stacks */
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6rem;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    margin: 0 auto;
    width: 100%;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  /* Full Page Scroll tweaks - Mobile */
  .snap-scroll-body,
  .snap-scroll-body body {
    scroll-snap-type: none;
    overflow-y: auto;
  }

  .snap-section {
    height: auto;
    min-height: 100vh;
    padding: 6rem 1rem 4rem 1rem;
    align-items: flex-start;
  }

  .content-wrapper {
    width: 100%;
  }

  /* Components - Mobile */
  .services-visual-container {
    gap: 1rem;
  }

  .services-labels span {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .vision-container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .founder-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 2rem;
  }

  .testimonial-slider {
    flex-direction: column;
  }

  .testimonial-card {
    width: 100%;
  }

  .footer {
    padding: 2rem 1rem;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .partners {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* About Us Overrides */
  .text-left {
    text-align: center;
  }

  .separator-left {
    margin: 0 auto 2rem auto;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  }

  .about-intro-wrapper {
    text-align: center;
  }

  .founder-section-container {
    gap: 3rem;
  }

  .static-founder-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 2rem auto;
  }

  .vision-text.text-left {
    text-align: center;
  }

  .quote-lg {
    font-size: 1.8rem;
  }
}

/* Floating WhatsApp */
/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  /* Ensure it's on top of everything */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-green 2s infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6);
  background-color: #20b858;
}

.whatsapp-icon-float {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Floating Call */
.call-float {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #007bff;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  /* Ensure it's on top of everything */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.call-float:hover {
  transform: scale(1.1);
  background-color: #0056b3;
  box-shadow: 0px 6px 20px rgba(0, 123, 255, 0.4);
}

.call-icon-float {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}