:root {
    --primary-bg: #0A192F;
    --secondary-bg: #112240;
    --accent-color: #00E5FF;
    --text-primary: #E6F1FF;
    --text-secondary: #8892B0;
    --border-color: #444;
    --bg-hover: #222;
    --accent-color-hover: #00FF9D;
    --surface-card: #1e2a3a;
    --surface-border: #334155;
    --surface-hover: #2a374a;
    --surface-ground: #233142;
    --text-color: #e0e6ed;
    --text-color-secondary: #a0aec0;
    --primary-color: #007bff;
    --primary-color-text: #fff;
    --primary-600: #0056b3;
    --container-padding-mobile: 20px;
    --container-padding-tablet: 40px;
    --container-padding-desktop: 60px;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Glassmorphism Nav */
.glass-nav {
    background: rgba(10, 25, 47, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

/* Navigation Link Hover Effects */
.navbar-nav .nav-link {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #fff;
    font-weight: 700;
}

/* Gradient Text */
.gradient-text {
    background: -webkit-linear-gradient(45deg, var(--accent-color), #00FF85);
    background: linear-gradient(45deg, var(--accent-color), #00FF85);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* Glowing Button */
.btn-glow {
    position: relative;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    padding: 12px 28px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-glow:hover {
    color: var(--primary-bg);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
}

.btn-glow:hover::before {
    width: 100%;
}

/* Outline Button */
.btn-outline-primary {
    color: var(--accent-color);
    background: transparent;
    border: 2px solid var(--accent-color);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-outline {
    color: white;
    background: transparent;
    border: 2px solid white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    background: transparent;
}
.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.btn-outline-primary:hover {
    color: var(--primary-bg);
    border-color: var(--accent-color);
    background: transparent;
}

.btn-outline-primary:hover::before {
    width: 100%;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-outline-primary:hover .fa-arrow-right {
    transform: translateX(5px);
}

.fa-arrow-right {
    transition: transform 0.3s ease;
}

/* CTA Buttons Container */
.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-glow,
    .btn-outline-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 85vh;
        padding-top: 15px;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    z-index: 1;
}

/* Canvas Styles */
.hero-canvas-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

#hero-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#hero-canvas-container canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}


/* Responsive Breakpoints */
@media (max-width: 1400px) {
    .container {
        padding-left: var(--container-padding-desktop);
        padding-right: var(--container-padding-desktop);
    }
    
    .hero-image-container {
        padding: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .container {
        padding-left: var(--container-padding-tablet);
        padding-right: var(--container-padding-tablet);
    }
    
    .hero-section {
        padding-top: 30px;
    }
}

@media (max-width: 992px) {
    .hero-image-container {
        padding: 1rem;
    }
    
    .ai-powered-badge {
        margin-bottom: -80px;
    }
    
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: var(--container-padding-mobile);
        padding-right: var(--container-padding-mobile);
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-image-container {
        padding: 0.5rem;
    }
    
    .ai-powered-badge {
        margin-top: 60px;
        transform: scale(0.9);
    }
    
    .hero-img {
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .hero-image-container {
        padding: 0.25rem;
    }
    
    .hero-img {
        max-width: 85%;
    }
    
    .ai-powered-badge {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .hero-img {
        max-width: 80%;
    }
    
    .ai-powered-badge {
        transform: scale(0.7);
        margin-top: 40px;
    }
}

/* Ensure text remains readable on small devices */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }
    
    .hero-img {
        max-width: 75%;
    }
}

/* Handle ultra-wide screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }
    
    .hero-image-container {
        max-width: 1400px;
        margin: 0 auto;
    }
}

/* Handle different aspect ratios */
@media (aspect-ratio: 16/9) {
    .hero-section {
        min-height: 90vh;
    }
}

@media (aspect-ratio: 21/9) {
    .hero-section {
        min-height: 85vh;
    }
}

/* Orientation specific adjustments */
@media (orientation: landscape) and (max-height: 600px) {
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-img {
        max-height: 60vh;
        width: auto;
    }
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -1px;
    position: relative;
    padding: 0.2rem 0.5rem;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    color: var(--text-primary);
    background: rgba(0, 229, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
    transition: all 0.3s ease;
}

.logo-text .accent {
    color: var(--accent-color);
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
}

.logo-full {
    position: absolute;
    left: 100%;
    margin-left: 10px;
    font-size: 1.6rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-brand:hover .logo-text {
    background: rgba(0, 229, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.navbar-brand:hover .logo-full {
    opacity: 1;
    transform: translateX(0);
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .logo-full {
        display: none;
    }
    .display-3 {
        font-size: 2.5rem;
    }
    .logo-text {
        font-size: 1.5rem;
        padding: 0.15rem 0.4rem;
    }
    
    .logo-text::after {
        width: 8px;
        height: 8px;
        bottom: -4px;
        right: -4px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
    }
}

/* Navbar Centering */
.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.social-icons {
    position: absolute;
    right: 60px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    padding: 0.35rem 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-top: -3px;
}
.language-switcher button {
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.language-switcher button:hover {
    color: #fff;
}

.language-switcher button.active {
    color: var(--accent-color);
    font-weight: bold;
}

.language-switcher .mx-2 {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 992px) {
    .navbar-nav {
        justify-content: flex-start;
    }
    
    .social-icons {
        position: relative;
        right: auto;
        margin-top: 15px;
        justify-content: center;
    }
    .language-switcher {
        margin-right: 0;
    }
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-left: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--primary-bg);
    transform: translateY(-3px);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.about-ai {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.ai-accent {
    color: var(--accent-color);
    font-weight: 500;
}

.about-content {
    margin-top: 2rem;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.typing-text {
    color: var(--accent-color);
    border-right: 2px solid var(--accent-color);
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% { border-right-color: transparent }
    50% { border-right-color: var(--accent-color) }
    100% { border-right-color: transparent }
}

.about-me {
    padding: 100px 0;
    background: var(--primary-bg);
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--accent-color), #00FF85);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 3rem;
}

.about-text .intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text .description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.skills-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.1);
}

.skill-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.skill-card h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.skill-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-section {
    padding: 100px 0px;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, rgba(0, 229, 255, 0) 70%);
    z-index: 0;
}

/* About Content */
.about-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    background: rgba(17, 34, 64, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.highlight-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.role-text {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.exp-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.exp-item:hover {
    transform: translateY(-5px);
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), #00FF85);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

.exp-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Skills Container */
.skills-container {
    position: relative;
    z-index: 1;
    padding: 30px;
    background: rgba(17, 34, 64, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.skills-container h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-bar {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 1rem;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #00FF85);
    border-radius: 4px;
    position: relative;
    width: 0;
    transition: width 1.5s ease;
}

.progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    animation: glowSlide 2s infinite;
}

@keyframes glowSlide {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(500%);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-content {
        margin-bottom: 40px;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-text {
        font-size: 1.5rem;
    }
    
    .role-text {
        font-size: 1.2rem;
    }
}

/* SANAD AI Chatbot Section */
.sanad-ai-section {
    padding: 100px 0;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.sanad-ai-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, rgba(0, 229, 255, 0) 70%);
    z-index: 0;
}

/* AI Features */
.ai-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}

@media (max-width: 992px) {
    .ai-features-list {
        gap: 25px;
        padding: 15px;
    }
    
    .ai-feature {
        padding: 20px;
    }
    
    .ai-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .ai-features-list {
        gap: 20px;
        padding: 10px;
    }
    
    .ai-feature {
        padding: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .ai-feature-icon {
        margin-bottom: 15px;
        margin-left: 90px;
    }
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ai-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--accent-color);
    font-size: 1.8rem;
}

.ai-feature-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.ai-feature-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Chatbot Container */
.chatbot-container {
    background: rgba(17, 34, 64, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: 500px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-primary);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chatbot-controls {
    display: flex;
    gap: 10px;
}

.chatbot-controls button {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.chatbot-controls button:hover {
    color: var(--accent-color);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.user-message {
    align-self: flex-end;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-bottom-right-radius: 4px;
}

.ai-message {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 4px;
}

.message-content p {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 5px;
    text-align: right;
}

.chat-input-container {
    display: flex;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px 20px;
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    border-color: var(--accent-color);
}

.send-btn {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

@media (max-width: 992px) {
    .ai-features-list {
        margin-bottom: 40px;
    }
    
    .chatbot-container {
        height: 400px;
    }
}

/* Web3 About Section */
.about-web3 {
    padding: 100px 0;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.about-web3::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, rgba(0, 229, 255, 0) 70%);
    z-index: 0;
}

.about-web3::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.05) 0%, rgba(0, 255, 133, 0) 70%);
    z-index: 0;
}

.web3-badge {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(0, 255, 133, 0.1));
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1rem;
    margin-left: 10px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    position: relative;
}

.web3-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-color), #00FF85);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Blockchain Visualization */
.blockchain-container {
    margin-bottom: 30px;
    position: relative;
}

.blockchain {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.blockchain::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), #00FF85);
}

.block {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 15px;
    margin-left: 50px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.block:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.block::before {
    content: attr(data-block);
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--accent-color);
    z-index: 1;
}

.block-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.block-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.block-hash {
    margin-top: 10px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: var(--accent-color);
    opacity: 0.7;
}

/* Web3 Bio */
.web3-bio {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.web3-bio p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.web3-bio p:first-child {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

/* Token Skills */
.web3-skills {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.web3-skills h3 {
    margin-bottom: 25px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.web3-skills h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #00FF85);
    border-radius: 3px;
}

.token-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.token-item {
    display: flex;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.token-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), #00FF85);
}

.token-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.token-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.token-info {
    flex: 1;
}

.token-info h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.token-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.token-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #00FF85);
    border-radius: 4px;
    transition: width 1.5s ease;
}

.token-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.token-details span {
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Animation for blocks */
@keyframes blockAppear {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.block {
    opacity: 0;
    animation: blockAppear 0.5s ease forwards;
}

.block:nth-child(1) { animation-delay: 0.1s; }
.block:nth-child(2) { animation-delay: 0.3s; }
.block:nth-child(3) { animation-delay: 0.5s; }
.block:nth-child(4) { animation-delay: 0.7s; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .web3-profile {
        margin-bottom: 40px;
    }
}

/* Particle Background */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--accent-color);
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

/* Enhanced Block Styles */
.block {
    position: relative;
    overflow: hidden;
}

.block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, rgba(0, 229, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.block:hover::after {
    opacity: 1;
}

/* Token Item Glow Effect */
.token-item {
    position: relative;
}

.token-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.2) 0%, rgba(0, 229, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.token-item:hover::after {
    opacity: 1;
}

/* Animated Web3 Badge */
.web3-badge {
    position: relative;
    overflow: hidden;
}

.web3-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(0, 229, 255, 0) 0%,
        rgba(0, 229, 255, 0.1) 50%,
        rgba(0, 229, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Animated Token Progress */
.token-progress {
    position: relative;
    overflow: hidden;
}

.token-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(300%);
    }
}

/* 3D About Section */
.about-3d {
    padding: 100px 0;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.about-3d::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, rgba(0, 229, 255, 0) 70%);
    z-index: 0;
}

.about-3d::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 255, 133, 0.05) 0%, rgba(0, 255, 133, 0) 70%);
    z-index: 0;
}

/* 3D Profile Card */
.profile-3d-container {
    position: relative;
    perspective: 1000px;
    height: 100%;
    z-index: 1;
}

.profile-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    transform: rotateY(5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.profile-card:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-avatar {
    margin-right: 20px;
}

.avatar-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.profile-title {
    margin: 0;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.profile-body p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.profile-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #00FF85);
    opacity: 0.1;
    filter: blur(10px);
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    left: -30px;
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 50px;
    right: -20px;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: 30px;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: -40px;
    left: 30%;
}

/* 3D Skills */
.skills-3d-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.skills-3d-container h3 {
    margin-bottom: 30px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
}

.skills-3d-container h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #00FF85);
    border-radius: 3px;
}

/* Skill Orbs */
.skill-orbs-container {
    height: 200px;
    position: relative;
    margin-bottom: 40px;
    perspective: 1000px;
}

.skill-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: orbitRotate 20s linear infinite;
}

.skill-orb {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    color: var(--primary-bg);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    transform-style: preserve-3d;
}

.main-orb {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #00FF85);
    font-size: 1.5rem;
    z-index: 2;
}

.orbit-orb {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.8);
    font-size: 0.9rem;
    transform: rotateY(calc(var(--orbit-angle))) translateZ(120px);
}

@keyframes orbitRotate {
    0% {
        transform: translate(-50%, -50%) rotateY(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateY(360deg);
    }
}

/* Skill Bars */
.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-bar-item {
    width: 100%;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #00FF85);
    border-radius: 4px;
    width: 0;
    transition: width 1.5s ease;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .profile-3d-container {
        margin-bottom: 40px;
    }
    
    .profile-card {
        transform: none !important;
    }
}

/* Skill Graph */
.skill-graph-container {
    height: 250px;
    position: relative;
    margin-bottom: 40px;
}

.skill-graph {
    position: relative;
    width: 100%;
    height: 100%;
}

.skill-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + var(--node-x, 0px)), calc(-50% + var(--node-y, 0px)));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.8);
    color: var(--primary-bg);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.skill-node:hover {
    transform: translate(calc(-50% + var(--node-x, 0px)), calc(-50% + var(--node-y, 0px))) scale(1.2);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.main-node {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #00FF85);
    font-size: 1.5rem;
    z-index: 3;
}

#skill-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Skills Radar Chart */
.skills-radar-container {
    height: 300px;
    position: relative;
    margin-bottom: 40px;
}

.radar-chart {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#skills-radar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.radar-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.radar-center-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #00FF85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-bg);
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    position: relative;
}

.radar-center-circle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(0, 229, 255, 0.3);
    animation: pulse 2s infinite;
}

.radar-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.radar-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(calc(var(--label-angle))) translateX(var(--label-distance)) rotate(calc(-1 * var(--label-angle)));
    background: rgba(17, 34, 64, 0.8);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-primary);
    white-space: nowrap;
    border: 1px solid rgba(0, 229, 255, 0.2);
    pointer-events: auto;
    transition: all 0.3s ease;
}

.radar-label:hover {
    background: rgba(0, 229, 255, 0.2);
    transform: translate(-50%, -50%) rotate(calc(var(--label-angle))) translateX(calc(var(--label-distance) + 10px)) rotate(calc(-1 * var(--label-angle)));
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* AI About Section */
.about-ai {
    padding: 100px 0;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

/* Neural Network Background */
.neural-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

/* AI Profile Card */
.ai-profile-container {
    position: relative;
    z-index: 1;
}

.ai-profile-card {
    background: rgba(17, 34, 64, 0.6);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ai-profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #00FF85);
}

/* Profile Header */
.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.profile-image-container {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-right: 20px;
    border: 2px solid rgba(0, 229, 255, 0.3);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 255, 133, 0.1));
    mix-blend-mode: overlay;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 229, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
    animation: scanAnimation 2s linear infinite;
}

@keyframes scanAnimation {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}

.profile-title h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.profile-title .role {
    margin: 5px 0 0;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Profile Metrics */
.profile-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.metric-item {
    display: flex;
    align-items: center;
}

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 229, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Profile Bio */
.profile-bio {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
}

.profile-bio p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Profile Actions */
.profile-actions {
    display: flex;
    gap: 10px;
}

/* AI Skills Container */
.ai-skills-container {
    background: rgba(17, 34, 64, 0.6);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    height: 100%;
}

/* Skills Header */
.skills-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.skills-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Skills Tabs */
.skills-tabs {
    display: flex;
    gap: 10px;
}

.skill-tab {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 20px;
    padding: 8px 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skill-tab:hover {
    background: rgba(0, 229, 255, 0.1);
    color: var(--text-primary);
}

.skill-tab.active {
    background: rgba(0, 229, 255, 0.2);
    color: var(--accent-color);
}

/* Skills Content */
.skills-content {
    position: relative;
}

.skill-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.skill-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Circular Skills (Design Tab) */
.circular-skills {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.circular-skill {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.circular-progress {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
}

.circular-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.progress-fill {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1.5s ease;
}

.circular-progress-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.circular-skill-name {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Development Skills (Dev Tab) */
.dev-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.dev-skill-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 15px;
}

.dev-skill-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(0, 229, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.dev-skill-info {
    flex: 1;
}

.dev-skill-info h4 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: var(--text-primary);
}

.dev-skill-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.dev-skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #00FF85);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .ai-profile-container {
        margin-bottom: 30px;
    }
    
    .profile-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .circular-skills {
        justify-content: center;
    }
    
    .dev-skills-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-header {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-stack {
        flex-wrap: wrap;
        justify-content: center;
    
    }
    
    .experience-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* About Section Styles */
.about-section {
    padding: 100px 0px;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

/* About Card */
.about-card {
    background: rgba(17, 34, 64, 0.6);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-header {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
    margin-bottom: 25px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.about-intro h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-intro .role {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin: 0;
}

.about-description {
    margin-top: 2rem;
}

.description-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

.description-option {
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.description-option:hover {
    background: rgba(0, 229, 255, 0.1);
    color: var(--text-primary);
}

.description-option.active {
    background: rgba(0, 229, 255, 0.2);
    color: var(--accent-color);
}

.description-option i {
    font-size: 1.1rem;
}

.description-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
}

.accordion-header {
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 10px;
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-title {
    flex: 1;
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accordion-arrow {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 1.2rem;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 1.2rem 1.2rem;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-icon {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.accordion-text {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .description-selector {
        gap: 0.5rem;
        padding: 0.3rem;
    }
    
    .description-option {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-header {
        padding: 1rem;
    }
    
    .accordion-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 1rem;
    }
    
    .accordion-title {
        font-size: 1rem;
    }
    
    .accordion-content {
        padding: 0 1rem;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 1rem 1rem;
    }
    
    .accordion-text {
        font-size: 0.9rem;
    }
}

/* Tech Stack */
.tech-stack {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tech-item {
    width: 90px;  /* Increased width */
    height: 90px; /* Reduced height */
    margin: 30px 10px;
    margin-bottom: -10px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 15px;
    color: var(--accent-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-item a {
    width: 100%;
    height: 100%;
    display: flex;
    color: var(--accent-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Reduced gap between icon and text */
    text-decoration: none;
}

.tech-item::before {
    content: attr(data-tech);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 229, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.2);
}

.tech-item:hover::before {
    opacity: 1;
    top: -30px;
}

/* Add these new styles */
.tech-label {
    display: block;
    font-size: 0.8rem;
    margin-top: 5px;
    color: var(--text-secondary);
    
}

.tech-item a {
    text-decoration: none;
    text-align: center;
}

/* Skills Card */
.skills-card {
    background: rgba(17, 34, 64, 0.6);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skills-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skills-header h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
}

.skill-filter {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    background: rgba(0, 229, 255, 0.1);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.skill-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.skill-item.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.skill-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #00FF85);
    border-radius: 4px;
    position: relative;
    width: 0;
    transition: width 1.5s ease;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: glowSlide 2s infinite;
}

@keyframes glowSlide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(1000%);
    }
}

.experience-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom:-15px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--accent-color), #00FF85);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .skills-card {
        margin-bottom: 1.5rem;
    }
    
    .skills-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .skill-filter {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .experience-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .filter-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* 3D Background Canvas */
.about-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

/* Update about-section to accommodate the canvas */
.about-section {
    position: relative;
    overflow: hidden;
}

/* Ensure content stays above canvas */
.about-section .container {
    position: relative;
    z-index: 1;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Project Categories */
.project-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-pill {
    padding: 12px 24px;
    border-radius: 30px;
    background: var(--secondary-bg);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-pill i {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.category-pill:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.2);
}

.category-pill.active {
    background: var(--accent-color);
    color: var(--primary-bg);
}

.category-pill.active i {
    color: var(--primary-bg);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Project Card */
.project-card {
    background: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.project-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.preview-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .preview-image img {
    transform: scale(1.05);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .preview-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--text-primary);
}

.view-text {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.project-card:hover .view-text {
    opacity: 1;
    transform: translateY(0);
}

.project-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.project-brief {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.project-metrics {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.metric i {
    color: var(--accent-color);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .preview-image,
    .blog-image {
        height: 250px;
    }
    
    .project-info {
        padding: 1rem;
    }
    
    .project-info h3 {
        font-size: 1.25rem;
    }
    
    .project-metrics {
        gap: 1rem;
    }
    
    .metric {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* Project Modal */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.98);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.project-modal.active {
    display: block;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 95%;
    max-width: 1400px;
    margin: 40px auto;
    background: linear-gradient(
        135deg,
        rgba(26, 41, 66, 0.98),
        rgba(17, 34, 64, 1)
    );
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 229, 255, 0.15);
}

.project-modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.15);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.modal-close:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: rotate(90deg);
}

/* Modal Content Styles */
.modal-body {
    margin-top: 20px;
}

.project-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.project-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.project-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--accent-color), #00FF85);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0, 229, 255, 0.2);
}

.project-gallery {
    margin: 40px 0;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.project-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.detail-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.detail-section:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
}

.detail-section h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-section h3 i {
    font-size: 1.6rem;
    background: linear-gradient(45deg, var(--accent-color), #00FF85);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.tech-tag {
    padding: 8px 16px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--accent-color);
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

.project-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.project-link {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.project-link.live {
    background: var(--accent-color);
    color: var(--primary-bg);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.project-link.github {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.2);
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        padding: 25px;
        margin: 20px auto;
    }

    .project-header h2 {
        font-size: 2.2rem;
    }

    .detail-section {
        padding: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-links {
        flex-direction: column;
        align-items: stretch;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Featured Projects Grid */
.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

/* Project Card Styles */
.project-card {
    background: linear-gradient(
        to bottom,
        rgba(26, 41, 66, 0.95),
        rgba(17, 34, 64, 0.98)
    );
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    cursor: pointer;
}

.project-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-preview {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.project-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.project-card:hover .project-preview img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 229, 255, 0.2),
        rgba(17, 34, 64, 0.9)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card:hover .preview-overlay {
    opacity: 1;
}

/* Project Info Styles */
.project-info {
    padding: 25px;
    background: rgba(26, 41, 66, 0.5);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.tag {
    padding: 6px 14px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-color);
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.project-info h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 600;
}

.project-brief {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.view-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 25px;
    background: rgba(0, 229, 255, 0.2);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.project-card:hover .view-text {
    transform: translateY(0);
}

/* Certifications Section */
.certifications-section {
    padding: 100px 0;
    background: linear-gradient(
        to bottom,
        var(--primary-bg),
        rgba(17, 34, 64, 1)
    );
    position: relative;
    overflow: hidden;
}

.certifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            circle at 80% 20%,
            rgba(0, 229, 255, 0.1) 0%,
            rgba(0, 229, 255, 0.01) 30%,
            transparent 70%
        );
    z-index: 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.certification-card {
    background: linear-gradient(
        145deg,
        rgba(26, 41, 66, 0.9),
        rgba(17, 34, 64, 0.95)
    );
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.certification-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.certification-logo {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    height: 310px;

}

.certification-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.certification-card:hover .certification-logo img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.certification-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.certification-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}

.certification-issuer {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.certification-date {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.certification-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.certification-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.skill-tag {
    padding: 5px 12px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--accent-color);
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.credential-link {
    align-self: flex-start;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.credential-link:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .certification-content h3 {
        font-size: 1.2rem;
    }
    
    .certification-description {
        font-size: 0.9rem;
    }
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(
        to right,
        rgba(10, 25, 47, 0.95),
        rgba(17, 34, 64, 0.95)
    );
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            circle at 20% 50%,
            rgba(0, 229, 255, 0.1) 0%,
            rgba(0, 229, 255, 0.01) 30%,
            transparent 70%
        );
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

/* Certifications Page */
.certifications-page {
    padding: 80px 0;
    background: var(--primary-bg);
}

/* Footer */
.footer {
    background: rgba(10, 25, 47, 0.98);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .col-lg-4 {
        margin-bottom: 30px;
    }
}

/* New Feature Button - Clean Implementation */
.new-feature-button {
    display: inline-block;
    margin-bottom: 20px;
}

.btn-new-feature {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 30px;
    color: var(--text-primary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-new-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 229, 255, 0) 0%,
        rgba(0, 229, 255, 0.1) 50%,
        rgba(0, 229, 255, 0) 100%
    );
    transform: translateX(-100%);
    transition: transform 1s ease;
}

.btn-new-feature:hover {
    background: rgba(0, 229, 255, 0.15);
    color: var(--accent-color);
    border-color: rgba(0, 229, 255, 0.5);
}

.btn-new-feature:hover::before {
    transform: translateX(100%);
}

.btn-new-feature i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-new-feature:hover i {
    transform: translateX(4px);
}

/* Windsurf-style button */
.windsurf-button {
    display: inline-block;
    margin-bottom: 20px;
}

.windsurf-button a {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 229, 255, 0.5);
    border-radius: 30px;
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.windsurf-button a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 15%;
    width: 70%;
    height: 1px;
    background: var(--accent-color);
    box-shadow: 0 0 8px 1px var(--accent-color);
}

.windsurf-button a:hover {
    background: rgba(0, 0, 0, 0.7);
}

.windsurf-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.windsurf-button a:hover i {
    transform: translateX(4px);
}

/* AI Powered Badge */
.ai-powered-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.ai-powered-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 229, 255, 0) 0%,
        rgba(0, 229, 255, 0.1) 50%,
        rgba(0, 229, 255, 0) 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.ai-icon {
    margin-right: 8px;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ai-icon i {
    font-size: 1rem;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(
            circle at 80% 20%,
        rgba(0, 229, 255, 0.1) 0%,
            rgba(0, 229, 255, 0.01) 30%,
        transparent 70%
    );
    z-index: 0;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media (max-width: 992px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.blog-card {
    background: rgba(17, 34, 64, 0.5);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 229, 255, 0.2);
}

.blog-image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 229, 255, 0.8);
    color: var(--primary-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .blog-image {
        height: 180px;
    }
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-content h3 {
        font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #fff;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Page Styles */
.blog-page {
    padding: 80px 0;
    background: var(--primary-bg);
}

.blog-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-filter {
    background: rgba(17, 34, 64, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-filter:hover, .category-filter.active {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-color);
    border-color: rgba(0, 229, 255, 0.3);
}

/* Pagination Styles */
.blog-pagination .page-link {
    background: rgba(17, 34, 64, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    margin: 0 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-color);
    border-color: rgba(0, 229, 255, 0.3);
}

.blog-pagination .page-item.active .page-link {
    background: var(--accent-color);
    color: var(--primary-bg);
    border-color: var(--accent-color);
}

.blog-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-categories {
        overflow-x: auto;
        padding-bottom: 15px;
        justify-content: flex-start;
    }
    
    .category-filter {
        white-space: nowrap;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(
        135deg,
        var(--primary-bg) 0%,
        var(--secondary-bg) 100%
    );
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 50px;
}

/* Contact Info Panel */
.contact-info-panel {
    position: relative;
}

.info-card {
    background: rgba(17, 34, 64, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.info-header {
    text-align: center;
    margin-bottom: 40px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    margin-top: -15px;
    position: relative;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.profile-pic1 {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
}

.profile-pic1 img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}


.info-list {
    margin: 40px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.info-item:hover {
    transform: translateX(10px);
    background: rgba(0, 229, 255, 0.05);
}

.icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-color);
    font-size: 1.2rem;
}

.info-content h4 {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.info-content a,
.info-content p {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-5px);
    background: var(--accent-color);
    color: var(--primary-bg);
}

/* Contact Form Panel */
.contact-form-panel {
    background: rgba(17, 34, 64, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(0, 229, 255, 0.05);
}

.submit-button {
    width: 100%;
    padding: 15px 30px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 30px;
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-2px);
}

.button-icon {
    display: inline-flex;
    transition: transform 0.3s ease;
    
}

.submit-button:hover .button-icon {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-wrapper {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-form-panel {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .info-card,
    .contact-form-panel {
        padding: 30px 20px;
    }
    
    .info-item {
        padding: 12px;
    }
    
    .icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-pic1{
        width: 100px;
        height: 100px;
    }
    
    .info-header h3 {
        font-size: 1.3rem;
    }
    
    .submit-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Animated Background */
.contact-section {
    position: relative;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.03;
    animation: pulseAndRotate 15s infinite;
}

.bg-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.bg-circle:nth-child(2) {
    width: 500px;
    height: 500px;
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.bg-circle:nth-child(3) {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
}

.bg-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    height: 2px;
    width: 100%;
    opacity: 0.05;
    animation: moveLine 8s linear infinite;
}

.bg-line:nth-child(1) {
    top: 20%;
    animation-delay: 0s;
}

.bg-line:nth-child(2) {
    top: 60%;
    animation-delay: -4s;
}

@keyframes pulseAndRotate {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.02;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.05;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 0.02;
    }
}

@keyframes moveLine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Update contact wrapper to work with background */
.contact-wrapper {
    position: relative;
    z-index: 1;
}

/* Footer Styles */
.footer-section {
    position: relative;
    padding: 80px 0 30px;
    background: var(--secondary-bg);
    overflow: hidden;
    border-top: none; /* Remove any existing border */
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(0, 229, 255, 0.1) 0%,
        rgba(0, 229, 255, 0.05) 25%,
        transparent 50%);
    animation: particleMove 20s linear infinite;
}

.glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(0, 229, 255, 0.03) 0%,
        transparent 70%
    );
    animation: rotate 30s linear infinite;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo-container {
    margin-bottom: 15px;
}

.tagline {
    color: #ffffff;
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before,
.footer-services ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li:hover {
    color: var(--accent-color);
    padding-left: 20px;
}

.footer-links ul li a:hover::before,
.footer-services ul li:hover::before {
    opacity: 1;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-management {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.footer-management p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

.copyright p {
    color: #ffffff;
    font-size: 0.9rem;
}

@keyframes particleMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-management {
        order: 1;
        margin-bottom: 15px;
    }
    
    .copyright {
        order: 2;
    }
    
    .footer-bottom .social-links {
        order: 3;
    }
}

/* Footer Top Border */
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-color),
        transparent
    );
    box-shadow: 
        0 0 10px rgba(0, 229, 255, 0.5),
        0 0 20px rgba(0, 229, 255, 0.3),
        0 0 30px rgba(0, 229, 255, 0.1);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 1;
        box-shadow: 
            0 0 10px rgba(0, 229, 255, 0.5),
            0 0 20px rgba(0, 229, 255, 0.3),
            0 0 30px rgba(0, 229, 255, 0.1);
    }
    50% {
        opacity: 0.6;
        box-shadow: 
            0 0 15px rgba(0, 229, 255, 0.6),
            0 0 30px rgba(0, 229, 255, 0.4),
            0 0 45px rgba(0, 229, 255, 0.2);
    }
}

/* Image Modal Styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-modal.active .image-modal-content {
    transform: scale(1);
    opacity: 1;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 229, 255, 0.15);
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 255, 0.15);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-close:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .image-modal-content {
        max-width: 95%;
    }

    .image-modal-close {
        top: -50px;
        right: 0;
    }
}

/* Project Category and Description */
.project-category {
    padding: 1.2rem 1.5rem;
    background: rgba(0, 229, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.project-card:hover .project-category {
    background: rgba(0, 229, 255, 0.08);
}

.category-label {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.category-value {
    color: var(--text-primary);
    font-size: 0.9rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.project-card:hover .category-value {
    opacity: 1;
    color: #fff;
}

.project-description {
    padding: 1.5rem;
    background: rgba(17, 34, 64, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover .project-description {
    background: rgba(17, 34, 64, 0.8);
}

.project-description p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s ease;
}

.project-card:hover .project-description p {
    color: var(--text-primary);
}

/* Update existing project card styles */
.project-card {
    background: rgba(17, 34, 64, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.preview-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .preview-image img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .project-category {
        padding: 1rem 1.2rem;
    }
    
    .project-description {
        padding: 1.2rem;
    }
    
    .project-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .category-label,
    .category-value {
        font-size: 0.85rem;
    }
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.expertise-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 20px;
}

.expertise-card {
    height: 400px;
    perspective: 1500px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.expertise-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-front {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
}

.card-back {
    background: linear-gradient(
        145deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.8) 100%
    );
    transform: rotateY(180deg);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: static;
    transform: none;
}

.expertise-card:hover .expertise-icon {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

@media (max-width: 768px) {
    .expertise-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 1.5rem auto;
    }
}

@media (max-width: 480px) {
    .expertise-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin: 1rem auto;
    }
}

.card-front h4,
.card-back h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-front p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.expertise-details {
    width: 100%;
    margin: 1.5rem 0;
}

.skills-list,
.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.skill-tag,
.tool-tag {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-color);
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover,
.tool-tag:hover {
    background: rgba(0, 229, 255, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .expertise-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem; 
    }
    
    .expertise-card {
        min-height: 450px;
        margin-top: 0.8rem; 
    }
}

@media (max-width: 768px) {
    .expertise-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 2.5rem auto 0; /* Adjusted for mobile */
    }
}

.expertise-section {
  padding: 100px 0;
  background: var(--bg-gradient);
  position: relative;
  overflow: hidden;
}

.expertise-section::before {
  content: '';
  position: absolute;
  z-index: 1;
}

.expertise-section .container {
  position: relative;
  z-index: 2;
}

.expertise-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 20px;
  margin-top: 3rem;
}

.expertise-card {
  height: 400px;
  perspective: 1500px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.expertise-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 2rem;
  background: rgba(17, 34, 64, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-front {
  background: linear-gradient(
    145deg,
    rgba(17, 34, 64, 0.8) 0%,
    rgba(17, 34, 64, 0.6) 100%
  );
}

.card-back {
  background: linear-gradient(
    145deg,
    rgba(17, 34, 64, 0.9) 0%,
    rgba(17, 34, 64, 0.8) 100%
  );
  transform: rotateY(180deg);
}

.expertise-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.1) rotate(-5deg);
}

.card-front h4,
.card-back h4 {
  color: var(--text-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-front p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.expertise-details {
  width: 100%;
  margin: 1.5rem 0;
}

.skills-list,
.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.skill-tag,
.tool-tag {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--accent-color);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  transition: all 0.3s ease;
}

.skill-tag:hover,
.tool-tag:hover {
  background: rgba(0, 229, 255, 0.15);
  transform: translateY(-2px);
}

.learn-more-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
  color: white;
  text-decoration: none;
}

.learn-more-btn i {
  transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 1200px) {
  .expertise-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .expertise-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .expertise-card {
    height: 350px;
  }
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.skill-tag {
    padding: 0.4rem 0.8rem;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fallIn 0.5s ease forwards;
}

.skill-tag:nth-child(1) { animation-delay: 0.1s; }
.skill-tag:nth-child(2) { animation-delay: 0.2s; }
.skill-tag:nth-child(3) { animation-delay: 0.3s; }
.skill-tag:nth-child(4) { animation-delay: 0.4s; }
.skill-tag:nth-child(5) { animation-delay: 0.5s; }

@keyframes fallIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.tool-tag {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    animation: floatInSpace 4s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-tag i {
    font-size: 1.8rem;
    z-index: 1;
    transition: all 0.3s ease;
}

.tool-tag::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 229, 255, 0.2), transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

.tool-tag::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 70% 70%, rgba(0, 229, 255, 0.1), transparent 70%);
    animation: glowPulse 3s ease-in-out infinite reverse;
}

.tool-tag:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.tool-tag:hover i {
    transform: scale(1.2);
}

/* Brand Colors */
.tool-tag.figma i { 
    color: #F24E1E;
    animation-delay: 0s;
}

.tool-tag.adobe i { 
    color: #FF61F6;
    animation-delay: 0.5s;
}

.tool-tag.framer i { 
    color: #00FF9D;
    animation-delay: 1s;
}

.tool-tag.tensorflow i {
    color: #FF6F00;
    animation-delay: 0.2s;
}

.tool-tag.pytorch i {
    color: #EE4C2C;
    animation-delay: 0.4s;
}

.tool-tag.openai i {
    color: #10A37F;
    animation-delay: 0.6s;
}

.tool-tag.react i {
    color: #61DAFB;
    animation-delay: 0.8s;
}

.tool-tag.nodejs i {
    color: #339933;
    animation-delay: 1s;
}

.tool-tag.aws i {
    color: #FF9900;
    animation-delay: 1.2s;
}

.tool-tag.strategy i {
    color: #00E5FF;
    animation-delay: 1.4s;
}

.tool-tag.analytics i {
    color: #FF00E5;
    animation-delay: 1.6s;
}

.tool-tag.agile i {
    color: #00FF9D;
    animation-delay: 1.8s;
}

@keyframes floatInSpace {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes glowPulse {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.1);
    }
    50% {
        border-color: rgba(255, 255, 255, 0.3);
    }
}

.tool-tag.agile i {
    color: #FF6B6B;
}

.tool-tag.sketch i { 
    color: #F7B500;
}

.tool-tag.invision i { 
    color: #FF3366;
}

.tool-tag.scikit i { 
    color: #F7931E;
}

.tool-tag.pandas i { 
    color: #150458;
}

.tool-tag.docker i { 
    color: #2496ED;
}

.tool-tag.git i { 
    color: #F34F29;
}

.tool-tag.tableau i { 
    color: #E97627;
}

.tool-tag.powerbi i { 
    color: #F2C811;
}

@keyframes floatInSpace {

}

.expertise-details {
  padding: 1.5rem;
  text-align: center;
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.tool-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tool-tag i {
  z-index: 1;
  transition: all 0.3s ease;
}

.tool-tag.powerbi i { 
  color: #F2C811;
}

.tool-tag.zeplin i { 
  color: #FDBD00;
}

.tool-tag.miro i { 
  color: #FF5A5F;
}

.tool-tag.keras i { 
  color: #D00000;
}

.tool-tag.jupyter i { 
  color: #F37626;
}

.tool-tag.numpy i { 
  color: #013243;
}

.tool-tag.python i { 
  color: #3776AB;
}

.tool-tag.angular i { 
  color: #DD0031;
}

.tool-tag.vue i { 
  color: #4FC08D;
}

.tool-tag.jira i { 
  color: #0052CC;
}

.tool-tag.confluence i { 
  color: #172B4D;
}

.tool-tag.trello i { 
  color: #0079BF;
}

@keyframes floatInSpace {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.certification-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 1rem;
}



.certification-issuer {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 500;
}

.certification-date {
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.certification-date i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.certification-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0.5rem 0;
    flex-grow: 1;
}

.certification-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.skill-tag {
    padding: 0.4rem 0.8rem;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--accent-color);
    border: 1px solid rgba(0, 229, 255, 0.15);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(0, 229, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.1);
}

.credential-link {
    align-self: flex-start;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 20px;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 229, 255, 0.15);
    margin-top: 20px;
}

.credential-link:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.2);
}

.credential-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.credential-link:hover i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .certification-content h3 {
        font-size: 1.2rem;
    }
    
    .certification-issuer {
        font-size: 0.95rem;
    }
    
    .certification-description {
        font-size: 0.9rem;
    }
    
    .skill-tag {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .credential-link {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Form and Interactive Elements Responsive Styles */

/* Form Elements Base Styles */
.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(0, 229, 255, 0.05);
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.1);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Button Base Styles */
.btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .form-control {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    .form-grid {
        gap: 1.25rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .form-control {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .btn {
        width: 100%;
        padding: 10px 16px;
    }
}

/* Modal Responsive Styles */
.modal {
    padding: 2rem;
    max-width: 90%;
    width: 600px;
}

@media (max-width: 768px) {
    .modal {
        padding: 1.5rem;
        margin: 1rem;
        max-height: 90vh;
        overflow-y: auto;
    }
}

@media (max-width: 576px) {
    .modal {
        padding: 1rem;
        margin: 0.5rem;
    }
}

/* Navigation Menu Responsive */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Hide regular menu */
    }
    
    .mobile-menu {
        display: block; /* Show mobile menu trigger */
    }
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    z-index: 1000;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Touch-friendly Adjustments */
@media (hover: none) {
    /* Enhance touch targets */
    .btn,
    .nav-link,
    .form-control {
        min-height: 44px; /* Minimum touch target size */
    }
    
    /* Remove hover effects */
    .btn:hover,
    .nav-link:hover {
        transform: none;
    }
}

/* High DPI Screen Adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Sharper borders */
    .form-control,
    .btn,
    .card {
        border-width: 0.5px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.beta-badge {
  display: inline-flex;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #150458 0%, #013243 80%);
  font-weight: 600;
  border-radius: 30px;
  font-size: 1.3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: float 3s ease-in-out infinite;
  margin-left: 30rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.beta-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shine 2s infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: var(--primary-bg); /* Or a slightly different background if needed */
}

.service-card {
  background-color: var(--secondary-bg);
  border: 1px solid var(--surface-border);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%; /* Ensure cards have equal height */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1; /* Allows paragraph to take up available space */
}

.service-list {
  list-style: none;
  padding: 0;
  text-align: left;
  width: 100%;
  margin-top: auto; /* Push the list to the bottom */
}

.service-list li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.service-list li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 0.9rem;
}

.service-list li:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for Service Cards */
@media (max-width: 768px) {
  .service-card {
    padding: 25px;
  }

  .service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .service-card h3 {
    font-size: 1.6rem;
  }

  .service-list li {
    padding-left: 18px;
  }

  .service-list li i {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .service-card {
    padding: 20px;
  }

  .service-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .service-card h3 {
    font-size: 1.4rem;
  }

  .service-list li {
    padding-left: 15px;
    margin-bottom: 8px;
  }

  .service-list li i {
    font-size: 0.7rem;
  }
}

/* Who I Help Section */
.who-i-help-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.help-card {
    background: rgba(17, 34, 64, 0.6);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.help-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--accent-color);
}

.help-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.help-card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Consulting Services Section */
.consulting-services-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.consulting-services-section .service-card {
    background: rgba(17, 34, 64, 0.6);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.consulting-services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-color);
}

.consulting-services-section .service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--accent-color);
}

.consulting-services-section .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.consulting-services-section .service-card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .help-card, .consulting-services-section .service-card {
        padding: 20px;
    }

    .help-icon, .consulting-services-section .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .help-card h3, .consulting-services-section .service-card h3 {
        font-size: 1.3rem;
    }
}

/* Custom Hero Styles (replacing Tailwind) */
.hero-container {
    display: flex;
    min-height: 60vh;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-bg);
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    margin: 0 auto;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    max-width: 100%;
}

.hero-text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-text-center {
        max-width: 100%;
        padding: 0 1rem;
    }
}

.hero-badge {
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-title-block {
    display: block;
}

.hero-title-line {
    display: block;
    margin-bottom: 0.25rem;
}


.hero-subtitle {
    margin-top: 0.5rem;
    margin-bottom: 1rem ;
    color: var(--text-primary);
}

.hero-highlight {
    position: relative;
    margin-top: 0.75rem;
    white-space: nowrap;
    color: #3b82f6;
}

.hero-svg {
    position: absolute;
    top: 75%;
    left: 0;
    right: 0;
    margin: auto;
    height: .68em;
    width: fit-content;
    fill: rgba(236, 72, 153, 0.5);
}

.hero-highlight-text {
    position: relative;
}

.hero-description {
    margin-top: 1.5rem;
    max-width: 45rem;
    font-size: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.5;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-buttons {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 10;
}

.hero-button-primary {
    border-radius: 0.375rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.hero-btn-primary {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border: 1px solid transparent;
    background-color: #2563eb;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.hero-btn-primary:hover {
    background-color: #1d4ed8;
    color: white;
    text-decoration: none;
}

.hero-button-secondary {
    margin-top: 0.75rem;
}

.hero-btn-secondary {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    border: 1px solid var(--surface-border);
    background-color: var(--surface-card);
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.hero-btn-secondary:hover {
    background-color: var(--surface-hover);
    color: var(--text-primary);
    text-decoration: none;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-content {
        margin-top: 2rem;
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        margin-top: 0.75rem;
        font-size: 1.25rem;
    }

    .hero-buttons {
        margin-top: 1.5rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    .hero-button-secondary {
        margin-top: 0;
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .hero-content {
        margin-top: 2.5rem;
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        margin-top: 1rem;
        font-size: 1.375rem;
        max-width: 40rem;
    }
    
    .hero-btn-primary {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    .hero-btn-secondary {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        margin-top: 3rem;
        padding: 0 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.5rem;
        max-width: 45rem;
    }
}

@media (min-width: 1280px) {
    .hero-title-block {
        display: inline;
    }
    
    .hero-content {
        margin-top: 3.5rem;
        padding: 0 3rem;
    }
}

/* Mobile-first responsive adjustments */
@media (max-width: 639px) {
    .hero-content {
        margin-top: 1rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1.125rem;
        margin-top: 1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero-highlight {
        white-space: normal;
    }
    
    .hero-svg {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin-top: 0.5rem;
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-top: 0.75rem;
    }
    
    .hero-buttons {
        margin-top: 1.25rem;
        gap: 0.5rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .hero-badge {
        margin-bottom: 0.75rem;
        transform: scale(0.9);
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.375rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Discount Popup Styles */
.discount-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.discount-popup.active {
  display: flex;
  opacity: 1;
}

.discount-popup-content {
  background: linear-gradient(135deg, #1a2a3a 0%, #2a3a4a 100%);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.7);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.3);
}

.discount-popup.active .discount-popup-content {
  transform: scale(1);
}

.discount-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px 0;
  position: relative;
}

.discount-badge {
  background: linear-gradient(45deg, var(--accent-color), #00FF85);
  color: var(--primary-bg);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: pulse 2s infinite;
}

.discount-badge i {
  font-size: 16px;
}

.discount-popup-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discount-popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transform: rotate(90deg);
}

.discount-popup-body {
  padding: 20px 25px 25px;
  text-align: center;
}

.discount-icon {
  font-size: 60px;
  color: var(--accent-color);
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

.discount-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--accent-color), #00FF85);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.discount-description {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.discount-description strong {
  color: var(--accent-color);
  font-weight: 600;
}

.discount-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 25px;
}

.discount-offer {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.discount-percentage {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.discount-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
}

.discount-validity {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.discount-validity i {
  color: var(--accent-color);
}

.discount-services {
  text-align: left;
  margin-bottom: 25px;
}

.discount-services h4 {
  color: var(--text-primary);
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}

.discount-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.discount-services li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 15px;
  margin-bottom: 10px;
  padding: 8px 0;
}

.discount-services li i {
  color: var(--accent-color);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.discount-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.discount-btn-primary {
  background: linear-gradient(45deg, var(--accent-color), #00FF85);
  color: var(--primary-bg);
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.discount-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.4);
  color: var(--primary-bg);
  text-decoration: none;
}

.discount-btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--text-secondary);
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.discount-btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(0, 229, 255, 0.1);
}

.discount-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.discount-footer p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.discount-footer strong {
  color: var(--accent-color);
  font-weight: 600;
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 229, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .discount-popup-content {
    width: 95%;
    margin: 20px;
  }
  
  .discount-popup-body {
    padding: 15px 20px 20px;
  }
  
  .discount-title {
    font-size: 24px;
  }
  
  .discount-icon {
    font-size: 50px;
  }
  
  .discount-details {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .discount-percentage {
    font-size: 40px;
  }
  
  .discount-actions {
    gap: 10px;
  }
  
  .discount-btn-primary,
  .discount-btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .discount-popup-content {
    width: 98%;
    margin: 10px;
  }
  
  .discount-popup-header {
    padding: 15px 20px 0;
  }
  
  .discount-popup-body {
    padding: 15px 15px 20px;
  }
  
  .discount-title {
    font-size: 22px;
  }
  
  .discount-description {
    font-size: 14px;
  }
  
  .discount-services li {
    font-size: 14px;
  }
}

/* Notification Styles */
.discount-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, var(--accent-color), #00FF85);
  color: var(--primary-bg);
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.3);
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  max-width: 350px;
  font-weight: 500;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notification-content i {
  font-size: 18px;
  color: var(--primary-bg);
}

.notification-close {
  background: none;
  border: none;
  color: var(--primary-bg);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-left: auto;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .discount-notification {
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(-100px);
  }
  
  .discount-notification.show {
    transform: translateY(0);
  }
}