/* General Body Styling */
body {
  background: linear-gradient(180deg, #0d1b2a, #000814); 
  color: #e0e0e0;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

/* Reveal on Scroll */ 

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Background Particle Effect */ 
#particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
  pointer-events: none;
}

/* Smooth Scrolling To Sections Using Nav */ 
html {
  scroll-behavior: smooth;
}

/* Navbar */
nav.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(20, 20, 35, 0.9);
  padding: 0.75rem 0;
  box-shadow: 0 2px 10px rgba(0, 255, 247, 0.15);
  z-index: 999;
  overflow-x: hidden;
}

nav.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap; 
  gap: clamp(6px, 1vw, 14px);
  margin: 0;
  padding: 0 1rem;
}

nav.navbar ul li a {
  text-decoration: none;
  color: #00fff7;
  font-weight: 600;
  font-size: clamp(0.7rem, 1.2vw, 1.2rem);
  padding: clamp(4px, 0.8vw, 10px) clamp(8px, 1.5vw, 14px); 
  border-radius: 6px;
  text-shadow: 0 0 4px #00fff7;
  transition: background 0.3s ease;
  white-space: nowrap;
}

nav.navbar ul li a:hover {
  background: #00fff7;
  color: #101010;
  box-shadow: 0 0 10px #00fff7;
}

/* Hamburger icon (hidden on desktop) */
.hamburger {
  display: none;
  position: fixed;
  top: 0.8rem;
  right: 1rem;
  font-size: 2rem;
  color: #00fff7;
  cursor: pointer;
  z-index: 1000;
}

/* Mobile styles */
@media (max-width: 768px) {
  nav.navbar {
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  /* Fullscreen mobile menu */
  nav.navbar ul {
    display: none;
    flex-direction: column;
    background: rgba(20, 20, 35, 0.97);
    position: fixed;
    top: 0;
    left: 0;               
    width: 100vw;         
    height: 100vh;         
    padding-top: 4rem;     
    gap: 1.5rem;
    box-shadow: none;      
    border-radius: 0;      
    overflow-y: auto;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    z-index: 999;          
  }

  nav.navbar ul.show {
    display: flex;
    transform: translateX(0);
  }

  nav.navbar ul li a {
    padding: 1rem 2rem;
    font-size: 1.4rem;
    white-space: normal;
    text-align: left;
  }

  .hamburger {
    display: block;
    position: fixed;
    top: 1rem;
    left: 1rem;            
    font-size: 2.2rem;
    color: #00fff7;
    cursor: pointer;
    z-index: 1001;         
  }
}

/* fix padding issue on mobile */

@media (max-width: 768px) {
  section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 768px) {
  #about p {
    text-align: justify !important;
  }

  #experience .timeline-content,
  #education .timeline-content {
    text-align: left !important;
  }

  #experience .timeline-content ul,
  #education .timeline-content ul {
    padding-left: 1.2rem; 
  }
}


/* Globe Formatting Section*/ 

.container {
  position: relative;
  max-width: 1200px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 40px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
}

/* -------------------------------- */ 

/* Scroll Up Button */ 
#scrollTopBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: rgba(255, 255, 255, 0.05);
  color: cyan; /* SVG stroke color */
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

#scrollTopBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #00fff7, 0 0 40px #00fff7;
}

/* Visible state */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}


/* Hero Section */
.hero {
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 20px;
}

.hero-text {
  flex: 1 1 600px;
  max-width: 1100px;
  text-align: center;
}

.hero-text h1 {
  font-size: 3.2rem;
  margin-bottom: 0.4em;
  background: linear-gradient(90deg, #00fff7, #c084fc);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: colorShift 3s ease-in-out infinite alternate;
  text-align: center;
}


.hero .hero-line {
  display: inline-block;
}

.hero-text .subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #a2dce7;
  font-weight: 600;
  margin: 12px 0;
  text-shadow: 0 0 5px #00fff7;
}

.hero-text .tagline {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-style: italic;
  color: #c5b3fc;
  margin-top: 24px;
  text-shadow: 0 0 10px #c084fc;
}

/* About Section */
.about-me {
  padding-top: 20px;
  padding-bottom: 20px;
}

.about-container {
  align-items: stretch;
}

.about-heading {
  color: #3aa6ff;
  text-shadow: 0 0 10px #1e90ff;
}


