/* General Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle, #0a0a0a, #020202);
    color: #ffffff;
    overflow: hidden;
}

.no-scroll {
    overflow: hidden;
}

.permanent-marker-regular {
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
  }

.audiowide-regular {
    font-family: "Audiowide", serif;
    font-weight: 400;
    font-style: normal;
}
.doto {
    font-family: "Doto", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings:
      "ROND" 0;
  }
  
/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(255,0,127);
    background: radial-gradient(circle, #B497BD 10%, rgba(0,249,255,1) 100%);
    background-size: 200% 200%;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#loader{
    animation: loader-background-animation 3s infinite linear;
}

@keyframes loader-background-animation {
    0% {
        background-position: center;
    }
    50% {
        background-position: 100% 100%; /* Moves the gradient diagonally */
    }
    100% {
        background-position: center;
    }
}

.loader-svg {
    animation: rotate 2s infinite linear;
}

.loader-text {
    margin-top: 1rem;
    color: #00ffff;
    font-weight: 300;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Navigation Menu */
/* Full-Screen Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.5s ease-in-out;
}

.nav-menu .btn-nav {
    position: relative; /* Ensure the button is positioned relative to the container */
    display: block;
    margin: 0.2rem 0;
    padding: 0.2rem 0.02rem;
    font-size: 3rem;
    color: #B497BD;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-nav{
    width: 100%;
    margin: 3pxauto;
}

.nav-menu .btn-nav::before {
    content: attr(data-text); /* Use the button's text as the content */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem; /* Large font size for the background text */
    color: rgba(255, 255, 255, 0.1); /* Light color for the background text */
    z-index: -1; /* Ensure the background text is behind the button */
    transition: opacity 0.3s ease-in-out;
    opacity: 0; /* Initially hidden */
    text-transform: uppercase;
    pointer-events: none; /* Prevent the background text from capturing mouse events */
}

.nav-menu .btn-nav:hover::before {
    opacity: 1; /* Show the background text on hover */
}

.nav-menu .btn-nav:hover {
    color: #ffffff;
    transform: scale(1);
    box-shadow: 0 0 10px #8E44AD, 0 0 20px #8E44AD;
    border-radius: 5px;
    border:2px #9b51e0;
}

/* Menu Toggle Button */
.menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #8E44AD;
    color: #ffffff;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 6001;
    transition: background 0.3s ease, transform 0.3s ease;
}

.menu-toggle:hover {
    background: #ffffff;
    color: #8E44AD;
    transform: scale(1.1);
}

/* NavMenu Animation */
.nav-menu.show {
    display: flex;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    z-index: 6000;
}

.nav-menu.hide {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: none;
    z-index: -20;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* Ensure text and R2D2 are on opposite sides */
    align-items: center;
    padding: 50px 20px;
    text-align: left;
    gap: 2rem;
    width: 100%;
    
}

canvas, css-doodle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Ensure the canvas stays behind the content */
}

  #heroCanvas {
    z-index: 5;
  }

.hero-text h1 {
    position: relative;
    font-size: 4rem;
    justify-content: center;
    z-index: 50; 
}
.hero-text p{
    position: relative;
    font-size: 1.5rem;
    z-index: 50; 
}

.hero-text {
    max-width: 100%; /* Ensure that the text occupies half the width */
}
@media (max-width: 768px) {
    .hero {
        flex-direction: column; /* Stack text and model vertically on smaller screens */
        text-align: center;
    }

    .hero-text {
        max-width: 100%; /* Ensure text occupies full width on smaller screens */
        margin-bottom: 20px; /* Space between text and model */
    }
    .modal.show .modal-content {
        transform: translateY(0);
        animation: opacity 0.5s ease-in-out;
    }

}

.typewriter::after {
    content: "|";
    animation: blink 1s step-end infinite;
}
  
@keyframes blink {
    0%,
    100% {
      opacity: 1;
    }
  
    50% {
      opacity: 0;
    }
}

/* Fixed Navigation */
.fixed-nav {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5000;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.nav-btn {
    border: none; /* Remove borders */
    background: transparent;
    cursor: pointer;
    color: white;
    text-transform: uppercase;
    padding: 0%;
    height: 30vh;
}

.fixed-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    
}

.fixed-nav li {
    margin:10vh 0;
    transform: rotate(-90deg); /* Rotate text 90 degrees */
    transform-origin: center; /* Set rotation origin */
    white-space: nowrap; /* Prevent text wrapping */
}

