@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Light Mode - Clean, professional backgrounds */
    --background-primary: #ffffff;
    --background-secondary: #f8fafc;
    --background-tertiary: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: rgba(15, 23, 42, 0.1);
    --glass-background: rgba(255, 255, 255, 0.9);
    --accent-red: #A51C30;
    --accent-orange: #ff6f31;
    --gradient-start: var(--accent-red);
    --gradient-end: var(--accent-orange);
    --scrollbar-track: rgba(15, 23, 42, 0.05);
}

body.dark {
    /* Dark Mode - Deep, rich backgrounds with subtle blue tint */
    --background-primary: #0a0e1a;
    --background-secondary: #151b2e;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: rgba(248, 250, 252, 0.08);
    --glass-background: rgba(21, 27, 46, 0.75);
    --scrollbar-track: rgba(248, 250, 252, 0.08);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html.lenis {
    height: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background-primary);
    color: var(--text-primary);
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
    padding-top: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Subtle gradient overlay for light mode */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(165, 28, 48, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 111, 49, 0.02) 0%, transparent 40%),
        linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

/* Enhanced gradient overlay for dark mode */
body.dark::before {
    background: radial-gradient(circle at 20% 50%, rgba(165, 28, 48, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 111, 49, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
}

.glass-card {
    background: var(--glass-background);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.08);
    position: relative;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.4;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

body.dark .glass-card::after {
    opacity: 0;
}

body.dark .glass-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.glass-card:hover::after {
    opacity: 0.7;
}

body.dark .glass-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

nav {
    background: var(--background-primary);
    border-radius: 0 0 24px 24px;
    max-width: 1200px;
    padding: 16px 32px;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateZ(0);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    backface-visibility: hidden;
    perspective: 1000px;
}

body.dark nav {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    background: var(--background-primary);
}

/* Desktop navbar links */
nav .hidden.md\:flex a {
    position: relative;
    overflow: hidden;
}

nav .hidden.md\:flex a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

nav .hidden.md\:flex a:hover {
    background-color: rgba(15, 23, 42, 0.05);
    color: var(--accent-red);
}

nav .hidden.md\:flex a:hover::before {
    width: 80%;
}

body.dark nav .hidden.md\:flex a:hover {
    background-color: rgba(248, 250, 252, 0.1);
    color: var(--accent-orange);
}

/* Active link styling */
nav .hidden.md\:flex a.active {
    background: linear-gradient(135deg, rgba(165, 28, 48, 0.1), rgba(255, 111, 49, 0.1));
    color: var(--accent-red);
    font-weight: 600;
}

body.dark nav .hidden.md\:flex a.active {
    background: linear-gradient(135deg, rgba(165, 28, 48, 0.2), rgba(255, 111, 49, 0.2));
    color: var(--accent-orange);
}

nav .hidden.md\:flex a.active::before {
    width: 80%;
}

/* Logo animation */
nav a img {
    transition: all 0.3s ease;
}

nav a:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Dark mode toggle button */
#darkModeToggle {
    background: linear-gradient(135deg, rgba(165, 28, 48, 0.1), rgba(255, 111, 49, 0.1));
    transition: all 0.3s ease;
}

#darkModeToggle:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    transform: scale(1.1) rotate(15deg);
}

#darkModeToggle:hover i {
    color: white !important;
}

/* Mobile menu button */
#mobileMenuButton {
    background: linear-gradient(135deg, rgba(165, 28, 48, 0.1), rgba(255, 111, 49, 0.1));
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

#mobileMenuButton:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    transform: scale(1.05);
}

#mobileMenuButton:hover i {
    color: white !important;
}

/* Mobile menu styling */
#mobileMenu {
    background: var(--background-primary);
    border-top: 1px solid var(--border-color);
    margin-top: 12px;
}

#mobileMenu a {
    position: relative;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

#mobileMenu a:hover {
    background: linear-gradient(90deg, rgba(165, 28, 48, 0.1), transparent);
    border-left-color: var(--accent-red);
    padding-left: 1rem;
}

body.dark #mobileMenu a:hover {
    background: linear-gradient(90deg, rgba(255, 111, 49, 0.1), transparent);
    border-left-color: var(--accent-orange);
}

