html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #f3e9f7;
    
}

.navbar {
    background:  #260b65; /* Light background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.navbar .navbar-brand, .navbar-nav .nav-link {
    color:  #f3e9f7; /* Dark blue-gray for text and links */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(44, 62, 80, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.navbar .navbar-nav .nav-link:hover {
    color: #2c3e50 ; 
    transition: color 0.3s ease; /* Smooth transition */
}

.btn-custom {
    background-color: #160c0b;
    color: white;
    border: none;
}

.btn-custom:hover {
    background-color: #2a1a18;
    color: white;
}
.header {
    background-color: #f3e9f7; /* Light background */
    height: 100vh;
    color: #2c3e50; /* Dark text */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.intro-text {
    -webkit-box-reflect: below -12px linear-gradient(transparent, rgba(0, 0, 0, 0.1));
    font-family: 'Poppins', sans-serif;
    color: #160c0b; 
    font-size: 3rem;
    font-weight: 600;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    animation: fadeInUp 1.5s;
}

.intro-text2 {
    animation: fadeInUp 1.5s;
    font-family: 'Poppins', sans-serif;
    color: #160c0b; 
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}
.wavy {
    position: relative;
    display: inline;
    white-space: nowrap;
    
   
}


.wavy span {
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: inline-block;
    color: #260b65;
    font-size: 2rem;
    animation: animate 1s ease-in-out infinite;
    animation-delay: calc(0.05s * var(--i));
}

@keyframes animate {
    0% {
        transform: translateY(0px);
    }
    20% {
        transform: translateY(-40px);
    }
    40%,
    100% {
        transform: translateY(0px);
    }
}

.animate-text {
    font-family: 'Courier New', Courier, monospace;
    color: #260b65;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
        transform: translateY(20px);
    }
    10%, 90% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .intro-text {
        font-size: 1.5rem;
    }

    .wavy {
        font-size: 0.5rem;
    }

    .intro-text2 {
        font-size: 1.5rem;
    }
}

.header .btn {
    margin-top: 20px;
    animation: fadeInUp 1.5s;
    padding: 10px 20px;
    background: #27ae60;
    color: #f3e9f7;
    border-radius: 15px;
    font-weight: 350;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: 0.5s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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


.section-title {
    color:#160c0b; /* Dark blue-gray for section titles */
    
    margin-bottom: 30px;
    margin-top: 30px;
}


.section-title.text-center::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    
    background: #260b65;
    margin: 10px auto;
    border-radius: 3px;
}


.contact-info p a {
    color: #2c3e50;
    text-decoration: none;
}

.contact-info p a:hover {
    text-decoration: underline;
    color: #260b65;
}
.contact-image {
        background: #260b65;
  
}

footer {
    background: #f8f9fa; /* Light background */
    color: #2c3e50;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar {
    width: 0;
}

#scrollpath1 {
    position: fixed;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
}

#scrollpath2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 10px;
    height: 100%;
}

#progressbar1 {
    position: fixed;
    top: 0;
    right: 0;
    width: 10px;
    background: linear-gradient(to top, #260b65, #27ae60);
    animation: animate1 5s linear infinite;
}

#progressbar2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 10px;
    background: linear-gradient(to bottom, #e74c3c, #f39c12);
    animation: animate1 5s linear infinite;
}

@keyframes animate1 {
    0%,
    100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(360deg);
    }
}

#progressbar1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #260b65, #27ae60);
    filter: blur(10px);
}

#progressbar2::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #e74c3c, #f39c12);
    filter: blur(10px);
}

#progressbar1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #260b65, #27ae60);
    filter: blur(30px);
}

#progressbar2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #e74c3c, #f39c12);
    filter: blur(30px);
}



#MyResume {
    background-color: #260b65 ; /* Light background for Resume section */
    padding: 20px;
    color: #f3e9f7;
    margin: 0 auto;
}



.box {
    position: relative;
    width: 350px;
    height: 350px;
    background:#260b65;
    border-radius: 50%;
    overflow: hidden;
}

