html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body {
    background: linear-gradient(135deg, #fefefe 0%, #f8f8f8 100%);
    color: #333;
}

/* Enhanced Header */
header {
    background: linear-gradient(135deg, #ffdddd 0%, #ffc0cb 100%);
    padding: 40px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    overflow: visible;
    flex-shrink: 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    position: relative;
}

.logo-section {
    flex-shrink: 0;
}


.logo {
    max-width: 120px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    clip-path: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    background: white;
    box-sizing: border-box;
}
.logo:hover {
    transform: scale(1.05);
}

.header-content {
    text-align: center;
}

.header-content h1 {
    font-size: 3rem;
    margin: 0;
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.3rem;
    color: #34495e;
    margin: 10px 0 0 0;
    font-style: italic;
    font-weight: 300;
}

/* Enhanced Navigation */
nav {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    text-align: center;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    display: inline-block;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

nav a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

nav a:hover:before {
    left: 0;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Enhanced Main Content */
main {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    overflow: hidden;
    position: relative;
}

.services-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #e74c3c);
}

.hero-content {
    padding: 50px 40px;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
}

.hero-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e74c3c;
    border-radius: 2px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}
    
/* Job Descriptions Section */
.job-descriptions {
    margin: 40px auto;
    max-width: 1200px;
    text-align: center;
}

.job-descriptions h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.job-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
}

.job-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.job-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.job-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Services Section */
.services-section {
    margin: 40px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.services-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12, #e74c3c);
}

.services-section h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
}

.services-section h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e74c3c;
    border-radius: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0;
}

.job-card {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.job-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.job-card:hover:before {
    transform: scaleX(1);
}

.job-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.job-card h4 {
    font-size: 1.3rem;
    margin: 0;
    color: #2c3e50;
    font-weight: 600;
    line-height: 1.4;
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
    margin-top: 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

/* Modal Enhancements */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h3 {
    margin-bottom: 25px;
    text-align: center;
    color: #2c3e50;
    font-size: 1.8rem;
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 15px;
    font-weight: 700;
}

.modal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    text-align: left;
}

.modal-content button {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    display: block;
    margin: 0 auto;
}

.modal-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    line-height: 1;
}

.close:hover {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px 0;
    }

    nav a {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    header .logo {
        max-width: 150px;
    }

    main h2 {
        font-size: 1.5rem;
    }

    main p {
        font-size: 0.9rem;
    }

    .call-button {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    footer {
        font-size: 0.8rem;
    }

    .job-card {
        padding: 15px;
    }

    .job-card h4 {
        font-size: 1.3rem;
    }

    .job-card p {
        font-size: 0.9rem;
    }

    .job-list {
        grid-template-columns: 1fr;
    }

    .header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 15px 20px;
        min-height: auto;
    }
    
    header {
        padding: 20px 0;
        min-height: auto;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    nav a {
        display: block;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .services-section {
        margin: 20px 0;
        padding: 25px 20px;
    }
    
    .services-section h3 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .job-card h4 {
        font-size: 1.2rem;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .modal-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    nav a {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    header .logo {
        max-width: 120px;
    }

    main h2 {
        font-size: 1.2rem;
    }

    main p {
        font-size: 0.8rem;
    }

    .call-button {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 80px;
    }
    
    nav a {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .services-section {
        padding: 20px 15px;
    }
    
    .services-section h3 {
        font-size: 1.5rem;
    }
    
    .job-card {
        padding: 15px;
    }
    
    .job-card h4 {
        font-size: 1.1rem;
    }
    
    .modal-content {
        padding: 25px 15px;
    }
}