:root {
    --bg-primary: #000000; 
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    
    --accent: #FFC107;
    
    --font-heading: 'Poppins', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-heading);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom Cursor Active */
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #111111 0%, #000000 100%);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    cursor: none;
}

ul {
    list-style: none;
}

.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin-top: 5px;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    margin-bottom: 50px;
}

/* --- GLOBAL BUTTON STYLES (Glass Hexagons) --- */
.btn {
    /* 1. Glassy Base */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    
    /* 2. Shape */
    clip-path: polygon(
        15px 0, 100% 0, 
        100% calc(100% - 15px), 
        calc(100% - 15px) 100%, 
        0 100%, 0 15px
    );
    border-radius: 0;
    border: none; 
    
    /* 3. Faux-Border & Shine via Gradient */
    background-image: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 50%
    );

    /* 4. Text & Size */
    color: white;
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 15px 30px;
    cursor: none;
    transition: all 0.3s ease;
    
    /* 5. Center Content */
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Hover Effect */
.btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    filter: drop-shadow(0 0 10px var(--accent)); 
}

/* Secondary Button (Gold Tint) */
.btn.secondary {
    background-color: rgba(255, 193, 7, 0.15);
    color: var(--accent);
    background-image: linear-gradient(
        135deg, 
        rgba(255, 193, 7, 0.5) 0%, 
        transparent 50%
    );
}

/* --- HERO BANNER (Modified for Stretch Effect) --- */
.full-width-banner {
    width: 100%;
    position: relative;
    line-height: 0; 
    background-color: #000000;
    overflow: hidden; /* Keeps stretch contained */
    z-index: 1;
    
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.full-width-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 550px; 
    
    /* --- STRETCH CODE --- */
    transform-origin: top center; /* Ensures it grows downwards */
    will-change: transform;
    transition: transform 0.1s ease-out; /* Smooths the bounce */
}


/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
    position: absolute;
    width: 100%;
    top: 30px; 
    z-index: 1000;
}

.nav-links {
    display: flex;
    gap: 8px;
    padding: 6px 8px;
    
    background: rgba(20, 20, 20, 0.4); 
    backdrop-filter: blur(20px) saturate(180%); 
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    border: 1px solid rgba(255, 255, 255, 0.15); 
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    
    border-radius: 50px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); 
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-family: var(--font-mono);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    
    padding: 10px 24px;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    border: 1px solid transparent; 
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15); 
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    cursor: none;
    color: #fff;
    font-size: 1.5rem;
    
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    position: absolute;
    right: 20px;
    top: 0;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 20px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    
    /* --- STRETCH CODE (Text Bounce) --- */
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.typewriter-container {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 20px;
    min-height: 1.5em;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.txt-type {
    border-right: 2px solid var(--accent);
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% { border-right-color: var(--accent); }
    50% { border-right-color: transparent; }
    100% { border-right-color: var(--accent); }
}

.hero p {
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* --- UNIVERSAL GLASS THEME (Global - Desktop & Mobile) --- */
.project-card, 
.service-card, 
.skill-category, 
.about-card, 
.timeline-item {
    background: rgba(0, 0, 0, 0.05); 
    
    backdrop-filter: blur(4px) saturate(150%); 
    -webkit-backdrop-filter: blur(4px) saturate(150%);
    
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-top: 1px solid rgba(255, 255, 255, 0.3); 
    border-left: 1px solid rgba(255, 255, 255, 0.15); 
    
    
    box-shadow: 
        inset 1px 1px 0 0 rgba(255, 255, 255, 0.1), 
        0 15px 35px rgba(0, 0, 0, 0.3); 
        
    border-radius: 20px;
    padding: 25px; 
    
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    
    overflow: hidden;
    position: relative;
    margin-bottom: 30px; 
}

/* Hover Effects (Global) */
.project-card:hover, 
.service-card:hover, 
.skill-category:hover,
.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 193, 7, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 193, 7, 0.1); 
}


/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card h3 {
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- TIMELINE --- */
.timeline li {
    margin-bottom: 25px;
    border-left: 2px solid var(--accent);
    padding-left: 20px;
    position: relative;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--bg-primary);
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.small-text {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    border-left: none; 
}

.timeline-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.timeline-content h4 {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 1rem;
    margin-bottom: 5px;
}

.timeline-content .date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-family: var(--font-mono);
}

