:root {
    --primary-color: #77CDFF;
    --primary-dark: #4FBCFF;
    --primary-light: #A5DFFF;
    --accent-color: #F95454;
    --accent-dark: #E64444;
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f4f9ff;
    --bg-white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #C62E2E;
    text-decoration: none;
}

.navbar {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.navbar a:hover {
    background-color: var(--primary-light);
    color: white;
}

.btn-login {
    background-color: var(--primary-color);
    color: white !important;
}

.btn-login:hover {
    background-color: var(--primary-dark);
}

.btn-register {
    background-color: var(--accent-color);
    color: white !important;
}

.btn-register:hover {
    background-color: var(--accent-dark);
}

.mobile-toggle {
    display: none;
    background: var(--primary-color);
    border: 2px solid var(--primary-dark);
    border-radius: 8px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    z-index: 1001;
    padding: 12px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.mobile-toggle span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-toggle:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.mobile-toggle:active {
    transform: scale(0.95);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 150px 20px 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)), 
                url('/uploads/logo.png') 
                no-repeat center center;
    background-size: cover;
    position: relative;
    color: white;
    margin-top: 80px;
    min-height: 500px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.secondary-btn {
    background-color: var(--accent-color);
    color: white;
}

.secondary-btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Service Highlights */
.highlight-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.highlight-header {
    text-align: center;
    margin-bottom: 50px;
}

.highlight-header h2 {
    color: var(--light-text);
    font-size: 2.2em;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--light-text);
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto;
}

.highlight-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.highlight-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    width: 320px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.highlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.highlight-card p {
    margin-bottom: 25px;
    color: var(--light-text);
}

.highlight-btn {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.highlight-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image {
    flex: 0 0 45%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-content {
    flex: 0 0 55%;
}

.about-content h2 {
    color: var(--light-text);
    margin-bottom: 25px;
    font-size: 2.2em;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Workers Section */
.workers-section {
    background-color: #f4f7f6;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
}

.workers-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.worker-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 350px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.worker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.worker-card-header {
    position: relative;
    height: 250px;
    background-color: #e9ecef;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.worker-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.worker-card:hover .worker-card-header img {
    transform: scale(1.1);
}

.worker-card-content {
    padding: 25px;
    text-align: center;
}

.worker-card-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 700;
}

.worker-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.worker-rating .stars {
    margin-right: 10px;
}

.worker-rating .stars i {
    color: #f39c12;
    font-size: 1.2rem;
}

.worker-details {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.worker-details p {
    margin: 8px 0;
    color: #34495e;
    font-size: 0.95rem;
}

.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder i {
    font-size: 100px;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    transform: scale(1.1);
    opacity: 1;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 20px;
    width: 250px;
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/api/placeholder/1200/400') no-repeat center;
    background-size: cover;
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
    font-size: 2.2em;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1em;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: var(--primary-light);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-col p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-light);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }

    .about-image, .about-content {
        flex: 0 0 100%;
    }

    .highlight-card {
        width: 100%;
        max-width: 400px;
    }

    .workers-grid {
        justify-content: center;
    }

    .worker-card {
        max-width: 400px;
    }
}

/* Show mobile toggle on tablets and smaller screens */
@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-toggle i {
        transition: transform 0.3s ease;
    }

    .navbar {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: max-height 0.4s ease-in-out;
        z-index: 999;
    }

    .navbar.active {
        max-height: 600px;
        padding: 20px 0;
        border-top: 3px solid var(--primary-color);
    }

    .navbar a {
        margin: 8px 0;
        width: 90%;
        text-align: center;
        padding: 14px 15px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    .hero {
        padding: 120px 20px 80px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1.1em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
    }

    .about-container {
        padding: 0 20px;
    }

    .stat-item {
        width: 100%;
        max-width: 250px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin: 30px auto 0;
    }

    .cta-btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .worker-card {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }

    .logo img {
        height: 40px;
    }

    .hero h1 {
        font-size: 1.8em;
    }

    .highlight-header h2,
    .about-content h2,
    .cta-section h2 {
        font-size: 1.8em;
    }

    .section-title {
        font-size: 1.8rem;
    }
}