#mobileMenu a.active {
    background: linear-gradient(90deg, rgba(165, 28, 48, 0.15), transparent);
    border-left-color: var(--accent-red);
    font-weight: 600;
    color: var(--accent-red);
}

body.dark #mobileMenu a.active {
    background: linear-gradient(90deg, rgba(255, 111, 49, 0.15), transparent);
    border-left-color: var(--accent-orange);
    color: var(--accent-orange);
}

#home {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay - DISABLED for performance */
#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(165, 28, 48, 0.3) 0%,
            transparent 50%,
            rgba(255, 111, 49, 0.3) 100%);
    opacity: 0.5;
    pointer-events: none;
}

/* Enhanced floating tech icons - OPTIMIZED */
.tech-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 3rem;
    animation: float 20s infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    transition: color 0.3s ease;
}

.tech-icon:hover {
    color: rgba(255, 255, 255, 0.4);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Hero content animations */
#home h1 {
    animation: fadeInUp 1s ease-out;
}

#home h2 {
    animation: fadeInUp 1.2s ease-out;
}

#home p {
    animation: fadeInUp 1.4s ease-out;
}

#home .flex.justify-center {
    animation: fadeInUp 1.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Enhanced profile image */
.profile-image-container {
    perspective: 1000px;
    animation: fadeInRight 1.2s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.profile-image-wrapper {
    position: relative;
    transition: transform 0.4s ease;
    transform-style: preserve-3d;
}

/* Glowing ring effect - OPTIMIZED */
.profile-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-orange), var(--accent-red), var(--accent-orange));
    opacity: 0.6;
    filter: blur(20px);
    z-index: -1;
}

.profile-image-container:hover .profile-image-wrapper {
    transform: scale(1.05);
}

.profile-image-wrapper>div {
    border-width: 5px;
    border-image: linear-gradient(135deg, var(--accent-orange), var(--accent-red)) 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Enhanced CTA buttons */
#home a[href="#contact"],
#home a[href="#projects"] {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#home a[href="#contact"]::before,
#home a[href="#projects"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#home a[href="#contact"]:hover::before,
#home a[href="#projects"]:hover::before {
    width: 300px;
    height: 300px;
}

#home a[href="#contact"]:hover {
    box-shadow: 0 15px 40px rgba(165, 28, 48, 0.5);
}

#home a[href="#projects"]:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Social links enhancement */
#home .flex.justify-center.md\:justify-start.space-x-6 a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

#home .flex.justify-center.md\:justify-start.space-x-6 a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive hero section */
@media (max-width: 768px) {
    #home {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .tech-icon {
        font-size: 2rem !important;
    }

    #home h1 {
        font-size: 2rem !important;
    }

    #home h2 {
        font-size: 1.5rem !important;
    }

    #home p {
        font-size: 1rem;
    }

    .profile-image-wrapper {
        width: 250px !important;
        height: 250px !important;
    }

    #home a[href="#contact"],
    #home a[href="#projects"] {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator span {
        font-size: 0.75rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #home h1 {
        font-size: 3rem !important;
    }

    #home h2 {
        font-size: 2rem !important;
    }
}

section:not(#home) {
    padding: 80px 0;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Light Mode Section Backgrounds */
#about {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

#skills {
    background: #ffffff;
    position: relative;
}

#experience {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

#certifications {
    background: #ffffff;
    position: relative;
}

#projects {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

#contact {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

/* Add subtle pattern overlay to sections */
#about::after,
#skills::after,
#experience::after,
#certifications::after,
#projects::after,
#contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.015) 1px, transparent 0);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.6;
}

/* Dark Mode Section Backgrounds */
body.dark #about,
body.dark #projects {
    background: linear-gradient(180deg, #151b2e 0%, #0a0e1a 100%);
}

body.dark #skills,
body.dark #experience,
body.dark #certifications,
body.dark #contact {
    background: linear-gradient(180deg, #0f1420 0%, #0a0e1a 100%);
}

/* Dark mode pattern overlay */
body.dark #about::after,
body.dark #skills::after,
body.dark #experience::after,
body.dark #certifications::after,
body.dark #projects::after,
body.dark #contact::after {
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    opacity: 0.3;
}

