/* ================================================
🌗 SUDAR GLOBAL WEALTH - FULL FIXED + DARK MODE + GLOW
================================================== */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.5s, color 0.5s;
  background-color: #ffffff;
  color: #000000;
  max-width: 100vw;
  overflow-x: hidden !important;
}

body.dark {
  background-color: #000000;
  color: #ffffff;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* ============ GLOW ============ */
.corner-glow {
  position: fixed;
  width: 400px;
  height: 240px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent 70%);
  filter: blur(120px);
  opacity: 1;
  transition: background 0.8s ease, filter 0.8s ease;
}

.top-left-glow {
  top: 90;
  left: 30;
}

.bottom-right-glow {
  bottom: 0;
  right: 0;
}

body.light .corner-glow {
  background: radial-gradient(circle, rgba(255, 215, 0, 1), transparent 70%);
  filter: blur(150px);
}

body.dark .corner-glow {
  background: radial-gradient(circle, rgba(255, 215, 0, 0.55), transparent 70%);
  filter: blur(150px);
}

@media (max-width: 768px) {
  .corner-glow {
    width: 140px !important;
    height: 240px !important;
    filter: blur(80px) !important;
    bottom: -30px;
    right: -30px;
    left: auto;
    top: auto;
  }

  .top-left-glow {
    top: 70px !important;
    left: 20px !important;
  }
}
.bottom-right-glow {
  bottom: 0;
  right: 20px;
}


/* ============ PARTICLES ============ */
.glow-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow-particles span {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FFD700;
  box-shadow: 0 0 24px #FFD700, 0 0 48px #FFD700, 0 0 72px #FFD700;
  animation: float 8s infinite ease-in-out;
  opacity: 0.9;
}

.glow-particles span:nth-child(1) { top: 20%; left: 10%; }
.glow-particles span:nth-child(2) { top: 40%; left: 30%; }
.glow-particles span:nth-child(3) { top: 60%; left: 50%; }
.glow-particles span:nth-child(4) { top: 30%; left: 70%; }
.glow-particles span:nth-child(5) { top: 50%; left: 90%; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.2); }
}

/* ============ NAVBAR ============ */
header.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.12);
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.08);
  z-index: 999;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

