:root {
    --primary-color: #ff004f;
    --bg-color: #000000;
    --second-bg-color: #111111;
    --text-color: #ffffff;
    --text-secondary: #b3b3b3;
    --header-font: 'Montserrat', sans-serif;
    --body-font: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--body-font);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--second-bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
}

.cursor2 {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

span {
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-symbol {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
    font-family: var(--header-font);
    letter-spacing: -1px;
    border: 2px solid rgba(255, 0, 79, 0.3);
    box-shadow: 0 0 15px rgba(255, 0, 79, 0.2);
    overflow: hidden;
}

/* Rotating decorative ring */
.logo-symbol::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    animation: rotate-logo 4s linear infinite;
    box-sizing: content-box;
    /* Ensure border is outside */
}

@keyframes rotate-logo {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.logo-img-small {
    height: 40px;
    width: 40px;
    object-fit: cover;
    border-radius: 50%;
    /* Circle shape to hide boxy background */
    border: 2px solid var(--primary-color);
}

.logo-name {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 700;
    font-family: var(--header-font);
    letter-spacing: 1px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
    display: flex;
    /* Ensure button aligns center */
    align-items: center;
}

.nav-links a {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Hero Section */
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    /* Offset for fixed navbar */
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

/* Hero Text Styles */
.hero h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--header-font);
    line-height: 1.1;
    margin-bottom: 15px;
}

/* Glitch Name Effect */
.glitch-name {
    position: relative;
    color: #fff;
}

.glitch-name::before,
.glitch-name::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.glitch-name::before {
    left: 2px;
    text-shadow: -1px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-name::after {
    left: -2px;
    text-shadow: -1px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    20% {
        clip: rect(65px, 9999px, 80px, 0);
    }

    40% {
        clip: rect(10px, 9999px, 90px, 0);
    }

    60% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    80% {
        clip: rect(5px, 9999px, 30px, 0);
    }

    100% {
        clip: rect(70px, 9999px, 60px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(10px, 9999px, 50px, 0);
    }

    20% {
        clip: rect(80px, 9999px, 10px, 0);
    }

    40% {
        clip: rect(30px, 9999px, 20px, 0);
    }

    60% {
        clip: rect(70px, 9999px, 90px, 0);
    }

    80% {
        clip: rect(20px, 9999px, 50px, 0);
    }

    100% {
        clip: rect(90px, 9999px, 10px, 0);
    }
}

.hero h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-color);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeUp 0.8s forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shine Button */
.shine-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.shine-btn::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: 0.5s;
    z-index: -1;
}

.shine-btn:hover::before {
    left: 100%;
}

.shine-btn i {
    margin-left: 8px;
    transition: 0.3s;
}

.shine-btn:hover i {
    transform: translateX(5px);
}

/* Hero Image & Tooltip */
.hero-image {
    position: relative;
    flex: 0 0 auto;
}

.github-profile-link {
    display: block;
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    padding: 5px;
    /* Border space */
    background: linear-gradient(45deg, var(--primary-color), transparent);
    box-shadow: 0 0 30px rgba(255, 0, 79, 0.3);
    transition: 0.5s ease;
}

.github-profile-link img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--second-bg-color);
    /* Inner border */
    transition: 0.5s ease;
}

.github-profile-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 0, 79, 0.6);
}

.github-profile-link:hover img {
    filter: brightness(1.1);
}

/* Tooltip */
.github-profile-link::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
    pointer-events: none;
}

.github-profile-link::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border: 8px solid transparent;
    border-bottom-color: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.github-profile-link:hover::after,
.github-profile-link:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Responsive adjustment for Hero */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        margin-bottom: 20px;
    }

    .github-profile-link {
        width: 250px;
        height: 250px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 1;
    font-family: var(--header-font);
}

/* Buttons */
.buttons a {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
    margin-right: 20px;
    border: 2px solid var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 10px var(--primary-color);
}

/* Section Common */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    font-family: var(--header-font);
    font-weight: 700;
}

section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

