/* Fade Up Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Only text elements fade up */
h1, h2, h3, h4, h5, h6, p, span, a, li { 
    animation: fadeUp 1.4s ease-out; 
}
/* Initial state for sections */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 3s ease, transform 2.8s ease;
}

/* Active state when scrolled into view */
.fade-section.active {
    opacity: 1;
    transform: translateY(0);
}
/* Pop Up Animation*/
@keyframes popUpPhoto {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@200;300;400;500;600;700&display=swap');
/*===== Global CSS =====*/
html
{
    scroll-behavior: smooth;
}
:root
{
    --shadow-black-100:0 5px 15px #00000033;
    --black-900:#000;
    --black-50:#0e0d0d;
    --white-100:#fdfdfd;
    --white:#ffffff;
    --black-alpha-100:#0000000d;
    --bg-black-50:#e8dfec;
    --text-black-700:#202020;
    --footer-black:#000000fb;
    
    /* colors for flying cards */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.4);
    --border-accent: rgba(196, 11, 11, 0.15); /* Using #c40b0b with opacity */
    --shadow-glow: 0 0 60px rgba(196, 11, 11, 0.15); /* Red glow */
}
body
{
    font-family: 'Poppins' sans-serif;
    font-size: 16px;
    font-weight: normal;
    overflow-x: hidden;
    background-color: var(--white);
}
/* Dark Mode Styles - Add to style.css */
body.dark {
    --white: #e7e7e7;
    --white-100: #0a0a0a;
    --bg-black-50: #121212;
    --bg-black-100: #1a1a1a;
    --text-black-700: #e0e0e0;
    --text-black-900: #ffffff;
    --black-50: #f7f7f7;
    --black-900: #ffffff;
    background-color: var(--white-100);
    color: var(--text-black-700);
}

body.dark .navbar {
    background: #00000033;
    border: 1px solid #ffffff1a;
}

body.dark .navbar .menu .nav-item .nav-link {
    color: var(--white);
}

body.dark .navbar.sticky {
    background: #0000004d;
}
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
ul
{
    list-style: none;
}
img
{
    vertical-align: middle;
}
.container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}
.row
{
    display: flex;
    flex-wrap: wrap;
}
.justify-content-center
{
    justify-content: center;
}
.justify-content-between
{
    justify-content: space-between;
}
.align-items-center
{
    align-items: center;
}
.btn-1
{
    background-color: var(--cool-red);
    padding: 15px 40px;
    border: none;
    color: var(--white);
    border-radius: 5px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    transition: all 0.3s ease-out;
}
.btn-1:hover
{
    color: var(--white);
    background-color: var(--cool-red);
}
.section-padding
{
    padding: 80px 0;
}
.text-align
{
    text-align: center;
}
.section-title
{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
}
.section-title .sub-title
{
    font-size: 20px;
    font-weight: 600;
    color: var(--cool-red);
}
.section-title .main-title
{
    font-size: 35px;
    font-weight: 600;
    margin-top: 10px;
}
.section-title .line 
{
    padding-top: 0px;
}
.section-title .line li
{
    display: inline-block;
    background-color: var(--cool-red);
    border-radius: 50px;
    height: 3px;
}
.section-title .line li:nth-of-type(1)
{
    width: 64px;
}
.section-title .line li:nth-of-type(2)
{
    width: 10px;
}
.section-title .line li:nth-of-type(3)
{
    width: 7px;
}
.hidden
{
    display: none !important;
}
.padd-15
{
    padding-left: 15px;
    padding-right: 15px;
}
.container
{
    max-width: 1400px;
    width: 100%;
    margin: auto;
}
.section .container
{
    padding-top: 60px;
    padding-bottom: 70px;
}
.section-title
{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 60px;
}
.section-title h2
{
    font-size: 40px;
    color: var(--text-black-900);
    font-weight: 700;
    position: relative;
}
.section-title h2::before
{
    content: '';
    height: 4px;
    width: 50px;
    background-color: var(--cool-red);
    position: absolute;
    top: 100%;
    left: 0;
}
.section-title h2::after
{
    content: '';
    height: 4px;
    width: 25px;
    background-color: var(--cool-red);
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
}
.row
{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
}
.btn
{
    font-size: 16px;
    font-weight: 500;
    padding: 12px 35px;
    color: white;
    border-radius: 40px;
    display: inline-block;
    white-space: nowrap;
    border: none;
    background: var(--cool-red);
    transition: all 0.3s ease;
}
.btn:hover
{
    transform: scale(1.05);
}
.shadow-dark
{
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}
/*===== Navbar =====*/
.navbar
{
    margin-top: 35px;
    position: fixed;
    align-items: center;
    z-index: 1000;
    width: 28%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    right: 40;
    padding: 25px;
    transition: all 0.5s ease;
    
    /* ENHANCED GLASS EFFECT */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    
    /* ENHANCED GLASS BORDERS */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    
    /* CURVED SHAPE */
    border-radius: 60px 60px 25px 25px;
    
    /* ENHANCED GLASS SHADOW */
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.137),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    
    padding: 15px 40px;
}

