/* Modern Dark Theme Portfolio with Glowing Effects */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
  background: rgba(57, 149, 255, 1);   /* Background color of the highlight */
  color: white;        /* Text color when selected */
}

:root {
    /* Clean Blue Theme Color Palette */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-primary: #58a6ff;
    --accent-secondary: #4a9eff;
    --accent-cyan: #6cb6ff;
    --accent-purple: #7c3aed;
    --accent-yellow: #fbbf24;
    --glow-green: rgba(88, 166, 255, 0.5);
    --glow-pink: rgba(74, 158, 255, 0.5);
    --glow-cyan: rgba(108, 182, 255, 0.5);
    --glass-bg: rgba(17, 17, 17, 0.8);
    --glass-border: rgba(88, 166, 255, 0.3);
    
    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Source Sans Pro', sans-serif;
    
    /* Effects */
    --blur-strength: 15px;
    --blue-glow: 0 0 20px rgba(88, 166, 255, 0.6), 0 0 40px rgba(88, 166, 255, 0.4), 0 0 60px rgba(88, 166, 255, 0.2);
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Clean blue background with animated grid */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Animated blue grid */
        linear-gradient(rgba(88, 166, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 166, 255, 0.08) 1px, transparent 1px),
        /* Floating blue orbs */
        radial-gradient(circle at 20% 20%, rgba(74, 158, 255, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(108, 182, 255, 0.2) 2px, transparent 2px),
        radial-gradient(circle at 60% 40%, rgba(88, 166, 255, 0.15) 1px, transparent 1px),
        /* Background glow */
        radial-gradient(circle at 30% 70%, rgba(88, 166, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(74, 158, 255, 0.05) 0%, transparent 50%);
    background-size: 
        100px 100px, 100px 100px,
        300px 300px, 400px 400px, 250px 250px,
        800px 800px, 600px 600px;
    animation: cyber-grid 15s linear infinite, blue-pulse 3s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes cyber-grid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

@keyframes blue-pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Ensure all sections have proper z-index to appear above the global pattern */
section {
    position: relative;
    z-index: 1;
}

/* Additional z-index for section content to ensure visibility */
.section-header,
.about-content,
.experience-content,
.education-content,
.certifications-content,
.smartdocs-content,
.services-grid,
.projects-grid,
.contact-content {
    position: relative;
    z-index: 2;
}

/* Scrollbar Styling - GitHub Copilot Theme */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 10px;
    box-shadow: 0 0 10px var(--glow-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(88, 166, 255, 0.8), rgba(74, 158, 255, 0.8));
}

/* NAVIGATION - Neon Cyber Style */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--accent-primary);
    box-shadow: 0 0 20px var(--glow-green);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar:hover {
    border-bottom-color: var(--accent-secondary);
    box-shadow: 0 0 30px var(--glow-pink);
}

.nav-logo .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    filter: drop-shadow(0 0 10px var(--accent-primary));
}

.nav-logo .logo-image:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px var(--accent-secondary));
}

.nav-logo .profile-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-primary);
    box-shadow: 
        0 0 20px var(--glow-primary),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo .profile-photo:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 30px var(--glow-primary),
        0 0 0 3px rgba(88, 166, 255, 0.3);
}

.nav-options {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-options li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.55rem 1.3rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: linear-gradient(45deg, transparent, rgba(88, 166, 255, 0.1));
    border: 1px solid transparent;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-options li a:hover {
    color: var(--accent-primary);
    background: linear-gradient(45deg, rgba(88, 166, 255, 0.2), rgba(74, 158, 255, 0.1));
    border-color: var(--accent-primary);
    box-shadow: var(--blue-glow);
    transform: translateY(-2px);
}

.nav-options li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px currentColor;
}

.nav-options li a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(88, 166, 255, 0.2);
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px var(--glow-primary);
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 6px var(--glow-primary);
}

.mobile-menu-toggle.active {
    background: rgba(248, 81, 73, 0.1);
    border-color: var(--accent-pink);
}