@media (max-width: 480px) {
    .nav-btn {
        height: 20vh;
        width: 10vw;
    }
    .fixed-nav{
        background-color: rgba(0, 0, 0, 0.2);
    }
    
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 1);
    z-index: 1001;
    opacity: 0;
    padding-top: 20px;
    transition: opacity 0.5s ease-in-out;
    display: none;
    overflow-y: auto; /* Ensure modal content is scrollable */
}

.modal.show {
    display: block;
    opacity: 1;
    z-index: 6002;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    background: rgba(18, 18, 18, 1);
    border-radius: 20px;
    padding: 20px;
    transform: translateY(-50px);
    transition: transform 0.5s ease;
}

.modal-content::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}

.modal.show .modal-content {
    transform: translateY(0);
    animation: fadeInUp 0.5s ease-in-out;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #9b51e0;
}

/* Modal Grid Layouts */


.about-item,
.skill-category,
.contact-item {
    background: rgba(155, 81, 224, 0.2);
    border-radius: 10px;
    padding: 20px;
}
.gold{
    color:gold;
    font-size: 0.7rem;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    color: #fff;
}

.contact-form button {
    background: #9b51e0;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.contact-form button:hover {
    background: #8e44ad;
    transform: scale(1.02);
}

.contact-email{
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    text-align: center;
    padding: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 5px; 
    width: 100%;

}
.contact-email:hover{
    color: #9b51e0;
    transform: scale(1.02);
    border: 1px solid #9b51e0;
}
.email-text{
    height: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Social Links */
.social-links {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-social {
    color: #fff;
    width: 100%;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10px auto;
    gap: 8px;
}

.btn-social i {
    font-size: 1.2rem;
}

/* LinkedIn */
.btn-linkedin {
    border: 2px solid #0077b5;
}

.btn-linkedin:hover {
    background: #0077b5;
    transform: scale(1.02);
    color: #fff;
}

/* GitHub */
.btn-github {
    border: 2px solid #333;
}

.btn-github:hover {
    background: #333;
    transform: scale(1.02);
    color: #fff;
}

/* Instagram */
.btn-instagram {
    border: 2px solid #e4405f;
}

.btn-instagram:hover {
    background: #e4405f;
    transform: scale(1.02);
    color: #fff;
}

/* Credit & Lyrics */
.credits-lyrics-section {
    background: rgba(18, 18, 18, 0.8);
    padding: 40px 0;
    color: #fff;
}

.credits-item{
    background: rgba(155, 81, 224, 0.2);
    border-radius: 10px;
    padding: 20px;
}

.credits-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;  
}

.lyrics-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.lyrics-item h3 {
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
}

.credits-overlay ul {
    list-style: none;
    padding: 0;
}

.credits-overlay ul li {
    margin-bottom: 10px;
}

.credits-overlay ul li a {
    color: #c8c8c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credits-overlay ul li a:hover {
    font-weight: bold;
    color: #00ffff;
}

.lyrics-text {
    font-family: "Doto", serif;
    font-optical-sizing: auto;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .credits-lyrics-section {
        padding: 20px 0;
    }

    .credits-item, .lyrics-item {
        padding: 15px;
    }
}

/* Separator */

.header-separator{
    width: 100%;
    height: 100vh;
    background-size: 400% 400%;
    position: relative;
}

.separator-content{
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-position: center;
    background-size: 400% 400%;
    background-image: linear-gradient(-45deg, #ee7752, #9b51e0, #23a6d5, #23d5ab);
}

.separator-graphics{
    width: 100%;
    height: 100%;
    padding: 10%;
}

.separator-content{
    animation: separator-background-animation 8s infinite linear;
    
}
.overlay-separator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);  /* Semi-transparent black */
    z-index: 1; /* Ensure it's below the content */
  }
@keyframes separator-background-animation {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 100%; /* Moves the gradient diagonally */
    }
    100% {
        background-position: 0 50%;
    }
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    height: 100vh;
    display: flex;
    background: linear-gradient(to right, #0a0a0a, #020202);
    color: #f2f2f2;
}

.about-content {
    display: flex;
    gap: 2rem;
}

.about-portrait img {
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 0 30px #9b51e0;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #9b51e0;
}

.about-text {
    position: relative; /* To make the overlay appear above this container */
    z-index: 15; /* Ensure text is on top of the overlay */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers the content */
    align-items: center; /* Horizontally centers the content */
    height: 100%; /* Ensure full height for vertical centering */
    padding: 30px;
    color: white; /* Ensures the text is white on dark overlay */
  }