.navbar.sticky
{
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-black-100);
}

.navbar .menu .nav-item
{
    display: inline-block;
    position: relative;
    margin-left: 30px;
}

.navbar .menu .nav-item .nav-link
{
    color: var(--black-900);
    font-size: 16px;
    font-weight: 600;
    display: block;
    text-transform: capitalize;
    padding: 10px 0;
}

.navbar.sticky .menu .nav-item .nav-link
{
    color: var(--black-900);
}

.navbar .nav-item .nav-link span
{
    width: 0;
    height: 2px;
    background-color: var(--black-900);
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out 0s;
}

.navbar .nav-item .nav-link span::before
{
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--black-900);
    left: 110%;
}

.navbar .nav-item .nav-link span::after
{
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--black-900);
    left: 140%;
}

.navbar.sticky .nav-item a span,.navbar.sticky .nav-item a span::before,.navbar.sticky .nav-item a span::after
{
    background-color: var(--black-900);
}

.navbar .nav-item > .nav-link.active span,.navbar .nav-item:hover > .nav-link span
{
    opacity: 1;
    visibility: visible;
    width: 60%;
}

.navbar .nav-item > .nav-link.active span::before,.navbar .nav-item:hover > .nav-link span::before
{
    width: 20%;
}

.navbar .nav-item > .nav-link.active span::after,.navbar .nav-item:hover > .nav-link span::after
{
    width: 15%;
}
/* home */

/* ===== Floating Cards Styles ===== */
.floating-card {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-black-900);
    font-weight: 600;
    font-size: 0.9rem;
    animation: floatCard 4s ease-in-out infinite;
    box-shadow: var(--shadow-card);
    z-index: 10;
    transition: all 0.3s ease;
    cursor: default;
}

.floating-card i {
    color: var(--cool-red);
    font-size: 1.2rem;
}

/* Card Positions - Adjust for your image size */
.card-1 {
    top: 10%;
    right: 1%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 43%;
    left: 61%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 10%;
    right: 3%;
    animation-delay: 3s;
}

/* Floating Animation */
@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Image Container for Floating Cards */
.image-container {
    position: relative;
    display: inline-block;
}

/* Hover effect on floating cards */
.floating-card:hover {
    background: var(--cool-red);
    color: white;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 11, 11, 0.3);
}

.floating-card:hover i {
    color: white;
}

/* Dark mode adjustments */
body.dark .floating-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

body.dark .home .home-img img {
    border-color: rgba(255, 255, 255, 0.1);
}