.mobile-menu-toggle.active .hamburger-line {
    background: var(--accent-pink);
    box-shadow: 0 0 8px rgba(248, 81, 73, 0.5);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO SECTION - Blue Theme Design */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 2rem 2rem;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    background: radial-gradient(circle at 30% 20%, rgba(88, 166, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(74, 158, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(108, 182, 255, 0.1) 0%, transparent 70%);
}

/* Animated blue grid pattern */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(88, 166, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(88, 166, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    opacity: 0.6;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* @keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(1deg); }
    66% { transform: translateY(15px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
} */

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 3;
    position: relative;
    padding: 0 2rem 0 0;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, 
        var(--text-primary) 0%, 
        var(--accent-primary) 50%,
        var(--accent-secondary) 100%
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(88, 166, 255, 0.5);
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: textGlow 3s ease-in-out infinite;
    pointer-events: none;
}

/* @keyframes textGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
} */

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    position: relative;
    text-shadow: 0 0 20px currentColor;
}

/* Enhanced typing animation effect */
.hero-content h2::after {
    content: '';
    color: var(--accent-primary);
    animation: blink 1s infinite;
    margin-left: 5px;
    font-weight: 300;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.2rem;
    /* color: var(--text-secondary); */
    color: rgba(255, 253, 253, 0.903);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
    opacity: 0.9;
    position: relative;
}

.hero-description::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 2px;
    box-shadow: 0 0 10px currentColor;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--neon-glow);
    border: 1px solid var(--accent-primary);
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-cyan));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(88, 166, 255, 0.4);
    border-color: var(--accent-secondary);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

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

.hero-image {
    width: 340px;
    height: 340px;
    border-radius: 20px;
    object-fit: cover;
    position: relative;
    border: 3px solid var(--accent-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(88, 166, 255, 0.3),
        0 0 40px rgba(88, 166, 255, 0.2),
        inset 0 0 20px rgba(88, 166, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(88, 166, 255, 0.1), transparent);
    animation: imageRotate 10s linear infinite;
    pointer-events: none;
}

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

.hero-image:hover {
    transform: translateY(-10px) scale(1.05) rotate(2deg);
    border-color: var(--accent-secondary);
    box-shadow: 
        0 30px 80px rgba(88, 166, 255, 0.4),
        0 0 60px rgba(74, 158, 255, 0.3),
        inset 0 0 30px rgba(88, 166, 255, 0.2);
}

/* Clean section styling with neon accents */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    transform: translateX(-50%);
    box-shadow: 0 0 10px currentColor;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(88, 166, 255, 0.3);
    position: relative;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 50px;
    height: 1px;
    background: var(--accent-primary);
    transform: translateX(-50%);
    box-shadow: 0 0 5px currentColor;
}

/* ABOUT SECTION - Blue Theme Style */
.about-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.05), rgba(74, 158, 255, 0.05));
    margin: 0;
    position: relative;
    border-top: 1px solid rgba(88, 166, 255, 0.2);
    border-bottom: 1px solid rgba(74, 158, 255, 0.2);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(88, 166, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 158, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 0rem;
    line-height: 1.8;
    position: relative;
    padding: 1.5rem;
    background: rgba(88, 166, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(88, 166, 255, 0.2);
    box-shadow: 0 10px 30px rgba(88, 166, 255, 0.1);
}

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

.skill-item {
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.1), rgba(74, 158, 255, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--accent-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(88, 166, 255, 0.2);
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.skill-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(88, 166, 255, 0.1), transparent);
    animation: skillRotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.skill-item:hover::before {
    opacity: 0.15;
}

.skill-item:hover::after {
    opacity: 1;
}

.skill-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--blue-glow);
    border-color: var(--accent-secondary);
}

.skill-item h4 {
    font-family: var(--font-heading);
    color: var(--accent-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px currentColor;
    font-weight: 600;
}

.skill-item p {
    color: var(--text-secondary);
    margin: 0;
    position: relative;
    z-index: 2;
}

.resume-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-pink));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: 1px solid var(--accent-primary);
}

.resume-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--glow-pink);
    color: var(--text-primary);
}

/* Experience Section - Blue Theme Card Design */
.experience-section {
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.03), rgba(74, 158, 255, 0.03));
    padding: 4rem 2rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-top: 1px solid rgba(88, 166, 255, 0.2);
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(88, 166, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(74, 158, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.experience-item {
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.1), rgba(74, 158, 255, 0.05));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--accent-primary);
    box-shadow: 0 10px 30px rgba(88, 166, 255, 0.2);
    overflow: hidden;
    cursor: pointer;
}

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

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

.experience-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-secondary);
    box-shadow: var(--blue-glow);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.experience-header h3 {
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 3px currentColor;
}

.experience-period {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid var(--accent-primary);
    box-shadow: 0 5px 15px rgba(88, 166, 255, 0.3);
    text-transform: uppercase;
}