.about-text::before {
    content: ''; /* Empty content for pseudo-element */
    position: absolute; /* Position the overlay */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* Semi-transparent dark overlay */
    z-index: 15; /* Ensure the overlay is beneath the text */
    border-radius: 10px; /* Optional: rounded corners */
  }

/* Waves Background */
.waves {
    --s: 25vmin; /* Size of the repeating gradient pattern */
    --p: calc(var(--s) / 2); /* Position offset for pattern */
    --c1: #5D3F6B; /* Dark Purple */
    --c2: #9A7D9E; /* Light Lavender */
    --c3: #D1A7D9; /* Light Lilac */
    --bg: var(--c3); /* Initial background color */
    --d: 4000ms; /* Duration of animation */
    --e: cubic-bezier(0.76, 0, 0.24, 1); /* Animation easing */
    
    background-color: var(--bg);
    background-image:
      linear-gradient(45deg, var(--c1) 25%, transparent 25%),
      linear-gradient(-45deg, var(--c1) 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, var(--c2) 75%),
      linear-gradient(-45deg, transparent 75%, var(--c2) 75%);
    background-size: var(--s) var(--s);
    background-position: 
      calc(var(--p) *  1) calc(var(--p) *  0), 
      calc(var(--p) * -1) calc(var(--p) *  1), 
      calc(var(--p) *  1) calc(var(--p) * -1), 
      calc(var(--p) * -1) calc(var(--p) *  0);
    animation: 
      color var(--d) var(--e) infinite,
      position var(--d) var(--e) infinite;
  }
  
  @keyframes color {
    0%, 25% {
      --bg: var(--c3); /* Light Lilac */
    }
    26%, 50% {
      --bg: var(--c1); /* Dark Purple */
    }
    51%, 75% {
      --bg: var(--c3); /* Light Lilac */
    }
    76%, 100% {
      --bg: var(--c2); /* Light Lavender */
    }
  }
  
  @keyframes position {
    0% {
      background-position: 
        calc(var(--p) *  1) calc(var(--p) *  0), 
        calc(var(--p) * -1) calc(var(--p) *  1), 
        calc(var(--p) *  1) calc(var(--p) * -1), 
        calc(var(--p) * -1) calc(var(--p) *  0);
    }
    25% {
      background-position: 
        calc(var(--p) *  1) calc(var(--p) *  4), 
        calc(var(--p) * -1) calc(var(--p) *  5), 
        calc(var(--p) *  1) calc(var(--p) *  3), 
        calc(var(--p) * -1) calc(var(--p) *  4);
    }
    50% {
      background-position: 
        calc(var(--p) *  3) calc(var(--p) * 8), 
        calc(var(--p) * -3) calc(var(--p) * 9), 
        calc(var(--p) *  2) calc(var(--p) * 7), 
        calc(var(--p) * -2) calc(var(--p) * 8);
    }
    75% {
      background-position: 
        calc(var(--p) *  3) calc(var(--p) * 12), 
        calc(var(--p) * -3) calc(var(--p) * 13), 
        calc(var(--p) *  2) calc(var(--p) * 11), 
        calc(var(--p) * -2) calc(var(--p) * 12);
    }
    100% {    
      background-position: 
        calc(var(--p) *  5) calc(var(--p) * 16), 
        calc(var(--p) * -5) calc(var(--p) * 17), 
        calc(var(--p) *  5) calc(var(--p) * 15), 
        calc(var(--p) * -5) calc(var(--p) * 16);
    }
  }
  
  @media (prefers-reduced-motion) {
    .waves {
      animation: none;
    }
  }
  

/* Skills Section */
.skills-section {
    padding: 2rem;
    background: rgba(18, 18, 18, 0.7);
    border-radius: 10%;
    color: #00ffff;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(to right, #0a0a0a, #020202);
    color: #ffffff;
    text-align: center;
}

.contact-section h2 {
    color: #9b51e0;
    margin-bottom: 1rem;
}