.about-image {
  flex: 1 1 300px;
  max-width: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 15px #00fff7;
  display: flex;
  align-items: stretch;
  transition: transform 0.3s ease;
}

/* fitting the image inside the box */ 
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image:hover {
  transform: scale(1.05);
}

.about-text {
  flex: 2 1 600px;
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 720px;
  color: #e0f7ff;
  text-align: justify;
  font-weight: 400;
  background: linear-gradient(135deg, #0d1117, #0a1a2f, #001f3f);
  border-left: 4px solid #00fff7;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 247, 0.1);
  backdrop-filter: blur(5px);
  text-shadow: 0 0 6px rgba(0, 255, 247, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(0, 255, 247, 0.25);
}

.about-text p {
  margin-bottom: 1.2em;
  text-align: justify !important;
}

.about-text strong {
  color: #90faff;
  font-weight: 600;
  text-shadow: 0 0 6px #00fff7;
}


/* Skills Section */
#skills {
  padding-top: 20px;
  padding-bottom: 20px;
}

#skills h2 {
  color: #c084fc;
  text-shadow: 0 0 12px #c084fc;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.skill-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(0, 255, 247, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #00fff7;
}

.skill-card h3 {
  color: #00fff7;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-shadow: 0 0 6px #00fff7;
}

.skill-card ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.6;
  color: #cfe8ff;
  flex: 1;
}

/* Change Bullet Points Color */ 
.skill-card ul li::marker {
  color: #00fff7;
}

.skill-card ul li {
  font-size: 1.45rem;
  font-weight: 600;
  color: #e0f7ff;
}

.skill-card.compact ul li {
  font-size: 1.05rem;
}

.skill-logos {
  margin-top: auto;
  padding-top: 15px;
  display: flex;
  justify-content: flex-start;
  gap: 18px;
  align-items: center;
  flex-wrap: nowrap;
}

.skill-logos img {
  width: 42px;
  height: 46px;
  filter: drop-shadow(0 0 6px rgba(0, 255, 247, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.skill-logos img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px #00fff7);
}

@media (max-width: 768px) {
  .skill-logos {
    flex-wrap: wrap;
  }

  .skill-logos img {
    width: 48px;
    height: 50px;
    margin-bottom: 8px;
  }

  .skill-card {
    padding: 16px;
  }
}

/* Projects Section */ 
.projects-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px; 
  padding: 0 15px;
}

.project-card-container {
  perspective: 1000px;
  width: 100%;
  margin-bottom: 30px; 
}

.project-card-container:hover .project-card {
  transform: rotateY(180deg);
}

.project-card {
  position: relative;
  width: 100%;
  height: 520px; 
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  will-change: transform;
}

.project-card-front,
.project-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 1rem;
  backface-visibility: hidden;
  background: #091825;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2), 0 0 30px rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.2);
  color: #fff;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}


.project-card-back {
  transform: rotateY(180deg);
  background: #091825;
  overflow-y: auto;
  scroll-behavior: smooth;
  padding: 0.75rem; 
}

.project-card-container:hover .project-card-front,
.project-card-container:hover .project-card-back {
  box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

.project-card-front .project-title {
  margin-bottom: 1rem;
}

.project-card-front img {
  width: 100%;
  height: 80%;
  object-fit: contain;
  border-radius: 10px;
}


/* Project text & layout */
.project-title {
  font-size: 1.35rem;
  text-align: center;
  font-weight: 600;
  color: #00fff7;
  text-shadow: 0 0 6px #00fff7;
}

.project-role,
.project-tech {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2px;
  color: #90faff;
  text-align: center;
}

.project-card-back .project-title {
  font-size: 1.15rem; 
  margin-bottom: 0.4rem;
}

.project-card-back .project-tech {
  font-size: 0.9rem; 
}

.project-summary {
  font-size: 0.88rem;
  color: #e0f7ff;
  line-height: 1.6;
  text-align: justify;
  padding: 0 3px;
}

.project-links {
  margin: auto;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.glow-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: #0ff;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 12px #0ff, 0 0 24px #0ff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
}

#projects h2 {
  color: #3aa6ff;
  text-shadow: 0 0 10px #1e90ff;
}

/* For smaller screens, adjust the cards */ 
@media (max-width: 768px) {
  .project-grid {
    grid-template-columns: 1fr;
  }
  
  .project-card-container {
    position: relative;
  }

  .project-card-container::after {
    content: none;
  }

  .project-card-front {
    padding-bottom: 3rem; 
    position: relative;
  }

  .project-card-container:hover .project-card-front::after {
    display: none;
  }

  .project-card-front::after {
    content: "Tap to flip";
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-size: 0.75rem;
    color: #00fff7;
    background: rgba(0, 0, 0, 0.6);
    padding: 4px 8px;
    border-radius: 6px;
    pointer-events: none;
    z-index: 5;
    text-shadow: 0 0 4px #00fff7;
    user-select: none;
  }

  .project-card-back {
    padding-bottom: 3rem;
  }

  .project-card-back::-webkit-scrollbar {
    width: 6px;
  }
  .project-card-back::-webkit-scrollbar-thumb {
    background-color: #00fff7;
    border-radius: 10px;
  }
  .project-card-back::-webkit-scrollbar-track {
    background: #091825;
    border-radius: 10px;
  }
}


/* Experience Section */

#experience h2 {
  color: #c084fc;
  text-shadow: 0 0 12px #c084fc;
}