.box::before {
    content: '';
    position: absolute;
    inset: -10px 140px;
     background: linear-gradient(to bottom, #e74c3c, #f39c12);
    transition: 0.5s;
    animation: animate2 4s linear infinite;
}

.box:hover::before {
    inset: -20px 0px;
}

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

.box::after {
    content: '';
    position: absolute;
    inset: 6px;
    background: #f3e9f7;
    border-radius: 50%;
    z-index: 1;
}

.pic {
    position: absolute;
    inset: 30px;
    border: 6px solid   #260b65;
    z-index: 3;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.pic img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    pointer-events: none;
    z-index: 3;
}

.box:hover .pic img {
    opacity: 0;
}

.pic h2 {
    position: relative;
 
    text-align: center;

    color:  #160c0b;
    

    font-family: 'Arial', sans-serif;
    
    font-size: 2rem;
    font-weight: 400;
    margin-top: 10px;
}

.pic h2 span {
    font-weight: 200;
    font-size: 1.5rem;
}

.btn a {
    position: relative;
    margin-top: 10px;
    padding: 10px 20px;
    background:#160c0b;
    color: white;
    border-radius: 15px;
    font-weight: 200;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: 0.5s;
}

.btn a:hover {
    letter-spacing: 0.2em;
}


#AboutMe {
   
    background-color:  #f3e9f7; /* Background for About Me section */
 
    margin: 0 auto;
    padding: 20px;
   
    color: #160c0b;
}

#AboutMe.section-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #f39c12, #e74c3c, #f39c12);
            border-radius: 2px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 5px #f39c12, 0 0 10px #f39c12, 0 0 15px #f39c12; }
            to { box-shadow: 0 0 10px #e74c3c, 0 0 20px #e74c3c, 0 0 30px #e74c3c; }
        }

.code-block {
    font-family: 'Courier New', Courier, monospace;
    background: black;
    padding: 5px; /* Adjust padding for the code block */
    border-radius: 8px;
    max-width: 80%; /* Set a maximum width for the code block */
    margin: 0 auto; /* Center the code block */
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    display: none; /* Initially hidden */
}

.line {
    display: block;
          
}

.indent {
    padding-left: 20px;
}

.indent-2 {
    padding-left: 40px;
}

.indent-3 {
    padding-left: 60px;
}

.keyword {
    color: #c678dd;
}

.classname, .function-name {
    color: #61afef;
}

.parameter, .property {
    color: #e06c75;
}

.operator, .punctuation {
    color: #56b6c2;
}

.string {
    color: #98c379;
}

.number {
    color: #d19a66;
}

.comment {
    color: #5c6370;
}
.caret {
    display: inline;
    border-right: .15em solid orange;
    animation: caret 0.75s steps(1) infinite;
}
@keyframes caret {
    from, to { border-color: transparent; }
    50% { border-color: orange; }
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 0;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px; /* Space between rows */
}

.contact-left,
.contact-right {
    display: flex;
    align-items: center; /* Aligns icon and text vertically */
}

.contact-left a,
.contact-right {
    margin-left: 10px; /* Adds space between icon and text */
    color: #f3e9f7;
    text-decoration: none; /* Removes underline from links */
    font-size: 16px; /* Font size for contact details */
}


.contact-item i {
    color: #f3e9f7; /* Icon color */
    margin-right: 10px; /* Adds space between icon and text */
}
 footer {
            background-color: #260b65; /* Footer background color */
            color: white;
            padding: 20px 0;
            font-size: 14px; /* Footer text size */
        }

        footer a {
            color: #f3e9f7; /* Link color */
            transition: color 0.3s ease; /* Smooth transition on hover */
            text-decoration: none;
        }

        footer a:hover {
            color: #2c3e50; /* Change color on hover */
        }

        footer .container-fluid {
            margin-top: 20px; /* Space above the copyright section */
        }

        .video-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .video-link i {
            font-size: 16px;
        }

.card {
    background-color:  #f3e9f7; /* Light background for the card */
    color: #2c3e50; /* Dark text for contrast */
    border: 1px solid #260b65; /* Light border */
    border-radius: 10px; /* Slightly rounded corners */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effect */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px); /* Lift the card on hover */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Add shadow on hover */
}

