/*
Theme Name: AssamCareer Clone
Theme URI: http://example.com/assamcareer-clone/
Author: Your Name
Author URI: http://example.com
Description: A clone of the AssamCareer website
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: assamcareer-clone
*/

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.site-branding img {
    max-height: 60px;
}

.main-navigation ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    background-color: #0056b3;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-form input[type="text"] {
    width: 70%;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.search-form button {
    width: 30%;
    padding: 10px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Job Categories */
.job-categories {
    padding: 50px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: #fff;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-card img {
    max-width: 60px;
    margin-bottom: 10px;
}

/* Job Listings */
.job-card {
    background-color: #fff;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.job-card h2 {
    margin-top: 0;
}

.job-meta {
    color: #666;
    font-size: 0.9em;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-widget h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-widget ul {
    list-style-type: none;
    padding: 0;
}

.footer-widget a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
    }

    .main-navigation li {
        margin: 10px 0;
    }

    .search-form input[type="text"],
    .search-form button {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 10px;
    }
}