:root{
  --accent1: #6EE7F9;
  --accent2: #7C3AED;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --text: #E6F2FF;
  --muted: rgba(230,242,255,0.6);
  --nav-height: 72px;
}

/* reset-ish */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: radial-gradient(circle at 20% 30%, rgba(124,58,237,0.25), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(6,182,212,0.25), transparent 60%),
              #050510;  color:var(--text);
  min-height:100vh;
  padding-top: var(--nav-height);
  scroll-behavior: smooth;
}
body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(160px);
  z-index: -1;
}

body::before {
  width: 500px; height: 500px;
  background: rgba(124,58,237,0.35); /* purple */
  top: -150px; left: -120px;
}

body::after {
  width: 450px; height: 450px;
  background: rgba(6,182,212,0.35); /* cyan */
  bottom: -150px; right: -120px;
}

.home-section,
.features-section,
.developer-section {
 padding: 100px 20px; /* Adjust this value as needed for more/less space */
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:12px;
  left:50%;
  transform:translateX(-50%);
  width:min(1180px, calc(100% - 36px));
  height:var(--nav-height);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:10px 18px;
  border-radius:16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--glass-border);
  box-shadow:
    0 6px 30px rgba(12,10,20,0.6),
    0 0 30px rgba(99,102,241,0.06) inset;
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  transition: transform .28s cubic-bezier(.2,.9,.3,1), box-shadow .28s;
  z-index:1000;
}

/* subtle hover lift */
.navbar:hover{
  transform: translateX(-50%) translateY(-4px);
  box-shadow:
    0 20px 50px rgba(12,10,20,0.65),
    0 0 40px rgba(124,58,237,0.08) inset;
}

/* Logo */
.logo{
  display:flex;
  gap:12px;
  align-items:center;
  cursor:default;
  user-select:none;
}
.logo img{
  width:44px;
  height:44px;
  object-fit:cover;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow: 0 6px 18px rgba(124,58,237,0.12);
}
.logo span{
  font-weight:600;
  letter-spacing:0.4px;
  font-size:18px;
  color:var(--text);
  display:inline-block;
  position:relative;
  padding-left:2px;
}
/* animated accent line under text */
.logo span::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height:3px;
  background: linear-gradient(90deg,var(--accent1),var(--accent2));
  border-radius:6px;
  transform-origin:left center;
  transform:scaleX(.0);
  transition:transform .45s cubic-bezier(.2,.9,0,.9);
  opacity:0.95;
}
.logo:hover span::after{ transform:scaleX(1); }

/* Nav links (desktop) */
.nav-links{
  list-style:none;
  display:flex;
  gap:20px;
  align-items:center;
  margin-left:auto;
}
.nav-links li a{
  display:inline-block;
  text-decoration:none;
  padding:8px 12px;
  border-radius:10px;
  color:var(--muted);
  font-weight:600;
  letter-spacing:0.3px;
  transition: color .18s, transform .18s, background .18s;
  position:relative;
  outline: none;
}
.nav-links li a:hover,
.nav-links li a:focus{
  color:var(--text);
  transform:translateY(-3px);
}

/* active indicator */
.nav-links li a.active{
  color:var(--text);
}
.nav-links li a.active::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-12px;
  width:28px;
  height:4px;
  border-radius:999px;
  background: linear-gradient(90deg,var(--accent1),var(--accent2));
  box-shadow: 0 6px 18px rgba(99,102,241,0.18);
}

