<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ===================================================================================

* Theme Name: Bentofolio Child
* Theme URI: https://eaglestheme.com/wp/supex/
* Author: Marvel_Theme
* Author URI: https://themeforest.net/user/marvel_theme
* Description: Bentofolio - Personal Portfolio WordPress Theme
* Version: 1.0.0
* Template: bentofolio
* License: GNU General Public License version 3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
* Tags: one-column, right-sidebar, left-sidebar, custom-menu, featured-images, post-formats, sticky-post, translation-ready

* We encourage you to create Child theme for any modifications you will want to do.

* Why use Child theme?

* Because of future updates we may provide for this theme that will overwrite your
* modifications and all your custom work.

* If you are not familiar with Child Themes, you can read about it here:
* http://codex.wordpress.org/Child_Themes
* http://wp.tutsplus.com/tutorials/theme-development/child-themes-basics-and-creating-child-themes-in-wordpress/

====================================================================================== */

/* Main title styling */
.main-title {
    font-size: 24px; /* Increased font size by 2px */
    font-weight: 700;
    color: #ff5733; /* Bold and vibrant color */
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase; /* Optional: Makes the text uppercase */
    border: 2px solid #1a73e8; /* Professional blue border */
    padding: 10px 20px; /* Spacing inside the border */
    border-radius: 8px; /* Rounded corners for a professional look */
    display: inline-block; /* Ensures the border wraps tightly around the text */
    margin-left: auto;
    margin-right: auto;
}

/* Profile section styling */
.profile-section {
    font-family: 'Arial', sans-serif;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Main title styling */
.profile-title {
    font-size: 24px;
    font-weight: 700;
    color: #ff5733;
    margin-bottom: 20px;
    line-height: 1.5;
}

.highlight-text {
    font-weight: 700;
    color: #1a73e8;
}

/* Profile experience and clients */
.profile-experience,
.profile-clients {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

/* Services Grid Styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 3 columns on desktop */
    gap: 15px; /* Space between items */
    margin-bottom: 20px;
}

.service-item {
    width: 150px; /* Fixed width for all items */
    height: 70px; /* Fixed height for all items */
    padding: 10px; /* Balanced padding */
    border-radius: 12px; /* Slightly rounded corners */
    font-size: 14px; /* Compact font size */
    font-weight: bold;
    color: white;
    background-color: #555;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.2s;
}

.service-item:hover {
    transform: scale(1.05);
}

/* Service Button Colors */
.webdesign-btn {
    background-color: #3498db; /* Light blue for Web Design */
}

.development-btn {
    background-color: #21759b; /* Dark blue for Web Development */
}

.marketing-btn {
    background-color: #ff5733; /* Orange for Digital Marketing */
}

.seo-btn {
    background-color: #4caf50; /* Green for SEO */
}

.ads-btn {
    background-color: #ff9800; /* Orange for Paid Ads */
}

.ecommerce-btn {
    background-color: #9b59b6; /* Purple for E-commerce */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-title {
        font-size: 22px;
    }

    .profile-experience,
    .profile-clients {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablet */
        gap: 10px;
    }

    .service-item {
        width: 130px; /* Slightly smaller width for tablet */
        height: 60px; /* Slightly smaller height for tablet */
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .profile-section {
        padding: 15px;
    }

    .profile-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .profile-experience,
    .profile-clients {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: fr; /* 1 column for mobile */
        gap: 10px;
    }

    .service-item {
        width: 100%; /* Full width for mobile */
        max-width: 200px; /* Max width for better fit on mobile */
        height: 60px; /* Compact height for mobile */
        font-size: 12px; /* Smaller font size for mobile */
        padding: 8px;
        margin: 0 auto; /* Center the items */
    }
}
</pre></body></html>