
:root {
  --primary: #2d46b9;
  --secondary: #f27935;
  --tertiary: #1abc9c;
  --accent: #9b59b6;
  --bg: #fafafa;
  --text: #333;
  --shadow: rgba(0, 0, 0, 0.1);
  --card-bg: rgba(255, 255, 255, 0.9);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  font-family: 'Poppins';
}

#canvas-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
}
.report-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
}

header {
  text-align: center;
  margin-bottom: 4rem;
  padding-top: 4rem;
  position: relative;
}

.header-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--tertiary));
  border-radius: 2px;
}

.subtitle {
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.intro {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.8;
}

.badge {
  display: inline-block;
  background: var(--tertiary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin: 0.5rem;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.section {
  margin: 6rem 0;
  opacity: 0;
  transform: translateY(50px);
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, var(--primary), var(--tertiary));
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.section-number {
  background: linear-gradient(135deg, var(--primary), var(--tertiary));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.2rem;
}

h2 {
  font-size: 2.4rem;
  color: var(--primary);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.5rem;
  position: relative;
  overflow: hidden;
}

h3 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: var(--primary);
}

p {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 4px;
  height: calc(100% - 1rem);
  background: linear-gradient(to bottom, var(--primary), transparent);
  border-radius: 4px;
}

.ululu {
  list-style-type: none;
  margin: 2rem 0;
}

.ululu li {
  margin-bottom: 1.2rem;
  padding-left: 2.5rem;
  position: relative;
  font-size: 1.1rem;
} 

.ululu li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}




.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  background: linear-gradient(135deg, var(--primary), var(--tertiary));
  opacity: 0.1;
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, 20px) rotate(180deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.quote {
  background: rgba(255, 255, 255, 0.9);
  border-left: 6px solid var(--tertiary);
  padding: 1.8rem;
  margin: 2.5rem 0;
  border-radius: 0 15px 15px 0;
  box-shadow: 0 15px 30px var(--shadow);
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.5s ease;
}

.quote::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 10px;
  font-size: 6rem;
  color: var(--tertiary);
  opacity: 0.4;
}

.quote:hover {
  transform: translateY(-10px) rotateX(5deg);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
}

.highlight-box {
  background: linear-gradient(to bottom right, rgba(45, 70, 185, 0.1), rgba(26, 188, 156, 0.1));
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3.5rem 0;
  box-shadow: 0 20px 40px var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(45deg);
  animation: shine 5s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { top: -100%; left: -100%; }
  100% { top: 100%; left: 100%; }
}

.conclusion {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
  padding: 3.5rem;
  border-radius: 20px;
  margin-top: 5rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.conclusion h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.conclusion p {
  font-size: 1.2rem;
  line-height: 2;
}

    /* Coach Profile Card */
    .coach-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 800px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.coach-profile:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.coach-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(135deg, var(--primary), var(--tertiary));
  z-index: 0;
  border-radius: 20px 20px 0 0;
}

