* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", "Poppins", sans-serif;
}

:root {
  --primary: #9be8ff;
  --primary-light: rgba(155, 232, 255, 0.8);
  --secondary: #145078;
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.95); /* Brighter */
  --glass-bg: rgba(10, 30, 50, 0.8); /* More opaque */
  --glass-border: rgba(255, 255, 255, 0.15);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3); /* Darker shadow */
  --instagram: #E4405F;
  --twitter: #1DA1F2;
}

/* YOUR IMAGE AS FULL WEBSITE BACKGROUND */
body {
  background: 
    linear-gradient(rgba(10, 30, 50, 0.85), rgba(10, 43, 61, 0.85)),
    url('aayush.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text-light);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
}

/* Optional texture overlay for depth */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(155, 232, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(100, 181, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Make bubbles more visible */
.bubbles span {
  background: rgba(155, 232, 255, 0.25);
  box-shadow: 
    0 0 15px rgba(155, 232, 255, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Rest of your CSS stays the same... */

/* Improved Text Visibility */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--primary);
  text-align: center;
  text-shadow: 0 2px 10px rgba(155, 232, 255, 0.3);
  font-weight: 700;
}

h2, h3 {
  color: var(--primary);
  font-weight: 600;
}

p, li {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

strong {
  color: var(--primary-light);
  font-weight: 600;
}

/* Navbar */
header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 1.2rem 5%;
  background: rgba(10, 30, 50, 0.85);
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
  background : transparent ;
}

header h1 {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  color: transparent;
  box-shadow: #333;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-menu a:hover {
  color: var(--primary);
  background: rgba(155, 232, 255, 0.1);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 8rem 5% 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(155, 232, 255, 0.4);
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
  max-width: 500px;
}

/* Social Links in Hero */
.hero-social {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
}

.social-hero {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-hero:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
}

.social-hero:nth-child(1):hover {
  background: rgba(228, 64, 95, 0.2);
  border-color: var(--instagram);
}

.social-hero:nth-child(2):hover {
  background: rgba(29, 161, 242, 0.2);
  border-color: var(--twitter);
}

.social-hero i {
  font-size: 1.2rem;
}

.social-hero span {
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.btn {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #64b5f6 100%);
  color: #0a1e2e;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(155, 232, 255, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(155, 232, 255, 0.5);
}

.btn.secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.menu-toggle{
  z-index:1001;
  pointer-events:auto;
}

.profile-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.image-border {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: 20px;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

/* Glass Sections */
.section {
  padding: 6rem 5%;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  padding: 3rem;
}

.about-card {
  max-width: 900px;
  margin: 0 auto;
}

.about-text {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Social Links in About */
.about-social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.social-links-inline {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-link-about {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.social-link-about:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.social-link-about:nth-child(1):hover {
  background: rgba(228, 64, 95, 0.15);
  color: #ff7b9c;
}

.social-link-about:nth-child(2):hover {
  background: rgba(29, 161, 242, 0.15);
  color: #7fc8f5;
}

/* Skills Grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.skill-card {
  padding: 2.5rem;
  transition: transform 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-10px);
}

.skill-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.skill-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.skill-card ul {
  list-style: none;
}

.skill-card li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.skill-card li:before {
  content: "▸";
  color: var(--primary);
  position: absolute;
  left: 0;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.project-card {
  padding: 2rem;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.project-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tech-tags span {
  background: rgba(155, 232, 255, 0.1);
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Contact Section */
.contact-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.contact-item i {
  font-size: 2rem;
  color: var(--primary);
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 3rem 0;
}

.social-link {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.social-link:nth-child(1) { background: rgba(228, 64, 95, 0.1); }
.social-link:nth-child(2) { background: rgba(29, 161, 242, 0.1); }
.social-link:nth-child(3) { background: rgba(255, 255, 255, 0.1); }
.social-link:nth-child(4) { background: rgba(10, 102, 194, 0.1); }

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
}

.social-link:nth-child(1):hover {
  background: var(--instagram);
  box-shadow: 0 0 20px rgba(228, 64, 95, 0.4);
}

.social-link:nth-child(2):hover {
  background: var(--twitter);
  box-shadow: 0 0 20px rgba(29, 161, 242, 0.4);
}

.social-link:nth-child(3):hover {
  background: #333;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.social-link:nth-child(4):hover {
  background: #0077B5;
  box-shadow: 0 0 20px rgba(0, 119, 181, 0.4);
}

.social-tooltip {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.social-link:hover .social-tooltip {
  opacity: 1;
}

/* Social Handles */
.social-handles {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.handle-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.handle-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.handle-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.handle-links a:nth-child(1):hover {
  background: rgba(228, 64, 95, 0.1);
  color: #ff7b9c;
}

.handle-links a:nth-child(2):hover {
  background: rgba(29, 161, 242, 0.1);
  color: #7fc8f5;
}

.handle-links i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer-content p {
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.footer-social a:nth-child(1):hover {
  color: var(--instagram);
}

.footer-social a:nth-child(2):hover {
  color: var(--twitter);
}

/* Bubbles */
.bubbles {
  position: fixed;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}

.bubbles span {
  position: absolute;
  bottom: -100px;
  background: rgba(155, 232, 255, 0.15);
  border-radius: 50%;
  animation-name: bubble;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  pointer-events: none;
}

@keyframes bubble {
  0% {
    transform: translateY(0) scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-120vh) scale(1);
    opacity: 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 10rem;
  }
  
  .hero-left, .hero-right {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-social,
  .hero-cta {
    justify-content: center;
  }
  
  .social-links-inline {
    justify-content: center;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 5%;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 30, 50, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-menu a {
    margin: 0.5rem 0;
    font-size: 1.2rem;
  }
  
  .hero-title {
    font-size: 2.3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 5rem 5%;
  }
  
  .glass {
    padding: 2rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  
  .skills-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    flex-wrap: wrap;
  }
  
  .social-hero {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-social {
    flex-direction: column;
    align-items: center;
  }
  
  .social-hero {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .btn {
    width: 100%;
    max-width: 250px;
  }
  
  .image-container {
    max-width: 280px;
  }
  
  .social-links-inline {
    flex-direction: column;
    align-items: center;
  }
  
  .handle-links a {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
}