.skills-container {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.skills-marquee {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    flex-shrink: 0;
    animation: scroll 40s linear infinite;
}

.skills-container:hover .skills-marquee {
    animation-play-state: paused;
}

.marquee-reverse {
    animation-direction: reverse;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.skill-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--glass-background);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-pill:hover {
    transform: scale(1.05);
    color: white;
    border-color: transparent;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.skill-pill:hover i {
    color: white;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
    transform: translateX(-50%);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1rem;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 0 8px var(--background-secondary);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    box-shadow: 0 0 0 10px var(--background-secondary), 0 0 25px var(--gradient-end);
}

body.dark .timeline-dot {
    box-shadow: 0 0 0 8px var(--background-secondary);
}

.timeline-content {
    border-radius: 20px;
    padding: 32px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 1rem;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: var(--glass-background);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: var(--glass-background);
}

.project-card,
.cert-card {
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.accent-text {
    color: var(--accent-red);
}

body.dark .accent-text {
    color: var(--accent-orange);
}

/* FIXED: Form Input Styling */
.form-input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: var(--background-secondary);
    /* Use secondary for better contrast */
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 1;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(165, 28, 48, 0.2);
}

body.dark .form-input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 111, 49, 0.2);
}

@media (max-width: 768px) {
    nav {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none;
        padding: 12px 16px;
    }

    #mobileMenu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-primary);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    body.dark #mobileMenu {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    #mobileMenu .space-y-1 {
        padding: 8px 0;
    }

    #mobileMenu a {
        margin: 4px 12px;
        border-radius: 8px;
    }

    .timeline-line {
        left: 10px;
    }

    .timeline-dot {
        left: 10px;
    }

    .timeline-item {
        padding-left: 30px;
    }

    .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: var(--glass-background) !important;
        border-left-color: transparent !important;
    }

    section:not(#home) {
        padding: 80px 16px;
    }
}

/* Tablet responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    nav {
        padding: 14px 24px;
    }

    nav .hidden.md\:flex {
        gap: 0.5rem;
    }

    nav .hidden.md\:flex a {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 4px;
}

/* Typing cursor animation */
@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

#typed-text+span {
    animation: blink 1s infinite;
}

/* Stats badge in hero */
#home .inline-block {
    animation: slideDown 1s ease-out;
}

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

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

/* Gradient text - STATIC for performance */
#home h1 span {
    background-size: 100% auto;
}

/* Button icon animation */
#home a i {
    transition: transform 0.3s ease;
}

#home a:hover i {
    transform: translateX(5px);
}

#home a[href="#contact"]:hover i {
    transform: scale(1.2);
}

/* ============================================= */
/* ABOUT SECTION STYLES */
/* ============================================= */

/* Animated underline */
.about-underline {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
    border-radius: 2px;
    animation: expandWidth 1s ease-out forwards;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Story card animation */
.about-story-card {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

/* Stats card animation */
.about-stats-card {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* Paragraph hover effect */
.about-paragraph {
    transition: all 0.3s ease;
    padding-left: 1rem;
    border-left: 3px solid transparent;
}

.about-paragraph:hover {
    border-left-color: var(--accent-orange);
    padding-left: 1.5rem;
}

/* Quick facts cards */
.about-fact-card {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(165, 28, 48, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

body.dark .about-fact-card {
    background: rgba(255, 111, 49, 0.1);
}

.about-fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(165, 28, 48, 0.1), rgba(255, 111, 49, 0.1));
}

/* Stat bars */
.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateX(5px);
}

.stat-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
    border-radius: 10px;
    transition: width 2s ease-out;
    position: relative;
    animation: fillBar 2s ease-out forwards;
}

@keyframes fillBar {
    from {
        width: 0 !important;
    }
}

/* Interest tags */
.interest-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--glass-background);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.interest-tag:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(165, 28, 48, 0.3);
    border-color: transparent;
}

.interest-tag i {
    transition: transform 0.3s ease;
}

.interest-tag:hover i {
    transform: rotate(360deg);
}

/* Achievement cards */
.achievement-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.achievement-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(165, 28, 48, 0.4);
}

/* Counter animation */
.counter {
    transition: all 0.3s ease;
}