.home
{
    min-height: 100vh;
    display: flex;
    color: var(--text-black-900);
}
.home .home-info
{
    flex: 0 0 60%;
    max-width: 60%;
     cursor: default;
}
h3.hello
{
    font-size: 28px;
    margin: 15px 0;
    cursor: default;
}
h3.hello span
{
    font-family: 'Clicker Script' , cursive;
    font-size: 30px;
    font-weight: 700;
    color: var(--cool-red);
}
h3.my-profession
{
    font-size: 30px;
    margin: 15px 0;
}
.typing
{
    color: var(--cool-red);
}
.home-info p
{
    margin-bottom: 70px;
    font-size: 20px;
    color: var(--text-black-700);
}
.home .home-img
{
    flex: 0 0 40%;
    max-width: 41%;
    text-align: center;
    position: relative;
    animation: popUpPhoto 1.4s ease-out
}
.home .home-img img
{
    margin: auto;
    border-radius: 20px;
    height: 400px;
    width: auto;
}
/* About */
.about .about-content
{
    flex: 0 0 100%;
    max-width: 100%;
}
.about .about-content .about-text
{
    flex: 0 0 100%;
    max-width: 100%;
    cursor: default;
}
.about .about-content .about-text h3
{
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-black-900);
    cursor: default;
}
.about .about-content .about-text h3 span
{
    color: var(--cool-red);
    cursor: default;
}
.about .about-content .about-text p
{
    font-size: 16px;
    line-height: 25px;
    color: var(--text-black-700);
    cursor: default;
}
.about .about-content .personal-info
{
    flex: 0 0 60%;
    max-width: 60%;
    margin-top: 40px;
    cursor: default;
}
.about .about-content .personal-info .info-item
{
    flex: 0 0 50%;
    max-width: 50%;
    cursor: default; 
}
.about .about-content .personal-info .info-item p
{
    font-weight: 600;
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-black-900);
    border-bottom: 1px solid var(--bg-black-50);
    cursor: default;
}
.about .about-content .personal-info .info-item p span
{
    font-weight: 400;
    color: var(--text-black-700);
    margin-left: 4px;
    display: inline-block;
    cursor: default;
}
.about .about-content .personal-info .buttons
{
    margin-top: 30px;
}
.about .about-content .personal-info .buttons .btn
{
    margin-top: 10px;
}
.about .about-content .skills
{
    flex: 0 0 40%;
    max-width: 40%;
    margin-top: 40px;
    cursor: default;
}
.about .about-content .skills .skill-item
{
    flex: 0 0 100%;
    max-width: 100%;
    cursor: default;
}
.about .about-content .skills .skill-item h5
{
    line-height: 40px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-black-900);
    text-transform: capitalize;
    cursor: default;
}
.about .about-content .skills .skill-item .progress
{
    background-color: var(--bg-black-50);
    height: 7px;
    border-radius: 4px;
    width: 100%;
    position: relative;
}
.about .about-content .skills .skill-item
{
    margin-bottom: 25px;
}
.about .about-content .skills .skill-item .progress .progress-in
{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 4px;
    background-color: var(--cool-red);
}
.about .about-content .skills .skill-item .skill-percent
{
    position: absolute;
    right: 0;
    color: var(--text-black-900);
    top: -40px;
    font-weight: 400;
    line-height: 40px;
}
.about .about-content .education,
.about .about-content .experience
{
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 30px;
}
.about .about-content h3.title 
{
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--text-black-900);
}
.about .about-content .timeline-box
{
    flex: 0 0 100%;
    max-width: 100%;
}
.about .about-content .timeline
{
    background-color: var(--bg-black-100);
    padding: 30px 15px;
    border: 1px solid var(--bg-black-50);
    border-radius: 10px;
    width: 100%;
    position: relative;
}
.about .about-content .timeline .timeline-item
{
    position: relative;
    padding-left: 37px;
    padding-bottom: 50px;
}
.about .about-content .timeline .timeline-item:last-child
{
    padding-bottom: 0;
}
.about .about-content .timeline .timeline-item::before
{
    content: '';
    width: 1px;
    position: absolute;
    height: 100%;
    left: 7px;
    top: 0;
    background-color: var(--cool-red);
}
.about .about-content .timeline .circle-dot
{
    position: absolute;
    left: 0;
    top: 0;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: var(--cool-red);
}
.about .about-content .timeline .timeline-date
{
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--text-black-700);
}
.about .about-content .timeline .timeline-date .fa 
{
    margin-right: 5px;
}
.about .about-content .timeline .timeline-title
{
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: capitalize;
    color: var(--text-black-900);
}
.about .about-content .timeline .timeline-text
{
    line-height: 25px;
    font-size: 16px;
    text-align: justify;
    color: var(--text-black-700);
}
/* Portfolio */
.my-project{
    width: 80%;
    min-height: 100vh; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: left; 
    justify-content: left; 
    text-align: left;
    gap: 10%;
    position: relative;
    height: 100vh;
    margin-top: 200px;
    margin-bottom: 700px;
    color: var(--black-900);
}