.experience-company {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.company-name {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

.company-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
}

.company-location::before {
    content: '📍';
    margin-right: 0.5rem;
    filter: hue-rotate(120deg);
}

.experience-description {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-description li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.experience-description li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.experience-description li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

/* Container */
.glow-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #0d0d15; /* Dark background for glow to pop */
  overflow: hidden;
}

/* Centered radial glow */
/* .center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(128, 80, 255, 0.8) 0%, rgba(40, 30, 80, 0.2) 60%, transparent 100%);
  filter: blur(120px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
} */

/* Star field */
.star-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(white 1px, transparent 1px),
    radial-gradient(white 1px, transparent 1px);
  /* background-size: 300px 300px, 200px 200px, 400px 400px; */
  background-size: 200px 200px, 80px 80px, 120px 120px;
  background-position: 0 0, 100px 50px, 200px 150px;
  opacity: 0.2;
  animation: star-fade 5s infinite ease-in-out alternate;
  z-index: 2;
  pointer-events: none;
}

/* Stars twinkle effect */
@keyframes star-fade {
  0% { opacity: 0.2; }
  100% { opacity: 0.5; }
}

/* Education Section - Clean Modern Design */
.education-section {
    background: linear-gradient(90deg, rgba(88, 166, 255, 0.2), rgba(74, 158, 255, 0.03));
    padding: 4rem 2rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.education-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    gap: 2rem;
}

.education-item {
    background: linear-gradient(90deg, rgb(79, 159, 250), rgba(74, 158, 255, 0));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(88, 166, 255, 0.1);
}

.education-item:hover {
    transform: translateY(-4px);
    border-color: rgba(88, 166, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.education-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.education-header h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.education-grade {
    color: var(--primary-glow);
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(121, 192, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(121, 192, 255, 0.2);
}

.education-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.institution {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

.period {
    color: white;
    font-size: 0.9rem;
    font-style: italic;
}

/* SmartDocs Section */
.smartdocs-section {
    padding: 3rem 2rem;
    background: transparent;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.05), rgba(74, 158, 255, 0.05));
}

/* Certifications Section - Modern Grid */
.certifications-section {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.certifications-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.certification-item {
    background: rgba(33, 38, 45, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 166, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}

.certification-item:hover {
    /* transform: translateY(-4px);
    background-color: rgba(33, 38, 45, 0.85);
    border-color: rgba(88, 166, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); */
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-secondary);
    box-shadow: var(--blue-glow);
}

.certification-item h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.8rem 0;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.cert-provider {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.cert-provider::before {
    content: '🏆';
    font-size: 1rem;
    opacity: 0.8;
}

.cert-link {
    color: var(--accent-primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.cert-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.cert-link:hover {
    background: rgba(88, 166, 255, 0.2);
    border-color: var(--accent-primary);
    transform: translateX(2px);
    box-shadow: 0 4px 12px rgba(88, 166, 255, 0.2);
}

.cert-link:hover::after {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .certifications-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .certification-item {
        padding: 1.5rem;
        min-height: 140px;
    }
    
    .certification-item h3 {
        font-size: 1.1rem;
    }
}

.smartdocs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at 10% 30%, var(--glow-primary) 0%, transparent 100%); */
    z-index: 1;
}

.smartdocs-section .section-header {
    position: relative;
    z-index: 2;
}

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

.smartdocs-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.video-placeholder {
    background: var(--bg-card);
    border: 2px dashed var(--accent-primary);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    color: var(--text-secondary);
    box-shadow: 0 10px 30px var(--glow-primary);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--glow-primary);
    border: 2px solid var(--accent-primary);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 13px;
}

.smartdocs-details h3 {
    font-family: var(--font-heading);
    color: var(--accent-primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.smartdocs-details p {
    color: rgb(193, 193, 194);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.smartdocs-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    color: var(--accent-secondary);
    font-weight: 600;
}

.case-study-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-primary));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px var(--glow-pink);
    transition: all 0.3s ease;
}

.case-study-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--glow-pink);
    color: var(--text-primary);
}

.smartdocs-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.smartdocs-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px var(--glow-blue);
    transition: all 0.3s ease;
}

.smartdocs-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--glow-blue);
    color: var(--text-primary);
}