.card-body {
    padding: 20px; /* Padding inside the card */
}

#contact {
    background-color: #f3e9f7;/* Light background for the section */
    
    padding: 20px; /* Top and bottom padding */
    color: #2c3e50;
}


.neon-border {
    border: 2px solid #260b65; /* Blue border color */
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3), 0 0 20px rgba(52, 152, 219, 0.2), 0 0 30px rgba(52, 152, 219, 0.1); /* Subtle glow effect */
}

#contact label, h3 {
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
   
    font-weight: 500;
 
   
}

.neon-button {
    background-color: #260b65;
    border-radius: 25px;
    color: white;
    transition: 0.3s;
}

.neon-button:hover {
    background-color:#2c3e50;
    transform: scale(1.05);
}


#projects {
    background-color:#260b65; /* Light background for the section */
    color: white;
    padding: 20px; /* Top and bottom padding */
}


.project-slider {
    position: relative; /* Positioning for absolute children */
    max-width: 1000px; /* Limit width */
    margin: auto; /* Center the slider */
    height: 500px; /* Set height for uniformity */
}

.project-card {
    position: absolute; /* Stack cards */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0; /* Start hidden */
    transition: opacity 0.5s ease; /* Smooth transition */
    display: flex; /* Flexbox for centering */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center items horizontally */
}

.project-card.active {
    opacity: 1; /* Show active card */
}

.project-image {
    width: 40%; /* Full width */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    max-height: 300px; /* Limit height */
  
}

.project-details {
    text-align: center; /* Center text */
    padding: 20px; /* Padding */
}

.project-title {
    font-size: 1.5rem; /* Title size */
    color: #2c3e50; /* Title color */
}

.project-description {
    margin: 10px 0; /* Space around description */
}


.btn-github { 
    background-color: #260b65;
    border-radius: 25px;
    color: white;
    transition: 0.3s;
}

.btn-github:hover {
    background-color:#2c3e50;
    transform: scale(1.05);
}

.blurred-image {
    filter: blur(2px); /* Adjust the blur intensity */
    transition: filter 0.3s ease; /* Smooth transition if needed */
}



.nav-buttons {
    position: absolute; /* Position for navigation buttons */
    top: 50%; /* Center vertically */
    width: 100%; /* Full width */
    display: flex; /* Flexbox for alignment */
    justify-content: space-between; /* Space between buttons */
    transform: translateY(-50%); /* Adjust for vertical centering */
}

.prev, .next {
    background-color: rgba(44, 62, 80, 0.8); /* Semi-transparent background */
    border: none; /* No border */
    color: #f3e9f7; /* Text color */
    padding: 10px 15px; /* Padding */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer on hover */
    font-size: 18px; /* Font size */
    transition: background-color 0.3s; /* Transition for hover effect */
}

.prev:hover, .next:hover {
    background-color: rgba(44, 62, 80, 0.9); /* Darker on hover */
}

.project-slider2 {
    position: relative; /* Positioning for absolute children */
    max-width: 1000px; /* Limit width */
    margin: auto; /* Center the slider */
    height: 500px; /* Set height for uniformity */
}

.project-card2 {
    position: absolute; /* Stack cards */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0; /* Start hidden */
    transition: opacity 0.5s ease; /* Smooth transition */
    display: flex; /* Flexbox for centering */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center items horizontally */
}

.project-card2.active {
    opacity: 1; /* Show active card */
}

.read-more {
    color: #260b65;
    cursor: pointer;
}