.experience-section {
  padding: 20px 20px;
  max-width: 1200px; 
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #00fff7;
  text-shadow: 0 0 12px #00fff7;
  margin-bottom: 40px;
}

/* Timeline Container */
.timeline {
  position: relative;
  margin-left: 40px;
  padding-left: 40px;
  border-left: 2px solid #00fff7;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  margin-bottom: 80px;
}

/* Timeline Dot */
.timeline-dot {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #00fff7;
  border-radius: 50%;
  border: 3px solid #0a0a2a;
  box-shadow: 0 0 8px #00fff7;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Content Block */
.timeline-content {
  background: rgba(10, 23, 35, 0.85);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0, 255, 247, 0.08), 0 0 40px rgba(0, 255, 247, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: justify;
}

.timeline-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(0, 255, 247, 0.2), 0 0 40px rgba(0, 255, 247, 0.3);
}

.timeline-item:hover .timeline-dot {
  transform: translate(-50%, -50%) scale(1.3);
  box-shadow: 0 0 16px #00fff7, 0 0 24px #00fff7;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Spacing Between Entries */
.timeline-item + .timeline-item {
  margin-top: 80px;
}

/* Role Titles */
.role-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #00fff7;
  margin-top: 5px;
  margin-bottom: 10px;
}

/* Role Dates */
.role-date {
  font-size: 1rem;
  font-weight: 500;
  color: #90faff;
  margin-bottom: 12px;
  display: block;
}

/* Role Bullet Points */
.role-points {
  list-style: disc;
  padding-left: 1.3rem;
  line-height: 1.6;
  font-size: 1rem;
}

/* Company Title & Description */
.company-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00fff7;
  margin-bottom: 5px;
}

.company-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.company-logo {
  width: 60px;          
  height: 60px;
  object-fit: contain;
  display: block;
  margin-top: 10px;
  filter: drop-shadow(0 0 1px #00fff7);
}

.company-description {
  font-size: 0.95rem;
  color: #a0eaff;
  margin-top: -6px;
  margin-bottom: 20px;
}

/* Education Section Title */

.education-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}


#education h2 {
  color: #3aa6ff;
  text-shadow: 0 0 10px #1e90ff;
}

.section-title-edu {
  text-align: center;
  font-size: 2.5rem;
  color: #38bdf8;
  text-shadow: 0 0 12px #38bdf8;
  margin-bottom: 40px;
}

.education-box {
  color: #e0f7ff; 
  font-size: 1.05rem;
}

.education-box .company-name {
  color: #00fff7;
  font-weight: bold;
}

.education-box .role-title {
  color: #0ff3eb; 
  font-weight: bold;
}

.education-box .role-date {
  color: #a2e9ff;  
}

.education-box .role-points {
  font-size: 1.15rem; 
  color: #dffaff;   
}

.education-box .role-points li strong {
  color: inherit;     
  font-size: inherit; 
  font-weight: 600;
}

/* Awards Section */ 

#awards {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #e0f7ff;
  animation: slideIn 1s ease forwards;
}

#awards h2 {
  color: #c084fc;
  text-shadow: 0 0 12px #c084fc;
}

#awards .skill-card {
  text-align: justify;
}

#awards ul {
  padding-left: 20px; 
  margin-top: 10px;
}