.contact-section a {
    color: #00ffff;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Skill Icons */
.skill-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.skill-icon:hover {
    color: #9b51e0;
}

/* Progress Bars */
.progress {
    height: 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background-color: #9b51e0;
    width: 0;
    transition: width 1.5s ease-in-out;
}

.skill-item {
    margin-bottom: 1rem;
}

.skill-category {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Music Toggle Button */
.music-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #8E44AD;
    color: #ffffff;
    border: none;
    cursor: pointer;
    z-index: 6001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.music-toggle:hover {
    transform: scale(1.1);
    background: #B497BD;
}

.music-toggle.muted i::before {
    content: "\f6a9"; /* Font Awesome muted icon */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Interests Section */
.about-item-list ul {
    padding: 0;
    list-style: none;
}

.about-item-list ul li {
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.about-item-list ul li i {
    margin-right: 20px;
    color: #9b51e0;
}

.about-item-list .cert li{
    font-size: 1.1rem;
}
.about-item-list .cert li img{ 
    margin-right: 30px;
}


/* education details */
.education-details {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    background: rgba(18, 18, 18, 0.8);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    vertical-align: middle;
}

.education-details .edetails {
    display: flex;
    align-items: center;
}
.edetails p{
    margin: 0;
}

.education-details .edetails i {
    color: #9b51e0;
    margin-right: 10px;
}

/* ...existing code... */

/* Timeline Styles */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.timeline {
    position: relative;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #9b51e0;
    top: 0;
    bottom: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    animation: growLine 1s ease-out forwards;
}

.timeline-item {
    padding: 1rem;
    position: relative;
    width: 50%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.timeline-item.left {
    left: 0;
    transform: translateX(-50px);
}

.timeline-item.right {
    left: 50%;
    transform: translateX(50px);
}

.timeline-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.timeline-milestone {
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    border: 4px double #9b51e0;
    border-radius: 50%;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    z-index: 5;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-milestone {
    transform: translateY(-50%) scale(1.4);
    border: 4px solid white;
    background: #9b51e0;
    box-shadow: 0 0 15px rgba(155, 81, 224, 0.5);
}

.timeline-item.right .timeline-milestone {
    left: -15px;
}

.timeline-content {
    padding: 1.5rem;
    background: rgba(18, 18, 18, 0.8);
    border-radius: 8px;
    color: #c8c8c8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

@keyframes growLine {
    from {
        transform: translateX(-50%) scaleY(0);
    }
    to {
        transform: translateX(-50%) scaleY(1);
    }
}

.experience-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(18, 18, 18, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.experience-item h4 {
    font-size: 1.5rem;
    color: #9b51e0;
    margin-bottom: 1rem;
}

.experience-item h5 {
    font-size: 1.2rem;
    color: #00ffff;
    margin-top: 1rem;
}

.experience-item p {
    font-size: 1rem;
    color: #c8c8c8;
    margin-bottom: 0.5rem;
}

.experience-item .explist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-item .explist li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #c8c8c8;
}

.experience-item .explist li::before {
    content: "\f00c"; /* Font Awesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    color: #9b51e0;
}
/* Highlight Stat Styles */
.highlight-stat {
    font-weight: bold;
    color: #00ffff;
    background: rgba(155, 81, 224, 0.1);
    border-radius: 5px;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: calc(100% - 40px);
        left: 40px !important;
    }

    .timeline-item.left,
    .timeline-item.right {
        transform: translateX(20px);
    }

    .timeline-item.animate {
        transform: translateX(0);
    }

    .timeline-milestone {
        left: -35px !important;
    }
    .experience-item {
        padding: 1rem;
    }

    .experience-item h4 {
        font-size: 1.2rem;
    }

    .experience-item h5 {
        font-size: 1rem;
    }

    .experience-item p,
    .experience-item ul li {
        font-size: 0.9rem;
    }
}



.journey{
    padding: 0;
    margin: 0;
}

/* Counter Styles */
.counter {
    padding: 1rem;
    background: rgba(18, 18, 18, 0.8);
    border-radius: 10px;
    margin: 1rem 0;
}

.counter-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(155, 81, 224, 0.1);
    border-radius: 8px;
    margin-top: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(155, 81, 224, 0.3);
}

.counter-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: #9b51e0;
    margin-bottom: 0.5rem;
    font-family: 'Audiowide', serif;
}

.counter-item p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
}

@media (max-width: 768px) {
    .counter {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .counter-value {
        font-size: 1.2rem;
    }

    .modal {
        background: rgba(0, 0, 0, 0.8);
    }

    .modal-content{
        background: rgba(33, 33, 33, 0.8);
        padding: 20px;
    }

}

/* Profile Card Styles */
.profile-card {
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.6);
    padding: 20px;
    max-width: 50%;
    width: 100%;
    transition: all 0.5s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    background: rgba(18, 18, 18, 0.6);
    box-shadow: 0 8px 20px rgba(155, 81, 224, 0.9);
}

.profile-img {
    width: 60%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 1px black;
    transition: all 0.5s ease;
}
.profile-card:hover .profile-img {
    box-shadow: 0 0 15px #9b51e0;
}

@media (max-width: 768px) {
    .profile-card {
        max-width: 100%;
    }
}