.hidden-content {
    display: none;
}


        /* Enhanced Projects Section Styles */
        #projects {
            background: linear-gradient(135deg, #260b65 0%, #1a0845 50%, #260b65 100%);
            color:  #f3e9f7;
            padding: 80px 0;
                     overflow: hidden;
        }

        #projects::before {
            content: '';
        
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #f39c12, #e74c3c, #f39c12);
            border-radius: 2px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 5px #f39c12, 0 0 10px #f39c12, 0 0 15px #f39c12; }
            to { box-shadow: 0 0 10px #e74c3c, 0 0 20px #e74c3c, 0 0 30px #e74c3c; }
        }

        .enhanced-card {
            background: #f3e9f7;
            border: none;
            border-radius: 20px;
            margin-bottom: 3rem;
            overflow: hidden;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.1),
                0 1px 8px rgba(0, 0, 0, 0.2);
        }

        .enhanced-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
            z-index: 1;
        }

        .enhanced-card:hover::before {
            left: 100%;
        }

        .enhanced-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 10px 20px rgba(38, 11, 101, 0.2);
        }

        .card-header-custom {
            background: linear-gradient(135deg, #260b65, #3d1a78);
            color: white;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .card-header-custom::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(30px, -30px);
        }

        .card-header-custom h3 {
            margin: 0;
            font-size: 1.8rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }

        .enhanced-card .card-body {
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .project-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #2c3e50;
            margin-bottom: 1.5rem;
        }

        .btn-github-enhanced {
            background: linear-gradient(135deg, #260b65, #3d1a78);
            border: none;
            border-radius: 50px;
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(38, 11, 101, 0.3);
            margin: 0 5px 10px 0;
        }

        .btn-github-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn-github-enhanced:hover::before {
            left: 100%;
        }

        .btn-github-enhanced:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(38, 11, 101, 0.4);
            color: white;
            text-decoration: none;
        }

        .video-container {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            margin-bottom: 1rem;
        }

        .video-container:hover {
            transform: scale(1.05);
        }

        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .gallery-image {
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 1rem;
        }

        .gallery-image:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            filter: blur(0px) !important;
        }

        .read-more {
            color: #260b65;
            cursor: pointer;
            font-weight: 600;
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        .read-more:hover {
            color: #e74c3c;
        }

        .hidden-content {
            display: none;
            margin-top: 1rem;
            padding: 1rem;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
            border-left: 4px solid #260b65;
        }

        .project-stats {
            display: flex;
            justify-content: space-around;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 1.5rem;
            border-radius: 15px;
            margin: 1.5rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .stat-item {
            text-align: center;
            flex: 1;
            padding: 0 1rem;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: #260b65;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }

        .tech-tag {
            background: linear-gradient(135deg, #260b65, #3d1a78);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: transform 0.2s ease;
            box-shadow: 0 2px 5px rgba(38, 11, 101, 0.3);
        }

        .tech-tag:hover {
            transform: scale(1.1);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-elements::before,
        .floating-elements::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        .floating-elements::before {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-elements::after {
            bottom: 10%;
            right: 10%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .enhanced-card {
                margin-bottom: 2rem;
            }
            
            .card-header-custom,
            .enhanced-card .card-body {
                padding: 1rem;
            }
            
            .project-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .stat-item {
                padding: 0.5rem 0;
            }
        }

        /* Animation for cards appearing */
        .enhanced-card {
            opacity: 0;
            transform: translateY(50px);
            animation: slideInUp 0.6s ease forwards;
        }

        .enhanced-card:nth-child(2) { animation-delay: 0.1s; }
        .enhanced-card:nth-child(3) { animation-delay: 0.2s; }
        .enhanced-card:nth-child(4) { animation-delay: 0.3s; }
        .enhanced-card:nth-child(5) { animation-delay: 0.4s; }
        .enhanced-card:nth-child(6) { animation-delay: 0.5s; }
        .enhanced-card:nth-child(7) { animation-delay: 0.6s; }
        .enhanced-card:nth-child(8) { animation-delay: 0.7s; }
        .enhanced-card:nth-child(9) { animation-delay: 0.8s; }
        .enhanced-card:nth-child(10) { animation-delay: 0.9s; }

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

        /* Fun Facts Section Styles */
#funfacts {
    background: linear-gradient(135deg, #260b65 0%, #1a0845 50%, #260b65 100%);
    color:  #f3e9f7;
    padding: 80px 0;
  
    overflow: hidden;
}

#funfacts::before {
    content: '';
   
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

#funfacts .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color:  #160c0b;
}

#funfacts .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e74c3c, #f39c12);
    border-radius: 2px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px #f39c12, 0 0 10px #f39c12, 0 0 15px #f39c12; }
    to { box-shadow: 0 0 10px #e74c3c, 0 0 20px #e74c3c, 0 0 30px #e74c3c; }
}

#funfacts .enhanced-card {
    background:  #f3e9f7;
    border: none;
    border-radius: 20px;
    margin-bottom: 3rem;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.2);
    height: 100%;
}

#funfacts .enhanced-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: 1;
}

#funfacts .enhanced-card:hover::before {
    left: 100%;
}

#funfacts .enhanced-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(38, 11, 101, 0.2);
}