.timeline-content ul {
    list-style: disc inside;
    color: var(--text-secondary);
}

/* --- SKILLS SECTION --- */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.skill-category h3 {
    margin-bottom: 20px;
    color: var(--accent);
    font-family: var(--font-mono);
    text-align: center;
}

.skill-bar {
    margin-bottom: 20px;
}

.skill-bar .info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    font-size: 0.75rem; 
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 5px;
}

.skill-bar .info p:first-child {
    white-space: normal; 
    line-height: 1.2;
    margin-right: 15px; 
    text-align: left;
}

.skill-bar .info p:last-child {
    white-space: nowrap; 
    font-weight: bold;
    color: var(--accent); 
}
    
.skill-bar .bar {
    width: 100%;
    height: 6px;
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
    overflow: hidden;
}

.skill-bar .bar span {
    display: block;
    height: 100%;
    background: var(--accent);
    position: relative;
    box-shadow: 0 0 10px var(--accent);
}

/* --- PROJECTS SECTION --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important; 
    height: 100%;
}

.project-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.project-card h3 {
    margin-top: 0; 
    margin-bottom: 10px;
    color: var(--text-primary);
}

.project-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.tags {
    margin-top: auto; 
    display: flex;
    flex-wrap: wrap; 
    gap: 8px;
    width: 100%;
}

.tags span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 4px 10px;
    border-radius: 4px;
}

/* --- SERVICES SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.service-card {
    text-align: center;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* --- CONTACT SECTION --- */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.contact-info .info-item i {
    color: var(--accent);
    font-size: 1.2rem;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-right: 25px;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-3px);
    display: inline-block;
}

/* --- GLASS FORMS --- */
.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    
    /* Glass Style */
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    
    color: var(--text-primary);
    border-radius: 15px;
    font-family: inherit;
    transition: 0.03s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0,0,0,0.2);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Custom Error Bubble */
.custom-error-bubble {
    position: absolute;
    bottom: 100%;
    left: 10px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 100;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.custom-error-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 15px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--accent) transparent transparent transparent;
}

.custom-error-bubble.show-error {
    opacity: 1;
    transform: translateY(-8px);
}

.form-group input.invalid-field,
.form-group textarea.invalid-field {
    border-color: #ff4444 !important;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.2) !important;
}

footer {
    text-align: center;
    padding: 25px;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    margin-top: 50px;
    background: #050505;
    border-top: 1px solid #1f1f1f;
}

/* --- CURSOR EFFECTS --- */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent); 
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none; 
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent); 
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9998;
    pointer-events: none;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 193, 7, 0.1); 
    border-color: transparent;
}

.tap-pulse {
    position: fixed;
    top: 0; left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 15px var(--accent);
    animation: pulseAnim 0.5s ease-out forwards;
}

@keyframes pulseAnim {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.5); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(4); border-width: 0px; }
}

@media (pointer: coarse) {
    .main-cursor, .cursor-dot, .cursor-outline {
        display: none !important;
    }
}


