/* ================= RESET & ROOT ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #060b14;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --primary: #00f7ff;
    --secondary: #8a5cff;
    --text-light: #e6f1ff;
    --glow: 0 0 20px rgba(0, 247, 255, 0.6);
}



#bgParticles {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: transparent;
}






body {
    font-family: "Segoe UI", Tahoma, sans-serif;
    background: radial-gradient(circle at top, #0c1630, var(--bg-dark));
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ================= GLASS EFFECT ================= */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* ================= HEADER ================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 65px;
    height: 65px;
    border-radius: 50%
}

.logo-area h1 {
    font-size: 1.4rem;
    color: var(--primary);
    text-shadow: var(--glow);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* ================= HERO ================= */
.hero-section {
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 60px;
    gap: 40px;
}

.digital-orb-container {
    position: relative;
    width: 100%;
    height: 420px;
}

#digitalOrb {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.hero-content {
    padding: 40px;
}

.hero-content h2 {
    font-size: 2.6rem;
    color: var(--primary);
    text-shadow: var(--glow);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* ================= BUTTONS ================= */
.btn {
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    box-shadow: var(--glow);
}

.btn.secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
}

/* ================= SECTIONS ================= */
section {
    padding: 80px 60px;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary);
    text-shadow: var(--glow);
}

/* ================= PROGRAMS ================= */
.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.program-card {
    padding: 35px;
    text-align: center;
    transition: 0.4s;
}

.program-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.program-card h3 {
    margin-bottom: 15px;
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--glow);
}

/* ================= ABOUT ================= */
.about-section {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-section p {
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-features {
    list-style: none;
}

.about-features li {
    margin: 10px 0;
}

/* ================= MEDIA ================= */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.media-card {
    padding: 20px;
}

.media-card img,
.media-card video {
    width: 100%;
    border-radius: 15px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 50px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}


.gallery-grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}


.gallery-item {
  height: 300px;
  background: #333;
  border-radius: 15px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  transition: 0.4s;
}

.gallery-item:hover {
  transform: scale(1.05);
}





/* ================= CONTACT ================= */
.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 12px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
}

/* ================= FOOTER ================= */
.main-footer {
    text-align: center;
    padding: 25px;
    background: #02060d;
    font-size: 0.9rem;
}


/* ================= FOOTER ================= */
footer {
    background: #0a0a0a;
    color: #ccc;
    text-align: center;
    padding: 30px 10%;
}

.footer-links a {
    color: #00eaff;
    margin: 0 10px;
    text-decoration: none;
}



/* ==============================
   KDH FOOTER  inherited from kdh
============================== */

.kdh-footer {
  width: 100%;
  background: linear-gradient(180deg, rgba(5,12,20,0.95), rgba(2,6,12,1));
  border-top: 1px solid rgba(120,180,255,0.15);
  padding: 24px 12px;
  position: relative;
  z-index: 5;
}

.kdh-footer-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.kdh-footer-label {
  display: block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #9cc9ff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.kdh-social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.kdh-social-links a {
  display: inline-flex;
  width: 26px;
  height: 26px;
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.kdh-social-links img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(120,180,255,0.35));
}

.kdh-social-links a:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.12);
}

.kdh-footer-copy {
  font-size: 12px;
  color: rgba(200,220,255,0.55);
  margin-top: 6px;
}



.kdh-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(120,180,255,0.08), transparent 70%);
  pointer-events: none;
}


/* ==============================
   ICE GLOW SOCIAL ICONS
============================== */

.neon-link {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
}

.neon-link img {
  width: 100%;
  height: 100%;
  z-index: 2;
  filter:
    drop-shadow(0 0 4px rgba(160,220,255,0.6))
    drop-shadow(0 0 10px rgba(80,160,255,0.35));
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* Ice glow intensifies */
.neon-link:hover img {
  transform: scale(1.18);
  filter:
    drop-shadow(0 0 8px rgba(190,240,255,0.9))
    drop-shadow(0 0 18px rgba(100,200,255,0.8))
    drop-shadow(0 0 30px rgba(120,180,255,0.6));
}

/* ==============================
   NEON HOVER TRAIL
============================== */

.neon-trail {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 0deg,
      rgba(120,255,255,0),
      rgba(140,200,255,0.9),
      rgba(120,160,255,0),
      rgba(180,255,255,0.8),
      rgba(120,255,255,0)
    );
  opacity: 0;
  filter: blur(8px);
  z-index: 1;
  animation: none;
}

.neon-link:hover .neon-trail {
  opacity: 1;
  animation: neon-spin 1.8s linear infinite;
}

/* Smooth energy spin */
@keyframes neon-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


.neon-link img {
  animation: ice-pulse 5s ease-in-out infinite;
}

@keyframes ice-pulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 4px rgba(120,180,255,0.4));
  }
  50% {
    filter:
      drop-shadow(0 0 10px rgba(160,220,255,0.8));
  }
}


/* ================= COOKIE ================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    color: #fff;
    padding: 15px;
    text-align: center;
}





/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}