#funfacts .card-header-custom {
    background: linear-gradient(135deg, #260b65, #3d1a78);
    color: white;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

#funfacts .card-header-custom::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

#funfacts .card-header-custom h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.fun-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

#funfacts .card-body {
    padding: 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

#funfacts .project-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

#funfacts .project-stats {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#funfacts .stat-item {
    text-align: center;
    flex: 1;
    padding: 0 1rem;
}

#funfacts .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #260b65;
    display: block;
    margin-bottom: 0.5rem;
}

#funfacts .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Instagram Embed Styles */
.instagram-embed-container {
    background: linear-gradient(135deg, #260b65, #3d1a78);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 10px 25px rgba(38, 11, 101, 0.3);
    position: relative;
    overflow: hidden;
}

.instagram-embed-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.instagram-preview {
    position: relative;
    z-index: 2;
}

.instagram-preview iframe {
    width: 100% !important;
    max-width: 540px;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.instagram-fallback {
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: white;
    margin: 1rem 0;
}

.instagram-fallback h5 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.instagram-fallback .btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.instagram-fallback .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.viral-badge {
    background: linear-gradient(135deg, #f39c12, #e74c3c);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Quote Section Styles */
.quotes-section {
    margin-top: 4rem;
    position: relative;
}

.quotes-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.quote-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 400px;
    min-width: 300px;
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.08);
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.quote-card:hover::before {
    left: 100%;
}

.quote-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(255, 255, 255, 0.1);
}

.quote-icon {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quote-text {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    color: white;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
    text-align: center;
}

.quotes-title {
    text-align: center;
    margin-bottom: 3rem;
}

.quotes-title h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #160c0b;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.quotes-title h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #f39c12, #e74c3c);
    border-radius: 2px;
}

.quotes-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.instagram-responsive {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}

.instagram-responsive iframe {
    width: 100%;
    height: auto;
    min-height: 400px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    #funfacts .section-title {
        font-size: 3rem;
    }
    
    .quotes-title h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    #funfacts .section-title {
        font-size: 2.8rem;
    }
    
    #funfacts .card-body {
        padding: 1.5rem;
    }
    
    #funfacts .card-header-custom {
        padding: 1.2rem;
    }
    
    .quotes-title h3 {
        font-size: 2rem;
    }
    
    .quote-card {
        padding: 2rem;
        min-width: 280px;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    #funfacts {
        padding: 60px 0;
    }
    
    #funfacts .section-title {
        font-size: 2.5rem;
    }
    
    #funfacts .enhanced-card {
        margin-bottom: 2rem;
    }
    
    #funfacts .card-header-custom,
    #funfacts .card-body {
        padding: 1rem;
    }
    
    #funfacts .project-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    #funfacts .stat-item {
        padding: 0.5rem 0;
    }

    .fun-icon {
        font-size: 2.5rem;
    }

    #funfacts .card-header-custom h3 {
        font-size: 1.5rem;
    }

    #funfacts .project-description {
        font-size: 1rem;
    }

    .instagram-embed-container {
        padding: 1rem;
        margin: 1rem 0;
    }

    .instagram-fallback {
        padding: 1.5rem;
    }
    
    .quotes-section {
        margin-top: 3rem;
    }
    
    .quotes-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .quote-card {
        padding: 1.5rem;
        min-width: auto;
        max-width: 100%;
    }
    
    .quotes-title h3 {
        font-size: 1.8rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .instagram-responsive iframe {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    #funfacts .section-title {
        font-size: 2rem;
    }

    .fun-icon {
        font-size: 2rem;
    }

    #funfacts .card-header-custom h3 {
        font-size: 1.3rem;
    }

    #funfacts .project-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    #funfacts .stat-number {
        font-size: 1.5rem;
    }

    #funfacts .stat-label {
        font-size: 0.8rem;
    }

    .instagram-embed-container {
        padding: 0.8rem;
    }

    .instagram-fallback {
        padding: 1rem;
    }

    .instagram-fallback h5 {
        font-size: 1rem;
    }
    
    .quote-card {
        padding: 1.2rem;
    }
    
    .quotes-title h3 {
        font-size: 1.6rem;
    }
    
    .quote-text {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .quotes-subtitle {
        font-size: 1rem;
    }
    
    .instagram-responsive iframe {
        min-height: 300px;
    }
}