.achievement-card:hover .counter {
    transform: scale(1.1);
    color: var(--accent-red);
}

body.dark .achievement-card:hover .counter {
    color: var(--accent-orange);
}

/* Interests card animation */
.about-interests-card {
    animation: fadeInUp 1s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .about-story-card,
    .about-stats-card {
        animation: fadeInUp 0.8s ease-out;
    }

    .about-paragraph {
        padding-left: 0.5rem;
    }

    .about-paragraph:hover {
        padding-left: 1rem;
    }

    .achievement-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Experience underline */
.experience-underline {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
    border-radius: 2px;
    animation: expandWidth 1s ease-out forwards;
}

/* Modern Timeline Line - OPTIMIZED */
.timeline-line-modern {
    position: absolute;
    left: 2.5rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg,
            transparent 0%,
            var(--accent-red) 10%,
            var(--accent-orange) 90%,
            transparent 100%);
}

/* Experience Card */
.experience-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

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

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

.experience-card:nth-child(3) {
    animation-delay: 0.6s;
}

/* Experience Marker */
.experience-marker {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-orange);
    opacity: 0.7;
}

.marker-dot {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 10px 30px rgba(165, 28, 48, 0.4);
    transition: all 0.3s ease;
    z-index: 1;
}

.experience-card:hover .marker-dot {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 15px 40px rgba(165, 28, 48, 0.6);
}

/* Experience Content */
.experience-content {
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

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

.experience-card:hover .experience-content {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Experience Icon */
.experience-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(165, 28, 48, 0.1), rgba(255, 111, 49, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-red);
    transition: all 0.3s ease;
}

body.dark .experience-icon {
    color: var(--accent-orange);
}

.experience-card:hover .experience-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
}

/* Experience Date */
.experience-date {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(165, 28, 48, 0.1), rgba(255, 111, 49, 0.1));
    border-radius: 20px;
    font-weight: 600;
    color: var(--accent-red);
    font-size: 0.875rem;
    white-space: nowrap;
    margin-top: 0.5rem;
}

body.dark .experience-date {
    color: var(--accent-orange);
}

/* Experience Tags */
.experience-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--glass-background);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.experience-tag:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(165, 28, 48, 0.3);
    border-color: transparent;
}

.experience-tag i {
    transition: transform 0.3s ease;
}

.experience-tag:hover i {
    transform: scale(1.2);
}

/* Experience Stat Cards */
.experience-stat-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    transition: all 0.3s ease;
}

.experience-stat-card:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 10px 30px rgba(165, 28, 48, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .timeline-line-modern {
        display: none;
    }

    .experience-marker {
        width: 60px;
        height: 60px;
    }

    .marker-dot {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .experience-content {
        padding: 1.5rem !important;
    }

    .experience-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .experience-date {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .experience-tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .experience-card:hover .experience-content {
        transform: translateX(0);
    }

    .stat-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}


/* ============================================= */
/* CERTIFICATIONS SECTION STYLES */
/* ============================================= */

/* Certification underline */
.cert-underline {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
    border-radius: 2px;
    animation: expandWidth 1s ease-out forwards;
}

/* Certification Card */
.cert-card {
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

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

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

/* Certification Badge - OPTIMIZED */
.cert-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(165, 28, 48, 0.3);
}

/* Certification Logo */
.cert-logo-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: var(--glass-background);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.cert-card:hover .cert-logo-wrapper {
    transform: scale(1.1);
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(165, 28, 48, 0.2);
}

.cert-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Certification Title */
.cert-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Certification Issuer */
.cert-issuer {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Certification Tags */
.cert-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.cert-tag {
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, rgba(165, 28, 48, 0.1), rgba(255, 111, 49, 0.1));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-red);
    transition: all 0.3s ease;
}

body.dark .cert-tag {
    color: var(--accent-orange);
}

.cert-card:hover .cert-tag {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Certification Button */
.cert-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(165, 28, 48, 0.3);
    margin-top: auto;
}

.cert-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(165, 28, 48, 0.4);
}

.cert-button i {
    transition: transform 0.3s ease;
}