/* neon glow on focus */
.nav-links li a:focus-visible{
  box-shadow: 0 6px 28px rgba(124,58,237,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

/* small screen - hamburger */
.hamburger{
  display:none;
  width:48px;
  height:48px;
  border-radius:12px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  border:1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
}
.hamburger .bar{
  width:20px;
  height:2px;
  background:var(--muted);
  border-radius:2px;
  transition: transform .28s, opacity .18s;
  position:relative;
}
.hamburger .bar::before,
.hamburger .bar::after{
  content:"";
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  border-radius:2px;
  background:var(--muted);
  transition: transform .28s, top .18s, bottom .18s, opacity .18s;
}
.hamburger .bar::before{ top:-6px; }
.hamburger .bar::after{ bottom:-6px; }

.navbar.open .hamburger .bar{ transform: rotate(45deg); background:transparent; }
.navbar.open .hamburger .bar::before{ transform: rotate(-90deg); top:0; opacity:1; }
.navbar.open .hamburger .bar::after{ transform: rotate(-90deg); bottom:0; opacity:1; }

@media (max-width:860px){
  .nav-links{
    position:fixed;
    right:18px;
    top:calc(var(--nav-height) + 26px);
    width:calc(100% - 36px);
    max-width:360px;
    background: linear-gradient(180deg, rgba(15,15,30,0.92), rgba(10,10,20,0.95));
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border-radius:18px;
    padding:20px 16px; 
    flex-direction:column;
    gap:8px;
    transform-origin: top right;
    transform: translateY(-8px) scale(.98);
    opacity:0;
    pointer-events:none;
    transition: transform .28s ease, opacity .22s ease;
    box-shadow: 0 12px 30px rgba(2,6,23,0.6);
    border:1px solid rgba(255,255,255,0.04);
    display:flex;
    z-index:9999; 
  }
  .navbar.open .nav-links{
    transform: translateY(0) scale(1);
    opacity:1;
    pointer-events:auto;
  }
  .nav-links li a{
    display:block;
    width:100%;
    padding:12px 14px;
    border-radius:8px;
    background: transparent;
    color:var(--text);
  }
  .nav-links li a:hover{
    background: rgba(255,255,255,0.06);
    transform: scale(4px);
  }
  
  .hamburger{ display:flex; margin-left:12px; }
  .logo{ gap:10px; }
}


                                    /* === HOME === */
/* Home Section */
.home-section{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.home-section h1{
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight:800;
  background: linear-gradient(90deg, #6EE7F9, #7C3AED);
  background-clip: text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:0 0 18px rgba(110,231,249,0.35);
  margin-bottom:18px;
  position:relative;
  z-index:1;
}

.home-section p{
  font-size:1.25rem;
  font-style: italic;
  color:#a830db;
  max-width:700px;
  margin:0 auto 28px;
  line-height:1.6;
  position:relative;
  z-index:1;
}

.coming-wrapper {
  margin-top: 5px;
  text-align: center;
}

.coming-wrapper h3 {
  position: relative;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #38bdf8, #7c3aed, #ec4899);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: fadeUp 1s ease-out 0.5s forwards, glowPulse 3s infinite ease-in-out;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(124,58,237,0.4); }
  50% { text-shadow: 0 0 22px rgba(6,182,212,0.8); }
}

/* initial state */
.home-section h1,
.home-section p,
.home-section .countdown,
.home-section .notify-btn {
  opacity: 0;
  transform: translateY(40px);
  animation-fill-mode: forwards;
}

/* keyframes */
/* Fade Down */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-40px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Slide from Right */
@keyframes slideRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Zoom In */
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}

/* staggered delays */
.home-section h1 {
  animation: fadeDown 0.9s ease-out 0.2s forwards;
}
.home-section p {
  animation: slideRight 0.9s ease-out 0.5s forwards;
}
.home-section .notify-btn {
  animation: zoomIn 0.9s ease-out 1.1s forwards;
}

                                    /* === FEATURES === */
.features-section {
 text-align: center;
 position: relative;
 z-index: 1;
 overflow: hidden;
}

/* Background Glow Effect */
.features-section::before {
 content: '';
 position: absolute;
 top: 50%;
 left: 50%;
 width: 800px;
 height: 800px;
 background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0) 70%);
 transform: translate(-50%, -50%);
 z-index: -1;
 animation: subtle-glow 10s infinite alternate ease-in-out;
}

/* Glowing Heading */
.features-section h2 {
 font-size: 3rem;
 margin-bottom: 40px;
 background: linear-gradient(90deg, #5e8a86, #25889c, #079e16);
 background-clip: text;
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 font-weight: 700;
 letter-spacing: 3px;
 text-shadow: 0 0 10px rgba(195, 214, 24, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
  animation: zoomIn 1s ease-out forwards;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Features Grid */
.features-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 25px;
 max-width: 1100px;
 margin: 0 auto;
 align-items: center;
}

/* Individual Feature Cards */
.feature-card {
 background: rgba(18, 18, 25, 0.4);
 border: 1px solid rgba(139, 92, 246, 0.4);
 border-radius: 18px;
 padding: 25px;
 font-size: 1.2rem;
 font-weight: 600;
 color: #7ce3ec;
 backdrop-filter: blur(15px);
 box-shadow: 0 0 15px rgba(139, 92, 246, 0.3); /* Subtle initial glow */
 transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border-color 0.4s ease;
 cursor: pointer;
 text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Hover Effect */
.feature-card:hover {
 transform: translateY(-12px) scale(1.05);
 background: rgba(30, 30, 50, 0.6);
 border-color: #38bdf8;
 box-shadow: 0 0 25px rgba(56, 189, 248, 0.7), 0 0 40px rgba(168, 85, 247, 0.5); /* Stronger neon glow */
}

/* Keyframes for subtle background animation */
@keyframes subtle-glow {
 0% {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.8;
 }
 50% {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
 }
 100% {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.8;
 }
}


                                    /* === DEVELOPER === */
.developer-section {
  text-align: center;
  position: relative;
  z-index: 1;
}

.developer-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #8b5cf6, #38bdf8, #a855f7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 3px;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.8), 0 0 20px rgba(56, 189, 248, 0.6);
}

.developer-section p {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.developers-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
 max-width: 1200px;
 margin: 0 auto;
}

.developer-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(18, 18, 25, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  aspect-ratio: 1 / 1.2; /* To keep card size consistent */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.developer-image-wrapper {
  width: 60px;  /* reduced from 120px */
  height: 6px; /* reduced from 120px */
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
  margin: 20px auto; /* added margin to space it from top */
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(139, 92, 246, 0.4); /* added subtle border */
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.2); /* added subtle glow */
}

.developer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
  border-radius: 50%;
}

.developer-info {
  margin-top: 15px;
  color: #fff;
  z-index: 2;
}

.developer-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.developer-info p {
  font-size: 1rem;
  color: var(--muted, #c4c4c4);
  font-style: italic;
  margin: 0;
}

.developer-card:hover .developer-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border: none; /* remove border on hover */
}

.developer-card:hover .developer-img {
  border-radius: 0;
  transform: scale(1.05);
  filter: brightness(0.3);
}

.developer-card:hover .developer-info {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.developer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 25, 0.85);
  backdrop-filter: blur(10px);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 3;
}

.developer-card:hover .developer-overlay {
  opacity: 1;
  transform: translateY(0);
}

.developer-overlay h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--accent1, #38bdf8);
}