.project-card {
    display: flex;
    width: 100%;
    height: 40%;
    align-items: center;
    gap: 10%;
    justify-content: center;
}

.project-vidbox{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    mix-blend-mode:exclusion;
    position: relative;
    cursor: pointer;
    transition: 0.5s;
    min-width: 400px;

}

.project-vidbox video{
    object-fit: cover;
    width: 100%;
    box-shadow: 0 0 10px var(--white-100);
    border-radius: 20px;
    transition: 0.5s;
}

.project-card video:hover{
    box-shadow: 0 0 25px var(--cool-red);
}

.project-info{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 50%;
    padding-left: 10%;
}

.project-info h1{
    width: 90%;
    font-size: 25px;
    font-weight: bold;
    text-wrap: nowrap;
    margin-top: 0;
    margin-bottom: 10px;
    max-width: 450px;
}

.project-info p{
    width: 90%;
    max-width: 400px;
    min-width: 300px;
    margin-bottom: 50px;
    margin-top: 0;
}

.project-info button{
    align-items: center;
    right: 10%;
    color: var(--black-900);
    padding: 15px 35px;
    border-radius: 10px;
    border: 1px solid var(--cool-red);
    background-color: var(--white-100);
    box-shadow: 0 0 2px var(--cool-red);
    cursor: pointer;
    transition: 0.3s;
}

.project-info button:hover{
    opacity: 0.8;
    box-shadow: 0 0 15px var(--cool-red);
}

.project-vidbox .hover-sign{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    height: 100px;
}

.hover-sign::before,
.hover-sign::after {
    content: "👆";
    text-align: center;
    position: absolute;
    font-size: 50px;
    top: 20%;
    left: 40%;
    border-radius: 40px;
    animation: hover-animation 4s ease-in-out infinite;

}

.hover-sign.active{
    display: none;
}

@keyframes hover-animation {
  0% {
    /* top:20%; */
    box-shadow: 0 0 5px var(--cool-red);
    transform: translate(100%, 50%) rotate(30deg);
  }

  100% {
    box-shadow: 0 0 5px var(--cool-red);
    transform: translateX(80%, 80%) rotate(20deg);
  }
}


/* contact */
.contact-title
{
    color: var(--cool-red);
    text-align: center;
    font-size: 25px;
    margin-bottom: 20px;
}
.contact-sub-title
{
    color: var(--text-black-900);
    text-align: center;
    font-size: 15px;
    margin-bottom: 60px;
}
.contact .contact-info-item
{
    flex: 0 0 25%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 60px;
}
.contact .contact-info-item .icon
{
    display: inline-block;
}
.contact .contact-info-item .icon .fa
{
    font-size: 25px;
    color: var(--cool-red);
}
.contact .contact-info-item h4
{
    font-size: 18px;
    font-weight: 700;
    color: var(--text-black-900);
    text-transform: capitalize;
    margin: 15px 0 5px;
}
.contact .contact-info-item p
{
    font-size: 16px;
    line-height: 25px;
    color: var(--text-black-700);
    font-weight: 400;
}
.contact .contact-form
{
    flex: 0 0 100%;
    max-width: 100%;
}
.contact .contact-form .col-6
{
    flex: 0 0 50%;
    max-width: 50%;
}
.contact .contact-form .col-12
{
    flex: 0 0 100%;
    max-width: 100%;
}
.contact .contact-form .form-item
{
    margin-bottom: 30px;
}
.contact .contact-form .form-item .form-control
{
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: var(--bg-black-100);
    border: 1px solid var(--bg-black-50);
    padding: 10px 25px;
    font-size: 16px;
    color: var(--text-black-700);
    transition: all 0.3s ease;
}
.contact .contact-form .form-item .form-control:focus
{
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}
.contact .contact-form .form-item textarea.form-control
{
    height: 140px;
}
.contact .contact-form .btn
{
    height: 50px;
    padding: 0 50px;
}