.cert-button:hover i {
    transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cert-card {
        padding: 1.25rem;
    }

    .cert-badge {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }

    .cert-logo-wrapper {
        width: 70px;
        height: 70px;
    }

    .cert-title {
        font-size: 1rem;
    }

    .cert-issuer {
        font-size: 0.8125rem;
    }

    .cert-tag {
        font-size: 0.6875rem;
        padding: 0.3rem 0.6rem;
    }

    .cert-button {
        font-size: 0.8125rem;
        padding: 0.625rem 1.25rem;
    }
}


/* ============================================= */
/* PROJECTS SECTION STYLES - REDESIGNED */
/* ============================================= */

/* Project underline */
.project-underline {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
    border-radius: 2px;
    animation: expandWidth 1s ease-out forwards;
}

/* Project Card - Modern Design */
.project-card {
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    background: var(--glass-background);
    border: 1px solid var(--border-color);
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(165, 28, 48, 0.25);
}

.project-card:hover::after {
    opacity: 1;
}

/* Project Image Wrapper - Enhanced */
.project-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(165, 28, 48, 0.05), rgba(255, 111, 49, 0.05));
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.project-card:hover .project-image {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(0.7);
}

/* Project Overlay - Redesigned */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(165, 28, 48, 0.95), rgba(255, 111, 49, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay i {
    font-size: 3.5rem;
    color: white;
    animation: projectIconPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

@keyframes projectIconPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Project Content - Enhanced Spacing */
.project-content {
    padding: 1.75rem;
    position: relative;
}

/* Project Category - Floating Badge */
.project-category {
    position: absolute;
    top: -14px;
    left: 1.75rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(165, 28, 48, 0.4);
    transition: all 0.3s ease;
}

.project-card:hover .project-category {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(165, 28, 48, 0.5);
}

/* Project Title - Bold & Modern */
.project-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.875rem;
    margin-top: 0.5rem;
    line-height: 1.3;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.project-card:hover .project-title {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(4px);
}

/* Project Description - Refined */
.project-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    min-height: 3.4rem;
}

/* Project Tech Badges - Pill Style */
.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.tech-badge {
    padding: 0.5rem 1rem;
    background: var(--background-secondary);
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-badge span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.project-card:hover .tech-badge {
    border-color: transparent;
    transform: translateY(-3px);
}

.project-card:hover .tech-badge::before {
    opacity: 1;
}

.project-card:hover .tech-badge span {
    color: white !important;
}

/* Staggered animation for tech badges */
.project-card:hover .tech-badge:nth-child(1) {
    transition-delay: 0.05s;
}

.project-card:hover .tech-badge:nth-child(2) {
    transition-delay: 0.1s;
}

.project-card:hover .tech-badge:nth-child(3) {
    transition-delay: 0.15s;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-card {
        border-radius: 20px;
    }

    .project-card::after {
        border-radius: 20px;
    }

    .project-image-wrapper {
        height: 200px;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-category {
        top: -12px;
        left: 1.5rem;
        padding: 0.4rem 0.875rem;
        font-size: 0.6875rem;
    }

    .project-title {
        font-size: 1.125rem;
        margin-top: 0.25rem;
    }

    .project-description {
        font-size: 0.875rem;
        min-height: auto;
    }

    .tech-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
    }

    .project-overlay i {
        font-size: 2.75rem;
    }

    .project-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}


/* ============================================= */
/* CONTACT SECTION STYLES */
/* ============================================= */

/* Contact underline */
.contact-underline {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
    border-radius: 2px;
    animation: expandWidth 1s ease-out forwards;
}

/* Contact Form Card */
.contact-form-card {
    transition: all 0.3s ease;
}

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

/* Contact Icon Wrapper */
.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

/* Form Group */
.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-label i {
    color: var(--accent-red);
}

body.dark .form-label i {
    color: var(--accent-orange);
}

/* Contact Submit Button */
.contact-submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(165, 28, 48, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(165, 28, 48, 0.4);
}

.contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(5px);
}

/* Contact Info Card */
.contact-info-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.contact-info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Info Icon */
.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(165, 28, 48, 0.1), rgba(255, 111, 49, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent-red);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

body.dark .contact-info-icon {
    color: var(--accent-orange);
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

/* Social Links */
.social-link {
    width: 45px;
    height: 45px;
    background: var(--glass-background);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(165, 28, 48, 0.3);
}

/* Availability Badge */
.availability-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border: 2px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.availability-badge:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.availability-dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {

    .contact-form-card,
    .contact-info-card {
        padding: 1.25rem;
    }

    .contact-icon-wrapper,
    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {

    .contact-form-card,
    .contact-info-card,
    .availability-badge {
        padding: 1rem;
    }

    .contact-icon-wrapper,
    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .form-label {
        font-size: 0.8125rem;
    }

    .contact-submit-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 0.9375rem;
    }

    .contact-info-card:hover {
        transform: translateX(0);
    }
}


/* ============================================= */
/* LENIS SMOOTH SCROLL ENHANCEMENTS */
/* ============================================= */

/* Smooth transitions for all elements */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize scroll performance - REMOVED will-change for better performance */

/* Smooth opacity transitions for sections */
section {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Prevent layout shift during scroll */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Smooth scroll indicator */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 5px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
}

/* Optimize animations for smooth scrolling */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: auto !important;
    }
}