body.light header.navbar {
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

header .container {
  max-width: 1280px;
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

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

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFD700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
  transition: text-shadow 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

body.light .logo-text {
  color: #000;
  text-shadow: none;
}

.nav-links {
  display: flex;
  gap: 2.6rem;
  align-items: center;
}

.nav-links a {
  position: relative;
  font-size: 1.05rem;
  font-weight: 700;
  color: inherit;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, #FFD700, #FFA500);
  box-shadow: 0 0 12px #FFD70080;
  transition: width 0.35s ease;
  border-radius: 2px;
  opacity: 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #FFD700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
  transform: translateY(-2px) scale(1.03);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

#theme-toggle,
.hamburger {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #FFD700;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

#theme-toggle:hover,
.hamburger:hover {
  transform: scale(1.1);
  text-shadow: 0 0 12px #FFD700;
}

.hamburger {
  display: none;
}

/* ============ HERO ============ */
.hero-section {
  position: relative;
  background: linear-gradient(to bottom, #fffbe8, #ffffff);
  overflow: hidden;
  padding: 120px 20px 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 0;
}

.hero-content-wrapper {
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
}

.hero-content h1 {
  font-size: 3.4rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero-content h1 .highlight {
  background: linear-gradient(90deg, #FFD700, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
  padding: 12px 26px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

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

.btn-secondary:hover {
  background-color: #FFD700;
  color: #000;
  transform: scale(1.05);
}

body.dark .hero-section {
  background: #000000;
}

body.dark .hero-content h1 {
  color: #FFD700;
}

body.dark .hero-content p {
  color: #cccccc;
}

body.light .hero-content h1 {
  color: #000000;
}

body.light .hero-content p {
  color: #333;
}

body.light .highlight {
  background: linear-gradient(90deg, #000000, #4a4646);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 0 24px rgba(255, 215, 0, 0.15);
    display: none;
    animation: fadeSlideIn 0.3s ease forwards;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  body.light .nav-links {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.05);
  }

  .logo {
    font-size: 1.1rem;
  }

  .hamburger {
    display: block;
  }

  .hero-section {
    padding: 80px 0 60px;
    text-align: center;
    width: 100%;
  }

  .hero-content-wrapper {
    padding: 0 16px;
    box-sizing: border-box;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .hero-content p {
    font-size: .6rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .btn-primary,
  .btn-secondary {
    width: 40%;
    
    max-width: 220px;
    text-align: center;
    padding: 2px 10px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  }
}
  
  /* ============ GLASSMORPHISM ============ */
.glassmorph {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

body.dark .glassmorph {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

  
  
  
  
  
  
/* ============ ABOUT SECTION ============ */
.about-section {
    position: relative;
    padding: 100px 40px;
    background: radial-gradient(circle at center, #fdf4ff, #ffeef0, #fff);
    text-align: left;
    color: #111;
    z-index: 1;
    
  }
  
  body.dark .about-section {
    background: black;
    color: #fff;
  }
  
  /* Glow overlay matching Services 
  .about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.05), transparent 60%);
    z-index: 0;
    pointer-events: none;
  }
  */
  .about-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  
  /* Left Text Block */
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #FFD700;
  }
  
  .about-text .intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #444;
  }
  
  body.dark .about-text .intro {
    color: #ccc;
  }
  
  .about-text span {
    font-weight: bold;
    color: #FFD700;
  }
  
  .about-text h3 {
    font-size: 1.4rem;
    margin-top: 28px;
    margin-bottom: 10px;
    color: #FFD700;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
  }
  
  body.dark .about-text p {
    color: #bbb;
  }
  /* Light Theme */
body.light .metric-label {
  color: #444; /* or use #444 for slightly softer tone */
}

  
  /* Right Timeline Block */
  .about-metrics {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    min-width: 300px;
    
  }
  
  .metric-card {
    padding: 20px 30px;
    border-left: 4px solid #FFD700;
    background: rgba(255, 215, 0, 0.03);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .metric-card:hover {
    transform: translateY(-4px);
  }
  
  .metric-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: #FFD700;
    margin: 0;
    opacity: 0;
  transform: scale(0.95);
  animation: fadeInCount 0.6s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInCount {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
  
  .metric-label {
    font-size: 1rem;
    color: #444;
    margin: 5px 0 0;
  }
  
  body.dark .metric-label {
    color: #bbb;

  }
  /* Light Theme */
body.light .metric-label {
  color: #e8bd59; /* or use #444 for slightly softer tone */
}

body.light .metric-number {
  color: #444; /* or use #444 for slightly softer tone */
}

  @keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      gap: 40px;
    }
  
    .about-metrics {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
    }
  
    .metric-card {
      flex: 1 1 45%;
    }
  }
  
  
/* ===== TECH ICON PARALLAX BACKGROUND ===== */
.tech-bg-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
  }
  
  .tech-bg-icons .icon {
    position: absolute;
    width: 80px;
    height: auto;
    animation: floatIcon 12s ease-in-out infinite;
    opacity: 0.15;
    transition: opacity 0.5s ease, filter 0.5s ease;
  }
  
  /* Theme-specific appearance */
  body.dark .tech-bg-icons .icon {
    filter: drop-shadow(0 0 8px #FFD700);
    opacity: 0.08;
  }
  
  body.light .tech-bg-icons .icon {
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
    opacity: 0.2;
  }
  
  /* Icon placement */
  .icon-ai {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
  }
  
  .icon-cloud {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
  }
  
  .icon-security {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
  }
  
  .icon-code {
    top: 75%;
    left: 25%;
    animation-delay: 6s;
  }
  
  /* Floating animation */
  @keyframes floatIcon {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
  }
  


  /* ==== Tech Scroll Section ==== */
  .tech-scroll-section {
    background: radial-gradient(#fdf4ff, #fff);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
  }
  
  body.dark .tech-scroll-section {
    background: black;
  }
  
  .tech-scroll-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .tech-scroll {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: infinite-scroll 20s linear infinite;
  }
  
  .tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    transition: transform 0.3s ease;
    position: relative;
  }
  
  .tech-item img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
    border-radius: 50%;
    padding: 6px;
    background: #fff;
    z-index: 1;
  }
  
  body.dark .tech-item img {
    background: transparent;
  }
  body.light .tech-item img {
    background: transparent;
  }
  .tech-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
  }
  
  body.dark .tech-item span {
    color: #eee;
  }
  
  
  /* 🔥 Glow Ring on Hover */
  .tech-item::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 0;
  }
  
  .tech-item:hover::before {
    opacity: 1;
    transform: scale(1.2);
  }
  
  .tech-item:hover img {
    transform: scale(1.1);
  }
  
  /* ✨ Seamless Infinite Scroll */
  @keyframes infinite-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  
    /* ============ service ============ */
    .services-section {
      padding: 100px 40px;
      background: radial-gradient(circle at center, #fdf4ff, #ffeef0, #fff);
      text-align: center;
      min-height: 90vh;
      overflow: hidden;
    }
    
    body.dark .services-section {
      background: black;
    }
    
    .section-label {
      display: inline-block;
      background: linear-gradient(to right, #ff6ec4, #7873f5);
      color: #fff;
      padding: 6px 14px;
      border-radius: 20px;
      font-weight: 600;
      margin-bottom: 16px;
      animation: pulse-glow 3s ease-in-out infinite;
    }
    
    @keyframes pulse-glow {
      0%, 100% { filter: brightness(1); }
      50% { filter: brightness(1.25); }
    }
    
    .services-title {
      font-size: 2.8rem;
      font-weight: 800;
      margin-bottom: 12px;
      color: #111;
    }
    
    body.dark .services-title {
      color: #fff;
    }
    
    .services-subtitle {
      max-width: 800px;
      margin: 0 auto 40px;
      font-size: 1.1rem;
      color: #555;
    }
    
    body.dark .services-subtitle {
      color: #bbb;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      padding-top: 20px;
    }
    
    @media (max-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 640px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }
    
    .service-card {
      background: #fff;
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      text-align: left;
      transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.5s ease;
      border: 1px solid #f0f0f0;
      opacity: 0;
      transform: translateY(30px);
    }
    
    body.dark .service-card {
      background: #121212;
      border: 1px solid #333;
      box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);
    }
    
    .service-card.aos-animate {
      opacity: 1;
      transform: translateY(0);
    }
    
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }
    
    .service-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      transition: transform 0.4s ease;
    }
    
    .service-card:hover .service-icon {
      transform: scale(1.15) rotate(3deg);
    }
    
    .gradient-bg {
      background: linear-gradient(to right, #ff6ec4, #7873f5);
      color: white;
    }
    
    .icon {
      font-size: 28px;
    }
    
    .service-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #111;
    }
    
    body.dark .service-card h3 {
      color: #fff;
    }
    
    .service-card p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #444;
    }
    
    body.dark .service-card p {
      color: #aaa;
    }
    
    
   /* === Career Section === */
.career-section {
  padding: 100px 20px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
  text-align: center;
}

body.dark .career-section {
  background: black;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.career-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

body.light .career-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.career-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #FFD700;
}

body.light .career-card h3 {
  color: #000;
}

.career-card p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 20px;
}

body.light .career-card p {
  color: #333;
}

.btn-career {
  display: inline-block;
  padding: 10px 22px;
  background-color: #FFD700;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-career:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}
.fade-in {
  animation: fadeInSlide 0.4s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.fade-out {
  animation: fadeOutSlide 0.2s ease forwards;
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutSlide {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* ============ contact ============ */

    .connect-section {
      padding: 100px 20px;
      background: radial-gradient(circle at center, #000000, #0d0d0d);
      color: #fff;
      text-align: center;
    }
    
    .section-title {
      font-size: 2.8rem;
      margin-bottom: 12px;
    }
    
    .gold-gradient {
      background: linear-gradient(90deg, #FFD700, #ffffff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .section-subtitle {
      color: #aaa;
      margin-bottom: 30px;
      font-size: 1.1rem;
    }
    
    .toggle-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 30px;
    }
    
    .toggle-btn {
      background: transparent;
      border: 2px solid #FFD700;
      padding: 10px 24px;
      border-radius: 30px;
      color: #FFD700;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .toggle-btn.active,
    .toggle-btn:hover {
      background: #FFD700;
      color: white;
    }
    
    .form-glass {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      padding: 40px;
      max-width: 600px;
      margin: 0 auto;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .form-group {
      margin-bottom: 24px;
    }
    
    input, select {
      width: 100%;
      padding: 14px 20px;
      border-radius: 12px;
      border: none;
      outline: none;
      font-size: 1rem;
      background: #1a1a1a;
      color: #fff;
      transition: all 0.3s ease;
    }
    
    input:focus,
    select:focus {
      border: 2px solid #FFD700;
      box-shadow: 0 0 12px #FFD70055;
    }
    
    .custom-file input[type="file"] {
      display: none;
    }
    
    .custom-file span {
      display: inline-block;
      background: #222;
      color: #fff;
      border: 1px solid #FFD700;
      padding: 12px 24px;
      border-radius: 30px;
      cursor: pointer;
    }
    
    .submit-btn {
      background: #FFD700;
      border: none;
      color: #000;
      padding: 14px 32px;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .submit-btn:hover {
      transform: scale(1.05);
      background: #e6c200;
    }
    
    /* Responsive Fixes */
    @media (max-width: 640px) {
      .form-glass {
        padding: 24px;
      }
    
      .toggle-buttons {
        flex-direction: column;
        gap: 12px;
      }
    }
    /* === Light Theme (default) === */

    .connect-section {
      padding: 120px 20px;
      background: radial-gradient(circle at center, #fdf4ff, #ffeef0, #fff);
      color: #111;
      text-align: center;
      transition: all 0.4s ease;
    }
    
    body.dark .connect-section {
      background: black;
      color: #fff;
    }
    
    .section-title {
      font-size: 3rem;
      margin-bottom: 16px;
      font-weight: 800;
    }
    
    .gold-gradient {
      background: linear-gradient(90deg,#FFD700,#FFD700);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    body.dark .gold-gradient {
      background: linear-gradient(90deg, #FFD700, #ffffff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    body.light .gold-gradient {
      background: linear-gradient(90deg, #000000, #000000);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .section-subtitle {
      font-size: 1.2rem;
      color: #666;
      margin-bottom: 36px;
      transition: color 0.3s ease;
    }
    
    body.dark .section-subtitle {
      color: #aaa;
    }
    
    .toggle-buttons {
      display: flex;
      justify-content: center;
      gap: 18px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    
    .toggle-btn {
      background: transparent;
      border: 2px solid #FFD700;
      padding: 12px 32px;
      border-radius: 40px;
      color: #FFD700;
      font-weight: 600;
      font-size: 1.05rem;
      letter-spacing: 0.3px;
      cursor: pointer;
      transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
      will-change: background-color, color, box-shadow;
      position: relative;
    }
   body.light .toggle-btn {
      background: transparent;
      border: 2px solid black;
      padding: 12px 32px;
      border-radius: 40px;
      color: black;
      font-weight: 600;
      font-size: 1.05rem;
      letter-spacing: 0.3px;
      cursor: pointer;
      transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
      will-change: background-color, color, box-shadow;
      position: relative;
    }
    
    /* Avoid transform flicker */
    .toggle-btn:hover:not(.active) {
      background: rgba(255, 215, 0, 0.1);
      box-shadow: 0 0 6px rgba(255, 215, 0, 0.25);
    }
    
    .toggle-btn.active {
      background: #FFD700;
      color: #000;
      border: none;
      box-shadow: 0 6px 14px rgba(255, 215, 0, 0.3);
    }
   body.light .toggle-btn.active {
      background: #000000;
      color: #FFD700;
      border: none;
      box-shadow: 0 6px 14px rgba(255, 215, 0, 0.3);
    }
    
    /* Smooth form glass */
    .form-glass {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(16px);
      border-radius: 24px;
      padding: 50px;
      max-width: 680px;
      margin: 0 auto;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(0, 0, 0, 0.05);
      transition: background-color 0.4s ease, border 0.4s ease;
    }
    
    body.dark .form-glass {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 20px 60px rgba(255, 215, 0, 0.05);
    }
    
    .form-group {
      margin-bottom: 28px;
    }
    
    input, select, textarea {
      width: 90%;
      padding: 16px 22px;
      border-radius: 14px;
      font-size: 1.05rem;
      border: 1px solid #ccc;
      background: #fff;
      color: #111;
      transition: all 0.4s ease;
      font-weight: 500;
    }
    
    input::placeholder,
    textarea::placeholder {
      color: #888;
      font-weight: 400;
    }
    
    textarea {
      min-height: 120px;
      resize: vertical;
    }
    
    input:focus,
    select:focus,
    textarea:focus {
      border: 2px solid #FFD700;
      box-shadow: 0 0 12px #ffe100c2;
      outline: none;
    }
    
    /* Dark Theme Input */
    body.dark input,
    body.dark select,
    body.dark textarea {
      background: #1c1c1c;
      color: #fff;
      border: 1px solid #333;
    }
    
    body.dark input::placeholder,
    body.dark textarea::placeholder {
      color: #777;
    }
    
    /* Light Theme Input */
    body.light input,
    body.light select,
    body.light textarea {
      background: #fff;
      color: #111;
      border: 1px solid #ccc;
    }
    
    body.light input::placeholder,
    body.light textarea::placeholder {
      color: #888;
    }
    
    /* File Upload */
    .custom-file input[type="file"] {
      display: none;
    }
    
    .custom-file span {
      display: inline-block;
      background: #f0f0f0;
      color: #111;
      border: 1px solid #FFD700;
      padding: 14px 26px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 500;
    }
    
    body.dark .custom-file span {
      background: #222;
      color: #fff;
    }
    
    /* Submit Button */
    .submit-btn {
      background: #FFD700;
      color: #000;
      padding: 16px 34px;
      border-radius: 40px;
      border: none;
      font-size: 1.05rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;

    }
    
    .submit-btn:hover {
      background: #e6c200;
      transform: scale(1.04);
    }
    
    /* Light Mode Submit */
    body.light .submit-btn {
      background: #000;
      color: #FFD700;
    }
    
    /* Animation Transitions */
    .fade-in {
      animation: fadeInSlide 2s ease forwards;
      opacity: 0;
      transform: translateY(10px);
    }
    
    .fade-out {
      animation: fadeOutSlide 0.2s ease forwards;
    }
    
    @keyframes fadeInSlide {
      from {
        opacity: 0;
        transform: translateY(14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeOutSlide {
      from {
        opacity: 1;
        transform: translateY(0);
      }
      to {
        opacity: 0;
        transform: translateY(-10px);
      }
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .form-glass {
        padding: 32px;
      }
    
      .section-title {
        font-size: 2.4rem;
      }
    
      .toggle-buttons {
        flex-direction: column;
        gap: 14px;
      }
    }
    
   



    footer.footer {
      background: radial-gradient(circle at center, #000, #0a0a0a);
      color: #fff;
      padding: 80px 20px 40px;
      font-family: 'Poppins', sans-serif;
      }
      
      .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      max-width: 1300px;
      margin: 0 auto 40px;
      }
      
      .footer-logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #FFD700;
      margin-bottom: 10px;
      }
      
      .footer-brand p {
      color: #ccc;
      font-size: 0.95rem;
      line-height: 1.6;
      }
      
      .footer-nav h3,
      .footer-contact h3,
      .footer-social h3 {
      color: #FFD700;
      margin-bottom: 16px;
      font-size: 1.1rem;
      }
      
      .footer-nav ul,
      .footer-contact ul {
      list-style: none;
      padding: 0;
      margin: 0;
      }
      
      .footer-nav li,
      .footer-contact li {
      margin-bottom: 10px;
      }
      
      .footer-nav a,
      .footer-contact a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease, text-shadow 0.3s ease;
      }
      
      .footer-nav a:hover,
      .footer-contact a:hover {
      color: #FFD700;
      text-shadow: 0 0 6px #FFD70099;
      }
      
      .footer-contact li {
      font-size: 0.95rem;
      color: #ccc;
      }
      
      .social-icons {
      display: flex;
      gap: 16px;
      margin-top: 10px;
      }
      
      .social-icons a {
      color: #FFD700;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border: 1px solid #FFD70055;
      border-radius: 50%;
      transition: background 0.3s ease, transform 0.3s ease;
      }
      
      .social-icons a:hover {
      background: #FFD700;
      color: #000;
      transform: scale(1.1);
      box-shadow: 0 0 12px #FFD70099;
      }
      
      .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
      padding-top: 20px;
      color: #888;
      font-size: 0.9rem;
      }
      

      /* 🌞 Light Theme Footer */
body.light footer.footer {
  background: linear-gradient(to bottom, #fefefe, #f7f7f7);
  color: #111;
  }
  
  body.light .footer-logo {
  color: #000;
  }
  
  body.light .footer-brand p,
  body.light .footer-contact li {
  color: #555;
  }
  
  body.light .footer-nav a,
  body.light .footer-contact a {
  color: #444;
  }
  
  body.light .footer-nav a:hover,
  body.light .footer-contact a:hover {
  color: #FFD700;
  text-shadow: 0 0 4px #FFD70088;
  }
  
  body.light .footer-nav h3,
  body.light .footer-contact h3,
  body.light .footer-social h3 {
  color: #000;
  }
  
  body.light .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: #555;
  }
  
  /* Social Icons Light */
  body.light .social-icons a {
  background: #fff;
  color: #FFD700;
  border: 1px solid #FFD70066;
  }
  
  body.light .social-icons a:hover {
  background: #FFD700;
  color: #000;
  box-shadow: 0 0 12px #FFD70088;
  }
      @media (max-width: 768px) {
      .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
      }
      
      .social-icons {
      justify-content: center;
      }
      }
      
      
.upload-status {
  font-size: 14px;
  margin-top: 5px;
  color: #4CAF50;
  font-weight: 500;
}
      
 