<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base Styles */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    background: #2c2c2c !important;
    border-bottom: 2px solid #444;
    padding: 15px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: #f8f9fa !important;
    font-weight: 600;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: #e0e0e0 !important;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #258cfb !important;
}

.navbar-toggler {
    border-color: #ccc; /* Light border for mobile menu button */
}

/* Buttons */
.btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #258cfb;
    border: none;
}

    .btn-primary:hover {
        background-color: #1e70cc;
    }

.btn-outline-primary {
    color: #258cfb;
    border: 2px solid #258cfb;
}

    .btn-outline-primary:hover {
        background-color: #258cfb;
        color: #fff;
    }

/* Form Controls */
.form-control {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #ccc;
}

    .form-control:focus {
        border-color: #258cfb;
        box-shadow: 0 0 8px rgba(37, 140, 251, 0.3);
    }

/* Modern Section Design */
section {
    padding: 40px 20px;
    background: white;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stretched-img {
    width: 100%; /* Stretch to full container width */
    height: 300px; /* Fixed height to create crop effect */
    object-fit: cover; /* Ensures image is cropped instead of squished */
    border-radius: 10px; /* Optional: Keeps rounded corners */
}
.image-container {
    display: flex;
    justify-content: center; /* Centers the images */
    gap: 20px; /* Adds space between images */
    flex-wrap: wrap; /* Ensures responsiveness */
}

.project-image {
    width: 100%; /* Makes it responsive */
    max-width: 400px; /* Adjust image size */
    height: 300px; /* Crops height */
    object-fit: cover; /* Ensures proper cropping */
    border-radius: 10px;
}

/* Footer (Keeping Original Functionality) */
.footer {
    text-align: center;
    background: #1a1a2e;
    color: white;
    padding: 20px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .btn {
        padding: 10px 15px;
    }
}
</pre></body></html>