/* Global Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --light-gray: #f4f4f4;
    --dark-gray: #333;
    --text-color: #333;
    --white: #fff;
    --border-color: #ddd;
    --green: #27ae60;
    --purple: #9b59b6;
    --orange: #e67e22;
    --red: #e74c3c;
    --teal: #1abc9c;
    --gold: #f1c40f;
    --magenta: #c0392b;
    --info-green: #27ae60;
    --footer-dark: #2b2f33;
    
    /* Job Card Colors */
    --blue: #1e88e5;
    --gold: #e6a817;
    --teal: #00bcd4;
    --magenta: #9c27c0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    background-color: #fff;
    color: #333;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #f0f0f0;
}

/* Skip Link - Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
    border-bottom: 1px solid #eee;
}

header .container {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 20px;
}

.logo {
    margin-right: 40px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #2196F3;
    text-decoration: none;
}

.main-nav {
    flex: 1;
}

.main-nav ul {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
}

.main-nav li a {
    display: block;
    padding: 20px 25px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.main-nav li a:hover,
.main-nav li a.active {
    color: #2196F3;
    background-color: rgba(33, 150, 243, 0.1);
}

.main-nav li a i {
    margin-right: 5px;
}

.search-icon {
    margin-left: 20px;
}

.search-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #333;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-icon a:hover {
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.search-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.search-form form {
    display: flex;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Featured Jobs Section */
.featured-jobs {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--info-green);
}

.section-title:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.job-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.job-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.job-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
}

.job-card .deadline {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.job-card .btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--info-green);
    color: var(--white);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.2);
}

.job-card .btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Job Card Colors */
.job-card.blue {
    border-top: 4px solid var(--primary-color);
}

.job-card.purple {
    border-top: 4px solid var(--purple);
}

.job-card.orange {
    border-top: 4px solid var(--orange);
}

.job-card.red {
    border-top: 4px solid var(--red);
}

.job-card.green {
    border-top: 4px solid var(--green);
}

.job-card.gold {
    border-top: 4px solid var(--gold);
}

.job-card.teal {
    border-top: 4px solid var(--teal);
}

.job-card.magenta {
    border-top: 4px solid var(--magenta);
}

/* Social Links Section */
.social-links {
    padding: 30px 0;
}

.social-links .container {
    display: flex;
    gap: 20px;
}

.social-card {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    color: var(--white);
    text-align: center;
}

.social-card h3 {
    margin-bottom: 15px;
}

.social-card.whatsapp {
    background-color: #25D366;
}

.social-card.telegram {
    background-color: #0088cc;
}

.social-card .btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 20px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.social-card .btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Main Content */
main {
    padding: 30px 0;
}

/* Category Section */
.category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.category-column {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.category-heading {
    background-color: var(--info-green);
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #1e8449;
}

.category-heading h2 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.job-listing {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid #e0e0e0;
}

.job-content {
    margin-right: 100px; /* Space for apply button */
}

.job-listing h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.4;
}

.job-listing h3 a {
    color: #333;
    text-decoration: none;
}

.job-listing h3 a:hover {
    color: #28a745;
}

.deadline {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.apply-btn-container {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.apply-btn {
    display: inline-block;
    padding: 6px 12px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.3s;
    border: 1px solid #218838;
}

.apply-btn:hover {
    background: #218838;
    color: #fff;
}

/* Info Box Styles */
.info-box {
    margin: 45px 0 60px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.info-title {
    background-color: var(--info-green);
    padding: 15px;
    text-align: center;
    border-bottom: 3px solid #1e8449;
}

.info-title h2 {
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-content {
    padding: 30px;
    background-color: var(--white);
}

.info-content p strong {
    display: block;
    margin-bottom: 10px;
}

.info-content p {
    text-align: justify;
    margin-bottom: 20px;
    line-height: 1.7;
}

.info-content p:last-child {
    margin-bottom: 0;
}

/* Footer Styles */
footer {
    position: relative;
    background-color: var(--footer-dark);
    color: #fff;
    padding-top: 140px;
    padding-bottom: 40px;
    margin-top: 100px;
}

.footer-info-wrapper {
    position: absolute;
    top: -130px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-info {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    color: var(--text-color);
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--info-green);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--info-green);
    min-width: 20px;
}

.footer-bottom-wrapper {
    text-align: center;
    padding-top: 30px;
}

.logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-center h2 {
    font-size: 2.2rem;
    color: #fff;
    margin: 0 25px;
}

.logo-line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    width: 180px;
}

.footer-separator {
    width: 100%;
    max-width: 500px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto 20px;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Media Queries */
@media (max-width: 991px) {
    .main-nav ul {
        gap: 0;
    }
    
    .main-nav li a {
        padding: 20px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 20px;
    }
    
    .logo {
        margin-right: 0;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li a {
        padding: 12px 15px;
        text-align: center;
    }
    
    .search-icon {
        margin-left: auto;
    }
    
    .job-row {
        flex-wrap: wrap;
    }
    
    .job-card {
        min-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }
    
    .category-column {
        flex: 0 0 100%;
    }
    
    .footer-section {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .footer-info-wrapper {
        margin: 0 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .footer-bottom-wrapper {
        padding-top: 100px;
    }
}

/* Remove social icon styles since we're not using them */
.social-icons, .social-icon, .social-icon:hover {
    display: none;
}

/* Job Details Page Styles */
.job-details-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    padding: 30px;
}

.job-details-header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.job-details-header h1 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.job-section {
    margin-bottom: 30px;
}

.job-section h2 {
    color: var(--info-green);
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--info-green);
}

.apply-section {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.apply-now-btn {
    display: inline-block;
    padding: 12px 40px;
    background-color: var(--info-green);
    color: white;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
}

.apply-now-btn:hover {
    background-color: #1e8449;
}

/* Remove read-more styles */
.read-more {
    display: none;
}

.read-more:hover {
    display: none;
}

.read-more i {
    display: none;
}

/* About Us Page Styles */
.info-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.info-title h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
}

.info-content {
    line-height: 1.6;
}

.info-content h3 {
    color: #444;
    margin: 1.5rem 0 1rem;
}

.info-content ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.info-content ul li {
    margin-bottom: 0.5rem;
}

/* Contact Us Page Styles */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.contact-info h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: #007bff;
    margin-right: 1rem;
    width: 24px;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #444;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: #007bff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }
} 