/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {

    .full-width-banner img {
        height: 115px !important; 
        object-fit: cover;        
        object-position: right;   
    }

    .navbar {
        top: 20px;
        justify-content: flex-end; 
        padding-right: 20px;
    }

    .nav-links {
        display: flex; 
        flex-direction: column;
        position: absolute;
        top: 60px; 
        right: 20px; 
        width: 250px; 
        
        background: rgba(15, 15, 15, 0.9); 
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        
        border-radius: 20px;
        padding: 20px;
        gap: 10px;
        
        box-shadow: 0 25px 50px rgba(0,0,0,0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1001;

        opacity: 0;
        transform: scale(0.8) translate(20px, -20px); 
        transform-origin: top right;
        visibility: hidden;
        pointer-events: none;
        
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    .nav-links.active {
        opacity: 1;
        transform: scale(1) translate(0, 0);
        visibility: visible;
        pointer-events: all;
    }
    
    .nav-links a {
        text-align: center;
        width: 100%;
        padding: 12px;
        background: transparent;
        border-radius: 12px; 
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .hamburger {
        display: block;
    }

    .container { padding: 0 20px; }
    /* 1. Remove space from the bottom of the Hero section */
    .hero {
        padding-top: 20px !important; 
        padding-bottom: 0px !important; /* Remove internal bottom space */
        margin-top: -20px; 
        margin-bottom: 0px !important;  /* Remove external bottom gap */
        min-height: auto;
    }

    /* 2. Reduce the padding of the next section (About Me) */
    .section { 
       padding-top:40px !important; 
        padding-bottom: 50px !important;
    }

    .cta-buttons {
        display: flex;
        flex-direction: row; 
        justify-content: center; 
        align-items: center;
        gap: 10px;               
        width: 100%;
        margin-top: -20px;
        padding: 0px;            
    }

    .btn {
        flex: 0 1 auto; 
        width: auto;          
        min-width: 130px;     
        max-width: 200px;     
        font-size: 0.50rem;   
        padding: 12px 15px;   
        white-space: nowrap;  
        filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
    }
    /* --- 2. JELLY BUTTON CLICK EFFECT --- */
    .btn:active {
        /* Shrinks slightly and bounces back */
        transform: scale(0.90); 
        transition: transform 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .projects-grid, 
    .skills-grid, 
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 12px;
    }

    .about-grid, 
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr !important; /* Stack vertically */
        gap: 20px;
    }

    /* Glass Cards Mobile Specifics */
    .skill-category, .project-card, .service-card, 
    .about-card, .timeline-item {
        background: rgba(0, 0, 0, 0.05) !important; 
        backdrop-filter: blur(2px) saturate(150%); 
        -webkit-backdrop-filter: blur(2px) saturate(150%);
        border: 1px solid rgba(255, 255, 255, 0.15) !important; 
        box-shadow: 
            inset 1px 1px 0 0 rgba(255, 255, 255, 0.3), 
            0 10px 30px rgba(0, 0, 0, 0.3) !important;  
        border-radius: 20px !important;
        
        /* FIX: INCREASED PADDING FOR MOBILE */
        padding: 20px !important; 
        margin: 0 0 15px 0 !important;
        
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    .project-card i, 
    .service-card i {
        margin: 0 0 15px 0 !important; 
        padding: 0 !important;        
        font-size: 2.2rem !important;  
        width: auto !important;
        transform: none !important;    
    }
    
    /* --- 1. BOUNCY CARD EXPANSION --- */
    .project-card p {
        font-size: 0.75rem !important;
        line-height: 1.4;
        opacity: 0.8;
        
        /* Initial State (Collapsed) */
        max-height: 4.2em; /* Height of roughly 3 lines */
        overflow: hidden;
        
        /* THE BOUNCE: Uses a spring physics curve */
        transition: max-height 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease; 
    }

    .project-card.expanded p {
        /* Target State (Expanded) */
        max-height: 500px; /* Big enough to fit any text */
        opacity: 1;
    }
    
    .project-card.expanded {
        border-color: var(--accent) !important;
        box-shadow: 0 10px 40px rgba(255, 193, 7, 0.15) !important;
        z-index: 10; 
    }

    .project-img {
        margin: 0 0 15px 0 !important; 
        width: 100% !important;        
        height: auto !important;       
        background: transparent !important; 
        display: flex;
        align-items: center;
        justify-content: flex-start;  
    }
    
    .timeline-item {
        border-left: none !important;
    }
    
    .section-title { font-size: 1.8rem; }
    h3 { font-size: 1rem !important; }
    p, li { font-size: 0.8rem !important; opacity: 0.9; }

    #resumeModal { display: none; z-index: 9999; }
    #resumeModal.active { display: flex; }

    .modal-wrapper {
        width: 90% !important;
        height: 70vh !important;
        aspect-ratio: auto !important;
        max-width: none !important;
    }
    
    .snake-border {
        display: none; 
    }
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none; 
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-wrapper {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 85vh; 
    border-radius: 15px;
    padding: 3px; 
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-wrapper {
    transform: scale(1);
}

.animated-border-box {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--accent));
    animation: rotateBorder 4s linear infinite;
    z-index: 0;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.modal-content {
    position: relative;
    background: #0a0a0a;
    width: 100%; height: 100%;
    border-radius: 12px;
    z-index: 1; 
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #111;
    border-bottom: 1px solid #222;
}

.modal-header h3 {
    color: var(--accent);
    font-family: var(--font-mono);
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: var(--accent);
}

.pdf-container {
    flex: 1; 
    width: 100%;
    background: #333;
}

#resumeFrame {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-footer {
    padding: 15px;
    background: #111;
    border-top: 1px solid #222;
    text-align: right;
}