/* Animation for cards appearing */
#funfacts .enhanced-card {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.6s ease forwards;
}

#funfacts .enhanced-card:nth-child(1) { animation-delay: 0.1s; }
#funfacts .enhanced-card:nth-child(2) { animation-delay: 0.2s; }

.quote-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.quote-card:nth-child(1) { animation-delay: 0.3s; }
.quote-card:nth-child(2) { animation-delay: 0.4s; }

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


        /* Experience Section Styles */
        #experience {
            background: linear-gradient(135deg, #260b65 0%, #1a0845 50%, #260b65 100%);
            color: #f3e9f7;
            padding: 80px 0;
            overflow: hidden;
            position: relative;
        }

        #experience::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        #experience .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
            color: #160c0b;
        }

        #experience .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #f39c12, #e74c3c, #f39c12);
            border-radius: 2px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { box-shadow: 0 0 5px #f39c12, 0 0 10px #f39c12, 0 0 15px #f39c12; }
            to { box-shadow: 0 0 10px #e74c3c, 0 0 20px #e74c3c, 0 0 30px #e74c3c; }
        }

        .experience-timeline {
            position: relative;
            margin-top: 3rem;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            padding-left: 3rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, #f39c12, #e74c3c);
            border-radius: 2px;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            left: -8px;
            top: 0;
            width: 18px;
            height: 18px;
            background: #f39c12;
            border-radius: 50%;
            border: 3px solid #260b65;
            z-index: 2;
        }

        .experience-card {
            background: #f3e9f7;
            border-radius: 15px;
            padding: 2rem;
            margin-left: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
            z-index: 1;
        }

        .experience-card:hover::before {
            left: 100%;
        }

        .experience-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .company-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .company-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #260b65, #3d1a78);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(38, 11, 101, 0.3);
        }

        .company-info h3 {
            color: #260b65;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
        }

        .company-location {
            color: #6c757d;
            font-size: 0.9rem;
            margin-top: 0.2rem;
        }

        .position-details {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            border-left: 4px solid #260b65;
            position: relative;
            z-index: 2;
        }

        .position-title {
            color: #260b65;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .position-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .meta-item {
            display: flex;
            align-items: center;
            color: #6c757d;
            font-size: 0.9rem;
        }

        .meta-item i {
            margin-right: 0.3rem;
            color: #260b65;
        }

        .skills-container {
            margin-top: 1rem;
        }

        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }

        .skill-tag {
            background: linear-gradient(135deg, #260b65, #3d1a78);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            transition: transform 0.2s ease;
        }

        .skill-tag:hover {
            transform: scale(1.05);
        }

        .linkedin-badge {
            background: linear-gradient(135deg, #0077b5, #005885);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            margin-top: 0.5rem;
        }

        /* Certifications Section Styles */
        #certifications {
            background-color: #f3e9f7;
            padding: 80px 0;
            color: #2c3e50;
        }

        #certifications .section-title {
            color: #160c0b;
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        #certifications .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #260b65, #3d1a78);
            border-radius: 2px;
        }

        .certification-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .certification-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .certification-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(38, 11, 101, 0.1), transparent);
            transition: left 0.5s;
            z-index: 1;
        }

        .certification-card:hover::before {
            left: 100%;
        }

        .certification-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border-color: #260b65;
        }

        .cert-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .cert-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #260b65, #3d1a78);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: white;
            font-size: 1.2rem;
        }

        .cert-info h4 {
            color: #260b65;
            font-size: 1.4rem;
            font-weight: 600;
            margin: 0;
            line-height: 1.3;
        }

        .cert-provider {
            color: #6c757d;
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }

        .cert-details {
            position: relative;
            z-index: 2;
        }

        .cert-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .cert-meta-item {
            display: flex;
            align-items: center;
            color: #6c757d;
            font-size: 0.9rem;
        }

        .cert-meta-item i {
            margin-right: 0.3rem;
            color: #260b65;
        }

        .cert-id {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            padding: 0.8rem;
            border-radius: 8px;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            color: #495057;
            border-left: 3px solid #260b65;
        }

        .cert-pdf-link {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #260b65, #3d1a78);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            margin-top: 1rem;
            transition: all 0.3s ease;
            gap: 0.5rem;
        }

        .cert-pdf-link:hover {
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(38, 11, 101, 0.3);
        }

        /* Old Portfolio Section */
        #old-portfolio {
            background: linear-gradient(135deg, #160c0b 0%, #2c1810 50%, #160c0b 100%);
            color: #f3e9f7;
            padding: 80px 0;
            overflow: hidden;
            position: relative;
        }

        #old-portfolio::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.01)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        #old-portfolio .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
            color: #f3e9f7;
        }

        #old-portfolio .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #f39c12, #e74c3c, #f39c12);
            border-radius: 2px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        .portfolio-showcase {
            background: #f3e9f7;
            border-radius: 20px;
            padding: 3rem;
            margin-top: 3rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .portfolio-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
            z-index: 1;
        }

        .portfolio-showcase:hover::before {
            left: 100%;
        }

        .portfolio-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .portfolio-content h3 {
            color: #160c0b;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .portfolio-content p {
            color: #2c3e50;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .vintage-badge {
            background: linear-gradient(135deg, #8b4513, #d2691e);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            animation: vintageGlow 3s ease-in-out infinite alternate;
        }

        @keyframes vintageGlow {
            from { box-shadow: 0 0 10px rgba(139, 69, 19, 0.3); }
            to { box-shadow: 0 0 20px rgba(210, 105, 30, 0.5); }
        }

        .video-container-old {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            margin: 2rem 0;
            border: 3px solid #260b65;
        }

        .video-container-old:hover {
            transform: scale(1.02);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .timeline-item {
                padding-left: 2rem;
            }

            .experience-card {
                margin-left: 1rem;
                padding: 1.5rem;
            }

            .certification-grid {
                grid-template-columns: 1fr;
            }

            #experience .section-title,
            #certifications .section-title,
            #old-portfolio .section-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .timeline-item {
                padding-left: 1.5rem;
            }

            .experience-card {
                margin-left: 0.5rem;
                padding: 1rem;
            }

            .company-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .position-meta {
                flex-direction: column;
                gap: 0.5rem;
            }

            .certification-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .certification-card {
                padding: 1.5rem;
            }

            .portfolio-showcase {
                padding: 2rem;
            }

            #experience .section-title,
            #certifications .section-title,
            #old-portfolio .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .timeline-item::before {
                left: -1px;
            }

            .timeline-item::after {
                left: -9px;
            }

            .experience-card {
                margin-left: 0;
            }

            .cert-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            #experience .section-title,
            #certifications .section-title,
            #old-portfolio .section-title {
                font-size: 1.8rem;
            }
        }

        /* Animation for cards appearing */
        .timeline-item {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInRight 0.6s ease forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
        .timeline-item:nth-child(2) { animation-delay: 0.2s; }
        .timeline-item:nth-child(3) { animation-delay: 0.3s; }

        .certification-card {
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.6s ease forwards;
        }

        .certification-card:nth-child(1) { animation-delay: 0.1s; }
        .certification-card:nth-child(2) { animation-delay: 0.2s; }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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