.tech-stack {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.8;
}


                                        /* === FOOTER === */

.site-footer {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.8), #050510);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 20px;
    text-align: center;
    color: var(--muted);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 25px;
}

.footer-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    background: linear-gradient(90deg, #6EE7F9, #7C3AED);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
    transition: text-shadow 0.3s ease;
}

/* ==== Social Icons ==== */
.social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 0;
  list-style: none;
}

.social li {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social a,
.home-social-icons {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  font-size: 1.5rem !important;
  background: #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 8px rgba(38, 171, 167, 0.74);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  position: relative !important;
  text-decoration: none !important;
  overflow: hidden;
}

.social a:hover,
.home-social-icons:hover {
  background: #207a9e !important;
  color: #fff !important;
  box-shadow: 0 0 15px #801f95;
  text-shadow: 0 0 4px #fff;
  transform: scale(1.05) scale(1.2);
  transition: all 0.3s ease;
}

.home-social-icons::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #68187a;
  opacity: 0.12;
  z-index: 0;
  transition: transform 0.4s;
  transform: scale(0.95);
}

.home-social-icons:hover::before {
  transform: scale(1.1);
  opacity: 0.22;
}


.footer-copyright {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(230, 242, 255, 0.4);
}

.heart {
    color: #E74C3C;
}

@media screen and (max-width: 1000px) {
  :root {
    --m: 3rem;
  }
}

@media screen and (max-width: 700px) {
  footer {
    flex-direction: column;
    padding: 5rem 20vw;
  }
  .col {
    width: 100%;
  }
}