/* Ensure smooth rendering - OPTIMIZED */
.glass-card,
.project-card,
.cert-card,
.experience-card {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* ============================================= */
/* RESOURCES PAGE STYLES */
/* ============================================= */

#resources {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    min-height: 100vh;
    position: relative;
}

body.dark #resources {
    background: linear-gradient(180deg, #151b2e 0%, #0a0e1a 100%);
}

/* Resource Card - Clean & Professional */
.resource-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-color);
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(165, 28, 48, 0.15);
    border-color: rgba(165, 28, 48, 0.2);
}

body.dark .resource-card:hover {
    box-shadow: 0 20px 50px rgba(255, 111, 49, 0.2);
    border-color: rgba(255, 111, 49, 0.3);
}

/* Icon Wrapper */
.resource-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Resource Icon - Simplified */
.resource-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(165, 28, 48, 0.1), rgba(255, 111, 49, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent-red);
    transition: all 0.4s ease;
}

body.dark .resource-icon {
    color: var(--accent-orange);
}

.resource-card:hover .resource-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    box-shadow: 0 8px 20px rgba(165, 28, 48, 0.3);
}

/* Card Title */
.resource-card h3 {
    transition: color 0.3s ease;
}

.resource-card:hover h3 {
    color: var(--accent-red);
}

body.dark .resource-card:hover h3 {
    color: var(--accent-orange);
}

/* Line Clamp for Description */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Resource Actions - Button Container */
.resource-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: auto;
}

/* Single action layout (only Read button) */
.resource-actions.single-action {
    grid-template-columns: 1fr;
}

/* Button Base Styles */
.resource-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Read Button */
.read-btn {
    background: transparent;
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
}

body.dark .read-btn {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.read-btn:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(165, 28, 48, 0.3);
}

body.dark .read-btn:hover {
    background: var(--accent-orange);
    box-shadow: 0 6px 20px rgba(255, 111, 49, 0.3);
}

/* Download Button */
.download-btn {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    box-shadow: 0 4px 15px rgba(165, 28, 48, 0.25);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(165, 28, 48, 0.4);
}

.download-btn:active {
    transform: translateY(0);
}

/* Button Icons */
.resource-btn i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.resource-btn:hover i {
    transform: scale(1.1);
}

/* ============================================= */
/* NOTES MODAL STYLES */
/* ============================================= */

.notes-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.notes-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when modal is active */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

html.modal-open {
    overflow: hidden !important;
}

.notes-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    cursor: pointer;
    z-index: 1;
}

.notes-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    background: var(--background-primary);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
    z-index: 2;
    overflow: hidden;
    pointer-events: auto;
}

.notes-modal.active .notes-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.notes-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.notes-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(165, 28, 48, 0.1);
    border: none;
    color: var(--accent-red);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

body.dark .notes-close-btn {
    background: rgba(255, 111, 49, 0.1);
    color: var(--accent-orange);
}

.notes-close-btn:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    transform: rotate(90deg);
}

