* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    min-height: 100vh;
    color: #1e3a5f;
}

header {
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-menu li a.contact-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #0277bd;
    font-weight: 600;
}

.nav-menu li a.contact-btn:hover {
    background-color: white;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.banner {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.85) 0%, rgba(41, 182, 246, 0.85) 100%),
                url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1600&h=500&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.4) 0%, rgba(41, 182, 246, 0.4) 100%);
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
}

.banner-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    line-height: 1.2;
}

.banner-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1 {
    color: white;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    color: #e1f5fe;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 300;
}

.intro {
    text-align: center;
    padding: 3rem 0 2rem;
    font-size: 1.1rem;
    color: #1e3a5f;
}

.about-section, .why-choose-section, .faq-section {
    padding: 4rem 0;
}

.about-section {
    background: white;
    margin-top: 4rem;
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    color: #1e3a5f;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
    border-radius: 2px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: #546e7a;
    font-size: 1.1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.value-card h3 {
    color: #0277bd;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: #546e7a;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.advantage-card p {
    color: #546e7a;
    line-height: 1.6;
}

.faq-container {
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a5f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #0277bd;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #546e7a;
    line-height: 1.8;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0 4rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(79, 195, 247, 0.3);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.7) 0%, rgba(41, 182, 246, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::before {
    opacity: 1;
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    z-index: 1;
}

.it-bg {
    background: linear-gradient(135deg, #81d4fa 0%, #4fc3f7 100%);
}

.staffing-bg {
    background: linear-gradient(135deg, #80deea 0%, #4dd0e1 100%);
}

.consultancy-bg {
    background: linear-gradient(135deg, #90caf9 0%, #64b5f6 100%);
}

.service-content {
    padding: 1.5rem;
}

.service-content h2 {
    color: #1e3a5f;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.service-content p {
    color: #546e7a;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    color: #29b6f6;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-card:hover .service-link {
    gap: 1rem;
}

footer {
    background: linear-gradient(135deg, #0288d1 0%, #0277bd 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    fill: #e1f5fe;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #e1f5fe;
}

/* Mobile Styles - MUST be at the end */
@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
    }

    .logo img {
        height: 30px !important;
        max-height: 30px !important;
    }

    .logo {
        font-size: 1.2rem !important;
    }

    .mobile-menu-toggle {
        display: block !important;
        z-index: 1001 !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        height: 100vh !important;
        width: 70% !important;
        max-width: 300px !important;
        background: linear-gradient(135deg, #0288d1 0%, #0277bd 100%) !important;
        flex-direction: column !important;
        padding: 5rem 2rem 2rem !important;
        gap: 1rem !important;
        transition: right 0.3s ease !important;
        z-index: 1000 !important;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2) !important;
    }

    .nav-menu.active {
        right: 0 !important;
    }

    .nav-menu li {
        width: 100% !important;
    }

    .nav-menu li a {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    nav {
        margin-bottom: 1rem !important;
    }

    .banner {
        height: 350px !important;
    }

    .banner-content h2 {
        font-size: 2.2rem !important;
    }

    .banner-content p {
        font-size: 1.2rem !important;
    }
}

/* Extra small devices */
@media screen and (max-width: 480px) {
    .logo img {
        height: 25px !important;
    }

    .logo {
        font-size: 1rem !important;
    }

    .banner-content h2 {
        font-size: 1.8rem !important;
    }

    .banner-content p {
        font-size: 1rem !important;
    }
}
