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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1800px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 220px;  
    height: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.2rem;
    align-items: center;
    margin-left: 300px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #1a73e8;
}

.whatsapp-btn {
    background: green;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.whatsapp-icon {
  font-size: 20px;
}

.whatsapp-btn:hover {
    background: green;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 244, 78, 0.3);
}


.top-icons {
    background: #e9ecef;
    padding: 60px 20px;
    text-align: center;
    margin-top: 100px;
}

.icons-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.icon-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #666;
    transition: all 0.3s ease;
}

.icon-item:hover .icon-circle {
    border-color: #2c5aa0;
    color: #2c5aa0;
}

.icon-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}


.company-intro {
    margin: 90px auto;
    padding: 0 20px;
    text-align: center;
    
}

.intro-text h2{
    font-size: 23px;
    line-height: 1.8;
    color: #000000;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-text p{
  font-size: 17px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 50px auto;
}

.positions-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}
.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.position-card {
    background: #fff;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    position: relative;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.position-card.all {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}


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

.position-card:hover::before {
    opacity: 1;
    
}

.position-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}

.position-separator {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.7);
    margin: 15px 0;
}

.position-department {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}


.job-detail {
    background: #f8f9fa;
    padding: 90px 20px;
    margin-top: 40px;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.job-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.job-location {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

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

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #e9ecef;
}

.job-list {
    list-style: none;
    padding: 0;
}

.job-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.job-list li::before {
    content: '●';
    color: #2c5aa0;
    position: absolute;
    left: 0;
    top: 12px;
}

.apply-section {
    text-align: center;
    padding: 40px 0;
    border-top: 2px solid #e9ecef;
    margin-top: 40px;
}

.apply-button {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0, #1e4085);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}


@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .icons-container {
        gap: 40px;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }

    .detail-container {
        padding: 30px 20px;
    }

    .job-title {
        font-size: 28px;
    }

    .company-intro {
        margin: 40px auto;
    }

    .intro-text {
        font-size: 16px;
    }
}


.back-button {
    position: fixed;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    background: #2c5aa0;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

.back-button:hover {
    background: #1e4085;
    transform: translateY(-50%) scale(1.1);
}

.back-button.show {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}
    .footer {
    background: #fff;
    padding: 30px 40px;
    }

    .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 110px;
    line-height: 1.8em;
    margin-right: 100px;        
    padding: 0 10px;   
    width: 100%;
    }

.footer-column {
  min-width: 20px;

}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;

}

.footer-text {
  font-size: 16spx;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-icons i {
  font-size: 20px;
  margin-right: 15px;
  color: #357ae8;
  transition: color 0.3s;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-column p {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.5;
}

.icon {
  color: #4285f4;
  margin-right: 10px;
}

.footer-links {
  display: grid;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.footer-links a {
  text-decoration: none;
  color: inherit; 
  transition: color 0.1s ease;
}


.footer-links li {
  margin-bottom: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-links li:hover {
  color: #1a73e8;
}

.footer-hours {
  text-align: center;
  margin-top: 40px;
}

.footer-hours h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.footer-hours h3::after {
  content: '';
  display: block;
  height: 2px;
  width: 50px;
  background-color: #1a73e8;
  margin: 8px auto 0;
}