.notes-modal-body {
    padding: 2rem;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.notes-content {
    color: var(--text-primary);
}

.notes-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.notes-content h1:first-child {
    margin-top: 0;
}

.notes-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.notes-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.notes-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.notes-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.notes-content ul,
.notes-content ol {
    color: var(--text-secondary);
    margin-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    padding-left: 0.5rem;
}

.notes-content ul {
    list-style-type: disc;
}

.notes-content ol {
    list-style-type: decimal;
}

.notes-content ul ul {
    list-style-type: circle;
    margin-top: 0.5rem;
}

.notes-content ol ol {
    list-style-type: lower-alpha;
    margin-top: 0.5rem;
}

.notes-content li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.notes-content li::marker {
    color: var(--accent-red);
}

body.dark .notes-content li::marker {
    color: var(--accent-orange);
}

.notes-content strong {
    color: var(--accent-red);
    font-weight: 600;
}

body.dark .notes-content strong {
    color: var(--accent-orange);
}

.notes-content em {
    font-style: italic;
    color: var(--text-primary);
}

/* Inline code styling */
.notes-content code {
    background: #f5f2f0;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.9em;
    color: #d73a49;
    font-weight: 600;
    border: 1px solid #e1e4e8;
    white-space: nowrap;
}

body.dark .notes-content code {
    background: #2d2d2d;
    color: #ff6b6b;
    border: 1px solid #444;
}

/* Code block styling - VS Code Dark+ Theme */
.notes-content pre {
    background: #1e1e1e;
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid #3e3e42;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Add language indicator bar */
.notes-content pre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #A51C30, #ff6f31);
}

body.dark .notes-content pre {
    background: #0d1117;
    border: 1px solid #30363d;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.notes-content pre code {
    background: none;
    padding: 0;
    color: #d4d4d4;
    font-size: 0.95em;
    line-height: 1.7;
    font-weight: 400;
    border: none;
    box-shadow: none;
    display: block;
    white-space: pre;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

body.dark .notes-content pre code {
    color: #e6e6e6;
}

/* Scrollbar for code blocks */
.notes-content pre::-webkit-scrollbar {
    height: 8px;
}

.notes-content pre::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.notes-content pre::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #A51C30, #ff6f31);
    border-radius: 4px;
}

.notes-content pre::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #c72340, #ff8547);
}

.notes-content blockquote {
    border-left: 4px solid var(--accent-red);
    padding-left: 1rem;
    margin: 1rem 0;
    color: var(--text-secondary);
    font-style: italic;
}

body.dark .notes-content blockquote {
    border-left-color: var(--accent-orange);
}

.notes-content a {
    color: var(--accent-red);
    text-decoration: underline;
    transition: color 0.2s ease;
}

body.dark .notes-content a {
    color: var(--accent-orange);
}

.notes-content a:hover {
    color: var(--accent-orange);
}

body.dark .notes-content a:hover {
    color: var(--accent-red);
}

.notes-content hr {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 1.5rem 0;
}

.notes-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.notes-content table th,
.notes-content table td {
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    text-align: left;
}