/*footer*/
.footer {
  background-color: var(--footer-black);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
  overflow-x: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
}

.footer-logo:hover {
  color: var(--cool-red);
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.footer-links li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
  color: var(--cool-red);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-social a {
  color: var(--white);
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--cool-red);
}

/*Responsive*/
/* Navbar */

/* Home */

/* About */

/* Portfolio */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 20px;
  }

  .nav-list ul {
    flex-direction: column;
    gap: 10px;
  }

  .home {
    flex-direction: column;
    height: auto;
    padding: 100px 0;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }

  .project-card {
    flex-direction: column;
    height: auto;
  }

  .project-info {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .project-vidbox {
    width: 100%;
  }
}

/* Contact */
@media (max-width:1199px)
{
    .section .container
    {
        padding-top: 70px;
    }
    .aside
    {
        left: -270px;
    }
    .aside.open 
    {
        left: 0;
    }
    .aside .nav-toggler
    {
        display: flex;
        left: 30px;
    }
    .aside .nav-toggler.open 
    {
        left: 300px;
    }
    .section
    {
        left: 0;
    }
    .section.open 
    {
        left: 270px;
    }
    .about .about-content .personal-info .info-item p span 
    {
        display: block;
        margin-left: 0;
    }
}
@media (max-width:991px)
{
    .contact .contact-info-item,
    .portfolio .portfolio-item,
    .service .service-item
    {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .home .home-info
    {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .home .home-img
    {
        display: none;
    }
}
@media (max-width:767px)
{
    .contact .contact-form .col-6,
    .contact .contact-info-item,
    .portfolio .portfolio-item,
    .service .service-item,
    .about .about-content .experience,
    .about .about-content .education,
    .about .about-content .skills,
    .about .about-content .personal-info
    {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* Footer */

/* ===== Download Notification Styles ===== */
.download-notification {
    position: fixed;
    top: -78px;
    right: 202px;
    background: var(--white);
    border: 1px solid var(--cool-red);
    border-radius: 12px;
    padding: 15px;
    width: 300px;
    z-index: 99999;
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    box-shadow: 0 10px 30px var(--black-900);
    display: none;
}

.download-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.download-header i {
    color: var(--cool-red);
    font-size: 20px;
}

.download-header h3 {
    color: var(--text-black-900);
    font-size: 16px;
    margin: 0;
}

.download-progress {
    margin: 15px 0;
}

.progress-bar {
    height: 6px;
    background: var(--white);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--cool-red);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    display: block;
    font-size: 12px;
    color: var(--text-black-700);
    text-align: center;
}

.download-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-black-700);
    font-size: 12px;
}

.file-info i {
    color: var(--cool-red);
    font-size: 14px;
}

.cancel-download {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--text-black-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

.cancel-download:hover {
    background: var(--cool-red);
    color: var(--white);
}
/* Dark Mode for Download Notification */
body.dark .download-notification {
    background: var(--bg-black-100);
    border: 1px solid var(--border-accent);
    box-shadow: var(--shadow-black-100);
}

body.dark .download-header h3 {
    color: var(--white);
}

body.dark .progress-bar {
    background: var(--bg-black-50);
}

body.dark .progress-text {
    color: var(--text-black-700);
}

body.dark .file-info {
    color: var(--text-black-700);
}

body.dark .file-info i {
    color: var(--cool-red);
}

body.dark .cancel-download {
    background: var(--bg-black-50);
    color: var(--white);
    border: 1px solid var(--border-accent);
}

body.dark .cancel-download:hover {
    background: var(--cool-red);
    color: var(--white);
}