/* SERVICES SECTION - Modern Card Grid */
.services-section {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(33, 38, 45, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(88, 166, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-secondary);
    box-shadow: var(--blue-glow);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-family: var(--font-heading);
    color: var(--accent-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}
/* PROJECTS SECTION - Modern Project Cards */
.projects-section {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
}

.projects-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(33, 38, 45, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(88, 166, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-secondary);
    box-shadow: var(--blue-glow);
}

.project-card h3 {
    font-family: var(--font-heading);
    color: var(--accent-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    font-size: 0.95rem;
}

.project-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--accent-primary);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.project-btn:hover {
    background: var(--accent-secondary);
    transform: translateY(-1px);
    color: var(--text-primary);
}
/* CONTACT SECTION - Modern Clean Design */
.contact-section {
    padding: 4rem 2rem;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(33, 38, 45, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(88, 166, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    border-color: rgba(88, 166, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-primary);
    border-radius: 8px;
    color: white;
}

.contact-item h4 {
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    padding: 0.75rem 1.25rem;
    background: rgba(33, 38, 45, 0.8);
    color: var(--accent-primary);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(88, 166, 255, 0.1);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.social-link:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(-1px);
    border-color: var(--accent-primary);
}

.contact-form {
    background: rgba(33, 38, 45, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(88, 166, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
    background: var(--accent-secondary);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(88, 166, 255, 0.3);
}

.submit-btn:disabled {
    background: var(--text-secondary);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

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

.submit-btn:hover:not(:disabled)::before {
    left: 100%;
}

#msg {
    margin-top: 1rem;
    color: var(--accent-primary);
    text-align: center;
    font-weight: 600;
    padding: 0.8rem;
    border-radius: 8px;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.2);
    animation: fadeIn 0.3s ease-out;
}

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

/* FOOTER */
.footer {
    background: var(--bg-secondary);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(108, 92, 231, 0.2);
}

.footer-content p {
    color: var(--text-secondary);
    margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-options {
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 0 2rem;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        z-index: 999;
    }
    
    .nav-options.active {
        max-height: 100vh;
        padding: 5rem 2rem 3rem;
    }
    
    .nav-options li {
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-options.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-options.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-options.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-options.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-options.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-options.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-options.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-options.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-options.active li:nth-child(8) { transition-delay: 0.45s; }
    
    .nav-options li a {
        display: block;
        padding: 1.2rem 1.5rem;
        border-radius: 12px;
        text-align: left;
        background: transparent;
        margin-bottom: 0.8rem;
        border: 1px solid transparent;
        font-size: 1.1rem;
        position: relative;
        overflow: hidden;
    }
    
    .nav-options li a:hover {
        background: var(--glass-bg);
        border-color: var(--glass-border);
        transform: translateX(10px);
        box-shadow: 0 8px 25px var(--glow-primary);
    }
    
    .nav-options li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
        transition: width 0.3s ease;
    }
    
    .nav-options li a:hover::before {
        width: 4px;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 120px 1rem 2rem;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content {
        order: 2;
        padding: 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image-container {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .smartdocs-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .smartdocs-section {
        padding: 2rem 1rem;
    }
    
    .smartdocs-content {
        gap: 2rem;
        padding: 0;
    }
    
    .smartdocs-video {
        order: 1;
    }
    
    .smartdocs-details {
        order: 2;
        text-align: center;
    }
    
    .video-container {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .video-container video {
        border-radius: 10px;
    }
    
    .smartdocs-details h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .smartdocs-details p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .smartdocs-features {
        justify-content: center;
        text-align: center;
        margin: 1.5rem 0;
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section {
        padding: 120px 1.5rem 2rem;
    }
    
    .hero-content {
        padding: 0 1rem 0 0;
    }
    
    .hero-image {
        width: 280px;
        height: 280px;
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 1rem;
    }
    
    .hero-section {
        padding: 100px 0.8rem 1rem;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero-description::before {
        display: none;
    }
    
    .hero-image {
        width: 200px;
        height: 200px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .experience-section,
    .education-section,
    .certifications-section,
    .smartdocs-section,
    .services-section,
    .projects-section,
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .experience-item,
    .education-item,
    .certification-item,
    .service-card,
    .project-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .experience-header,
    .education-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .experience-period,
    .education-grade {
        align-self: flex-start;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.8rem;
    }
    
    .resume-btn,
    .submit-btn,
    .project-btn,
    .case-study-btn,
    .smartdocs-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .smartdocs-buttons {
        flex-direction: column;
        gap: 0;
    }
    
    .smartdocs-features {
        grid-template-columns: 1fr;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .smartdocs-section {
        padding: 2.5rem 1.5rem;
    }
    
    .smartdocs-content {
        gap: 2.5rem;
        max-width: 900px;
    }
    
    .video-container {
        max-width: 500px;
    }
    
    .smartdocs-details h3 {
        font-size: 2rem;
    }
}

/* Additional responsive styles for smaller mobile devices */
@media (max-width: 480px) {
    .smartdocs-section {
        padding: 1.5rem 0.75rem;
    }
    
    .smartdocs-content {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .video-container {
        border-radius: 10px;
        border-width: 1px;
        max-width: 100%;
    }
    
    .video-container video {
        border-radius: 8px;
    }
    
    .smartdocs-details h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .smartdocs-details p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .smartdocs-features {
        gap: 0.5rem;
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .feature {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
    
    .smartdocs-buttons {
        padding: 0 1rem;
        margin-top: 1.5rem;
    }
}