.notes-content table th {
    background: var(--background-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

.notes-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Scrollbar for modal */
.notes-modal-body::-webkit-scrollbar {
    width: 8px;
}

.notes-modal-body::-webkit-scrollbar-track {
    background: var(--background-secondary);
    border-radius: 10px;
}

.notes-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    border-radius: 10px;
}

/* Staggered Animation */
.resource-card:nth-child(1) {
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.resource-card:nth-child(2) {
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.resource-card:nth-child(3) {
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.resource-card:nth-child(4) {
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

.resource-card:nth-child(5) {
    animation: fadeInUp 0.5s ease-out 0.5s both;
}

.resource-card:nth-child(6) {
    animation: fadeInUp 0.5s ease-out 0.6s both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .resource-actions {
        grid-template-columns: 1fr;
    }
    
    .resource-btn {
        font-size: 0.8rem;
        padding: 0.7rem 0.9rem;
    }
    
    .notes-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .notes-modal-header {
        padding: 1.25rem 1.5rem;
    }
    
    .notes-modal-body {
        padding: 1.5rem;
    }
    
    .notes-content h3 {
        font-size: 1.1rem;
    }
}

/* ============================================= */
/* PAGINATION STYLES */
/* ============================================= */

#pagination {
    animation: fadeInUp 0.6s ease-out;
}

.pagination-btn {
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--glass-background);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pagination-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.pagination-btn:hover::before {
    width: 200%;
    height: 200%;
}

.pagination-btn:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(165, 28, 48, 0.3);
}

body.dark .pagination-btn:hover {
    box-shadow: 0 8px 20px rgba(255, 111, 49, 0.4);
}

.pagination-btn.active {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(165, 28, 48, 0.4);
    transform: scale(1.1);
}

body.dark .pagination-btn.active {
    box-shadow: 0 8px 25px rgba(255, 111, 49, 0.5);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-dots {
    color: var(--text-secondary);
    font-weight: bold;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
}

/* Pagination button icons */
.pagination-btn i {
    font-size: 0.875rem;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination-btn {
        min-width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
    
    #pagination {
        gap: 0.25rem;
    }
    
    #paginationButtons {
        gap: 0.25rem;
    }
}

/* ============================================= */
/* SEARCH BAR STYLES */
/* ============================================= */

.search-container {
    position: relative;
    width: 100%;
    animation: fadeInDown 0.6s ease-out;
}

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

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.125rem;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 3.5rem;
    border-radius: 16px;
    background: var(--glass-background);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 8px 24px rgba(165, 28, 48, 0.15), 
                0 0 0 4px rgba(165, 28, 48, 0.1);
    background: var(--background-primary);
}

body.dark .search-input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 24px rgba(255, 111, 49, 0.2), 
                0 0 0 4px rgba(255, 111, 49, 0.1);
}

.search-input:focus + .search-icon {
    color: var(--accent-red);
}

body.dark .search-input:focus + .search-icon {
    color: var(--accent-orange);
}

.clear-search-btn {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(165, 28, 48, 0.1);
    border: none;
    color: var(--accent-red);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

body.dark .clear-search-btn {
    background: rgba(255, 111, 49, 0.15);
    color: var(--accent-orange);
}

.clear-search-btn:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    color: white;
    transform: translateY(-50%) scale(1.1) rotate(90deg);
}

.clear-search-btn i {
    font-size: 0.875rem;
}

.search-results-info {
    margin-top: 1rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(165, 28, 48, 0.1), rgba(255, 111, 49, 0.1));
    border-radius: 12px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: none;
    animation: slideDown 0.3s ease-out;
    border: 1px solid rgba(165, 28, 48, 0.2);
}

body.dark .search-results-info {
    background: linear-gradient(135deg, rgba(255, 111, 49, 0.15), rgba(165, 28, 48, 0.15));
    border-color: rgba(255, 111, 49, 0.3);
}

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

/* Responsive search bar */
@media (max-width: 768px) {
    .search-input {
        padding: 0.875rem 3rem 0.875rem 3rem;
        font-size: 0.9rem;
    }
    
    .search-icon {
        left: 1rem;
        font-size: 1rem;
    }
    
    .clear-search-btn {
        right: 0.75rem;
        width: 28px;
        height: 28px;
    }
    
    .search-results-info {
        font-size: 0.875rem;
        padding: 0.625rem 1rem;
    }
}

/* ============================================= */
/* VERIFICATION BUTTON STYLES */
/* ============================================= */

.verification-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: white !important;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(165, 28, 48, 0.3);
    margin-bottom: 1rem;
}

.verification-btn::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 ease;
}

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

.verification-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(165, 28, 48, 0.5);
}

body.dark .verification-btn {
    box-shadow: 0 4px 15px rgba(255, 111, 49, 0.4);
}

body.dark .verification-btn:hover {
    box-shadow: 0 8px 25px rgba(255, 111, 49, 0.6);
}

.verification-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.verification-btn:hover .verification-btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(360deg);
}

.verification-btn-icon i {
    font-size: 1rem;
}

.verification-btn-text {
    flex: 1;
    letter-spacing: 0.3px;
}

.verification-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.verification-btn:hover .verification-btn-arrow {
    transform: translateX(5px);
}

.verification-btn-arrow i {
    font-size: 0.875rem;
}

/* Responsive verification button */
@media (max-width: 768px) {
    .verification-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    
    .verification-btn-icon {
        width: 24px;
        height: 24px;
    }
    
    .verification-btn-icon i {
        font-size: 0.875rem;
    }
}
