               /* Back button container - styled like a road sign post */
        .back-container {
            max-width: 1000px;
            margin: 20px auto 0;
            padding: 0 20px;
            position: relative;
        }
        
    
        /* Back button - styled like a directional road sign */
        .back-button {
            display: inline-block;
            padding: 12px 25px 12px 15px;
            background: #0077cc;
            background-image: linear-gradient(to bottom, #0088ee, #0066bb);
            border: 3px solid #0055aa;
            border-radius: 0 25px 25px 0;
            color: white;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 3px 3px 0 #004488,
                        inset 2px 2px 2px rgba(255, 255, 255, 0.3);
            text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
            transition: all 0.1s ease;
            position: relative;
            left: -20px;
            font-size: 1.1em;
        }
        
        .back-button::before {
            content: "";
            position: absolute;
            left: -20px;
            top: 0;
            width: 0;
            height: 0;
            border-top: 24px solid transparent;
            border-bottom: 24px solid transparent;
            border-right: 20px solid #0055aa;
        }
        
        .back-button:hover {
            background-image: linear-gradient(to bottom, #0099ff, #0077cc);
        }
        
        .back-button:active {
            transform: translate(2px, 2px);
            box-shadow: 1px 1px 0 #004488,
                        inset 2px 2px 2px rgba(255, 255, 255, 0.3);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #e8e5d8;
            background-image: linear-gradient(to bottom, rgb(250, 245, 220), rgb(230, 220, 180));
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }
        
        /* Main container - styled like a leather-bound portfolio */
        .portfolio-container {
            max-width: 1250px;
            margin: 15px auto;
            background: #d4b483;
            background-image: linear-gradient(to bottom, #e6d3a7, #c9a66b);
            border: 6px solid #8b4513;
            border-image: #9c3516 30 round;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), 
                        inset 0 0 20px rgba(0, 0, 0, 0.2);
            padding: 30px;
            position: relative;
        }
        
        /* Ribbon decoration */
        .portfolio-container::before {
            content: "";
            position: absolute;
            top: -10px;
            right: 50px;
            width: 150px;
            height: 30px;
            background: #a83232;
            background-image: linear-gradient(to right, #c04545, #8a2525);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            transform: rotate(-5deg);
            z-index: 10;
        }
        
        /* Header section - like an engraved plate */
        header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: #f5f5f0;
            background-image: linear-gradient(to bottom, #ffffff, #e5e5d0);
            border: 1px solid #ccc;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1), 
                        0 3px 5px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        
        header h1 {
            font-size: 2.8em;
            font-weight: 700;
            color: #5a3921;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
        
        header p {
            font-style: italic;
            color: #666;
            font-weight: 400;
        }
        
        /* Navigation - styled like filing tabs */
        nav {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        nav a {
            padding: 10px 20px;
            margin: 0 5px;
            background: #f8f8f8;
            background-image: linear-gradient(to bottom, #ffffff, #e0e0e0);
            border: 1px solid #ccc;
            border-bottom: none;
            border-radius: 8px 8px 0 0;
            text-decoration: none;
            color: #5a3921;
            font-weight: 600;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
            position: relative;
            top: 1px;
            transition: all 0.3s ease;
        }
        
        nav a:hover, nav a.active {
            background: #ffffff;
            box-shadow: 2px -2px 5px rgba(0, 0, 0, 0.2);
            top: 0;
        }
        
        /* Content sections - styled like notecards */
        section {
            background: #fffef7;
            padding: 25px;
            margin-bottom: 30px;
            border: 1px solid #ddd;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1),
                        inset 0 0 50px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        section::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            border-width: 0 20px 20px 0;
            border-style: solid;
            border-color: #f8f8f8 #ddd;
            box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.1);
        }
        
        section h2 {
            color: #8b4513;
            border-bottom: 1px solid #e0d0b0;
            padding-bottom: 10px;
            margin-bottom: 20px;
            font-size: 1.8em;
            font-weight: 700;
        }
        
        /* About Me section with polaroid style photo */
        .about-content {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .polaroid {
            width: 250px;
            padding: 15px 15px 40px;
            background: white;
            border: 1px solid #ddd;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
            transform: rotate(-3deg);
            margin-right: 30px;
            margin-bottom: 30px;
        }
        
        .polaroid img {
            width: 100%;
            height: auto;
            border: 1px solid #eee;
        }
        
        .polaroid p {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 10px;
            font-weight: 400;
        }
        
        /* Work samples - styled like photo corners */
        .work-samples {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .sample {
            position: relative;
            border: 1px solid #ddd;
            padding: 2px;
            background: white;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        }
        
        .sample::before, .sample::after {
            content: "";
            position: absolute;
            width: 2px;
            height: 20px;
            background: #f8f8f8;
            border: 1px solid #ddd;
        }
        
        .sample::before {
            top: -5px;
            left: -5px;
            border-bottom: none;
            border-right: none;
        }
        
        .sample::after {
            bottom: -5px;
            right: -5px;
            border-top: none;
            border-left: none;
        }
        
        .sample img {
            width: 35%;
            height: auto;
            display: block;
			margin:auto;
			display: block;
			position:relative;
}

        .sample h3 {
            margin-top: 10px;
            font-size: 1.1em;
            color: #5a3921;
            font-weight: 600;
        }
        
        .sample p {
            font-weight: 400;
        }
        
        /* Contact form - styled like an index card */
        .contact-form {
            background: #fffff0;
            padding: 25px;
            border: 1px solid #ddd;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: #5a3921;
        }
        
        .form-group input, 
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            background: #fff;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
            font-family: 'Open Sans', sans-serif;
            font-weight: 400;
        }
        
        /* Skeuomorphic buttons */
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background: #8b4513;
            background-image: linear-gradient(to bottom, #a05a2c, #6b3a19);
            color: white;
            border: none;
            border-radius: 4px;
            font-family: 'Open Sans', sans-serif;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 3px 0 #4d2a0e,
                        0 4px 4px rgba(0, 0, 0, 0.3),
                        inset 0 1px 1px rgba(255, 255, 255, 0.3);
            text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
            transition: all 0.1s ease;
            position: relative;
        }
        
        .btn:hover {
            background-image: linear-gradient(to bottom, #b36a3d, #7c4a21);
        }
        
        .btn:active {
            top: 2px;
            box-shadow: 0 1px 0 #4d2a0e,
                        0 2px 2px rgba(0, 0, 0, 0.3),
                        inset 0 1px 1px rgba(255, 255, 255, 0.3);
        }
        
        /* Toggle switch example */
        .toggle-container {
            margin: 30px 0;
        }
        
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }
        
        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            background-image: linear-gradient(to bottom, #ddd, #bbb);
            border: 1px solid #999;
            border-radius: 34px;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
            transition: .4s;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 3px;
            background-color: white;
            background-image: radial-gradient(circle at center, white 30%, #eee 100%);
            border-radius: 50%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: .4s;
        }
        
        input:checked + .slider {
            background-color: #4CAF50;
            background-image: linear-gradient(to bottom, #5dbf61, #3a9f3e);
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        /* Footer - styled like a stamp */
        footer {
            text-align: center;
            padding: 20px;
            margin-top: 40px;
            position: relative;
        }
        
        footer::before {
            content: "";
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 80px;
            background: #a83232;
            background-image: radial-gradient(circle at center, #d04545, #8a2525);
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1;
        }
        
        footer p {
            position: relative;
            z-index: 2;
            color: white;
            font-weight: 700;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        /* Responsive Media Queries */
        @media (max-width: 900px) {
            .work-samples {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .portfolio-container::before {
                right: 30px;
                width: 120px;
            }
        }

        @media (max-width: 768px) {
            .portfolio-container {
                padding: 20px;
                border-width: 8px;
            }
            
            header h1 {
                font-size: 2.2em;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .polaroid {
                margin-right: 0;
                margin-bottom: 30px;
                transform: rotate(0);
            }
        }

        @media (max-width: 600px) {
    body {
                padding: 10px;
            }
            
            .portfolio-container {
                margin: 15px auto;
                padding: 15px;
            }
            
            .work-samples {
                grid-template-columns: 1fr;
            }
            
            nav a {
                padding: 8px 15px;
                font-size: 0.9em;
                margin: 0 3px 5px;
            }
            
            section {
                padding: 20px;
            }
            
            section h2 {
                font-size: 1.5em;
            }
            
            .portfolio-container::before {
                display: none;
            }
            
            .sample img {
  max-width: 50px;
  height: auto;
}
            
    .work-samples {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .sample {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2px;
}

.sample img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  flex-shrink: 0;
}

.sample-content {
  flex: 1;
}

.sample-content h3 {
  margin-top: 0;
  font-size: 1em;
}

.sample-content p {
  font-size: 0.9em;
  margin: 5px 0;
}

.sample-content .btn {
  padding: 6px 12px;
  font-size: 0.8em;
  margin-top: 5px;
}
}

@media (max-width: 400px) {
    header h1 {
                font-size: 1.8em;
            }
            
            header p {
                font-size: 0.9em;
            }
            
            .btn {
                padding: 8px 16px;
                font-size: 0.9em;
            }
    .sample {
        gap: 2px;
    }
    
    .sample img {
        width: 30px;
        height: 30px;
    }
    
    .sample h3 {
        font-size: 0.95em;
    }
    
    .sample p {
        font-size: 0.85em;
    }
}