#awards li {
  font-size: 1.05rem;
  margin-bottom: 6px;
  line-height: 1.6;
  text-align: justify;
  padding-left: 5px;
}


#awards .award-org {
  list-style: none;
  padding-left: 0;     
  font-size: 1.1rem;  
  font-style: italic;
  font-weight: 500;
  color: #a3bffa;
  margin-bottom: 8px;
  text-align: left; 
}

#awards .skill-card h3 {
  text-align: left !important;  

}

.skill-card h3 i {
  margin-right: 8px;
}

/* Extra-Curricular Activities */ 

.activities-block {
  background: rgba(10, 23, 35, 0.85);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 40px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0, 255, 247, 0.08), 0 0 40px rgba(0, 255, 247, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#activities h2 {
  color: #3aa6ff;
  text-shadow: 0 0 10px #1e90ff;
}

.activities-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(0, 255, 247, 0.2), 0 0 40px rgba(0, 255, 247, 0.3);
}

.activities-title {
  color: #00fff7;
  margin-bottom: 10px;
  font-size: 1.6rem;
  text-shadow: 0 0 6px #00fff7;
}

.divider-line {
  width: 100%;
  height: 2px;
  background-color: #00fff7;
  margin: 10px 0 20px 0;
  box-shadow: 0 0 8px #00fff7;
}

.activities-list {
  list-style: disc;
  padding-left: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #a0eaff;
  text-align: justify;
}

/* Improved Hackathons formatting */
.formatted-list {
  list-style: none;
  padding-left: 0;
}

.formatted-list li {
  margin-bottom: 20px;
}

.event-title {
  font-weight: bold;
  color: #3aa6ff;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 0 4px #1e90ff;
}

.event-description {
  margin: 0;
  padding-left: 0rem;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  text-align: justify;
}

/* Community Service Section */

#community-service {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

#community-service h2 {
  color: #c084fc;
  text-shadow: 0 0 12px #c084fc;
}

.community-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .community-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .community-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.community-card {
  background: rgba(10, 23, 35, 0.85);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 247, 0.08), 0 0 40px rgba(0, 255, 247, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}

.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(0, 255, 247, 0.2), 0 0 40px rgba(0, 255, 247, 0.3);
}

.community-role {
  color: #00fff7;
  font-size: 1.3rem;
  margin-bottom: 8px;
  text-shadow: 0 0 6px #00fff7;
}

.community-role i {
  margin-right: 8px;
}

.community-org {
  color: #a0eaff;
  font-weight: bold;
  margin-bottom: 8px;
}

.community-desc {
  color: #ffffff;
  line-height: 1.6;
  text-align: justify;
  font-size: 1rem;
}

/* Interests Section */
#interests h2 {
  color: #3aa6ff;
  text-shadow: 0 0 10px #1e90ff;
}

.interests-block {
  background: rgba(10, 23, 35, 0.85);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 40px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(0, 255, 247, 0.08), 0 0 40px rgba(0, 255, 247, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interests-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 24px rgba(0, 255, 247, 0.2), 0 0 40px rgba(0, 255, 247, 0.3);
}

.interests-title {
  color: #00fff7;
  font-size: 1.6rem;
  text-shadow: 0 0 6px #00fff7;
  margin-bottom: 10px;
}

.interests-description {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.painting-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  justify-content: center;
}

.painting-image {
  width: 100%;
  max-width: 300px;
  height: auto; 
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 255, 247, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.painting-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(0, 255, 247, 0.4);
}


/* Contact Section */
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-container {
  text-align: center;
  width: 100%;
  padding: 20px;
}

.contact-text h1.gradient-title {
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00fff7, #c084fc);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 0.4em;
  text-align: center;
}

.contact-text .caption {
  font-size: 1.2rem;
  color: #a2dce7;
  font-weight: 600;
  text-shadow: 0 0 6px #00fff7;
  margin-bottom: 40px;
}

.contact-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon {
  font-size: 4.5rem;
  color: #a2dce7;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
  text-shadow: 0 0 4px #00fff7;
}

.icon:hover {
  transform: scale(1.15);
  color: #00fff7;
  text-shadow: 0 0 12px #00fff7;
}


.contact-subtext {
  font-size: 1rem;
  color: #a2dce7;
  margin-top: 12px;
  max-width: 200px;
  word-wrap: break-word;
}
