
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins';
}

:root {
  --pale-yellow-light: #fff9e6;
  --pale-yellow: #fff0c4;
  --pale-yellow-dark: #ffe08a;
  --accent: linear-gradient(135deg,#0e6336 50%, #0f3678 100%);

  --text: #181b19;
  --bg:linear-gradient(135deg, #fdf9db 0%, #fdf7be 50%, #fff59a 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.section {
  min-height: 100vh;
  padding: 5rem 10%;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

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

h1, h2, h3 {
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.8rem;
  margin-top: 1.5rem;
}

p {
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.inlist {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.inlist li {
  margin-bottom: 0.5rem;
  position: relative;
  list-style-type: none;
  padding-left: 1.5rem;
}

.inlist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.2rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--pale-yellow-light), var(--pale-yellow), var(--pale-yellow-dark));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
  animation: rotate 20s linear infinite;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.5s;
}

.hero p {
  font-size: 1.5rem;
  max-width: 700px;
  margin-bottom: 2rem;
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.8s;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.1s;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 125, 0, 0.3);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 125, 0, 0.4);
}

.card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

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

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--pale-yellow), var(--accent));
}

.card h3 {
  margin-top: 0;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  flex: 1 1 300px;
  background: white;
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 5px 15px rgba(255, 125, 0, 0.3);
}

.testimonials {
  margin-top: 4rem;
}

.testimonial {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-10px);
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--pale-yellow);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  flex-grow: 1;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent);
}

.faq {
  margin-top: 4rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--pale-yellow);
  padding-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.call-to-action {
  background: linear-gradient(135deg, var(--pale-yellow-light), var(--pale-yellow-dark));
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 15px;
  margin-top: 4rem;
}

.call-to-action h2 {
  margin-bottom: 1.5rem;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.floating-element {
  position: absolute;
  background: linear-gradient(135deg, var(--pale-yellow), rgba(255, 240, 196, 0.2));
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(10px);
}

.floating-element:nth-child(1) {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -150px;
  animation: float 20s ease-in-out infinite;
}

.floating-element:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

.floating-element:nth-child(3) {
  width: 250px;
  height: 250px;
  bottom: -125px;
  left: 30%;
  animation: float 25s ease-in-out infinite 5s;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(30px, 30px) rotate(180deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 5%;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .testimonial {
    flex-direction: column;
    text-align: center;
  }
  
  .avatar {
    margin: 0 auto 1rem;
  }
}


/* 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);
    font-family: 'Ubuntu';
}

.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.382);
}

.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.382);
}

.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;
    }

    .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;
}