.profile-image-container {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.profile-content {
  text-align: center;
  z-index: 1;
  width: 100%;
}

.coach-name {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.coach-title {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.coach-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.coach-stats {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--tertiary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
}

    /* Chart containers */
    .charts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;

}

.chart-wrapper {
background: var(--card-bg);
border-radius: 15px;
padding: 1.5rem;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.3);
width: 100%;
height: 290px;
display: flex;
flex-direction: column;
justify-content: center;
}


.chart-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.chart-title {
  text-align: center;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

    /* Student Q&A Section */
    .qa-container {
  margin: 2rem 0;
}

.qa-item {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 0;
  margin-bottom: 2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: perspective(1000px);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.qa-item:hover {
  transform: perspective(1000px) rotateX(5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.qa-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(90deg, rgba(45, 70, 185, 0.1), rgba(26, 188, 156, 0.1));
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.student-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.student-info {
  flex: 1;
}

.student-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.student-details {
  font-size: 0.9rem;
  color: var(--text);
  opacity: 0.8;
}

.qa-content {
  padding: 1.5rem;
}

.question {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 500;
  border-left: 4px solid var(--secondary);
  padding-left: 1rem;
}

.answer {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  padding-left: 1.5rem;
  position: relative;
}

.answer::before {
  content: 'A:';
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--tertiary);
}

    /* Animation Effects */
    .reveal-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal-animation.active {
  opacity: 1;
  transform: translateY(0);
}

/* Badges and decorative elements */
.badges-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
  gap: 1rem;
}

.highlight-badge {
  background: linear-gradient(135deg, var(--primary), var(--tertiary));
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: rotate(-2deg);
  transition: all 0.3s ease;
}

.highlight-badge:hover {
  transform: rotate(0) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Decorative elements */
.decorative-line {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--tertiary), transparent);
  margin: 3rem 0;
  opacity: 0.5;
}

/* Responsive styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.3rem;
  }
  
  .report-container {
    padding: 1rem;
  }
  
  .highlight-box {
    padding: 1.5rem;
  }
  
  .charts-container {
    grid-template-columns: 1fr;
  }
  
  .qa-header {
    flex-direction: column;
    text-align: center;
  }
  
  .student-image {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .coach-profile {
    padding: 1.5rem;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--primary), var(--tertiary));
  border-radius: 10px;
  border: 3px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}
        /* ka Overlay styles */
        .hedaoverlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .hedaoverlay.hedaactive {
        display: block;
        opacity: 1;
    }

    :root {
        --primary-gradient: linear-gradient(135deg, #fcf4ad 0%, #fff3bf 100%);
        --hover-color: #3498db;
        --text-primary: #2d3436;
        --animation-timing: 0.3s;
    }

    footer {
        background: var(--primary-gradient);
        padding: 4rem 2rem 2rem;
        position: relative;
        overflow: hidden;
    }

    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background-size: 200% 100%;
        animation: gradientSlide 3s linear infinite;
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        position: relative;
    }

    .footer-section {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all var(--animation-timing) cubic-bezier(0.4, 0, 0.2, 1);
    }

    .footer-section:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 45px rgba(31, 38, 135, 0.15);
        background: rgba(255, 255, 255, 0.25);
    }

    .footer-section h3 {
        color: var(--text-primary);
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .footer-section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--hover-color);
        transition: width var(--animation-timing) ease;
    }

    .footer-section:hover h3::after {
        width: 100%;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-section li {
        margin: 1rem 0;
        transition: all var(--animation-timing) ease;
        position: relative;
    }

    .footer-section a {
        color: var(--text-primary);
        text-decoration: none;
        transition: all var(--animation-timing) ease;
        display: inline-flex;
        align-items: center;
        position: relative;
        padding: 0.5rem 0;
    }

    .footer-section a::before {
        content: '→';
        opacity: 0;
        margin-right: 0.5rem;
        transform: translateX(-10px);
        transition: all var(--animation-timing) ease;
    }

    .footer-section a:hover::before {
        opacity: 1;
        transform: translateX(0);
        color: var(--hover-color);
    }

    .footer-section a:hover {
        color: var(--hover-color);
        transform: translateX(10px);
    }

    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
    
    :root {
        --animation-timing: 0.3s;
        --fb-color: #3b5998;
        --twitter-color: #1da1f2;
        --linkedin-color: #0077b5;
        --discord-color: #7289da;
        --whatsapp-color: #25D366;
        --email-color: #864842;
        --youtube-color: #ea4335;
    }


    .social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 3rem;
        flex-wrap: wrap;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: white;
        color: var(--text-primary);
        font-size: 1.5rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all var(--animation-timing) cubic-bezier(0.68, -0.55, 0.265, 1.55);
        position: relative;
        text-decoration: none !important;
        border-bottom: none !important;
    }

    .social-links a::after {
        content: attr(data-profile);
        position: absolute;
        bottom: -35px;
        font-size: 14px;
        opacity: 0;
        transform: translateY(-10px);
        transition: all var(--animation-timing) ease;
        font-family: 'Poppins', sans-serif;
        white-space: nowrap;
        pointer-events: none;
        font-weight: 600;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        letter-spacing: 0.5px;
    }

    .social-links a:hover::after {
        opacity: 1;
        transform: translateY(0);
        animation: shimmer 2s infinite;
    }

    @keyframes shimmer {
        0% { filter: brightness(1); }
        50% { filter: brightness(1.2); }
        100% { filter: brightness(1); }
    }

    .social-links a:hover {
        transform: translateY(-10px) scale(1.2);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
        z-index: 2;
    }

    .social-links a i {
        transition: transform var(--animation-timing) ease;
        position: relative;
        z-index: 1;
    }

    .social-links a:hover i {
        transform: scale(1.2);
    }

    .social-links.has-hovered a:not(:hover) {
        opacity: 0.5;
        transform: scale(0.95);
        color: #837d4a;
    }


    /* Nolored icons and matching text */
    .social-links a:hover .fa-facebook, 
    .social-links a:hover[data-profile*="facebook"]::after { 
        color: var(--fb-color); 
    }

    .social-links a:hover .fa-twitter,
    .social-links a:hover[data-profile*="twitter"]::after { 
        color: var(--twitter-color); 
    }

    .social-links a:hover .fa-instagram,
    .social-links a:hover[data-profile*="instagram"]::after { 
        background: -webkit-linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
    }

    .social-links a:hover .fa-linkedin,
    .social-links a:hover[data-profile*="linkedin"]::after { 
        color: var(--linkedin-color); 
    }

    .social-links a:hover .fa-discord,
    .social-links a:hover[data-profile*="discord"]::after { 
        color: var(--discord-color); 
    }

    .social-links a:hover .fa-whatsapp,
    .social-links a:hover[data-profile*="whatsapp"]::after { 
        color: var(--whatsapp-color); 
    }

    .social-links a:hover .fa-envelope,
    .social-links a:hover[data-profile*="gmail"]::after { 
        color: var(--email-color); 
    }

    .social-links a:hover .fa-youtube,
    .social-links a:hover[data-profile*="youtube"]::after { 
        color: var(--youtube-color); 
    }

    .copyright {
        text-align: center;
        margin-top: 3rem;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(3px);
        border-radius: 15px;
        animation: pulse 15s infinite;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        min-height: 200vh;
    }

    .hedaheader {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 15px;
        position: fixed;
        width: calc(100% - 30px);
        top: 12px;
        left:15px;
        right: 20px;
        z-index: 1000;
        border-radius: 25px;
        backdrop-filter: blur(10px);
        transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 6px rgba(0.2, 0.2, 0.2, 0.4);
    }

    .hedaheader.scrolled {
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        background-color: rgba(254, 250, 223, 0.475);
    }

    .hedaheader.scrolled-down {
        border-radius: 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        width:100%;
    }

    .hedaheader.scrolled-up {
        top: 10px;
        left: 10px;
        right: 15px;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.544);
    }

    .hedanav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hedabrand {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .hedalogo-text {
        font-size: 1.5rem;
        font-weight: 650;
        background: linear-gradient(45deg, #303030, #7c7c7c);
        -webkit-background-clip: text;
        color: transparent;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: nowrap;
    }

    .hedadonate-button {
        background-color: #fff3bf;
        color: #1f2937;
        border: none;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.528);
    }

    .hedadonate-button:hover {
        transform: translateY(-2px);
        transform: scale(1.1);
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.622);
    }

    .hedanav-list {
        display: flex;
        list-style-type: none;
        align-items: center;
        gap: 2rem;
        margin-left: auto;
        margin: 0;
        padding: 0;
        z-index: 1000;
    }

    .hedanav-list li {
        position: relative;
    }

    .hedanav-list a {
        color: #1f2937;
        text-decoration: none;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-weight: 500;
        padding: 8px 16px;
        border-radius: 8px;
        display: block;
        white-space: nowrap;
    }

    .hedanav-list a:hover {
        color: #4f46e5;
    }

    .hedahas-submenu {
        position: relative;
    }

    .hedahas-submenu > a {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .hedahas-submenu > a::after {
        content: '▾';
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    .hedahas-submenu:hover > a::after {
        transform: rotate(180deg);
    }

    .hedasubmenu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #ffffff;
        min-width: 250px;
        list-style-type: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 8px;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
        padding: 8px;
        border: 1px solid rgba(229, 231, 235, 0.5);
    }

    .hedahas-submenu:hover .hedasubmenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hedasubmenu li {
        margin: 0;
        padding: 0;
    }

    .hedasubmenu a {

        padding: 12px 16px;
        display: block;
        color: #374151;
        transition: all 0.3s ease;
        border-radius: 8px;
        white-space: nowrap;
    }

    .hedasubmenu a:hover {
        background-color: #f7efa8;
        color: #4f46e5;
        padding-left: 20px;
    }

    .hedahamburger {
        margin-left: 20px;
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 4px;
        z-index: 1001;
        gap: 6px;
    }

    .hedahamburger span {
        width: 28px;
        height: 2px;
        background-color: #1f2937;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: left center;
    }

    @media (max-width: 1200px) {
        .hedanav-list {
            gap: 1rem;
        }
        .hedanav-list a {
            padding: 8px 12px;
            font-size: 0.95rem;
            white-space: nowrap;
        }
    }

    @media (max-width: 1024px) {
        .hedanav-list a {
            padding: 8px 8px;
            font-size: 0.9rem;
        }

        .footer-content {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (max-width: 900px) {
        .hedanav {
            justify-content: space-between;
        }
        .hedabrand {
            margin-right: 0;
        }
        .hedahamburger {
            display: flex;
        }

        .hedahamburger.hedaactive span:nth-child(1) {
            transform: rotate(45deg) translate(1px, -3px);
        }

        .hedahamburger.hedaactive span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .hedahamburger.hedaactive span:nth-child(3) {
            transform: rotate(-45deg) translate(1px, 3px);
        }

        .hedanav-list {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 85%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            flex-direction: column;
            align-items: stretch;
            padding: 5rem 2rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            gap: 0.5rem;
            border-radius: 15px;
            overflow-y: scroll;
            padding-left: 50px;
            text-align: left;
        }

        .hedanav-list.active {
            right: 0;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }

        .hedanav-list.hedaactive {
            right: 0;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        }

        .hedanav-list li {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.3s ease;
        }

        .hedanav-list.hedaactive li {
            opacity: 1;
            transform: translateX(0);
            transition-delay: calc(0.1s * var(--i));
        }

        .hedanav-list a {
            padding: 1rem;
            font-size: 1.1rem;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .hedanav-list a:hover {
            background-color: #f4eca6;
        }

        .hedasubmenu {
            position: static;
            background-color: #e6e6e6;
            box-shadow: none;
            padding-left: 20px;
            padding: 0.5rem;
            margin: 0.5rem 0;
            display: none;
            opacity: 1;
            visibility: visible;
            transform: none;
        }

        .hedahas-submenu.hedaactive .hedasubmenu {
            display: block;
            animation: slideDown 0.5s ease forwards;
        }

        @keyframes slideDown {
            0% {
                opacity: 0;
                transform: translateY(-10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hedahas-submenu > a::after {
            float: right;
            transform: rotate(-90deg);
        }

        .hedahas-submenu.hedaactive > a::after {
            transform: rotate(0);
        }

        .hedadonate-button {
            align-items: center;
            width: 100%;
            height: 50px;
            margin-top: 1rem;
            text-align: center;
        }

        .hedahamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hedahamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hedahamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
    }

    @media (max-width: 768px) {
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-section {
            flex: 1 1 300px;
            margin: 0.5rem;
            animation: slideIn var(--animation-timing) ease-out forwards;
            opacity: 0;
        }

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

        .footer-section:nth-child(1) { animation-delay: 0.1s; }
        .footer-section:nth-child(2) { animation-delay: 0.2s; }
        .footer-section:nth-child(3) { animation-delay: 0.3s; }
        .footer-section:nth-child(4) { animation-delay: 0.4s; }
    }

    @keyframes gradientSlide {
        0% { background-position: 0% 50%; }
        100% { background-position: 200% 50%; }
    }

    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4); }
        70% { box-shadow: 0 0 0 20px rgba(52, 152, 219, 0); }
        100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); }
    }

    .footer-content:hover .footer-section:not(:hover) {
        filter: brightness(0.95);
        transform: scale(0.98);
    }

    .footer-section {
        scrollbar-width: thin;
        scrollbar-color: var(--hover-color) transparent;
    }

    .footer-section::-webkit-scrollbar {
        width: 6px;
    }

    .footer-section::-webkit-scrollbar-track {
        background: transparent;
    }

    .footer-section::-webkit-scrollbar-thumb {
        background-color: var(--hover-color);
        border-radius: 3px;
    }