section.show {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    background: var(--second-bg-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: serif;
    font-weight: bold;
    pointer-events: none;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.about-img {
    flex: 1;
    max-width: 300px;
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.about-img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    z-index: -1;
    transition: 0.3s;
}

.about-img:hover img {
    transform: translateY(-5px);
}

.about-img:hover::after {
    top: 10px;
    left: 10px;
}

.about-text {
    flex: 2;
    max-width: 600px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
}

/* Classical Quote Style */
.about-text .highlight {
    font-style: italic;
    color: #fff;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
    margin: 20px 0;
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.skill-card {
    background: var(--second-bg-color);
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 0, 79, 0.2);
}

.skill-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.skill-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Projects Section */
.projects {
    background: var(--second-bg-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--bg-color);
    height: 300px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--bg-color), var(--second-bg-color));
    z-index: 1;
}

.project-info {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    transition: 0.5s;
    opacity: 0;
    transform: translateY(50px);
}

.project-card:hover .project-info {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    border-color: var(--primary-color);
}

.project-card:hover::before {
    opacity: 0.8;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    font-size: 0.8rem;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.info-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.5rem;
}

.social-links {
    margin-top: 40px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 10px var(--primary-color);
}

.contact-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    background: var(--second-bg-color);
    color: var(--text-color);
    border-radius: 5px;
    font-family: var(--body-font);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    background: var(--second-bg-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--second-bg-color);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
        animation: slideIn 0.3s ease;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-bg-text {
        font-size: 20vw;
    }

    .contact-wrapper {
        flex-direction: column;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Background Neuro Canvas */
#neuro-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: transparent;
    /* Or a dark fallback if needed */
}

/* --- Contact Section --- */
.contact {
    background: var(--bg-color);
    padding: 100px 0;
}

/* --- Premium Contact Section --- */

.contact-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.contact-card {
    background: rgba(22, 27, 34, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    max-width: 450px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(240, 148, 51, 0.2);
    border-color: rgba(240, 148, 51, 0.5);
}

/* Logo Styling */
.card-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.card-logo .logo-symbol {
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.card-logo .logo-symbol span {
    color: var(--primary-color);
}

.card-logo .logo-name {
    font-size: 1.2rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-top: 5px;
    font-family: 'Poppins', sans-serif;
}

/* Profile Pic Container with Instagram Gradient Ring */
.profile-frame {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    padding: 4px;
    /* Thickness of the gradient ring */
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.3);
    position: relative;
}

.profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #161b22;
    /* Matches card bg to create 'gap' */
    background-color: #000;
    display: block;
}

/* Instagram Text */
.insta-handle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.connect-text {
    color: #8b949e;
    font-size: 1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Button */
.social-links.centered {
    display: flex;
    justify-content: center;
}

.social-links .insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
    width: auto;
    /* Override generic rigid width */
    height: auto;
    /* Override generic rigid height */
    border: none;
    /* Remove generic border */
}

.social-links .insta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(220, 39, 67, 0.5);
    filter: brightness(1.1);
}

.insta-btn i {
    font-size: 1.4rem;
}

/* Hero Canvas for Background Effect */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    /* Allow mouse interaction */
}

/* Ensure hero content stays on top */
.hero-content {
    z-index: 3;
    /* Increased to ensure it's above canvas */
}

.hero-bg-text {
    z-index: 2;
    /* Within canvas but behind content */
}

/* Styling for the new logo images in Contact and Navbar */

/* Styling for the new logo images in Contact and Navbar */

.logo-img-small {
    height: 45px;
    /* Slightly larger to show detail */
    width: 45px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: #000;
}

/* Specific style for Contact Card Logo */
.contact-logo-img {
    width: 80px;
    /* Bigger for contact card */
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    background-color: #000;
    border: 2px solid rgba(255, 0, 79, 0.5);
    box-shadow: 0 0 20px rgba(255, 0, 79, 0.3);
}

/* Login Benefits Section */
.login-benefits {
    background: var(--bg-color);
    position: relative;
    padding-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 79, 0.1), transparent);
    opacity: 0;
    transition: 0.4s;
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.benefit-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.benefit-card:hover .icon-box {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 20px var(--primary-color), 0 0 50px var(--primary-color);
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
    font-family: var(--header-font);
    letter-spacing: 0.5px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Highlight specific cards for variety if needed */
.highlight-card {
    border-style: dashed;
}